/* ── Brand Color System ── */
:root {
    /* ── 5 Brand Colors ── */
    --orange:        #FD7E14;
    --orange-light:  #FF9A40;
    --orange-pale:   #FFF3E8;
    --pink:          #E83E8C;
    --pink-light:    #F472B6;
    --pink-pale:     #FCE7F3;
    --cyan:          #06B6D4;
    --cyan-light:    #22D3EE;
    --cyan-pale:     #ECFEFF;
    --purple:        #8B5CF6;
    --purple-light:  #A78BFA;
    --purple-pale:   #F5F3FF;
    --teal:          #14B8A6;
    --teal-light:    #2DD4BF;
    --teal-pale:     #F0FDFA;

    /* ── Aliases used throughout ── */
    --gold:        var(--orange);
    --gold-light:  var(--orange-light);
    --gold-pale:   var(--orange-pale);
    --teal-dark:   #0e9688;
    --rose:        var(--pink);
    --accent:      var(--orange);
    --accent-dark: #e06000;

    /* ── Neutrals ── */
    --cream:       #faf8f5;
    --white:       #ffffff;
    --dark:        #0d1118;
    --dark-2:      #111827;
    --text:        #1a1a2e;
    --muted:       #6b7280;
    --border:      #e5e7eb;
    --surface:     #ffffff;
    --radius-sm:   12px;
    --radius-md:   20px;
    --radius-lg:   28px;
    --radius-xl:   36px;
    font-family: Inter, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    color-scheme: light;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Layout ── */
.container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}
.section { padding: 5rem 0; }

/* ── Typography ── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}
.section-eyebrow.pink   { color: var(--pink); }
.section-eyebrow.cyan   { color: var(--cyan); }
.section-eyebrow.purple { color: var(--purple); }
.section-eyebrow.teal   { color: var(--teal); }
.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}
.section-copy {
    color: var(--muted);
    max-width: 640px;
    font-size: 1.05rem;
}
.section-copy.center { margin: 0 auto; text-align: center; }
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.28s ease;
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(253,126,20,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(253,126,20,0.4); }
.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); }
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    transition: all 0.25s;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   HEADER & NAV
══════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0.4rem;
    left: 1rem;
    right: 1rem;
    z-index: 999;
    padding: 0.9rem 1.4rem;
    border-radius: 26px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow: 0 16px 50px rgba(12,53,88,0.14);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.88);
    box-shadow: 0 8px 32px rgba(12,53,88,0.12);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: var(--teal);
}
.site-logo {
    width: 44px;
    height: auto;
    border-radius: 14px;
    background: rgba(255,255,255,0.92);
    padding: 0.4rem;
    box-shadow: 4px 4px 12px rgba(15,23,42,0.1), -4px -4px 12px rgba(255,255,255,0.95);
}
.site-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    align-items: center;
}
.site-nav a {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #334155;
    padding: 0.65rem 1.1rem;
    /* border-radius: 999px; */
    transition: all 0.25s ease;
    white-space: nowrap;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active,
.site-nav a.nav-active {
    /* border-radius: 5px;
    background: #ffffff;
    box-shadow: 8px 8px 16px #cecece, -8px -8px 16px #f2f2f2; */
    color: #1a1a2e;
    font-weight: 700;

    border-radius: 27px;
background: #FBF9F7;
box-shadow:  9px 9px 20px #d3d1cf,
             -9px -9px 20px #ffffff;
}

