/* ============================================================
   KETUT GAJAH BALI — "Field Notes from the Island of the Gods"
   ============================================================ */

/* --- TOKENS --- */
:root {
    /* Core palette */
    --ink:        #1C2620;
    --canopy:     #25372C;
    --paper:      #F7F1E4;
    --card:       #EEE3CD;
    --marigold:   #E7A23C;
    --marigold-d: #C5821F;
    --lagoon:     #3E8E8B;
    --clay:       #BF5B3A;

    /* Text */
    --text-dark:  #1C2620;
    --text-muted: #6E6353;
    --text-light: #F7F1E4;
    --text-mute-l:#AEBDB1;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Work Sans', sans-serif; scroll-behavior: smooth; }
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; letter-spacing: -0.01em; }
.logo, .footer-logo, .stamp-text, .eyebrow, .stop-num, .nav-tag { font-family: 'Space Mono', monospace; }
.serif-italic { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; }

body { background-color: var(--paper); color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Eyebrow / section label */
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--marigold-d); font-weight: 700; letter-spacing: 0.18em;
    font-size: 0.78rem; text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after { content: ''; display: block; width: 22px; height: 2px; background: var(--marigold); }
.eyebrow.on-dark { color: #F4C783; }

/* Subtle dotted paper texture */
.texture {
    background-image: radial-gradient(circle at 1px 1px, rgba(28,38,32,0.05) 1.2px, transparent 0);
    background-size: 24px 24px;
}

/* --- BUTTONS & SHADOWS (GLASSMORPHISM) --- */
@property --glow-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes glow-spin { 100% { --glow-angle: 360deg; } }

.btn-primary, .btn-wa, .btn-ghost, .btn-review, .btn-glass, .btn-glass-dark {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    font-weight: 600; font-size: 1rem; padding: 16px 36px; 
    border-radius: 40px; cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); letter-spacing: 0.04em;
    position: relative; overflow: visible; z-index: 1; border: none;
}

/* Base Light Glass styling */
.btn-primary, .btn-wa, .btn-ghost, .btn-review, .btn-glass {
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    color: var(--text-light); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}
.btn-primary:hover, .btn-wa:hover, .btn-ghost:hover, .btn-review:hover, .btn-glass:hover {
    background: rgba(255, 255, 255, 0.2); transform: translateY(-4px); 
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

/* Base Dark Glass styling */
.btn-glass-dark {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
    backdrop-filter: blur(24px) saturate(200%); -webkit-backdrop-filter: blur(24px) saturate(200%);
    color: var(--ink); 
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1), 
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 2px 5px rgba(255, 255, 255, 1), 
        inset 0 -3px 5px rgba(0, 0, 0, 0.04);
}
.btn-glass-dark:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    transform: translateY(-4px); 
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15), 
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 2px 5px rgba(255, 255, 255, 1), 
        inset 0 -3px 5px rgba(0, 0, 0, 0.05);
}

/* Rotating Light Edge (Glow) - Only for Hero Button */
.btn-hero-glow::before {
    content: ''; position: absolute; inset: -2px; border-radius: 42px; padding: 2px;
    background: conic-gradient(from var(--glow-angle), rgba(255,255,255,0) 60%, rgba(255,255,255,1) 85%, rgba(255,255,255,0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: glow-spin 3.5s linear infinite; pointer-events: none; z-index: -1;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.8)) drop-shadow(0 0 10px rgba(255,255,255,0.4));
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav { position: fixed; top: 0; width: 100%; padding: 26px 0; z-index: 1000; transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s ease-out, backdrop-filter 0.15s ease-out, border-bottom 0.15s ease-out, box-shadow 0.15s ease-out; background-color: rgba(247,241,228,0); backdrop-filter: blur(0px) saturate(100%); -webkit-backdrop-filter: blur(0px) saturate(100%); border-bottom: 1px solid rgba(255,255,255,0); box-shadow: 0 15px 40px rgba(0,0,0,0); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0px; color: var(--text-light); }
.logo-img { height: 105px; width: auto; object-fit: contain; margin-right: -6px; margin-left: -15px; transition: height 0.5s ease-in-out; }
.logo-text-wrapper { display: flex; flex-direction: column; line-height: 1.15; }
.logo .logo-main { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.2em; }
.logo .logo-main span { color: var(--marigold); }
.logo .nav-tag { font-size: 0.62rem; letter-spacing: 0.25em; color: var(--text-mute-l); margin-top: 2px; text-transform: uppercase; }

.nav-links { display: flex; gap: 38px; }
.nav-links a { color: var(--text-light); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--marigold); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }

