/* ============================================================
   MAHALAXMI SUPPLIES — Cinematic scroll experience · LIGHT THEME
   Warm paper white · ink navy · brushed gold.
   The hero, the journey band and the footer stay dark on purpose —
   they carry the video cinematics; everything else is light.
   ============================================================ */

:root {
    /* light surfaces */
    --paper: #FAF7F2;
    --paper-2: #FFFFFF;
    --line: rgba(22, 32, 58, 0.10);
    --shadow: 0 12px 40px rgba(22, 32, 58, 0.08);
    /* ink + gold on light */
    --ink: #16203A;
    --ink-2: #1A2744;
    --body-col: #4A5468;
    --muted: #8A90A0;
    --gold: #A8842F;
    --gold-deep: #8F6E24;
    /* dark cinema bands (hero / journey / footer) */
    --band: #10182B;
    --band-deep: #0B1120;
    --cream: #F2EDE4;
    --cream-dim: rgba(242, 237, 228, 0.72);
    --cream-faint: rgba(242, 237, 228, 0.45);
    --gold-bright: #E2C285;
    --gold-band: #C9A961;
    --gold-dim: rgba(201, 169, 97, 0.35);
    --glass-border: rgba(201, 169, 97, 0.18);
    --wa: #25D366;
    --display: 'Anton', 'Arial Narrow', sans-serif;
    --body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 90px; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--body-col);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #fff; }

img { max-width: 100%; height: auto; }
a { color: var(--gold-deep); }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 3000;
    background: var(--gold); color: #fff; padding: 10px 18px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