/* ══════════════════════════════════════════
   HAMBURGER & MOBILE DRAWER
══════════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.45rem 0.5rem;
    border-radius: 12px;
    transition: background 0.2s;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #334155;
    border-radius: 2px;
    transition: all 0.38s cubic-bezier(0.4,0,0.2,1);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(190,24,93,0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-drawer {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 1001;
    width: min(300px, 82vw);
    background: linear-gradient(160deg, #fff0f6 0%, #fdf4ff 50%, #fce7f3 100%);
    border-right: 1px solid rgba(236,72,153,0.18);
    box-shadow: 14px 0 55px rgba(236,72,153,0.18), 4px 0 20px rgba(139,92,246,0.1);
    transform: translateX(-100%);
    transition: transform 0.48s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.nav-drawer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 1.4rem 1.2rem;
    border-bottom: 1px solid rgba(236,72,153,0.12);
}
.nav-drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #be185d;
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.nav-drawer-brand img {
    width: 38px;
    border-radius: 12px;
    background: rgba(236,72,153,0.08);
    padding: 0.3rem;
    box-shadow: 0 2px 8px rgba(236,72,153,0.15);
}
.nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(236,72,153,0.07);
    border: 1px solid rgba(236,72,153,0.2);
    color: #be185d;
    font-size: 1.3rem;
    line-height: 1;
    transition: all 0.22s;
}
.nav-close:hover { background: rgba(236,72,153,0.15); color: #9d174d; }
.nav-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1rem;
    gap: 0.2rem;
    flex: 1;
}
.nav-drawer-nav a {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.72rem;
    font-weight: 400;
    color: #6b7280;
    padding: 0.95rem 1.25rem;
    border-radius: 14px;
    border-left: 2px solid transparent;
    letter-spacing: 0.04em;
    transition: color 0.25s, background 0.25s, border-color 0.25s, padding-left 0.25s, opacity 0.35s, transform 0.35s;
    opacity: 0;
    transform: translateX(-16px);
}
.nav-drawer-nav a:hover { color: #be185d; background: rgba(236,72,153,0.07); border-left-color: rgba(236,72,153,0.5); padding-left: 1.6rem; }
.nav-drawer-nav a.active { color: #9d174d; background: rgba(236,72,153,0.1); border-left-color: #ec4899; padding-left: 1.6rem; font-weight: 700; }
.nav-drawer-footer { padding: 1.1rem 1.4rem 1.4rem; border-top: 1px solid rgba(236,72,153,0.1); }
.nav-drawer-footer p { font-size: 0.65rem; color: #c084fc; letter-spacing: 0.1em; text-transform: uppercase; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    overflow: hidden;
    padding-top: 5rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
#hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
}
.hero-orb-1 {
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(253,126,20,0.22), transparent 70%);
    top: -20%; left: -10%;
    animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(20,184,166,0.18), transparent 70%);
    bottom: -15%; right: -5%;
    animation: orbFloat 15s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(139,92,246,0.16), transparent 70%);
    top: 25%; right: 15%;
    animation: orbFloat 10s ease-in-out infinite 3s;
}
@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33%  { transform: translate(30px,-20px) scale(1.05); }
    66%  { transform: translate(-20px,30px) scale(0.95); }
}

/* ── Floating 3D shapes ── */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-shape {
    position: absolute;
    will-change: transform;
    border-radius: 20px;
}
.hero-shape-1 {
    width: 120px; height: 120px;
    top: 18%; right: 10%;
    background: linear-gradient(135deg, rgba(253,126,20,0.1), rgba(251,191,36,0.05));
    border: 1.5px solid rgba(253,126,20,0.2);
    transform: rotate(15deg);
    box-shadow: 8px 8px 24px rgba(253,126,20,0.1), -4px -4px 12px rgba(255,255,255,0.9);
}
.hero-shape-2 {
    width: 85px; height: 85px;
    top: 58%; right: 7%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(20,184,166,0.06));
    border: 1.5px solid rgba(20,184,166,0.2);
    box-shadow: 6px 6px 18px rgba(20,184,166,0.1), -4px -4px 10px rgba(255,255,255,0.9);
}
.hero-shape-3 {
    width: 60px; height: 60px;
    top: 38%; right: 26%;
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(196,130,251,0.05));
    border: 1.5px solid rgba(139,92,246,0.2);
    transform: rotate(45deg);
    border-radius: 12px;
    box-shadow: 5px 5px 14px rgba(139,92,246,0.1), -3px -3px 8px rgba(255,255,255,0.9);
}
.hero-shape-4 {
    width: 180px; height: 180px;
    top: 8%; right: 20%;
    border-radius: 50%;
    border: 1px solid rgba(253,126,20,0.1);
    background: transparent;
}
.hero-shape-5 {
    width: 45px; height: 45px;
    bottom: 22%; right: 16%;
    border-radius: 50%;
    background: rgba(6,182,212,0.09);
    border: 1px solid rgba(6,182,212,0.18);
    box-shadow: 4px 4px 10px rgba(6,182,212,0.12);
}
.hero-shape-6 {
    width: 70px; height: 70px;
    top: 70%; right: 34%;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(20,184,166,0.07), transparent);
    border: 1px solid rgba(20,184,166,0.12);
    transform: rotate(-20deg);
}

/* ── Hero content ── */
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 4rem 0 6rem;
    transform-style: preserve-3d;
    will-change: transform;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
}
.hero-left  { display: flex; flex-direction: column; }
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

/* ══════════════════════════════════════════
   HERO GLASS BOX
══════════════════════════════════════════ */
.hgb-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
}

/* ── Main glass card ── */
.hgb-card {
    position: relative;
    border-radius: 32px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(28px) saturate(1.8);
    -webkit-backdrop-filter: blur(28px) saturate(1.8);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.35) inset,
        0 3px 0 rgba(255,255,255,0.60) inset,
        0 -1px 0 rgba(255,255,255,0.20) inset,
        0 40px 90px rgba(0,0,0,0.18),
        0 12px 32px rgba(0,0,0,0.10),
        0 0 0 6px rgba(255,255,255,0.08);
    overflow: hidden;
    animation: hgbFloat 7s ease-in-out infinite;
}
@keyframes hgbFloat {
    0%, 100% { transform: translateY(0px) rotateX(1deg) rotateY(-2deg); }
    50%       { transform: translateY(-14px) rotateX(-1deg) rotateY(2deg); }
}

/* ── Shimmer sweeps across the glass frame ── */
.hgb-shimmer {
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(105deg,
        transparent 25%,
        rgba(255,255,255,0.40) 50%,
        transparent 75%);
    animation: hgbShimmer 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}
@keyframes hgbShimmer {
    0%   { left: -120%; }
    55%  { left: 160%; }
    100% { left: 160%; }
}

/* ── Corner ornaments ── */
.hgb-corner {
    position: absolute;
    width: 18px; height: 18px;
    border-color: rgb(255, 255, 255);
    border-style: solid;
    pointer-events: none;
    z-index: 2;
}
.hgb-c-tl { top: 32px; left: 32px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.hgb-c-tr { top: 32px; right: 32px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.hgb-c-bl { bottom: 32px; left: 32px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.hgb-c-br { bottom: 32px; right: 32px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* ── Image inside the glass frame ── */
.hgb-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 20px;
    box-shadow:
        0 4px 20px rgba(0,0,0,0.22),
        0 0 0 1px rgba(255,255,255,0.18) inset;
}
.hgb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.hgb-card:hover .hgb-img { transform: scale(1.05); }

/* ── Subtle sheen on image surface ── */
.hgb-glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.12) 0%,
        transparent 50%,
        rgba(0,0,0,0.06) 100%
    );
    pointer-events: none;
    border-radius: 20px;
}

@keyframes hgbGemPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.25); }
}
.hgb-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 8px var(--teal);
    animation: pulse 2.5s ease-in-out infinite;
    flex-shrink: 0;
}