nav.scrolled { transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); background-color: rgba(247,241,228,0.7); backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%); border-bottom: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 15px 40px rgba(0,0,0,0.18); padding: 10px 0; }
nav.scrolled .logo, nav.scrolled .nav-links a { color: var(--ink); }
nav.scrolled .logo .nav-tag { color: var(--text-muted); }
nav.scrolled .nav-links a::after { background: var(--marigold-d); }
nav.scrolled .btn-primary, nav.scrolled .btn-glass {
    color: var(--ink) !important; 
    box-shadow: 0 10px 25px rgba(231, 162, 60, 0.25), 0 4px 10px rgba(231, 162, 60, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.6), inset 0 -2px 4px rgba(0,0,0,0.05); 
    border: 1px solid rgba(231, 162, 60, 0.3);
    background: var(--marigold);
    transition: all 0.15s ease-out;
}
nav.scrolled .btn-primary:hover, nav.scrolled .btn-glass:hover {
    background: var(--marigold-d); 
    box-shadow: 0 15px 35px rgba(231, 162, 60, 0.35), 0 6px 15px rgba(231, 162, 60, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.8), inset 0 -2px 4px rgba(0,0,0,0.05);
    transform: translateY(-3px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); 
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; background: #11160F url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,26,18,0.55) 0%, rgba(20,26,18,0.35) 45%, var(--paper) 100%), linear-gradient(90deg, rgba(20,26,18,0.55) 0%, rgba(20,26,18,0.05) 55%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 14px; font-family: 'Space Mono', monospace; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--marigold); margin-bottom: 24px; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 44px; height: 2px; background: var(--marigold); }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 8vw, 6rem); font-weight: 600; line-height: 1.05; margin-bottom: 24px; color: var(--text-light); letter-spacing: -0.01em; text-shadow: 2px 4px 5px rgba(0,0,0,0.6), 0px -2px 0px rgba(255,255,255,0.2), 0 10px 25px rgba(0,0,0,0.5); }
.hero h1 .highlight { font-family: 'Great Vibes', cursive; font-size: 1.3em; font-style: normal; color: var(--marigold); font-weight: 400; text-shadow: 2px 4px 5px rgba(0,0,0,0.6), 0px -2px 0px rgba(231,162,60,0.3), 0 10px 25px rgba(0,0,0,0.5); padding: 0 15px; }
.hero p { font-size: 1.15rem; color: var(--text-mute-l); line-height: 1.8; max-width: 540px; margin-bottom: 40px; font-weight: 300; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 20px; }
.hero-cta-note { font-family: 'Space Mono', monospace; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--text-mute-l); }

/* --- Stamp --- */
.stamp { position: absolute; top: 26%; right: 8%; width: 168px; height: 168px; z-index: 3; opacity: 0.92; animation: stamp-press 0.7s 0.6s cubic-bezier(.2,1.4,.4,1) both; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25)); }
.stamp svg { width: 100%; height: 100%; }
.stamp-circle { fill: none; stroke: var(--marigold); stroke-width: 1.5; stroke-dasharray: 3 5; }
.stamp-text { fill: var(--text-light); font-size: 9.5px; letter-spacing: 2px; }
.stamp-center { fill: var(--marigold); font-size: 13px; font-weight: 700; letter-spacing: 1px; }

@keyframes stamp-press { 0% { opacity: 0; transform: scale(2.4) rotate(-18deg); } 100% { opacity: 0.92; transform: scale(1) rotate(-12deg); } }

/* ============================================================
   2. PROFILE / STORY SECTION (Paper Background)
   ============================================================ */
