/* =====================================================================
   ChiChi Biryani — Design System
   Cinematic dark & luxe. Forest green · cream · gold.
   ===================================================================== */

:root {
    /* Brand palette (from logo) */
    --green-900: #07251a;
    --green-800: #0c3324;
    --green-700: #0f3d2e;
    --green-600: #14503c;
    --green-500: #1c6b4f;
    --cream:     #f5e9d0;
    --cream-soft:#faf3e3;
    --ivory:     #fffaf0;
    --gold-300:  #e3c878;
    --gold:      #c9a24b;
    --gold-600:  #b08930;
    --bronze:    #8a6a2b;
    --ink:       #06180f;

    /* Semantic */
    --bg:        var(--green-900);
    --bg-alt:    var(--green-800);
    --text:      var(--cream);
    --text-dim:  rgba(245,233,208,0.62);
    --accent:    var(--gold);

    --font-serif: "Cormorant Garamond", Georgia, serif;
    --font-sans:  "Manrope", system-ui, -apple-system, sans-serif;
    --font-script:"Allura", cursive;

    --container: 1280px;
    --radius: 14px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------- Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--green-900); }

/* --------------------------------------------------- Typography scale */
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
.display { font-size: clamp(2.8rem, 8vw, 6.5rem); }
.h-xl    { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
.h-lg    { font-size: clamp(2rem, 4vw, 3.2rem); }
.h-md    { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
p { color: var(--text-dim); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.35rem); color: rgba(245,233,208,0.82); }

.script { font-family: var(--font-script); color: var(--gold-300); font-weight: 400; }
.gold-text { color: var(--gold); }

/* Eyebrow / kicker */
.kicker {
    display: inline-flex; align-items: center; gap: .7rem;
    font-family: var(--font-sans); font-size: .78rem; font-weight: 600;
    letter-spacing: .32em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.2rem;
}
.kicker::before { content: ""; width: 38px; height: 1px; background: var(--gold); opacity: .7; }
.kicker.center::after { content: ""; width: 38px; height: 1px; background: var(--gold); opacity: .7; }

/* ----------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem); }
.section { padding: clamp(5rem, 11vw, 9rem) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.maxw-640 { max-width: 640px; }
.maxw-760 { max-width: 760px; }

/* ----------------------------------------------------------- Buttons */
.btn {
    position: relative; display: inline-flex; align-items: center; gap: .65rem;
    padding: 1rem 2.1rem; border-radius: 100px; font-weight: 600; font-size: .92rem;
    letter-spacing: .02em; overflow: hidden; transition: color .4s var(--ease), transform .4s var(--ease);
    will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold { background: linear-gradient(135deg, var(--gold-300), var(--gold)); color: var(--green-900); }
.btn--gold::after {
    content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--ivory), var(--gold-300));
    opacity: 0; transition: opacity .45s var(--ease); z-index: -1;
}
.btn--gold:hover::after { opacity: 1; }
.btn--gold:hover { transform: translateY(-2px); }

.btn--ghost { border: 1px solid rgba(201,162,75,.45); color: var(--cream); }
.btn--ghost::after {
    content: ""; position: absolute; inset: 0; background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out-expo); z-index: -1;
}
.btn--ghost:hover { color: var(--green-900); border-color: var(--gold); }
.btn--ghost:hover::after { transform: scaleX(1); }
.btn--lg { padding: 1.15rem 2.5rem; font-size: 1rem; }

/* Magnetic wrapper sets transform via JS */
.magnetic { display: inline-block; }