/* ── Floating gems outside card ── */
.hgb-gem-float {
    position: absolute;
    pointer-events: none;
    animation: hgbGemFloat ease-in-out infinite;
}
.hgb-gf-1 { top: -18px; left: 18%; font-size: 1rem; color: rgba(253,126,20,0.70); animation-duration: 5s; animation-delay: 0s; }
.hgb-gf-2 { top: -14px; right: 20%; font-size: 0.75rem; color: rgba(139,92,246,0.65); animation-duration: 6s; animation-delay: -2s; }
.hgb-gf-3 { bottom: -16px; right: 30%; font-size: 0.85rem; color: rgba(20,184,166,0.60); animation-duration: 7s; animation-delay: -3.5s; }
@keyframes hgbGemFloat {
    0%, 100% { transform: translateY(0) rotate(0deg);  opacity: 0.65; }
    50%       { transform: translateY(-12px) rotate(18deg); opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right  { display: none; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(232,62,140,0.08), rgba(139,92,246,0.08));
    border: 1px solid rgba(232,62,140,0.22);
    color: var(--pink);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    box-shadow: 4px 4px 12px rgba(155,147,135,0.15), -3px -3px 8px rgba(255,255,255,0.9);
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold-light);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.8); } }
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1.8rem;
}
.hero-line {
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    display: block;
}
.hero-line:first-child { font-size: clamp(2.2rem, 5vw, 4rem); }
.hero-line-accent {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    background: linear-gradient(90deg, var(--pink), var(--orange), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-line-sub {
    font-size: clamp(1rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--muted);
    font-family: Inter, sans-serif;
    letter-spacing: 0.02em;
}
.hero-sub {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 580px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.btn-ghost {
    background: #eae6e0;
    color: var(--text);
    border: none;
    box-shadow: 5px 5px 12px rgba(155,147,135,0.45), -4px -4px 10px rgba(255,255,255,0.95);
    backdrop-filter: none;
}
.btn-ghost:hover {
    box-shadow: inset 4px 4px 10px rgba(155,147,135,0.45), inset -4px -4px 8px rgba(255,255,255,0.9);
    color: var(--teal);
    background: #eae6e0;
    transform: none;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: none;
    padding: 0;
    box-shadow: none;
}
.hero-stat {
    text-align: center;
    padding: 0;
}
.hero-stat-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 125px;
    height: 125px;
    background: #eae6e0;
    border-radius: 22px;
    box-shadow:
        8px 8px 18px rgba(155, 147, 135, 0.55),
        -6px -6px 14px rgba(255, 255, 255, 1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-stat:hover .hero-stat-inner {
    box-shadow:
        inset 5px 5px 12px rgba(155, 147, 135, 0.5),
        inset -4px -4px 10px rgba(255, 255, 255, 0.95);
    transform: scale(0.97);
}
.hero-stat strong {
    display: block;
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}
.hero-stat:nth-child(1) strong { color: var(--orange); }
.hero-stat:nth-child(3) strong { color: var(--pink); }
.hero-stat:nth-child(5) strong { color: var(--teal); }
.hero-stat span {
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}
.hero-stat-divider { display: none; }
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-mouse {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 26px; height: 42px;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 13px;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(14px); } }

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats-section {
    padding: 3.5rem 0;
    background: transparent;
    border-bottom: 1px solid var(--border);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    animation-delay: var(--delay, 0s);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.stat-card:nth-child(1)::before { background: var(--orange); }
.stat-card:nth-child(2)::before { background: var(--pink); }
.stat-card:nth-child(3)::before { background: var(--cyan); }
.stat-card:nth-child(4)::before { background: var(--purple); }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,23,42,0.08); }
.stat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.stat-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    display: inline;
}
.stat-card:nth-child(1) .stat-number,
.stat-card:nth-child(1) .stat-suffix { color: var(--orange); }
.stat-card:nth-child(2) .stat-number,
.stat-card:nth-child(2) .stat-suffix { color: var(--pink); }
.stat-card:nth-child(3) .stat-number,
.stat-card:nth-child(3) .stat-suffix { color: var(--cyan); }
.stat-card:nth-child(4) .stat-number,
.stat-card:nth-child(4) .stat-suffix { color: var(--purple); }
.stat-suffix {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.4rem;
    font-weight: 700;
    display: inline;
}
.stat-label {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-section { background: transparent; }
.about-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
/* ── Staggered portrait image layout ── */
.about-img-wrap {
    display: flex;
    gap: 1.6rem;
    align-items: flex-start;
    height: 560px;
}

.aig-portrait {
    flex: 1;
    min-width: 0;
    border-radius: 24px;
    overflow: visible;
    position: relative;
}
.aig-portrait-1 { margin-top: 0;    height: 530px; }
.aig-portrait-2 { margin-top: 50px; height: 468px; }

/* ── Glassmorphism picture frame ── */
.aig-glass-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    /* Layered glass border */
    border: 2px solid rgba(255,255,255,0.75);
    outline: 6px solid rgba(255,255,255,0.12);
    outline-offset: 0;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(18px) saturate(1.8) brightness(1.04);
    -webkit-backdrop-filter: blur(18px) saturate(1.8) brightness(1.04);
    box-shadow:
        /* top-lit inner highlight */
        0 2px 0 rgba(255,255,255,0.80) inset,
        /* left rim */
        2px 0 0 rgba(255,255,255,0.30) inset,
        /* depth shadows */
        0 40px 90px rgba(0,0,0,0.20),
        0 12px 32px rgba(0,0,0,0.12),
        /* outer glow halo */
        0 0 0 10px rgba(255,255,255,0.07),
        0 0 40px rgba(253,126,20,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.aig-portrait:hover .aig-glass-frame {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 2px 0 rgba(255,255,255,0.85) inset,
        2px 0 0 rgba(255,255,255,0.35) inset,
        0 56px 110px rgba(0,0,0,0.24),
        0 18px 40px rgba(0,0,0,0.14),
        0 0 0 12px rgba(255,255,255,0.09),
        0 0 60px rgba(253,126,20,0.10);
}

.aig-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}
.aig-portrait:hover .aig-photo { transform: scale(1.06); }

/* ── Multi-layer glass sheen ── */
.aig-sheen {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(255,255,255,0.32) 0%,
            rgba(255,255,255,0.10) 30%,
            transparent 55%,
            rgba(0,0,0,0.06) 100%),
        linear-gradient(to bottom,
            rgba(255,255,255,0.14) 0%,
            transparent 40%);
    pointer-events: none;
    border-radius: inherit;
}

/* ── Frosted glass label pill ── */
.aig-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.28);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 999px;
    padding: 0.32rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    white-space: nowrap;
    box-shadow:
        0 4px 18px rgba(0,0,0,0.16),
        0 1px 0 rgba(255,255,255,0.6) inset;
}
.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin: 1.8rem 0 2rem; }
.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: #eae6e0;
    border: none;
    box-shadow:
        8px 8px 18px rgba(155,147,135,0.55),
        -6px -6px 14px rgba(255,255,255,1);
    transition: box-shadow 0.3s, transform 0.3s;
}
.pillar:hover {
    box-shadow:
        inset 5px 5px 12px rgba(155,147,135,0.5),
        inset -4px -4px 10px rgba(255,255,255,0.95);
    transform: scale(0.98);
}
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar strong { display: block; font-weight: 700; margin-bottom: 0.15rem; color: var(--text); }
.pillar span { font-size: 0.9rem; color: var(--muted); }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-section { background: transparent; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: #eae6e04c;
    /* border: none; */
            border: 2px solid white;

    box-shadow:
        8px 8px 24px rgba(155,147,135,0.55),
        -8px -8px 24px rgba(255,255,255,1);
    transition: box-shadow 0.35s;
    transform-style: preserve-3d;
    will-change: transform;
    animation-delay: var(--delay, 0s);
    overflow: hidden;
}
/* Top accent colour bar */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--icon-color, var(--gold)), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}
/* Glass glint — light reflection across top half */
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 52%;
    background: linear-gradient(
        158deg,
        rgba(255,255,255,0.48) 0%,
        rgba(255,255,255,0.14) 50%,
        transparent 100%
    );
    border-radius: var(--radius-xl) var(--radius-xl) 60% 60%;
    pointer-events: none;
    z-index: 1;
}
.service-card:hover {
    box-shadow:
        inset 6px 6px 14px rgba(155,147,135,0.5),
        inset -5px -5px 12px rgba(255,255,255,0.95);
}
.service-card:hover::before { opacity: 0; }
/* Icon well — inset pressed into the surface */
.service-icon-wrap {
    position: relative;
    z-index: 2;
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: #eae6e0;
    box-shadow:
        inset 4px 4px 10px rgba(155,147,135,0.5),
        inset -3px -3px 8px rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.service-icon-wrap svg { width: 26px; height: 26px; stroke: var(--icon-color, var(--gold)); }
.service-card h3 {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text);
}
.service-card p {
    position: relative;
    z-index: 2;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
}
.service-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: var(--gold-pale);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process-section { background: transparent; }
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 4.5rem;
}