.inner { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ---------- Film grain — barely-there on light ---------- */
.grain {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 2000; opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

/* ---------- Typography helpers ---------- */
.section-tag {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
}
.section-title {
    font-family: var(--display);
    font-size: clamp(2.2rem, 5.2vw, 4.2rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 22px;
    max-width: 20ch;
}
.section-sub {
    color: var(--body-col); max-width: 66ch; margin-bottom: 48px; font-weight: 400;
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}
.section-sub strong { color: var(--ink); }

/* Kinetic word reveal (JS splits into spans) */
.js .kinetic .kw {
    display: inline-block;
    transform: translateY(110%) rotate(2deg);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
}
.js .kinetic { overflow: hidden; }
.js .kinetic.in .kw { transform: translateY(0) rotate(0); opacity: 1; }

/* Scroll reveal */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1); }
.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .js .reveal, .js .kinetic .kw { transition: none; transform: none; opacity: 1; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 34px; border-radius: 60px;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease, background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-gold {
    background: linear-gradient(120deg, #B8923E, #D9B968);
    color: #fff; box-shadow: 0 6px 26px rgba(168, 132, 47, 0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(168, 132, 47, 0.45); }
.btn-ghost {
    background: transparent; color: var(--ink);
    border: 1.5px solid rgba(22, 32, 58, 0.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
/* ghost buttons that sit on dark surfaces */
.hero .btn-ghost { color: var(--cream); border-color: rgba(242, 237, 228, 0.35); }
.hero .btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

/* ---------- Cards (light) ---------- */
.glass-card {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* ============================================================
   NAVBAR — cream over the dark hero, flips to white glass on scroll
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px clamp(20px, 4vw, 56px);
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px clamp(20px, 4vw, 56px);
    box-shadow: 0 6px 30px rgba(22, 32, 58, 0.10);
}
.nav-logo { text-decoration: none; }
.nav-logo-text {
    font-family: var(--display); font-size: 1.12rem; letter-spacing: 0.14em; color: var(--cream);
    transition: color 0.3s ease;
}
.nav-logo-text span { color: var(--gold-band); }
.navbar.scrolled .nav-logo-text { color: var(--ink); }
.navbar.scrolled .nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
    color: var(--cream-dim); text-decoration: none;
    font-size: 0.76rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    position: relative; transition: color 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--body-col); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1.5px;
    background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: all 0.3s; display: block; }
.navbar.scrolled .nav-toggle span { background: var(--ink); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; inset: 0; background: rgba(250, 247, 242, 0.98);
        flex-direction: column; align-items: center; justify-content: center; gap: 28px;
        transform: translateY(-100%); transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
    }
    .nav-links.open { transform: none; }
    .nav-links a, .navbar.scrolled .nav-links a { font-size: 1rem; color: var(--ink); }
}

/* ============================================================
   HERO — THE ORBIT (stays cinematic dark, hands off to paper)
   ============================================================ */
.hero { position: relative; min-height: 100vh; background: var(--band-deep); }
.js.fx .hero { height: 230vh; }
.hero-sticky {
    position: relative; min-height: 100vh; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.js.fx .hero-sticky { position: sticky; top: 0; height: 100vh; }
.hero-media { position: absolute; inset: 0; }
.hero-poster {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transform-origin: 50% 45%;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.js.fx .hero-canvas { display: block; }
.hero-vignette {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 42%, transparent 30%, rgba(11, 17, 32, 0.5) 78%, rgba(11, 17, 32, 0.85) 100%),
        linear-gradient(180deg, rgba(11, 17, 32, 0.5) 0%, transparent 22%, transparent 66%, rgba(16, 24, 43, 0.9) 100%);
}
.hero-content {
    position: relative; z-index: 3; text-align: center;
    padding: 120px 20px 60px; max-width: 1080px;
}
.hero-eyebrow {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold-band); margin-bottom: 3vh;
}
.hero-h1 { margin-bottom: 2.2vh; }
.hero-mega {
    display: block;
    font-family: var(--display);
    font-size: clamp(3.4rem, 12.5vw, 11.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--cream);
    text-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);
}
.hero-mega .ml { display: inline-block; }
.js .hero-mega .ml {
    opacity: 0; transform: translateY(0.35em) scale(1.06);
    animation: letterIn 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: calc(var(--i) * 70ms + 150ms);
}
@keyframes letterIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .js .hero-mega .ml { animation: none; opacity: 1; transform: none; } }
.hero-h1-tail {
    display: block;
    font-family: var(--body); font-weight: 500;
    font-size: clamp(0.8rem, 1.6vw, 1.02rem);
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--cream-dim);
    margin-top: 2vh;
}
.hero-tagline {
    font-size: clamp(1.15rem, 2.4vw, 1.7rem);
    color: var(--gold-bright);
    font-weight: 300; letter-spacing: 0.02em;
    margin-bottom: 3vh;
}
.hero-tagline em { font-style: italic; }
.hero-trust {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cream-dim); margin-bottom: 3.4vh;
}
.hero-trust i { color: var(--gold-band); font-style: normal; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 3.6vh; }
.hero-answer {
    max-width: 780px; margin: 0 auto; padding: 14px 20px; text-align: left;
    background: rgba(6, 10, 20, 0.72); border: 1px solid var(--gold-dim); border-radius: 12px;
    font-size: clamp(0.86rem, 1.4vw, 0.98rem); line-height: 1.65; color: var(--cream-dim);
}
.hero-answer strong { color: var(--cream); }
.hero-answer a { color: var(--gold-bright); font-weight: 600; }
.hero-scrollcue {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--cream-faint); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.hero-scrollcue span {
    width: 22px; height: 36px; border: 1.5px solid rgba(242, 237, 228, 0.3); border-radius: 12px; position: relative;
}
.hero-scrollcue span::after {
    content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 7px; background: var(--gold-band); border-radius: 3px;
    animation: cueDot 2s infinite;
}
@keyframes cueDot { 0%, 100% { opacity: 1; top: 7px; } 55% { opacity: 0.2; top: 17px; } }

/* ============================================================
   BRAND MARQUEE (light)
   ============================================================ */
.marquee-section { padding: 76px 0 30px; overflow: hidden; position: relative; }
.marquee-label {
    text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 34px;
}
.marquee { position: relative; overflow: hidden; padding: 8px 0; }
.marquee::before, .marquee::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--paper) 0%, transparent 100%); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--paper) 0%, transparent 100%); }
.marquee-track { display: flex; width: max-content; animation: mqScroll var(--mq-dur, 38s) linear infinite; }
.marquee-reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes mqScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .marquee { overflow-x: auto; }
}
.marquee-group { display: flex; }
.mq-item {
    display: flex; align-items: center; justify-content: center;
    min-width: 172px; height: 84px; margin: 0 10px; padding: 16px 26px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 14px; text-decoration: none;
    box-shadow: 0 4px 16px rgba(22, 32, 58, 0.05);
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.3s ease;
}
.mq-item:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 14px 34px rgba(22, 32, 58, 0.14); }
.mq-item img { max-height: 46px; max-width: 124px; width: auto; height: auto; object-fit: contain; }
.mq-item.mq-text {
    font-family: var(--display); font-size: 0.95rem; letter-spacing: 0.06em;
    color: var(--ink); text-transform: uppercase;
}
.marquee-reverse { margin-top: 16px; }