/* ----------------------------------------------- Section heading block */
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head .h-lg { margin-bottom: 1rem; }
.sec-head p { max-width: 560px; }
.sec-head.center { text-align: center; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

/* Decorative divider */
.divider-orn { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold); margin: 1rem 0; }
.divider-orn span { height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-orn span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-orn svg { width: 22px; height: 22px; opacity: .85; }

/* =====================================================================
   LOADER
   ===================================================================== */
#loader {
    position: fixed; inset: 0; z-index: 9999; background: var(--green-900);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
#loader .loader-logo { width: clamp(120px, 22vw, 190px); opacity: 0; }
#loader .loader-bar-wrap { width: min(280px, 60vw); height: 2px; background: rgba(245,233,208,.14); margin-top: 2.2rem; overflow: hidden; border-radius: 2px; }
#loader .loader-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-300), var(--gold)); }
#loader .loader-count { margin-top: 1rem; font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold-300); letter-spacing: .1em; }
#loader .loader-tagline { margin-top: .4rem; font-size: .72rem; letter-spacing: .35em; text-transform: uppercase; color: var(--text-dim); }
.loader-panels { position: fixed; inset: 0; z-index: 9998; display: flex; pointer-events: none; }
.loader-panels .panel { flex: 1; background: var(--green-800); transform: translateY(0); }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 1.4rem 0; transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled { padding: .7rem 0; background: rgba(7,37,26,.82); backdrop-filter: blur(14px); box-shadow: 0 10px 40px rgba(0,0,0,.35); }
.nav .nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav .brand { display: inline-flex; align-items: center; padding: .5rem .9rem; border-radius: 100px; background: rgba(245,233,208,.96); box-shadow: 0 6px 22px rgba(0,0,0,.28); transition: background .4s var(--ease), padding .4s var(--ease); }
.nav .brand img { height: clamp(38px, 5vw, 48px); width: auto; transition: height .4s var(--ease); display: block; }
.nav.scrolled .brand { padding: .35rem .8rem; }
.nav.scrolled .brand img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a { font-size: .9rem; font-weight: 500; letter-spacing: .02em; position: relative; padding: .3rem 0; color: var(--cream); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .35s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-300); }
/* Refined nav CTA — slimmer, outlined gold that fills on hover (no bulky gradient) */
.nav-cta.btn { margin-left: .8rem; padding: .62rem 1.35rem; font-size: .82rem; letter-spacing: .04em; border-radius: 100px; background: transparent; border: 1.5px solid var(--gold); color: var(--gold-300); }
.nav-cta.btn::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--gold-300), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease-out-expo); z-index: -1; }
.nav-cta.btn:hover { color: var(--green-900); border-color: var(--gold); transform: translateY(0); }
.nav-cta.btn:hover::after { transform: scaleX(1); }
.nav-cta.btn svg { width: 14px; height: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; z-index: 1100; }
.nav-toggle span { height: 2px; width: 100%; background: var(--cream); transition: .35s var(--ease); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: 0; z-index: 1050; background: var(--green-900);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
    clip-path: circle(0% at calc(100% - 40px) 40px); transition: clip-path .7s var(--ease-out-expo);
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 40px) 40px); }
.mobile-menu a { font-family: var(--font-serif); font-size: 2rem; color: var(--cream); opacity: 0; transform: translateY(20px); }
.mobile-menu.open a { opacity: 1; transform: translateY(0); transition: opacity .5s var(--ease) calc(.25s + var(--i,0) * .06s), transform .5s var(--ease) calc(.25s + var(--i,0) * .06s); }

@media (max-width: 980px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero-bg::after { content: ""; position: absolute; inset: 0; z-index: 3; background:
    linear-gradient(to right, rgba(7,37,26,.96) 0%, rgba(7,37,26,.78) 45%, rgba(7,37,26,.45) 100%),
    linear-gradient(to top, rgba(7,37,26,.95), transparent 55%); }

/* Cinematic firelit hero slideshow */
.hero--cinematic .hero-bg::before { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
    background: radial-gradient(120% 80% at 70% 90%, rgba(176,137,48,.28), transparent 60%);
    mix-blend-mode: screen; }
.hero-slideshow { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 120%; object-fit: cover; }
.hero-slide.active img { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.0) translateY(0); } to { transform: scale(1.12) translateY(-2%); } }
@media (prefers-reduced-motion: reduce) { .hero-slide.active img { animation: none; } }
.hero-content { position: relative; z-index: 5; max-width: 760px; }
.hero .script { font-size: clamp(2.2rem, 6vw, 3.8rem); display: block; line-height: 1; margin-bottom: -.4rem; }
.hero .display { margin-bottom: 1.6rem; }
.hero .lead { margin-bottom: 2.4rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* reveal words */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; will-change: transform; }