/* Gradient connecting line */
.process-line {
    position: absolute;
    top: calc(4.5rem + 32px);
    left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple), var(--teal));
    box-shadow: 0 0 10px rgba(232,62,140,0.25);
    z-index: 0;
    transform-origin: left center;
}

/* Neumorphic card */
.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 1.5rem 2rem;
    border-radius: var(--radius-xl);
    background: #eae6e0;
    border: none;
    box-shadow:
        10px 10px 24px rgba(155,147,135,0.55),
        -8px -8px 18px rgba(255,255,255,1);
    transition: box-shadow 0.35s;
    transform-style: preserve-3d;
    will-change: transform;
    animation-delay: var(--delay, 0s);
    overflow: visible;
    opacity: 0; /* GSAP reveals */
}
/* Glass glint overlay */
.process-step::after {
    content: '';
    position: absolute;
    inset: 0;
    height: 52%;
    background: linear-gradient(158deg,
        rgba(255,255,255,0.45) 0%,
        rgba(255,255,255,0.12) 50%,
        transparent 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 60% 60%;
    pointer-events: none;
    z-index: 0;
}
.process-step:hover {
    box-shadow:
        inset 6px 6px 14px rgba(155,147,135,0.5),
        inset -5px -5px 12px rgba(255,255,255,0.95);
}

/* Floating number badge */
.process-num {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    color: #fff;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.process-step:nth-child(2) .process-num {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    box-shadow: 0 0 0 5px #eae6e0, 0 0 0 8px rgba(253,126,20,0.22), 0 10px 28px rgba(253,126,20,0.45);
}
.process-step:nth-child(3) .process-num {
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
    box-shadow: 0 0 0 5px #eae6e0, 0 0 0 8px rgba(232,62,140,0.22), 0 10px 28px rgba(232,62,140,0.45);
}
.process-step:nth-child(4) .process-num {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    box-shadow: 0 0 0 5px #eae6e0, 0 0 0 8px rgba(139,92,246,0.22), 0 10px 28px rgba(139,92,246,0.45);
}
.process-step:nth-child(5) .process-num {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    box-shadow: 0 0 0 5px #eae6e0, 0 0 0 8px rgba(20,184,166,0.22), 0 10px 28px rgba(20,184,166,0.45);
}
.process-icon {
    position: relative; z-index: 1;
    font-size: 2.4rem;
    margin: 1.2rem 0 1rem;
}
.process-step h3 {
    position: relative; z-index: 1;
    font-size: 1rem; font-weight: 700;
    margin-bottom: 0.5rem; color: var(--text);
}
.process-step p {
    position: relative; z-index: 1;
    font-size: 0.88rem; color: var(--muted); line-height: 1.65;
}

/* ══════════════════════════════════════════
   VENUES
══════════════════════════════════════════ */
.venues-section { background: transparent; }
.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Card shell ── neumorphic base */
.venue-card {
    border-radius: var(--radius-xl);
    background: #eae6e0;
    box-shadow: 10px 10px 24px rgba(155,147,135,0.55), -8px -8px 18px rgba(255,255,255,1);
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 0; /* GSAP reveals */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.venue-card:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 14px 14px 34px rgba(155,147,135,0.6), -10px -10px 24px rgba(255,255,255,1);
}

/* ── IMAGE AREA ── */
.venue-img {
    position: relative;
    height: 215px;
    background: var(--venue-grad);
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.venue-img-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.6s ease;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.venue-img-scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.venue-card:hover .venue-img-scene { transform: scale(1.08); }
.venue-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.04) 0%,
        rgba(0,0,0,0.22) 60%,
        rgba(0,0,0,0.55) 100%
    );
    z-index: 2;
}
/* glass sheen across top of image */
.venue-img::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 48%;
    background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 60%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