.profile-section { padding: 110px 0 70px 0; background-color: var(--paper); }
.profile-layout { display: flex; align-items: flex-start; gap: 90px; }
.profile-text { flex: 1.15; padding-top: 10px; }
.profile-text h2 { font-size: clamp(2rem, 4vw, 2.85rem); margin-bottom: 26px; line-height: 1.18; color: var(--text-dark); }
.lead-text { font-size: 1.2rem; font-weight: 500; color: var(--text-dark); margin-bottom: 20px; line-height: 1.65; text-align: justify; }
.profile-text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.85; margin-bottom: 34px; text-align: justify; }
.signature { display: flex; align-items: center; gap: 22px; }
.signature-content { text-align: center; }
.signature h3 { font-size: 1.7rem; color: var(--text-dark); margin-bottom: 4px; font-style: italic; font-weight: 500; }
.signature span { color: var(--text-muted); font-size: 0.78rem; letter-spacing: 0.18em; font-weight: 700; text-transform: uppercase; }
.signature-line { width: 50px; height: 1px; background: var(--marigold-d); }

.profile-images { flex: 1; position: relative; min-height: 520px; perspective: 1000px; }
.profile-images img { position: absolute; border-radius: var(--radius-lg); box-shadow: 0 15px 35px rgba(0,0,0,0.2); transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); transform-origin: center; filter: brightness(1) contrast(1); image-rendering: -webkit-optimize-contrast; }
.img-back-wrapper { width: 68%; position: absolute; top: 0; right: 0; z-index: 1; transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); transform-origin: center; }
.img-back { width: 100% !important; position: relative !important; display: block; border: 10px solid var(--paper); }
.img-front { width: 72%; bottom: 0; left: 0; z-index: 2; border: 10px solid var(--paper); }

.badge-founder { position: absolute; bottom: -5%; right: -8%; z-index: 3; width: 116px; height: 116px; border-radius: 50%; background: var(--marigold); color: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transform: rotate(-9deg); box-shadow: 0 15px 30px rgba(231,162,60,0.35); border: 2px dashed rgba(28,38,32,0.3); transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); pointer-events: none; }
.badge-founder .b-line1 { font-size: 0.62rem; letter-spacing: 0.15em; font-weight: 700; }
.badge-founder .b-line2 { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; line-height: 1.2; margin: 4px 0; }
.badge-founder .b-line3 { font-size: 0.58rem; letter-spacing: 0.18em; font-weight: 700; }

/* Interactive Focus & Parallax Hover Effects */
.profile-images:hover img { filter: brightness(0.88) contrast(0.95); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }

/* Parallax separation when container is hovered but specific image is NOT hovered */
.profile-images:hover .img-back-wrapper:not(:hover) { transform: translate3d(4px, -4px, -15px) rotate(1deg); }
.profile-images:hover .img-front:not(:hover) { transform: translate3d(-4px, 4px, -10px) rotate(-1deg); }

/* Selective pop-out when a SPECIFIC image/wrapper is hovered */
.profile-images .img-back-wrapper:hover { z-index: 5 !important; cursor: pointer; }
.profile-images .img-back-wrapper:hover .img-back { transform: translate3d(6px, -6px, 15px) rotate(0.5deg) scale(1.015); filter: brightness(1.02) contrast(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.25); opacity: 1; }
.profile-images .img-back-wrapper:hover .badge-founder { transform: translate3d(15px, 15px, 20px) rotate(-7deg) scale(1.05); box-shadow: 0 20px 40px rgba(231,162,60,0.4); opacity: 1; }
.profile-images .img-front:hover { transform: translate3d(-6px, 6px, 20px) rotate(-0.5deg) scale(1.015) !important; filter: brightness(1.02) contrast(1.02); z-index: 5; box-shadow: 0 15px 45px rgba(0,0,0,0.25); opacity: 1; cursor: pointer; }

/* ============================================================
   3. DESTINATIONS & TRANSPORT (Blended Backgrounds)
   ============================================================ */
/* Wrapper blend paper ke ink */
.blend-paper-to-ink { background-color: var(--ink); position: relative; }