/* ============================================================
   FLAGSHIP (light)
   ============================================================ */
.flagship { padding: 90px 0; }
.flagship .section-title, .flagship .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.flagship .section-tag { text-align: center; }
.flagship-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; perspective: 1200px;
}
.flagship-grid .glass-card {
    padding: 38px 26px; text-align: center; display: flex; flex-direction: column; align-items: center;
    transition: transform 0.25s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d; will-change: transform;
}
.flagship-grid .glass-card:hover { border-color: rgba(168, 132, 47, 0.4); box-shadow: 0 26px 60px rgba(22, 32, 58, 0.14); }
.flagship-grid img { height: 64px; width: auto; max-width: 150px; object-fit: contain; margin-bottom: 22px; }
.card-tag {
    font-size: 0.64rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
}
.flagship-grid h3 {
    font-family: var(--display); font-weight: 400; font-size: 1.5rem; letter-spacing: 0.03em;
    text-transform: uppercase; color: var(--ink); margin-bottom: 12px;
}
.flagship-grid p { font-size: 0.9rem; color: var(--body-col); margin-bottom: 20px; }
.card-cta {
    margin-top: auto; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
    color: var(--gold-deep); text-decoration: none; padding: 10px 20px;
    border: 1px solid rgba(168, 132, 47, 0.4); border-radius: 40px; transition: all 0.3s ease;
}
.card-cta:hover { background: var(--gold); color: #fff; }
@media (max-width: 1020px) { .flagship-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .flagship-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCTS — what we supply (light, imagery)
   ============================================================ */
.products { padding: 40px 0 100px; }

/* ---- Services strip (home services by referral) ---- */
.services-strip { padding: 90px 0; background: var(--cream); border-top: 1px solid rgba(22, 32, 58, 0.08); border-bottom: 1px solid rgba(22, 32, 58, 0.08); }
.services-strip .section-tag, .services-strip .section-title, .services-strip .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.services-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 36px auto 34px; max-width: 760px; }
.services-chips a {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 100px; text-decoration: none;
    background: var(--paper-2); color: var(--ink);
    border: 1px solid rgba(168, 132, 47, 0.35);
    font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
    box-shadow: 0 2px 10px rgba(22, 32, 58, 0.05);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.services-chips a:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 8px 22px rgba(22, 32, 58, 0.10); }
.services-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
@media (max-width: 767px) {
    .services-strip { padding: 64px 0; }
    .services-chips a { padding: 10px 18px; font-size: 0.9rem; }
}
.products .section-tag, .products .section-title, .products .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
    display: flex; flex-direction: column; overflow: hidden; text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(22, 32, 58, 0.14); border-color: rgba(168, 132, 47, 0.35); }
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.product-body { padding: 22px 24px 26px; }
.product-body h3 {
    font-family: var(--display); font-weight: 400; font-size: 1.25rem; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--ink); margin-bottom: 8px;
}
.product-body p { font-size: 0.86rem; color: var(--body-col); margin-bottom: 12px; }
.product-body span {
    font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep);
}
@media (max-width: 1020px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

/* ============================================================
   THE JOURNEY — dark cinema band
   ============================================================ */
.journey { position: relative; }
.journey-intro { padding: 60px 0; text-align: center; }
.journey-intro .section-title, .journey-intro .section-sub { margin-left: auto; margin-right: auto; }
.journey-intro .section-sub em { color: var(--gold-deep); }

.journey-rail {
    position: fixed; left: clamp(10px, 2vw, 30px); top: 50%; transform: translateY(-50%);
    z-index: 500; display: none; opacity: 0; transition: opacity 0.4s ease;
    pointer-events: none; /* indicator only — must never swallow clicks */
}
@media (min-width: 1180px) {
    .js.fx .journey-rail { display: flex; gap: 14px; align-items: stretch; }
}
.journey-rail.on { opacity: 1; }
.rail-line { width: 2px; background: rgba(22, 32, 58, 0.14); border-radius: 2px; position: relative; overflow: hidden; }
.rail-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: linear-gradient(180deg, #B8923E, #D9B968); }
.journey-rail ol { list-style: none; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.journey-rail li {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--muted); transition: color 0.3s ease;
}
.journey-rail li b { display: block; font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.1em; color: inherit; }
.journey-rail li.active { color: var(--gold-deep); }

.stage { position: relative; padding: 70px 0 40px; }
.stage-head {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 60px);
    align-items: center; margin-bottom: 44px;
}
.stage-head-reverse .stage-head-text { order: 2; }
.stage-head-reverse .stage-figure { order: 1; }
.stage-figure { margin: 0; }
.stage-figure img {
    width: 100%; height: auto; display: block; border-radius: 24px;
    box-shadow: 0 24px 60px rgba(22, 32, 58, 0.16);
}
.stage-figure-wide { max-width: 980px; margin: 44px auto 0; }
.stage-body { padding-bottom: 30px; }
.stage-center { text-align: center; padding: 20px 0 40px; }
.stage-kicker {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
}
.stage-kicker b { font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.06em; margin-right: 12px; vertical-align: middle; }
.stage-title {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(1.9rem, 4.4vw, 3.6rem); line-height: 1.05; letter-spacing: 0.01em;
    text-transform: uppercase; color: var(--ink); margin-bottom: 18px; max-width: 22ch;
}
.stage-sub { color: var(--body-col); max-width: 62ch; margin-bottom: 10px; }
.stage-sub.center { margin-left: auto; margin-right: auto; }
.stage-meta {
    display: block; margin-top: 12px; font-size: 0.78rem; letter-spacing: 0.08em;
    color: var(--muted); font-weight: 500;
}
.handover {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(2rem, 6vw, 5rem); line-height: 1.08; text-transform: uppercase;
    color: var(--ink); margin: 0 auto 22px; max-width: 16ch;
}
@media (max-width: 900px) {
    .stage-head { grid-template-columns: 1fr; }
    .stage-head-reverse .stage-head-text { order: 1; }
    .stage-head-reverse .stage-figure { order: 2; }
}

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
.cat { padding: 30px 26px; }
.cat h4 {
    font-family: var(--display); font-weight: 400; font-size: 1.12rem; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px;
}
.cat > p { font-size: 0.84rem; color: var(--muted); margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips a, .chips span {
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em;
    padding: 7px 14px; border-radius: 30px; text-decoration: none;
    border: 1px solid var(--line); color: var(--body-col); background: var(--paper);
    transition: all 0.25s ease;
}
.chips a:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(168, 132, 47, 0.07); }
.chips span { opacity: 0.6; }
@media (max-width: 1020px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cat-grid, .cat-grid-2 { grid-template-columns: 1fr; } }


/* ============================================================
   COUNTERS (light)
   ============================================================ */
.counters { padding: 100px 0; }
.counters-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center;
    border-top: 1px solid rgba(168, 132, 47, 0.22); border-bottom: 1px solid rgba(168, 132, 47, 0.22);
    padding-top: 60px; padding-bottom: 60px;
}
.stat-num {
    font-family: var(--display); font-size: clamp(3rem, 7vw, 5.4rem); color: var(--ink); line-height: 1;
}
.stat-plus { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3rem); color: var(--gold); vertical-align: super; }
.stat-label {
    display: block; margin-top: 10px; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted);
}
@media (max-width: 760px) { .counters-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; } }