/* floating tag — top right */
.venue-tag-float {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 4;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(10px) saturate(1.4);
    -webkit-backdrop-filter: blur(10px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
}

/* floating capacity — bottom left */
.venue-capacity-float {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.38rem;
    background: rgba(0,0,0,0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.92);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
}

/* ── CONTENT AREA ── */
.venue-content {
    padding: 1.45rem 1.55rem 1.6rem;
}
.venue-content h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}
.venue-loc {
    display: flex;
    align-items: center;
    gap: 0.32rem;
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.venue-loc svg { flex-shrink: 0; color: var(--orange); }
.venue-desc {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.68;
    margin-bottom: 1.1rem;
}
.venue-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(155,147,135,0.45) 0%, transparent 80%);
    margin-bottom: 1rem;
}
.venue-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
}
.venue-pill {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.24rem 0.68rem;
    border-radius: 999px;
    background: #eae6e0;
    box-shadow: 3px 3px 7px rgba(155,147,135,0.5), -2px -2px 5px rgba(255,255,255,0.95);
    color: var(--muted);
    transition: box-shadow 0.25s, color 0.25s;
}
.venue-pill:hover {
    box-shadow: inset 2px 2px 5px rgba(155,147,135,0.45), inset -2px -2px 4px rgba(255,255,255,0.9);
    color: var(--dark);
}

/* ══════════════════════════════════════════
   DREAM VENUE CTA — 3D LUXURY SECTION
══════════════════════════════════════════ */

/* ── Section shell ── */
.dvc-section {
    position: relative;
    padding: 6rem 1.5rem;
    overflow: hidden;
    background: var(--cream);
    isolation: isolate;
}

/* ── BG layer — parallax background ── */
.dvc-bg-layer {
    position: absolute;
    inset: -30% 0;
    background: var(--cream);
    will-change: transform;
    z-index: 1;
}

/* ── Orbs — hidden on cream background ── */
.dvc-orb { display: none; }

/* ── Gold dust particles ── */
.dvc-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}
.dvc-particle {
    --i: 1;
    position: absolute;
    width: calc(2px + (var(--i) * 0.35px));
    height: calc(2px + (var(--i) * 0.35px));
    left: calc((var(--i) * 4.3%) + 2%);
    top: calc((var(--i) * 4.1%) + 5%);
    border-radius: 50%;
    background: rgba(200,140,30, calc(0.25 + (var(--i) * 0.02)));
    animation: dvcParticle calc(5s + (var(--i) * 0.7s)) ease-in-out infinite;
    animation-delay: calc(var(--i) * -0.38s);
    box-shadow: 0 0 5px rgba(220,160,40,0.35);

}
@keyframes dvcParticle {
    0%   { transform: translateY(0) scale(1);    opacity: 0.4; }
    50%  { transform: translateY(-22px) scale(1.6); opacity: 0.9; }
    100% { transform: translateY(0) scale(1);    opacity: 0.4; }
}

/* ── Stage — flat, no 3D tilt ── */
.dvc-stage {
    position: relative;
    z-index: 10;
    max-width: 860px;
    margin: 0 auto;
}
.dvc-scene { position: relative; }

/* ── Depth layers — flat positioning ── */
.dvc-depth-layer { position: absolute; inset: 0; pointer-events: none; will-change: transform; }
.dvc-depth-back  { z-index: 0; }
.dvc-depth-front { z-index: 20; }

.dvc-diamond {
    position: absolute;
    font-size: 1.4rem;
    color: rgba(200,140,30,0.22);
    animation: dvcSpin 18s linear infinite;
}
.dvc-diamond-1 { top: 8%; left: 5%; animation-direction: normal; }
.dvc-diamond-2 { bottom: 10%; right: 6%; animation-direction: reverse; animation-duration: 22s; }
@keyframes dvcSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.dvc-line-h, .dvc-line-v {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(200,140,30,0.18) 50%, transparent 100%);
    border-radius: 999px;
}
.dvc-line-h { top: 50%; left: 0; right: 0; height: 1px; }
.dvc-line-v { left: 50%; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(200,140,30,0.18) 50%, transparent 100%); }

/* ── Floating gems (front layer) ── */
.dvc-float-gem {
    position: absolute;
    font-size: 1.1rem;
    animation: dvcFloatGem 5s ease-in-out infinite;
    pointer-events: none;
}
.dvc-fg-1 { top: -18px; left: 12%; color: rgba(200,140,30,0.75); animation-delay: 0s; }
.dvc-fg-2 { top: -22px; right: 15%; color: rgba(139,92,246,0.55); animation-delay: -1.8s; font-size: 0.85rem; }
.dvc-fg-3 { bottom: -16px; right: 28%; color: rgba(200,140,30,0.55); animation-delay: -3s; }
@keyframes dvcFloatGem {
    0%, 100% { transform: translateY(0) rotate(0deg);   opacity: 0.6; }
    50%       { transform: translateY(-12px) rotate(20deg); opacity: 1; }
}

/* ── Main card — neumorphism on #faf8f5 ── */
.dvc-card {
    position: relative;
    border-radius: 28px;
    padding: 3.5rem 4rem;
    background: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.64);
    box-shadow:
        14px 14px 34px rgba(185,178,165,0.58),
        -12px -12px 28px rgba(255,255,255,1);
    overflow: hidden;
    z-index: 5;
    text-align: center;
    transition: box-shadow 0.35s ease, transform 0.65s cubic-bezier(.03,.98,.52,.99);
    will-change: transform;
    cursor: default;
}
.dvc-card:hover {
    box-shadow:
        18px 18px 44px rgba(185,178,165,0.65),
        -14px -14px 34px rgba(255,255,255,1);
}

/* ── Shimmer — hidden for neumorphism ── */
.dvc-shimmer { display: none; }