.destinations-section { padding: 80px 0 100px 0; position: relative; overflow: hidden; z-index: 1; }
.destinations-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1559628233-eb1b1a45564b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    z-index: -2;
}
.destinations-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, var(--paper) 0%, rgba(28,38,32,0.6) 25%, rgba(28,38,32,0.85) 60%, rgba(28,38,32,0.4) 85%, var(--paper) 100%);
    z-index: -1;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--text-dark); }
.section-header p { color: var(--text-muted); font-size: 1.05rem; margin-top: 12px; }
.header-center { display: flex; flex-direction: column; align-items: center; }

/* Elegant Glass Pill for Destinations Header Text */
.destinations-section .section-header {
    background: rgba(28, 38, 32, 0.45);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    padding: 24px 48px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}
.destinations-section .section-header h2 { color: #ffffff; text-shadow: 0 4px 10px rgba(0,0,0,0.3); margin-bottom: 6px; }
.destinations-section .section-header p { color: rgba(255,255,255,0.9); margin-top: 0; }
.destinations-section .section-header .eyebrow { color: var(--marigold); font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

/* --- NEW INFINITE MARQUEE SLIDER --- */
.slider-glass-container {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    padding: 30px 0;
    margin-bottom: 40px;
    position: relative;
}

.marquee-wrapper { width: 100%; overflow: hidden; padding: 20px 0; position: relative; touch-action: pan-y; cursor: grab; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); }
.marquee-wrapper:active { cursor: grabbing; }
.marquee-track { display: flex; gap: 20px; width: max-content; padding: 0 15px; }

/* Slide Card - Liquid Glass iOS 26 Base */
.slide-card { 
    width: 260px; height: 380px; 
    border-radius: 26px; 
    overflow: hidden; position: relative; display: block; 
    /* Bayangan luar yang sangat dalam untuk efek melayang */
    box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 8px 15px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.3), inset 0 0 20px rgba(255,255,255,0.15); 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    will-change: transform, box-shadow;
}
.slide-card::after {
    content: ''; position: absolute; inset: 0; border-radius: 26px;
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.1) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none; z-index: 5;
}
.slide-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; opacity: 0.92; filter: saturate(1.05); }
.slide-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 35px 70px rgba(0,0,0,0.45), 0 15px 30px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.6), inset 0 0 30px rgba(255,255,255,0.25); z-index: 2; }
.slide-card:hover img { transform: scale(1.08); opacity: 1; filter: saturate(1.15); }

/* Liquid Glass iOS 26 Overlay */
.glass-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 50%);
    display: flex; flex-direction: column; justify-content: flex-end;
    pointer-events: none;
}
.glass-text {
    margin: 15px; padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px) saturate(120%);
    -webkit-backdrop-filter: blur(4px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.5), 0 10px 20px rgba(0,0,0,0.2);
    transform: translateY(0); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.slide-card:hover .glass-text {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25), inset 0 2px 5px rgba(255,255,255,0.7);
    transform: translateY(-5px);
}
.glass-text h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 6px; color: var(--text-light); text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.glass-text span { font-size: 0.85rem; color: var(--marigold); font-weight: 700; display: flex; align-items: center; gap: 8px; letter-spacing: 0.05em; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }

.stop-num { position: absolute; top: 18px; left: 18px; z-index: 4; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.15); backdrop-filter: blur(12px) saturate(150%); -webkit-backdrop-filter: blur(12px) saturate(150%); color: var(--text-light); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; box-shadow: 0 8px 15px rgba(0,0,0,0.15), inset 0 2px 4px rgba(255,255,255,0.4); text-shadow: 0 1px 2px rgba(0,0,0,0.5); }

/* ============================================================
   4. DYNAMIC ACTIVITIES SECTION (Unified Zig-Zag Layout)
   ============================================================ */