.scroll-cue { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .6rem; color: var(--text-dim); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; z-index: 5; }
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scrollcue 1.8s var(--ease) infinite; }
@keyframes scrollcue { 0% { top: -50%; } 100% { top: 100%; } }

/* Marquee */
.marquee { overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(201,162,75,.18); border-bottom: 1px solid rgba(201,162,75,.18); padding: 1.3rem 0; background: var(--green-800); }
.marquee-track { display: inline-flex; gap: 3rem; will-change: transform; }
.marquee-track span { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--cream); opacity: .85; display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track span::after { content: "✦"; color: var(--gold); font-size: 1rem; }

/* =====================================================================
   SERVICE / FEATURE CARDS
   ===================================================================== */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.service-card {
    position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
    border: 1px solid rgba(201,162,75,.16); isolation: isolate;
}
.service-card .sc-img { position: absolute; inset: 0; z-index: -2; }
.service-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(7,37,26,.96) 12%, rgba(7,37,26,.35) 70%, rgba(7,37,26,.15)); transition: background .5s; }
.service-card:hover .sc-img img { transform: scale(1.08); }
.service-card .sc-num { font-family: var(--font-serif); font-size: .9rem; color: var(--gold); margin-bottom: .6rem; letter-spacing: .1em; }
.service-card h3 { margin-bottom: .7rem; color: var(--ivory); }
.service-card p { font-size: .92rem; color: rgba(245,233,208,.78); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .6s var(--ease), opacity .5s var(--ease), margin .5s var(--ease); }
.service-card:hover p { max-height: 180px; opacity: 1; }

/* =====================================================================
   STATS / COUNTERS
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 1.5rem 1rem; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(201,162,75,.25); }
@media (max-width: 720px) { .stat::after { display: none !important; } }
.stat .num { font-family: var(--font-serif); font-size: clamp(2.6rem, 6vw, 4.2rem); color: var(--gold-300); line-height: 1; font-weight: 600; }
.stat .num .suf { color: var(--gold); }
.stat .label { margin-top: .6rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }

/* =====================================================================
   ABOUT / SPLIT
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split--reverse .split-media { order: 2; }
@media (max-width: 900px) { .split--reverse .split-media { order: 0; } }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.6; will-change: transform; }
.split-media .badge {
    position: absolute; bottom: 1.4rem; left: 1.4rem; background: rgba(7,37,26,.85); backdrop-filter: blur(8px);
    border: 1px solid rgba(201,162,75,.3); border-radius: 12px; padding: 1rem 1.3rem; display: flex; gap: 1rem; align-items: center;
}
.split-media .badge .b-num { font-family: var(--font-serif); font-size: 2rem; color: var(--gold-300); line-height: 1; }
.split-media .badge .b-label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); max-width: 90px; }
.feature-list { margin-top: 1.8rem; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; color: rgba(245,233,208,.85); }
.feature-list svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.gallery-filters button { padding: .5rem 1.2rem; border-radius: 100px; font-size: .82rem; font-weight: 600; letter-spacing: .04em; border: 1px solid rgba(201,162,75,.3); color: var(--text-dim); transition: .35s var(--ease); }
.gallery-filters button.active, .gallery-filters button:hover { background: var(--gold); color: var(--green-900); border-color: var(--gold); }

.masonry { columns: 3; column-gap: clamp(.8rem, 2vw, 1.4rem); }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }
.g-item { position: relative; break-inside: avoid; margin-bottom: clamp(.8rem, 2vw, 1.4rem); border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.g-item img { width: 100%; transition: transform .8s var(--ease); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,37,26,.85), transparent 55%); opacity: 0; transition: opacity .45s var(--ease); }
.g-item .g-cap { position: absolute; left: 1.2rem; bottom: 1rem; z-index: 2; transform: translateY(12px); opacity: 0; transition: .45s var(--ease); }
.g-item .g-cap .t { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ivory); }
.g-item .g-cap .c { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-300); }
.g-item:hover img { transform: scale(1.07); }
.g-item:hover::after { opacity: 1; }
.g-item:hover .g-cap { transform: translateY(0); opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 5000; background: rgba(4,16,11,.95); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 0; pointer-events: none; transition: opacity .4s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox .lb-close { position: absolute; top: 2rem; right: 2rem; width: 48px; height: 48px; border: 1px solid rgba(245,233,208,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }

/* =====================================================================
   MENU
   ===================================================================== */