/* ============================================================
   WHY (light)
   ============================================================ */
.why { padding: 40px 0 100px; }
.why .section-tag, .why .section-title, .why .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { padding: 34px 28px; transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.why-card:hover { border-color: rgba(168, 132, 47, 0.35); transform: translateY(-4px); box-shadow: 0 22px 50px rgba(22, 32, 58, 0.12); }
.why-card h3 {
    font-family: var(--display); font-weight: 400; font-size: 1.22rem; letter-spacing: 0.03em;
    text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; line-height: 1.25;
}
.why-card p { font-size: 0.9rem; color: var(--body-col); }
.why-closing { text-align: center; margin-top: 60px; }
.why-closing p:first-child {
    font-family: var(--display); font-size: clamp(1.3rem, 3vw, 2.1rem); text-transform: uppercase;
    color: var(--ink); line-height: 1.3; max-width: 30ch; margin: 0 auto 14px;
}
.why-closing .accent { color: var(--gold-deep); }
.why-closing-sub { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICE LISTS (light)
   ============================================================ */
.price-lists { padding: 60px 0 100px; }
.pl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pl-card { padding: 28px 24px; display: flex; flex-direction: column; }
.pl-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pl-head img { max-height: 44px; width: auto; object-fit: contain; }
.pl-head h3 {
    font-family: var(--display); font-weight: 400; font-size: 1.05rem; letter-spacing: 0.03em;
    text-transform: uppercase; color: var(--ink); line-height: 1.2;
}
.boq-mark {
    font-family: var(--display); background: var(--gold); color: #fff;
    padding: 8px 12px; border-radius: 10px; font-size: 1rem; letter-spacing: 0.06em;
}
.pl-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.badge {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 30px; border: 1px solid var(--line); color: var(--muted);
}
.badge-gold { border-color: rgba(168, 132, 47, 0.4); color: var(--gold-deep); }
.pl-card > p { font-size: 0.84rem; color: var(--body-col); margin-bottom: 22px; }
.pl-actions { margin-top: auto; display: flex; gap: 10px; }
.pl-btn {
    flex: 1; text-align: center; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em;
    padding: 12px 10px; border-radius: 40px; text-decoration: none; transition: all 0.3s ease;
}
.pl-dl { background: linear-gradient(120deg, #B8923E, #D9B968); color: #fff; }
.pl-dl:hover { box-shadow: 0 8px 24px rgba(168, 132, 47, 0.4); }
.pl-wa { border: 1.5px solid rgba(30, 160, 90, 0.5); color: #1B8A4E; }
.pl-wa:hover { background: rgba(37, 211, 102, 0.1); }
.pl-boq { border-style: dashed; border-color: rgba(168, 132, 47, 0.45); }
.pl-bulk {
    margin-top: 26px; padding: 30px 34px; display: flex; align-items: center;
    justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.pl-bulk h4 { font-family: var(--display); font-weight: 400; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink); margin-bottom: 6px; }
.pl-bulk p { font-size: 0.88rem; color: var(--body-col); max-width: 56ch; }
@media (max-width: 1020px) { .pl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pl-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICE AREAS (light)
   ============================================================ */
.areas { padding: 40px 0 100px; text-align: center; }
.areas .section-title, .areas .section-sub { margin-left: auto; margin-right: auto; }
.area-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin: 0 auto; }
.pill {
    display: inline-block; padding: 10px 22px; border-radius: 40px; text-decoration: none;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
    border: 1px solid var(--line); color: var(--body-col); background: var(--paper-2);
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
a.pill:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(168, 132, 47, 0.06); }
.pill-hl { border-color: rgba(168, 132, 47, 0.45); color: var(--gold-deep); font-weight: 600; }

/* ============================================================
   TESTIMONIALS (light)
   ============================================================ */
.testimonials { padding: 40px 0 100px; text-align: center; }
.testimonials .section-title { margin-left: auto; margin-right: auto; }
.review-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.review-badge {
    display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
    padding: 12px 22px; border-radius: 60px; border: 1px solid var(--line);
    background: var(--paper-2); box-shadow: var(--shadow); transition: border-color 0.3s ease;
}
.review-badge:hover { border-color: rgba(168, 132, 47, 0.4); }
.rb-logo {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%; font-weight: 800; font-size: 1rem;
}
.rb-g { background: #fff; color: #4285F4; border: 1px solid var(--line); font-family: Arial, sans-serif; }
.rb-jd { background: #F5A623; color: #fff; font-size: 0.8rem; }
.rb-text { text-align: left; }
.rb-text b { display: block; color: var(--gold-deep); font-size: 0.95rem; letter-spacing: 0.04em; }
.rb-text small { color: var(--muted); font-size: 0.72rem; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.t-card { padding: 32px 28px; }
.t-stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 16px; }
.t-card blockquote { font-size: 0.94rem; color: var(--body-col); line-height: 1.7; margin-bottom: 22px; }
.t-card figcaption { display: flex; align-items: center; gap: 12px; }
.t-avatar {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #B8923E, #D9B968);
    color: #fff; font-weight: 700; font-size: 0.85rem;
}
.t-card figcaption b { display: block; color: var(--ink); font-size: 0.92rem; }
.t-card figcaption small { color: var(--muted); font-size: 0.78rem; }
.t-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; }
.brand-akas { margin-top: 30px; font-size: 0.82rem; color: var(--muted); max-width: 70ch; margin-left: auto; margin-right: auto; }
.brand-akas strong { color: var(--body-col); }
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ============================================================
   VISIT (light, real photos as cards — no video)
   ============================================================ */
.visit { position: relative; padding: 40px 0 90px; }
.visit-inner { position: relative; z-index: 2; text-align: center; }
.visit-inner .section-title { margin-left: auto; margin-right: auto; }
.shops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; text-align: left; }
.shop-card { overflow: hidden; }
.shop-img { width: 100%; height: 250px; object-fit: cover; display: block; border-radius: 19px 19px 0 0; }
.shop-body { padding: 26px 26px 30px; }
.shop-body h3 {
    font-family: var(--display); font-weight: 400; font-size: 1.3rem; letter-spacing: 0.03em;
    text-transform: uppercase; color: var(--ink); margin-bottom: 10px;
}
.shop-body > p { font-size: 0.88rem; color: var(--body-col); margin-bottom: 12px; }
.shop-rating { color: var(--gold-deep); font-size: 0.85rem; margin-bottom: 18px; }
.shop-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.shop-actions .btn { padding: 12px 24px; font-size: 0.74rem; }
.visit-note { margin-top: 34px; color: var(--muted); font-size: 0.9rem; }
.map-wrap { position: relative; margin-top: 60px; }
.map-wrap iframe { display: block; }
.map-overlay {
    position: absolute; top: 40px; left: clamp(20px, 6vw, 80px); padding: 26px 30px; max-width: 320px;
    background: rgba(255, 255, 255, 0.94);
}
.map-overlay h3 { font-family: var(--display); font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.map-overlay p { font-size: 0.88rem; color: var(--body-col); margin-bottom: 14px; }
.map-overlay a { font-weight: 600; font-size: 0.85rem; }
@media (max-width: 760px) { .shops-grid { grid-template-columns: 1fr; } .map-overlay { position: static; max-width: none; margin: 0 20px; transform: translateY(-40px); } }

/* ============================================================
   CONTACT + ENQUIRY (light)
   ============================================================ */
.contact { padding: 40px 0 100px; }
.contact .section-tag, .contact .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 26px; }
.contact-card { padding: 34px 32px; }
.cc-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.cc-head img { border-radius: 12px; }
.cc-head h3 {
    font-family: var(--display); font-weight: 400; font-size: 1.2rem; letter-spacing: 0.03em;
    text-transform: uppercase; color: var(--ink); line-height: 1.25;
}
.cc-head h3 small {
    display: block; font-family: var(--body); font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.18em; color: var(--gold); margin-top: 6px;
}
.cc-list div { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(22, 32, 58, 0.06); }
.cc-list div:last-child { border-bottom: none; }
.cc-list dt { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.cc-list dd { font-size: 0.9rem; color: var(--body-col); }
.cc-list dd a { color: var(--gold-deep); text-decoration: none; }
.cc-list dd a:hover { text-decoration: underline; }
.cc-list .mono { font-family: 'Consolas', monospace; letter-spacing: 0.5px; color: var(--ink); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .cc-list div { grid-template-columns: 110px 1fr; } }

.enquiry-wrap { padding: clamp(28px, 4vw, 48px); }
.enquiry-head h3 {
    font-family: var(--display); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.1rem);
    letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px;
}
.enquiry-head p { color: var(--body-col); font-size: 0.92rem; max-width: 72ch; margin-bottom: 30px; }
.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.enquiry-field { display: flex; flex-direction: column; gap: 8px; }
.enquiry-field.full { grid-column: 1 / -1; }
.enquiry-field > label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.enquiry-biztype { display: flex; gap: 12px; flex-wrap: wrap; }
.enquiry-biztype label {
    display: flex; align-items: center; gap: 10px; cursor: pointer;
    padding: 13px 18px; border-radius: 12px; border: 1px solid var(--line);
    font-size: 0.85rem; color: var(--body-col); background: var(--paper);
    transition: all 0.25s ease; flex: 1; min-width: 260px;
}
.enquiry-biztype label:has(input:checked) { border-color: var(--gold); color: var(--ink); background: rgba(168, 132, 47, 0.06); }
.enquiry-biztype input { accent-color: var(--gold); }
.enquiry-field input[type="text"], .enquiry-field input[type="tel"], .enquiry-field input[type="email"],
.enquiry-field select, .enquiry-field textarea {
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 12px; padding: 14px 16px; color: var(--ink);
    font-family: var(--body); font-size: 0.94rem; transition: border-color 0.25s ease;
}
.enquiry-field textarea { min-height: 120px; resize: vertical; }
.enquiry-field input:focus, .enquiry-field select:focus, .enquiry-field textarea:focus {
    outline: none; border-color: var(--gold);
}
.enquiry-submit-row { grid-column: 1 / -1; display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.btn-enquiry {
    display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; border-radius: 50px;
    font-family: var(--body); font-size: 0.84rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s ease;
}
.btn-enquiry.primary { background: var(--wa); color: #06240f; }
.btn-enquiry.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35); }
.btn-enquiry.secondary { background: transparent; border: 1.5px solid rgba(22, 32, 58, 0.25); color: var(--body-col); }
.btn-enquiry.secondary:hover { border-color: var(--gold); color: var(--gold-deep); }
.enquiry-success {
    grid-column: 1 / -1; display: none; padding: 14px 18px; border-radius: 12px;
    background: rgba(37, 211, 102, 0.1); border: 1px solid rgba(30, 160, 90, 0.4);
    color: #157A43; font-size: 0.88rem;
}
.enquiry-success.show { display: block; }
.enquiry-note { grid-column: 1 / -1; font-size: 0.72rem; color: var(--muted); }
@media (max-width: 700px) { .enquiry-form { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ (light)
   ============================================================ */
.faq { padding: 40px 0 110px; }
.faq .section-tag, .faq .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.faq-list { max-width: 860px; margin: 40px auto 0; }
.faq-item {
    border: 1px solid var(--line); border-radius: 16px;
    background: var(--paper-2); margin-bottom: 12px; overflow: hidden;
    box-shadow: 0 6px 20px rgba(22, 32, 58, 0.05);
    transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: rgba(168, 132, 47, 0.4); }
.faq-item summary {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 20px 26px; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
    font-family: var(--body); font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.faq-toggle { position: relative; width: 18px; height: 18px; flex: none; }
.faq-toggle::before, .faq-toggle::after {
    content: ''; position: absolute; background: var(--gold); transition: transform 0.3s ease;
}
.faq-toggle::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-toggle::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-toggle::after { transform: scaleY(0); }
.faq-answer { padding: 0 26px 24px; }
.faq-answer p { font-size: 0.92rem; color: var(--body-col); line-height: 1.75; }
.faq-answer strong { color: var(--ink); }

/* ============================================================
   FOOTER — dark closure band
   ============================================================ */
.footer { border-top: 1px solid rgba(201, 169, 97, 0.2); background: var(--band-deep); }
.footer-brands {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 24px; padding-top: 64px; padding-bottom: 40px;
}
.footer-brands h4 {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--gold-band); margin-bottom: 14px;
}
.footer-brands a {
    display: block; color: var(--cream-faint); text-decoration: none;
    font-size: 0.86rem; font-weight: 300; padding: 4px 0; transition: color 0.25s ease;
}
.footer-brands a:hover { color: var(--gold-bright); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap;
    padding-top: 30px; padding-bottom: 50px; border-top: 1px solid rgba(242, 237, 228, 0.06);
}
.footer-logo-text { font-family: var(--display); font-size: 1.2rem; letter-spacing: 0.12em; color: var(--cream); }
.footer-logo-text span { color: var(--gold-band); }
.footer-copy { font-size: 0.78rem; color: var(--cream-faint); margin-top: 8px; font-weight: 300; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; max-width: 720px; }
.footer-links a {
    color: var(--cream-faint); text-decoration: none; font-size: 0.82rem; font-weight: 400;
    transition: color 0.25s ease; display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-links .gold-link { color: var(--gold-band); }
@media (max-width: 900px) { .footer-brands { grid-template-columns: repeat(2, 1fr); } }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 1500;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--wa); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ============================================================
   MOBILE & LIGHT-PATH OVERRIDES (<768px never gets frame scrub)
   ============================================================ */
@media (max-width: 767px) {
    .js.fx .hero { height: auto; }
    .js.fx .hero-sticky { position: relative; height: auto; min-height: 100svh; }
    .hero-canvas { display: none !important; }
    .journey-rail { display: none !important; }
}