/* ── Corner ornaments ── */
.dvc-corner {
    position: absolute;
    width: 22px; height: 22px;
    border-color: rgba(200,140,30,0.45);
    border-style: solid;
    transition: transform 0.12s ease;
}
.dvc-corner-tl { top: 14px; left: 14px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.dvc-corner-tr { top: 14px; right: 14px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.dvc-corner-bl { bottom: 14px; left: 14px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.dvc-corner-br { bottom: 14px; right: 14px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* ── Glow ring — cursor spotlight ── */
.dvc-glow-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,140,30,0.18) 0%, transparent 65%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    left: 50%;
    top: 50%;
}

/* ── Card inner content ── */
.dvc-card-inner { position: relative; z-index: 5; }

/* ── Eyebrow ── */
.dvc-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(180,120,20,0.85);
    margin-bottom: 1.4rem;
    transition: transform 0.1s ease;
}
.dvc-gem {
    font-size: 0.65rem;
    animation: dvcGemPulse 3s ease-in-out infinite;
}
@keyframes dvcGemPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.3); }
}

/* ── Heading ── */
.dvc-heading {
    font-family: 'Cinzel Decorative', serif;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 1.6rem;
    transition: transform 0.08s ease;
}
.dvc-heading-line-1 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: rgba(30,20,10,0.55);
    letter-spacing: 0.06em;
}
.dvc-heading-line-2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    background: linear-gradient(135deg,
        #f5d78e 0%, #e8aa30 28%,
        #fff4c2 50%, #d4900c 72%,
        #f5d78e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dvcGoldShift 5s linear infinite;
    letter-spacing: 0.04em;
}
.dvc-heading-line-3 {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 400;
    color: rgba(30,20,10,0.42);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}
@keyframes dvcGoldShift {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── Ornament divider ── */
.dvc-divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
    transition: transform 0.1s ease;
}
.dvc-div-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180,120,20,0.45), transparent);
}
.dvc-div-diamond {
    color: rgba(180,120,20,0.80);
    font-size: 0.9rem;
    animation: dvcGemPulse 3s ease-in-out infinite 1.5s;
}

/* ── Body copy ── */
.dvc-copy {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: rgba(30,20,10,0.52);
    line-height: 1.8;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    transition: transform 0.12s ease;
}

/* ── Stats row ── */
.dvc-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin-bottom: 2.4rem;
}
.dvc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}
.dvc-stat-num {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #f5d78e, #d4900c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.dvc-stat-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(30,20,10,0.42);
}
.dvc-stat-sep {
    color: rgba(200,140,30,0.35);
    font-size: 1.4rem;
    font-weight: 100;
    margin-top: -4px;
}

/* ── CTA Button ── */
.dvc-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0d0a1a;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dvc-btn-bg {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f5d78e 0%, #e8aa30 40%, #d4900c 70%, #f5d78e 100%);
    background-size: 200% auto;
    animation: dvcGoldShift 3s linear infinite;
}
.dvc-btn-border {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.50);
    pointer-events: none;
}
.dvc-btn-shine {
    position: absolute;
    top: 0; left: -60%;
    width: 40%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
    animation: dvcBtnShine 3.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes dvcBtnShine {
    0%   { left: -60%; }
    60%  { left: 130%; }
    100% { left: 130%; }
}
.dvc-btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dvc-btn-arrow {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.dvc-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        6px 6px 16px rgba(185,178,165,0.5),
        -4px -4px 12px rgba(255,255,255,0.9),
        0 8px 24px rgba(210,140,20,0.22);
}
.dvc-btn:hover .dvc-btn-arrow { transform: translateX(5px); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .dvc-card { padding: 2.5rem 1.8rem; }
    .dvc-stats-row { gap: 1rem; }
    .dvc-stat-sep { display: none; }
}
@media (max-width: 480px) {
    .dvc-section { padding: 4rem 1rem; }
    .dvc-card { padding: 2rem 1.4rem; }
    .dvc-stats-row { flex-wrap: wrap; gap: 1rem 2rem; }
}

/* ══════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════ */
.portfolio-section { background: transparent; }
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.pf-btn {
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s;
}
.pf-btn:hover, .pf-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 14px rgba(253,126,20,0.3);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.portfolio-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    animation-delay: var(--delay, 0s);
}
.portfolio-card.hidden { display: none; }
.portfolio-visual {
    position: absolute;
    inset: 0;
    background: var(--pg);
    transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-visual { transform: scale(1.06); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,0.85) 0%, rgba(10,15,30,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
    transform: translateY(8px);
    transition: transform 0.35s ease;
}
.portfolio-card:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-cat {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    width: fit-content;
}
.portfolio-overlay h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.portfolio-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section { background: transparent; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--border);
    animation-delay: var(--delay, 0s);
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,23,42,0.08); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    quotes: "\201C" "\201D";
}
.testimonial-card blockquote::before { content: open-quote; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.6rem; margin-right: 0.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--av-color, var(--teal));
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.92rem; font-weight: 700; }
.testimonial-author span { font-size: 0.8rem; color: var(--muted); }

/* ══════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════ */
.partners-section {
    padding: 4rem 0;
    background: transparent;
}
.partners-section .section-eyebrow { color: var(--orange); }
.partners-section .section-title { color: var(--text); margin-bottom: 2.5rem; }
.partners-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.partner-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
}
.partner-item:hover {
    background: var(--orange-pale);
    border-color: rgba(253,126,20,0.35);
    color: var(--orange);
    transform: translateY(-2px);
}
.partner-icon { font-size: 1.2rem; }

/* ══════════════════════════════════════════
   CONTACT — 3D NEUMORPHIC FORM
══════════════════════════════════════════ */
.contact-section { background: transparent; }

.cf-perspective {
    max-width: 760px;
    margin: 0 auto;
}

/* ── Raised neumorphic card ── */
.cf-card {
    position: relative;
    background: var(--cream);
    border-radius: 32px;
    padding: 3rem 3.5rem;
    box-shadow:
        16px 16px 40px rgba(185,178,165,0.60),
        -14px -14px 32px rgba(255,255,255,1);
    transition: box-shadow 0.4s ease;
}
.cf-card:hover {
    box-shadow:
        20px 20px 50px rgba(185,178,165,0.65),
        -16px -16px 38px rgba(255,255,255,1);
}