.unified-service-section { padding: 90px 0; background-color: var(--paper); position: relative; overflow: hidden; }
.unified-service-section::before {
    content: ''; position: absolute; width: 60vw; height: 60vw; min-width: 600px; min-height: 600px;
    background: radial-gradient(circle, rgba(231,162,60,0.04) 0%, rgba(247,241,228,0) 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.unified-service-section::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(28,38,32,0.04) 1.2px, transparent 0);
    background-size: 24px 24px; pointer-events: none; z-index: 0;
}
.unified-grid { display: flex; align-items: center; justify-content: space-between; gap: 60px; position: relative; z-index: 1; }
.unified-grid.reverse { flex-direction: row-reverse; }

.unified-img { width: 48%; flex-shrink: 0; position: relative; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.2), 0 10px 20px rgba(0,0,0,0.1); border: 8px solid #fff; background: #fff; }
.unified-img::after { content: ''; position: absolute; inset: -8px; border: 1px solid rgba(0,0,0,0.05); border-radius: 20px; pointer-events: none; }
.unified-img img { width: 100%; height: 500px; object-fit: cover; display: block; border-radius: 12px; transition: transform 0.5s ease; filter: contrast(1.05); }

.unified-content { flex: 1; position: relative; z-index: 2; background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.5)); backdrop-filter: blur(30px) saturate(200%); -webkit-backdrop-filter: blur(30px) saturate(200%); padding: 50px; border-radius: 30px; box-shadow: 0 15px 40px rgba(0,0,0,0.12), 0 5px 15px rgba(0,0,0,0.08), inset 0 2px 6px rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.7); text-align: center; }
.unified-content h2 { font-size: clamp(2.2rem, 4.5vw, 3rem); color: var(--text-dark); margin-bottom: 20px; line-height: 1.1; font-family: 'Fraunces', serif; font-weight: 600; text-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.unified-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 30px; text-align: justify; }
.unified-content .eyebrow { color: var(--marigold-d); }

.consult-text { display: block; margin-top: 14px; font-size: 0.88rem; color: var(--text-muted); font-family: 'Work Sans', sans-serif; font-style: normal; font-weight: 500; letter-spacing: 0.02em; transition: color 0.3s ease; text-decoration: underline; text-decoration-color: rgba(110, 99, 83, 0.4); text-underline-offset: 4px; }
.consult-text:hover { color: var(--marigold-d); text-decoration-color: var(--marigold-d); }

/* ============================================================
   5. CONTACT & LOCATION
   ============================================================ */
.contact-section { position: relative; padding: 140px 0 140px 0; overflow: hidden; z-index: 1; }
.contact-bg {
    position: absolute; inset: 0;
    /* Menggunakan gambar Pura Ulun Danu / Pemandangan Bali ikonik */
    background: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    z-index: -2;
}
.contact-bg::before {
    content: ''; position: absolute; inset: 0;
    /* Lapisan gelap dikurangi drastis agar pemandangan sangat jelas */
    background: rgba(28, 38, 32, 0.3);
    z-index: -1;
}
.contact-bg::after {
    content: ''; position: absolute; inset: 0;
    /* Transisi cerdas: Kertas ke transparan di atas, transparan ke hitam di bawah */
    background: linear-gradient(to bottom, 
        var(--paper) 0%, 
        rgba(247, 241, 228, 0) 12%, 
        rgba(17, 22, 15, 0) 75%, 
        #11160F 100%
    );
    z-index: -1;
}
.contact-layout { 
    display: flex; gap: 60px; 
    background: rgba(28, 38, 32, 0.65); /* Dark green glass tint for high text contrast */ 
    backdrop-filter: blur(40px) saturate(180%); -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: var(--radius-lg); padding: 56px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.4), 
        0 15px 35px rgba(0,0,0,0.2),
        inset 0 2px 5px rgba(255, 255, 255, 0.15),
        inset 0 -3px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.contact-info { flex: 1; color: var(--text-light); text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.contact-info h2 { font-size: clamp(2rem, 4.5vw, 2.7rem); margin-bottom: 16px; text-shadow: 0 4px 15px rgba(0,0,0,0.6); }
.contact-info > p { color: rgba(255, 255, 255, 0.9); font-size: 1.05rem; margin-bottom: 42px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.contact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 42px; }

.contact-item { 
    display: flex; align-items: center; gap: 16px; 
    background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 16px; border-radius: var(--radius-md); transition: 0.3s; color: var(--text-light); 
    border: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), inset 0 1px 2px rgba(255,255,255,0.15);
}
.contact-item:hover { background: rgba(247,241,228,0.09); transform: translateX(10px); border-color: var(--marigold); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.contact-item i { font-size: 1.4rem; color: var(--marigold); width: 30px; text-align: center; }
.contact-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; font-family: 'Work Sans', sans-serif; letter-spacing: 0.02em; }
.contact-item p { color: var(--text-mute-l); font-size: 0.92rem; }