.menu-cat { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.menu-cat-head { display: flex; align-items: center; gap: 1.4rem; margin-bottom: 1.6rem; }
.menu-cat-head .thumb { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.menu-cat-head h3 { color: var(--ivory); }
.menu-cat-head .line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(201,162,75,.5), transparent); }
.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: .4rem 2.5rem; }
@media (max-width: 700px) { .menu-items { grid-template-columns: 1fr; } }
.menu-items li { display: flex; align-items: baseline; gap: .8rem; padding: .7rem 0; border-bottom: 1px dashed rgba(201,162,75,.18); }
.menu-items li .dish { font-family: var(--font-serif); font-size: 1.25rem; color: var(--cream); }
.menu-items li .dot { flex: 1; }
.menu-items li .tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.menu-note { text-align: center; font-style: italic; color: var(--text-dim); margin-top: 2rem; font-family: var(--font-serif); font-size: 1.15rem; }

/* =====================================================================
   VIDEOS
   ===================================================================== */
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; cursor: pointer; border: 1px solid rgba(201,162,75,.18); }
.video-card iframe { width: 100%; height: 100%; border: 0; }
.video-card .v-thumb { position: absolute; inset: 0; }
.video-card .v-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.video-card:hover .v-thumb img { transform: scale(1.06); }
.video-card .v-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(7,37,26,.45); }
.video-card .play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 78px; height: 78px; border-radius: 50%; background: rgba(201,162,75,.92); display: flex; align-items: center; justify-content: center; z-index: 2; transition: transform .4s var(--ease); }
.video-card:hover .play { transform: translate(-50%,-50%) scale(1.12); }
.video-card .play svg { width: 26px; height: 26px; color: var(--green-900); margin-left: 4px; }
.video-card .v-meta { position: absolute; left: 1.3rem; bottom: 1.1rem; z-index: 2; }
.video-card .v-meta .t { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ivory); }
.video-card .v-meta .d { font-size: .82rem; color: rgba(245,233,208,.75); }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testi-card { background: var(--green-700); border: 1px solid rgba(201,162,75,.18); border-radius: var(--radius); padding: 2.2rem; position: relative; }
.testi-card .quote-mark { font-family: var(--font-serif); font-size: 4rem; color: rgba(201,162,75,.35); line-height: .6; }
.testi-card .stars { color: var(--gold); letter-spacing: .15em; margin: .6rem 0 1rem; }
.testi-card .t-text { font-family: var(--font-serif); font-size: 1.3rem; color: var(--cream); line-height: 1.5; }
.testi-card .t-meta { margin-top: 1.5rem; display: flex; align-items: center; gap: .9rem; }
.testi-card .t-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); display: flex; align-items: center; justify-content: center; color: var(--green-900); font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; }
.testi-card .t-name { font-weight: 600; color: var(--ivory); }
.testi-card .t-event { font-size: .8rem; color: var(--text-dim); }