/* ── Corner ornaments ── */
.cf-corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: rgba(200,140,30,0.40);
    border-style: solid;
    pointer-events: none;
}
.cf-corner-tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.cf-corner-tr { top: 16px; right: 16px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.cf-corner-bl { bottom: 16px; left: 16px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.cf-corner-br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* ── Form layout ── */
.cf-form { display: flex; flex-direction: column; gap: 1.25rem; }
.cf-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ── Label ── */
.cf-label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
.cf-label em { color: var(--orange); font-style: normal; }

/* ── Inputs — inset neumorphic ── */
.cf-input {
    background: var(--cream);
    border: none;
    outline: none;
    border-radius: 14px;
    padding: 0.9rem 1.15rem;
    font-size: 0.95rem;
    color: var(--text);
    box-shadow:
        inset 5px 5px 12px rgba(185,178,165,0.55),
        inset -4px -4px 10px rgba(255,255,255,0.95);
    transition: box-shadow 0.25s ease;
    width: 100%;
}
.cf-input::placeholder { color: rgba(107,114,128,0.55); }
.cf-input:focus {
    box-shadow:
        inset 6px 6px 14px rgba(185,178,165,0.60),
        inset -4px -4px 10px rgba(255,255,255,0.95),
        0 0 0 3px rgba(253,126,20,0.18);
}
.cf-textarea { min-height: 140px; resize: vertical; }

/* ── Submit button — raised neumorphic + gold gradient ── */
.cf-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
        8px 8px 20px rgba(185,178,165,0.55),
        -6px -6px 16px rgba(255,255,255,1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-top: 0.4rem;
}
.cf-submit-bg {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f5d78e 0%, #e8aa30 40%, #d4900c 70%, #f5d78e 100%);
    background-size: 200% auto;
    animation: dvcGoldShift 4s linear infinite;
}
.cf-submit-shine {
    position: absolute;
    top: 0; left: -60%;
    width: 40%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.30) 50%, transparent 70%);
    animation: dvcBtnShine 4s ease-in-out infinite;
    pointer-events: none;
}
.cf-submit-label {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #0d0a1a;
}
.cf-submit:hover {
    transform: translateY(-2px);
    box-shadow:
        10px 10px 26px rgba(185,178,165,0.60),
        -8px -8px 20px rgba(255,255,255,1),
        0 8px 24px rgba(210,140,20,0.25);
}
.cf-submit:active {
    transform: translateY(1px);
    box-shadow:
        inset 4px 4px 10px rgba(185,178,165,0.45),
        inset -3px -3px 8px rgba(255,255,255,0.85);
}

/* ── Message banner ── */
.message-banner {
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: #eff6ff;
    color: #1e3a8a;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow:
        inset 3px 3px 8px rgba(185,178,165,0.35),
        inset -2px -2px 6px rgba(255,255,255,0.8);
}
.message-banner.success { background: #f0fdf4; color: #166534; }
.message-banner.error   { background: #fff1f2; color: #9f1239; }

/* ── Responsive ── */
@media (max-width: 640px) {
    .cf-card  { padding: 2rem 1.5rem; }
    .cf-row   { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
    position: relative;
    background: #eae6e0;
    color: #334155;
    box-shadow:
        inset 0 10px 28px rgba(155, 147, 135, 0.22),
        inset 0 -6px 16px rgba(255, 255, 255, 0.75);
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple), var(--cyan), var(--teal));
    border-radius: 0 0 4px 4px;
}
.footer-inner { padding-top: 0.25rem; }
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(155, 147, 135, 0.2);
}
.footer-brand { max-width: 340px; }
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-logo-link img {
    width: 42px;
    border-radius: 12px;
    background: #eae6e0;
    padding: 0.35rem;
    box-shadow: 5px 5px 12px rgba(155, 147, 135, 0.55), -4px -4px 10px rgba(255, 255, 255, 0.95);
}
.footer-logo-link strong {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teal);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: var(--muted); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #eae6e0;
    box-shadow: 5px 5px 10px rgba(155, 147, 135, 0.55), -4px -4px 9px rgba(255, 255, 255, 0.95);
    color: var(--muted);
    border: none;
    transition: all 0.25s;
}
.footer-social a:hover {
    box-shadow: inset 4px 4px 9px rgba(155, 147, 135, 0.55), inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    color: var(--gold);
}
.footer-links-group { display: flex; gap: 1.25rem; flex: 1; flex-wrap: nowrap; justify-content: flex-end; }
.footer-column { flex: 1; min-width: 0; }
.footer-contact-list li span, .footer-contact-list li a { word-break: break-word; overflow-wrap: break-word; }
.footer-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(217, 119, 6, 0.25);
    display: inline-block;
}
.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-column li a, .footer-column li {
    font-size: 0.88rem;
    color: var(--muted);
    transition: color 0.2s, padding-left 0.2s;
}
.footer-column li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact-list li a:hover { padding-left: 0; color: var(--gold); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.4rem 0;
    border-top: 1px solid rgba(155, 147, 135, 0.18);
    background: rgba(155, 147, 135, 0.04);
    border-radius: 0 0 12px 12px;
}
.footer-bottom p { font-size: 0.84rem; color: #94a3b8; }

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.in-view, .reveal-left.in-view, .reveal-right.in-view {
    opacity: 1;
    transform: translate(0);
}

/* ══════════════════════════════════════════
   HAMBURGER RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .site-nav  { display: none; }
    .hamburger { display: flex; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 960px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .venues-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .process-line { display: none; }
    .footer-links-group { justify-content: flex-start; }
}
@media (max-width: 640px) {
    .section { padding: 3.5rem 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .venues-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stat-inner { width: 108px; height: 108px; }
    .hero-stat strong { font-size: 1.3rem; }
    .footer-links-group { gap: 1.25rem; flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .hero-line:first-child { font-size: 1.9rem; }
    .hero-line-accent { font-size: 1.7rem; }
    .section-title { font-size: 1.4rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 940px) {
    .footer-top { flex-direction: column; }
    .footer-brand { max-width: 100%; }
    .footer-links-group { justify-content: flex-start; }
}

/* ══════════════════════════════════════════
   SITE LOADER — 3D Premium Intro
══════════════════════════════════════════ */
#site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, #faf8f5 30%, #f4f0ff 65%, #fff7f0 100%);
    overflow: hidden;
    clip-path: inset(0% 0% 0% 0%);
    will-change: clip-path;
}