.review-box { background: rgba(231,162,60,0.1); padding: 28px; border-radius: var(--radius-md); border: 1px solid rgba(231,162,60,0.25); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.review-box h4 { font-size: 1.15rem; margin-bottom: 6px; color: var(--text-light); font-family: 'Fraunces', serif; font-weight: 600; }
.review-box p { font-size: 0.92rem; margin-bottom: 16px; color: var(--text-mute-l); }

.contact-map-link { 
    flex: 1; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; 
    border: 1px solid rgba(255, 255, 255, 0.15); border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,0.2);
    display: block; position: relative;
    background: #e5e3df; /* Default map background color */
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact-map-link iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; 
    pointer-events: none; /* Agar klik diteruskan ke tautan a */
    filter: saturate(1.1) contrast(1.05); 
}
.contact-map-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 2px 8px rgba(255,255,255,0.3);
    border-color: var(--marigold);
}
.map-overlay {
    position: absolute; inset: 0; 
    background: rgba(0, 0, 0, 0.05); /* Overlay sangat tipis agar peta asli sangat jelas */
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: background 0.4s ease;
}
.contact-map-link:hover .map-overlay { background: rgba(0, 0, 0, 0.25); }

.map-btn-float {
    background: rgba(28, 38, 32, 0.65);
    backdrop-filter: blur(15px) saturate(150%); -webkit-backdrop-filter: blur(15px) saturate(150%);
    padding: 16px 28px; border-radius: 50px;
    display: flex; align-items: center; gap: 14px;
    border: 1px solid rgba(255,255,255,0.15); border-top: 1px solid rgba(255,255,255,0.4); border-left: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 2px 5px rgba(255,255,255,0.3), inset 0 -3px 5px rgba(0,0,0,0.3);
    color: var(--text-light); font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 1.05rem; letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.contact-map-link:hover .map-btn-float { transform: scale(1.05) translateY(-5px); border-color: var(--marigold); }
.map-btn-float i { font-size: 1.5rem; color: var(--marigold); }

@media (max-width: 768px) {
    .contact-list { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { background-color: #11160F; padding: 70px 0 34px 0; text-align: center; border-top: 1px solid rgba(247,241,228,0.04); }
.footer-logo { font-size: 1.4rem; font-weight: 700; letter-spacing: 0.25em; margin-bottom: 14px; color: var(--text-light); }
.footer-logo span { color: var(--marigold); }
.footer-tagline { color: var(--text-mute-l); font-style: italic; font-family: 'Fraunces', serif; font-size: 1.15rem; margin-bottom: 24px; }
.footer-meta { display: flex; justify-content: center; gap: 28px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-meta a { color: var(--text-mute-l); font-size: 0.85rem; letter-spacing: 0.06em; transition: 0.25s; }
.footer-meta a:hover { color: var(--marigold); }
.copyright { color: #4C5950; font-size: 0.85rem; font-family: 'Space Mono', monospace; }

/* ============================================================
   1.5 PROMOS SECTION
   ============================================================ */
.promos-section { 
    padding: 10px 0 80px 0; 
    background-color: var(--paper); 
    position: relative; 
    overflow: hidden; 
}
.promos-section::before {
    content: ''; position: absolute; top: -100px; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(231,162,60,0.12) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.promos-section::after {
    content: ''; position: absolute; bottom: -100px; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(76,89,80,0.08) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 0;
}
.promos-section .container {
    position: relative;
    z-index: 1;
}
.promos-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.promo-card-public {
    position: relative;
    width: 290px;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    /* Bayangan menyebar yang kuat saat diam, memberikan efek 3D solid */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 8px 15px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #000;
    aspect-ratio: 4/5;
    will-change: transform, box-shadow;
}
.promo-card-public:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0,0,0,0.4), 0 15px 30px rgba(0,0,0,0.2);
}
.promo-card-public img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.promo-card-public:hover img {
    transform: scale(1.05);
}
.promo-glass-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px) saturate(120%);
    -webkit-backdrop-filter: blur(4px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    /* Bayangan di bawah kaca agar kaca terlihat mengambang di atas gambar */
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.5), 0 10px 20px rgba(0,0,0,0.2);
    text-align: center;
    color: #fff;
}
.promo-glass-overlay h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* --- MOBILE NAVBAR & HAMBURGER MENU --- */
.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1001; /* Above mobile menu */
    transition: color 0.3s ease;
}
.menu-toggle i {
    display: inline-block;
    transform: rotate(0deg); /* Start horizontal */
    transition: transform 0.5s ease-in-out;
}
.menu-toggle.open i {
    transform: rotate(90deg); /* Become vertical */
}
nav.scrolled .menu-toggle {
    color: var(--ink);
}

/* Nav blending when menu is open */
nav.menu-active {
    background: linear-gradient(to bottom, rgba(247,241,228,0.98), rgba(247,241,228,0.95)) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}
nav.menu-active .logo-main, nav.menu-active .menu-toggle {
    color: var(--ink) !important;
}
nav.menu-active .nav-tag {
    color: var(--text-muted) !important;
}
nav.menu-active .logo-main span {
    color: var(--marigold-d) !important;
}

.mobile-menu {
    position: absolute; top: 100%; left: 0; width: 100%; height: auto;
    background: linear-gradient(to bottom, rgba(247,241,228,0.95), rgba(247,241,228,0.9));
    backdrop-filter: blur(25px) saturate(180%); -webkit-backdrop-filter: blur(25px) saturate(180%);
    z-index: 1000;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    padding: 0; max-height: 0; overflow: hidden;
    opacity: 0; pointer-events: none;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out, padding 0.5s ease-in-out;
    border-bottom-left-radius: 24px; border-bottom-right-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.mobile-menu.open { 
    opacity: 1; pointer-events: auto; 
    max-height: 380px; padding: 30px 0 40px 0; 
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.mobile-nav-links a { 
    color: var(--ink); font-size: 1.25rem; font-family: 'Work Sans', sans-serif;
    font-weight: 700; letter-spacing: 0.05em; text-transform: none; 
    text-shadow: 1px 1px 0 rgba(255,255,255,1), 2px 3px 5px rgba(0,0,0,0.15);
}
.mobile-book-btn { 
    font-size: 1.1rem; padding: 14px 32px; 
    font-weight: 700; letter-spacing: 0.05em; text-transform: capitalize;
    color: var(--marigold-d) !important;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.8);
    background: rgba(28, 38, 32, 0.05) !important;
    border: 1px solid rgba(28, 38, 32, 0.15) !important;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.18), 0 5px 10px rgba(0,0,0,0.08), inset 0 2px 4px rgba(255, 255, 255, 0.9), inset 0 -2px 4px rgba(0,0,0,0.05) !important;
}

/* ============================================================
   ANIMATIONS & RESPONSIVE
   ============================================================ */
.animate-on-scroll { opacity: 0; transform: translateY(40px) scale(0.98); filter: blur(8px); transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .stamp { animation: none; }
}

@media (max-width: 1024px) {
    .hero h1 { font-size: clamp(2.6rem, 9vw, 4rem); }
    .profile-layout, .contact-layout { flex-direction: column; text-align: center; }
    .profile-images { min-height: 420px; margin-top: 0; width: 100%; }
    .signature { justify-content: center; }
    
    /* MOBILE UNIFIED LAYOUT */
    .unified-service-section { padding: 50px 0; }
    .unified-grid, .unified-grid.reverse { flex-direction: column; gap: 0; }
    .unified-img { width: 92%; margin: 0 auto; border-radius: 16px; border-width: 6px; }
    .unified-img img { height: 320px; border-radius: 10px; }
    .unified-img::after { border-radius: 16px; inset: -6px; }
    .unified-content { width: 88%; margin-top: -35px; margin-left: auto; margin-right: auto; padding: 35px 25px; border-radius: 24px; text-align: center; }
    .contact-item { text-align: left; }
    .stamp { width: 130px; height: 130px; top: 18%; right: 5%; }
    .badge-founder { right: 2%; }
}

@media (max-width: 768px) {
    .nav-links, .nav-book-btn { display: none; }
    .menu-toggle { display: block; margin-right: 5px; }
    .logo-img { margin-left: -24px; height: 85px; }
    .logo .logo-main { font-size: 0.95rem; }
    .hero h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
    .hero p { font-size: 1.05rem; }
    .giant-text { font-size: clamp(2.6rem, 14vw, 3.6rem); }
    .slide-card { width: 210px; min-width: 210px; height: 310px; border-radius: 20px; }
    .slide-card::after { border-radius: 20px; }
    .glass-text { margin: 12px; padding: 12px 14px; border-radius: 16px; }
    .glass-text h3 { font-size: 0.95rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .glass-text span { font-size: 0.75rem; }
    .stop-num { top: 12px; left: 12px; width: 38px; height: 38px; font-size: 0.7rem; }
    .slider-btn { display: none; }
    .contact-layout { padding: 32px; }
    .stamp { display: none; }
    .badge-founder { width: 90px; height: 90px; bottom: 6%; right: 2%; }
    .split-stamp { width: 76px; height: 76px; }
}

/* ============================================================
   LANGUAGE TOGGLE (iOS LIQUID GLASS)
   ============================================================ */
.lang-toggle-wrapper {
    position: fixed; bottom: 30px; left: 30px; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}
.btn-lang-glass {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(24px) saturate(200%); -webkit-backdrop-filter: blur(24px) saturate(200%);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1), inset 0 1px 2px rgba(255,255,255,0.6);
    color: var(--ink); font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-lang-glass:hover {
    transform: translateY(-3px); background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), inset 0 1px 2px rgba(255,255,255,0.8);
}
.btn-lang-glass:active {
    transform: translateY(1px);
}
.lang-icon-img { width: 22px; height: 16px; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.2); object-fit: cover; }
.lang-text { letter-spacing: 0.05em; margin-top: 1px; }

@media (max-width: 768px) {
    .lang-toggle-wrapper { bottom: 20px; left: 20px; }
    .btn-lang-glass { padding: 8px 14px; font-size: 0.8rem; }
    .lang-icon-img { width: 18px; height: 13px; }
}

/* ============================================================
   PROMO LIGHTBOX MODAL
   ============================================================ */
.promo-lightbox {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.promo-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}
.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.promo-lightbox.active .lightbox-content {
    transform: scale(1);
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: block;
}
.lightbox-close {
    position: absolute;
    top: -45px; right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s;
}
.lightbox-close:hover {
    transform: scale(1.2) rotate(90deg);
}

/* ============================================================
   6. OUR MOMENTS (GALLERY SECTION)
   ============================================================ */
.moments-section {
    position: relative;
    padding: 100px 0 60px 0;
    overflow: hidden;
    z-index: 1;
}
.moments-bg {
    position: absolute; inset: 0;
    background: var(--paper);
    z-index: -2;
}
.moments-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(28,38,32,0.05) 1.2px, transparent 0);
    background-size: 24px 24px; pointer-events: none; z-index: 0;
}
.moments-glass-container {
    background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(25px) saturate(150%); -webkit-backdrop-filter: blur(25px) saturate(150%);
    border-radius: var(--radius-lg); 
    padding: 50px; 
    border: 1px solid rgba(255, 255, 255, 0.6); 
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.08), 
        inset 0 2px 5px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}
.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}
.moment-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    border: 6px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(0) scale(1);
}
.moment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.moment-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25), 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}
.moment-card:hover img {
    transform: scale(1.08);
}
@media (max-width: 768px) {
    .moments-glass-container { padding: 30px 20px; }
    .moments-grid { 
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); 
        gap: 15px;
    }
    .moment-card { border-width: 4px; }
}