/* =====================================================================
   FORM / ENQUIRY
   ===================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .55rem; }
.field input, .field select, .field textarea {
    width: 100%; background: rgba(245,233,208,.04); border: 1px solid rgba(201,162,75,.25); border-radius: 10px;
    padding: .95rem 1.1rem; color: var(--cream); font-family: var(--font-sans); font-size: .95rem; transition: border .3s, background .3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(245,233,208,.07); }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,233,208,.35); }
.field select option { background: var(--green-800); }
.field .err { color: #e8a87c; font-size: .78rem; margin-top: .4rem; }

.alert-success { background: rgba(28,107,79,.4); border: 1px solid var(--green-500); border-radius: 10px; padding: 1rem 1.3rem; color: var(--cream); margin-bottom: 1.5rem; display: flex; gap: .8rem; align-items: center; }
.alert-success svg { width: 22px; height: 22px; color: var(--gold-300); flex-shrink: 0; }

.contact-cards { display: grid; gap: 1.2rem; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem; border: 1px solid rgba(201,162,75,.18); border-radius: 12px; background: rgba(245,233,208,.02); }
.contact-card .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(201,162,75,.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .ic svg { width: 22px; height: 22px; color: var(--gold); }
.contact-card .ct-label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.contact-card .ct-val { color: var(--cream); font-size: 1.05rem; }

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.page-hero { position: relative; padding: clamp(9rem, 18vw, 13rem) 0 clamp(4rem, 8vw, 6rem); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 120%; object-fit: cover; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,37,26,.85), rgba(7,37,26,.97)); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: var(--text-dim); margin-top: 1rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { position: relative; overflow: hidden; text-align: center; padding: clamp(4rem, 9vw, 7rem) 0; }
.cta-band-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-bg::after { content: ""; position: absolute; inset: 0; background: rgba(7,37,26,.9); }
.cta-band .container { position: relative; z-index: 2; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--ink); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; border-top: 1px solid rgba(201,162,75,.15); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .f-logo { height: 110px; width: auto; margin-bottom: 1.2rem; }
.footer p { font-size: .92rem; }
.footer h4 { color: var(--gold-300); font-size: 1.1rem; margin-bottom: 1.2rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: .02em; }
.footer-links { display: grid; gap: .7rem; }
.footer-links a { font-size: .92rem; color: var(--text-dim); transition: color .3s, padding .3s; }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer .f-contact li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; font-size: .92rem; color: var(--text-dim); }
.footer .f-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.f-socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.f-socials a { width: 40px; height: 40px; border: 1px solid rgba(201,162,75,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: .35s var(--ease); }
.f-socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.f-socials a:hover svg { color: var(--green-900); }
.f-socials svg { width: 18px; height: 18px; color: var(--gold); transition: color .3s; }
.footer-bottom { border-top: 1px solid rgba(201,162,75,.12); padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: var(--text-dim); }

/* =====================================================================
   FLOATING WHATSAPP + CONTACT BAR
   ===================================================================== */
.float-bar { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 1500; display: flex; flex-direction: column; gap: .8rem; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 26px rgba(0,0,0,.35); transition: transform .35s var(--ease); position: relative; }
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-btn svg { width: 28px; height: 28px; }
.float-btn.wa { background: #25D366; }
.float-btn.wa svg { color: #fff; }
.float-btn.call { background: var(--gold); }
.float-btn.call svg { color: var(--green-900); width: 24px; height: 24px; }
.float-btn .pulse { position: absolute; inset: 0; border-radius: 50%; animation: pulse 2s infinite; }
.float-btn.wa .pulse { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
@keyframes pulse { 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* =====================================================================
   REVEAL ANIMATION HOOKS (GSAP toggles these)
   ===================================================================== */
[data-reveal] { opacity: 0; }
.no-js [data-reveal] { opacity: 1; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    .hero-bg img { height: 100%; }
}