/* Atmospheric glow orbs */
.sl-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: sl-drift 8s ease-in-out infinite alternate;
}
.sl-orb-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(253,126,20,0.28) 0%, transparent 70%);
    top: -160px; right: -130px;
}
.sl-orb-2 {
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%);
    bottom: -200px; left: -130px;
    animation-delay: -4s;
}
.sl-orb-3 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(20,184,166,0.25) 0%, transparent 70%);
    top: 35%; right: 10%;
    animation-delay: -2.5s;
}
@keyframes sl-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(28px, -40px) scale(1.1); }
}

/* Content stack */
.sl-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ── Logo container with spinning rings ── */
.sl-cube-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2rem;
}
.sl-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    background:
        linear-gradient(#faf8f5, #faf8f5) padding-box,
        conic-gradient(from 0deg,
            var(--orange), var(--pink), var(--purple),
            var(--cyan), var(--teal), var(--orange)) border-box;
    animation: sl-spin-cw 2.4s linear infinite;
}
.sl-ring-2 {
    inset: 10px;
    border-width: 1.5px;
    background:
        linear-gradient(#faf8f5, #faf8f5) padding-box,
        conic-gradient(from 180deg,
            var(--teal), var(--purple), var(--pink),
            var(--orange), var(--teal)) border-box;
    animation: sl-spin-ccw 3.4s linear infinite;
    opacity: 0.55;
}
@keyframes sl-spin-cw  { to { transform: rotate(360deg);  } }
@keyframes sl-spin-ccw { to { transform: rotate(-360deg); } }

/* ── Spinning Tarangi logo ── */
.sl-logo-wrap {
    perspective: 700px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sl-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: sl-logo-spin 3s linear infinite, sl-logo-glow 2.5s ease-in-out infinite;
}
@keyframes sl-logo-spin {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}
@keyframes sl-logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 14px rgba(232,62,140,0.5))
                drop-shadow(0 0 28px rgba(253,126,20,0.35));
    }
    50% {
        filter: drop-shadow(0 0 22px rgba(139,92,246,0.6))
                drop-shadow(0 0 44px rgba(6,182,212,0.4));
    }
}

/* ── Brand name ── */
.sl-letters {
    display: flex;
    gap: 0.1em;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}
.sl-letters::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
    pointer-events: none;
    animation: sl-shine 0.85s ease-in-out 1.55s forwards;
}
@keyframes sl-shine {
    from { left: -100%; }
    to   { left: 250%; }
}
.sl-letter {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
    display: inline-block;
    opacity: 0;
}
.sl-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0;
}

/* ── Progress ── */
.sl-progress-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: min(280px, 72vw);
}
.sl-progress-track {
    width: 100%;
    height: 2px;
    background: rgba(155,147,135,0.22);
    border-radius: 999px;
    overflow: hidden;
}
.sl-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple), var(--cyan), var(--teal));
}
.sl-counter {
    font-family: 'Cinzel Decorative', serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: var(--muted);
    opacity: 0;
}

/* ══════════════════════════════════════════════
   FEATURED COLLECTION  (.fc-*)
══════════════════════════════════════════════ */
.fc-section {
    background: var(--cream);
    padding: 5rem 0 4rem;
}

/* Grid */
.fc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.2rem;
    margin: 2.5rem 0 2rem;
}
.fc-card {
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 6px 6px 18px rgba(185,178,165,0.45), -4px -4px 12px rgba(255,255,255,0.9);
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s;
}
.fc-card-tall {
    grid-row: span 2;
}
.fc-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 10px 14px 32px rgba(185,178,165,0.55), -6px -6px 18px rgba(255,255,255,1);
}

/* Image */
.fc-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.fc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.fc-card:hover .fc-img-wrap img {
    transform: scale(1.07);
}

/* Hover overlay */
.fc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,10,6,0.82) 0%, rgba(13,10,6,0.28) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.4rem;
    opacity: 0;
    transition: opacity 0.32s ease;
}
.fc-card:hover .fc-overlay {
    opacity: 1;
}
.fc-overlay-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.fc-overlay-content h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

/* Category pill */
.fc-cat-pill {
    display: inline-block;
    padding: 0.22rem 0.75rem;
    border-radius: 999px;
    background: rgba(253,126,20,0.88);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
}

/* Location */
.fc-loc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.82);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* View button */
.fc-view-btn {
    font-size: 0.78rem;
    font-weight: 600;
    color: #FD7E14;
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
}

/* CTA row */
.fc-cta {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* ── Lightbox ── */
.fc-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,8,5,0.78);
    backdrop-filter: blur(10px) saturate(1.4);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
.fc-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}
.fc-lb-close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.fc-lb-close:hover { background: rgba(255,255,255,0.22); }

.fc-lb-card {
    background: var(--cream);
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 880px;
    width: 100%;
    max-height: 90vh;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.fc-lb-img {
    overflow: hidden;
    max-height: 90vh;
}
.fc-lb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fc-lb-info {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
}
.fc-lb-info h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.25rem;
    color: #1a1209;
    line-height: 1.3;
}
.fc-lb-loc, .fc-lb-date {
    font-size: 0.85rem;
    color: #7a6f63;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.fc-lb-desc {
    font-size: 0.9rem;
    color: #5a5048;
    line-height: 1.7;
    flex: 1;
}

@media (max-width: 700px) {
    .fc-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .fc-lb-card {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    .fc-lb-img { max-height: 260px; }
}
