/* ══════════════════════════════════════════════════════════════════════════
   SAMYAK VENTURE — Premium corporate homepage
   Palette: Navy · Gold · Warm beige
   Spacing scale: 8 / 16 / 24 / 40 / 64 / 88 / 112
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ── colour ── */
  --navy-900: #071729;
  --navy-800: #0B1F3A;
  --navy-700: #102B4E;
  --navy-600: #17395F;
  --navy-500: #2A4E77;

  --gold-400: #E9C67E;
  --gold-500: #E3B75C;
  --gold-600: #C9982E;
  --gold-700: #A87C1C;
  --gold-800: #7F5C11;      /* AA on light backgrounds */

  --beige-50:  #FCFAF5;
  --beige-100: #F7F2E8;
  --beige-200: #EFE7D7;
  --beige-300: #E4D9C3;

  --ink:       #16233A;
  --ink-soft:  #4A5A72;
  --ink-faint: #5C6878;     /* AA on light backgrounds */

  --line:       rgba(11, 31, 58, 0.10);
  --line-soft:  rgba(11, 31, 58, 0.06);
  --line-light: rgba(255, 255, 255, 0.14);

  /* ── spacing ── */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 40px;
  --sp-5: 64px; --sp-6: 88px; --sp-7: 112px;
  --band-y: clamp(64px, 7.2vw, 96px);   /* uniform section rhythm */

  /* ── radius ── */
  --r-sm: 10px; --r: 14px; --r-md: 18px; --r-lg: 22px; --r-full: 999px;

  /* ── elevation ── */
  --e1: 0 1px 2px rgba(11,31,58,.05), 0 4px 12px -4px rgba(11,31,58,.06);
  --e2: 0 2px 4px rgba(11,31,58,.05), 0 12px 28px -10px rgba(11,31,58,.12);
  --e3: 0 4px 8px rgba(11,31,58,.05), 0 28px 60px -20px rgba(11,31,58,.22);

  /* ── type ── */
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shell: 1200px;
}

/* ── reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px; line-height: 1.65;
  color: var(--ink-soft); background: var(--beige-100);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold-600); outline-offset: 3px; border-radius: 4px; }
.band-navy :focus-visible, .foot :focus-visible { outline-color: var(--gold-500); }

.skip-link {
  position: absolute; top: -80px; left: var(--sp-3); z-index: 200;
  background: var(--gold-500); color: var(--navy-900);
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 700;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--sp-3); }

/* ══════════ IMAGE SYSTEM ══════════
   Every image lives in a fixed-ratio container so nothing stretches or
   jumps. Photos use cover; cut-out product shots use contain on white. */
.media {
  position: relative; overflow: hidden;
  border-radius: var(--r); background: var(--beige-200);
  isolation: isolate;
}
.media > img {
  width: 100%; height: 100%;
  transition: transform .6s var(--ease-out);
}
.media--21x9 { aspect-ratio: 21 / 9; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3  { aspect-ratio: 4 / 3; }
.media--1x1  { aspect-ratio: 1 / 1; }
.media--3x4  { aspect-ratio: 3 / 4; }

.fit-cover   > img { object-fit: cover; object-position: center; }
.fit-contain > img { object-fit: contain; padding: 9%; background: #fff; }
.band-navy .fit-contain > img { background: #fff; }

/* ══════════ typography ══════════ */
h1, h2, h3, h4 { color: var(--navy-800); font-weight: 700; line-height: 1.14; letter-spacing: -.02em; }

.h2 {
  font-family: var(--serif);
  font-size: clamp(1.95rem, 3.8vw, 2.95rem);
  font-weight: 600; letter-spacing: -.025em; line-height: 1.1;
}
.h2 em { font-style: italic; color: var(--gold-600); }
.h2.on-dark { color: #fff; }
.h2.on-dark em { color: var(--gold-500); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-800); margin-bottom: 12px;
}
.kicker::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.kicker-light { color: var(--gold-500); }

.deck { font-size: 1.03rem; color: var(--ink-soft); max-width: 56ch; margin-top: 14px; }
.band-navy .deck { color: rgba(255,255,255,.6); }

.head { margin-bottom: var(--sp-4); }
.head-wide { max-width: 680px; }
.head-center { max-width: 640px; margin-inline: auto; text-align: center; }
.head-center .kicker::before { display: none; }
.head-center .deck { margin-inline: auto; }
.head-split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--sp-3); max-width: none; flex-wrap: wrap;
}

/* ══════════ bands ══════════ */
.band { padding: var(--band-y) 0; position: relative; }
.band-beige { background: var(--beige-100); }
.band-cream { background: var(--beige-50); }
.band-navy {
  background: radial-gradient(120% 120% at 12% 0%, var(--navy-600) 0%, var(--navy-800) 46%, var(--navy-900) 100%);
  color: rgba(255,255,255,.66); overflow: hidden;
}
.band-navy h3, .band-navy h4 { color: #fff; }
.band-glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,183,92,.15), transparent 68%);
  top: -200px; right: -160px; pointer-events: none; filter: blur(30px);
}
.band-glow-b { top: auto; bottom: -240px; right: auto; left: -180px; }

/* Image logo — the artwork has a dark-navy wordmark, which disappears against the
   navy bar, so it sits on a white plate to stay legible. */
img.logo {
  width: auto; height: 76px; max-width: 200px;   /* large while at the top */
  object-fit: contain;
  /* background: #fff; */
  /* padding: 8px 14px; */
  border-radius: 12px;
  transition: height .4s var(--ease), padding .4s var(--ease), border-radius .4s var(--ease);
}
/* shrink once the page starts scrolling */
.nav.stuck img.logo { height: 44px; padding: 5px 9px; border-radius: 9px; }
.foot img.logo { height: 52px; }

@media (max-width: 760px) {
  img.logo { height: 54px; padding: 6px 10px; }
  .nav.stuck img.logo { height: 38px; }
}

/* ══════════ buttons ══════════ */
.btn {
  --bp: 10px 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--bp); border-radius: var(--r-full);
  font-weight: 600; font-size: .875rem; line-height: 1.35; min-height: 40px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.btn-lg { --bp: 12px 24px; font-size: .92rem; min-height: 46px; }
.btn-sm { --bp: 8px 16px; font-size: .82rem; min-height: 36px; }

.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--navy-900); box-shadow: var(--e1); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: var(--e2); filter: brightness(1.04); }
.btn-gold:active { transform: translateY(0); }

.btn-ghost { border: 1px solid var(--line); color: var(--navy-800); background: rgba(255,255,255,.62); }
.btn-ghost:hover { border-color: var(--gold-600); background: #fff; transform: translateY(-1px); }
.band-navy .btn-ghost, .foot .btn-ghost { border-color: var(--line-light); color: #fff; background: rgba(255,255,255,.06); }
.band-navy .btn-ghost:hover, .foot .btn-ghost:hover { border-color: var(--gold-500); background: rgba(255,255,255,.13); }

.btn-glass {
  border: 1px solid rgba(255,255,255,.28); color: #fff;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); transform: translateY(-1px); }

.btn-link { font-weight: 700; font-size: .88rem; color: var(--navy-800); display: inline-flex; align-items: center; gap: 6px; transition: color .22s var(--ease), gap .22s var(--ease); }
.btn-link:hover { color: var(--gold-800); gap: 9px; }

.chev { transition: transform .25s var(--ease); }
.btn:hover .chev, .btn-link:hover .chev, .col-card:hover .chev { transform: translateX(3px); }

/* ══════════ AOS — animate on scroll ══════════
   Attribute API matches the AOS library:
     data-aos="fade-up|fade-down|fade-left|fade-right|fade|zoom-in|zoom-out|flip-up"
     data-aos-delay="0..1000"   data-aos-duration="ms"
     data-aos-easing="..."      data-aos-once="true|false"
   Driven by IntersectionObserver in main.js — no library required.        */
   IMPORTANT — these use @keyframes, not transitions. Cards declare their own
   `transition:` shorthand for hover, and because that shorthand resets
   transition-delay/duration it silently cancelled the stagger. Animations live
   in a separate property space, so the two can no longer collide.            */
[data-aos] { opacity: 0; }

[data-aos].aos-animate {
  animation-duration: var(--aos-duration, 1500ms);
  animation-delay: var(--aos-delay, 0ms);
  animation-timing-function: var(--aos-easing, cubic-bezier(.22, 1, .28, 1));
  animation-fill-mode: both;          /* hold the "from" state through the delay */
}
[data-aos="fade-up"].aos-animate    { animation-name: aosFadeUp; }
[data-aos="fade-down"].aos-animate  { animation-name: aosFadeDown; }
[data-aos="fade-left"].aos-animate  { animation-name: aosFadeLeft; }
[data-aos="fade-right"].aos-animate { animation-name: aosFadeRight; }
[data-aos="zoom-in"].aos-animate    { animation-name: aosZoomIn; }
[data-aos="zoom-out"].aos-animate   { animation-name: aosZoomOut; }
[data-aos="fade"].aos-animate       { animation-name: aosFade; }

@keyframes aosFadeUp    { from { opacity: 0; transform: translate3d(0, 48px, 0); } to { opacity: 1; transform: none; } }
@keyframes aosFadeDown  { from { opacity: 0; transform: translate3d(0, -48px, 0); } to { opacity: 1; transform: none; } }
@keyframes aosFadeLeft  { from { opacity: 0; transform: translate3d(52px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes aosFadeRight { from { opacity: 0; transform: translate3d(-52px, 0, 0); } to { opacity: 1; transform: none; } }
@keyframes aosZoomIn    { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: none; } }
@keyframes aosZoomOut   { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: none; } }
@keyframes aosFade      { from { opacity: 0; } to { opacity: 1; } }

/* Once finished, drop the animation so it stops pinning `transform` and the
   element's own hover transitions take over cleanly. */
[data-aos].aos-done { opacity: 1; animation: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-slide { animation: none !important; }
}

/* no-JS safety net: never leave content invisible */
.no-js [data-aos] { opacity: 1 !important; transform: none !important; }

/* the loader markup has no working show/hide script on front pages (its
   fade-out script is admin-only), so left unstyled it renders as a plain
   "Loading..." line stuck between the header and the hero. */
#preloader { display: none; }

/* ══════════════════════════════════════════════ NAV ══
   The header sits in normal document flow above the hero/banner on every
   page (never overlapping it) and always carries the page's own background,
   never the hero's. `.stuck` only adds a touch of shadow once the page has
   scrolled — the background itself no longer changes. */
.nav { position: sticky; top: 0; z-index: 999; padding: 18px 0; background: var(--beige-50); box-shadow: 0 1px 0 var(--line-soft); transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease); }
.nav.stuck {
  padding: 10px 0; background: var(--beige-50);
  box-shadow: 0 1px 0 var(--line-soft), 0 18px 34px -26px rgba(11,31,58,.28);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-type { display: flex; flex-direction: column; line-height: 1.05; }
.logo-type strong { font-size: .98rem; font-weight: 800; letter-spacing: .12em; color: #fff; }
.logo-type em { font-style: normal; font-family: var(--mono); font-size: .56rem; letter-spacing: .3em; color: var(--gold-500); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link { position: relative; padding: 9px 15px; border-radius: var(--r-full); font-size: .9rem; font-weight: 600; color: var(--ink-soft); transition: color .3s var(--ease); }
.nav-link::after { content: ''; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 1.5px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out); }
.nav-link:hover, .nav-link.active { color: var(--navy-800); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: var(--sp-2); }
.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform .35s var(--ease); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ── announcement bar ──
   Lives in normal document flow at the very top of the page, above the
   (also in-flow) header — neither one overlaps page content, so there is
   nothing to compensate for. The var only sizes the bar itself. */
:root { --annc-h: 34px; }
.annc {
  position: relative;
  min-height: var(--annc-h);
  display: flex; align-items: center;            /* vertical centring */
  background: linear-gradient(90deg, var(--gold-600), var(--gold-500) 45%, var(--gold-600));
  color: var(--navy-900);
  transition: opacity .32s var(--ease);
}
.annc-inner {
  position: relative;                            /* anchors the close button */
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; row-gap: 4px;
  gap: 12px; width: 100%; min-height: var(--annc-h);
  padding: 8px 34px;
}
.annc p {
  display: inline-flex; align-items: center;     /* text only — no leading icon */
  font-size: .79rem; font-weight: 600; line-height: 1.35;
  color: var(--navy-900); text-align: center;
}
.annc a {
  display: inline-flex; align-items: center; gap: 5px; line-height: 1;
  font-size: .79rem; font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
  white-space: nowrap;
}
.annc a:hover { color: var(--navy-700); }
.annc a svg { width: 13px; height: 13px; }
.annc-close {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%; color: var(--navy-900);
  transition: background .22s var(--ease);
}
.annc-close svg { width: 13px; height: 13px; }
.annc-close:hover { background: rgba(7,23,41,.14); }
.annc.is-gone { opacity: 0; pointer-events: none; }

@media (max-width: 760px) {
  .annc-inner { padding: 10px 40px; gap: 4px 10px; }
  .annc p, .annc a { font-size: .72rem; }
  .annc-close { top: 10px; transform: none; }
}

/* ── mobile slide-out drawer ── */
.drawer-veil-nav {
  position: fixed; inset: 0; z-index: 160;
  background: rgba(7,23,41,.55); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.drawer-veil-nav.is-on { opacity: 1; visibility: visible; }

@media (max-width: 991px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto;
    width: min(320px, 84vw); z-index: 170;
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    padding: calc(var(--sp-5) + 8px) var(--sp-3) var(--sp-3);
    background: linear-gradient(170deg, var(--navy-800), var(--navy-900));
    border-left: 1px solid rgba(255,255,255,.10);
    box-shadow: -24px 0 60px -20px rgba(0,0,0,.6);
    overflow-y: auto;
    /* off-canvas by transform, not display:none, so the slide can animate;
       visibility flips only once the slide-out transition has finished so the
       hidden panel can't be tabbed/clicked into. */
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .38s var(--ease-out), visibility 0s linear .38s;
  }
  .nav-links.open {
    transform: none;
    visibility: visible;
    transition: transform .38s var(--ease-out), visibility 0s linear 0s;
  }
  .nav-link {
    padding: 15px 16px; border-radius: var(--r-sm);
    font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.8);
  }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active { background: rgba(255,255,255,.07); color: #fff; }
  .drawer-cta { margin-top: var(--sp-3); display: grid; gap: 10px; }
  .drawer-cta .btn { width: 100%; }
  .drawer-x {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    display: grid; place-items: center; color: #fff;
    background: rgba(255,255,255,.09);
    transition: background .22s var(--ease);
  }
  .drawer-x:hover { background: rgba(255,255,255,.18); }
  .drawer-meta {
    margin-top: auto; padding-top: var(--sp-3);
    border-top: 1px solid rgba(255,255,255,.09);
    display: grid; gap: 10px;
  }
  .drawer-meta a {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem; color: rgba(255,255,255,.68);
  }
  .drawer-meta a:hover { color: var(--gold-500); }
  .drawer-meta svg { color: var(--gold-500); }
}
.drawer-x, .drawer-cta, .drawer-meta { display: none; }
@media (max-width: 991px) {
  .drawer-x { display: grid; }
  .drawer-cta, .drawer-meta { display: grid; }
}

/* ── mobile fixed social buttons (Instagram / WhatsApp) ──
   Mobile/tablet only — hidden on desktop where there is no existing
   equivalent floating widget. */
.float-social {
  position: fixed; right: 16px; bottom: 20px; z-index: 140;
  display: none; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--e2);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn:hover, .float-btn:focus-visible { transform: translateY(-3px) scale(1.05); box-shadow: var(--e3); }
.float-btn:active { transform: translateY(0) scale(.97); }
.float-whatsapp { background: linear-gradient(150deg, #34d97a, #1fa855); }
.float-instagram { background: linear-gradient(150deg, #f9ce34, #ee2a7b 55%, #6228d7); }
@media (max-width: 991px) {
  .float-social { display: flex; }
}

/* ══════════════════════════════════════════════ HERO ══ */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 92vh; display: flex; align-items: center;
  padding: calc(var(--band-y) + 64px) 0 var(--band-y);
  background: var(--navy-900);
}
.hero-media { position: absolute; inset: 0; z-index: -1; }

.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1s var(--ease);
}
.hero-media.video-ready .hero-video { opacity: 1; }
.hero-media.video-ready .hero-slides { opacity: 0; }

.hero-slides { position: absolute; inset: 0; transition: opacity .8s var(--ease); }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease);
  transform: scale(1.06);
}
.hero-slide.is-on { opacity: 1; animation: kenburns 12s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }

.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,23,41,.94) 0%, rgba(7,23,41,.82) 42%, rgba(7,23,41,.55) 100%),
    linear-gradient(180deg, rgba(7,23,41,.75) 0%, transparent 30%, rgba(7,23,41,.85) 100%);
}
.hero-mesh {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(90% 70% at 50% 30%, #000 25%, transparent 100%);
  mask-image: radial-gradient(90% 70% at 50% 30%, #000 25%, transparent 100%);
}

.hero-shell { position: relative; z-index: 2; }
.hero-lead { max-width: 660px; }

.tagline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: var(--r-full);
  background: rgba(255,255,255,.08); border: 1px solid var(--line-light);
  backdrop-filter: blur(10px);
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em;
  color: rgba(255,255,255,.84); margin-bottom: 18px;
}
.tagline-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); animation: blip 2s var(--ease) infinite; }
@keyframes blip { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(1.4); } }

.hero-h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  line-height: 1.04; letter-spacing: -.035em; color: #fff;
  margin-bottom: 18px; text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-h1 em { font-style: italic; color: var(--gold-500); }
.hero-sub { font-size: 1.06rem; color: rgba(255,255,255,.72); max-width: 46ch; margin-bottom: var(--sp-3); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--sp-4); }

.hero-facts { display: flex; flex-wrap: wrap; gap: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid var(--line-light); }
.hero-facts dt { font-family: var(--mono); font-size: 1.85rem; font-weight: 500; color: var(--gold-500); line-height: 1.1; }
.hero-facts dd { font-size: .76rem; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: .1em; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px; z-index: 2;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.scroll-hint i { display: block; width: 1px; height: 40px; background: linear-gradient(rgba(227,183,92,.9), transparent); animation: dropline 2.2s var(--ease) infinite; }
@keyframes dropline { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ══════════════════════════════════════════════ PARTNER STRIP ══
   Muted single-row wordmarks. Deliberately typographic rather than image
   logos, so the row stays crisp at any size and needs no extra assets.   */
.strip {
  padding: clamp(32px, 4.5vw, 52px) 0;
  background: var(--beige-50);
  border-bottom: 1px solid var(--line-soft);
}
.strip-label {
  text-align: center;
  font-family: var(--mono); font-size: .69rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: clamp(20px, 2.6vw, 30px);
}

/* ── seamless marquee ──
   Two identical groups sit side by side. Each group carries its own trailing
   gap (padding-right), so the group's outer width is exactly setWidth + gap.
   Travelling -50% therefore lands precisely on the second copy: no seam.   */
.partner-slider {
  --pgap: clamp(34px, 5vw, 72px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.partners-track {
  display: flex; width: max-content;
  animation: partnerScroll 38s linear infinite;
}
.partners-group {
  display: flex; align-items: center;
  gap: var(--pgap);
  padding-right: var(--pgap);
}
@keyframes partnerScroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* pause when the visitor wants to read it */
.partner-slider:hover .partners-track,
.partner-slider:focus-within .partners-track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .partners-group[aria-hidden="true"] { display: none; }
  .partners-group { flex-wrap: wrap; justify-content: center; padding-right: 0; }
  .partner-slider { -webkit-mask-image: none; mask-image: none; }
}

.partner {
  display: inline-flex; align-items: center; gap: 9px;
  color: #8A93A0;                       /* muted grey, like the reference */
  white-space: nowrap;
  transition: color .3s var(--ease), transform .3s var(--ease), opacity .3s var(--ease);
}
.partner:hover { color: var(--navy-700); transform: translateY(-2px); }
.pmark { flex-shrink: 0; display: grid; place-items: center; }
.pmark svg { width: 23px; height: 23px; }
.pmark img { width: 23px; height: 23px; object-fit: contain; }

/* each wordmark gets its own type treatment, as in the reference row */
.pname { font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1; }
.pname-round  { font-family: var(--sans);  font-weight: 600; letter-spacing: -.02em; }
.pname-block  { font-family: var(--sans);  font-weight: 800; letter-spacing: .06em; }
.pname-script { font-family: var(--serif); font-weight: 500; font-style: italic; letter-spacing: -.01em; font-size: clamp(1.1rem, 1.7vw, 1.4rem); }
.pname-plain  { font-family: var(--sans);  font-weight: 500; letter-spacing: -.01em; }
.pname-wide   { font-family: var(--sans);  font-weight: 600; letter-spacing: .14em; font-size: clamp(.86rem, 1.2vw, 1rem); }

@media (max-width: 760px) {
  .partner-slider { --pgap: 30px; }
  .partners-track { animation-duration: 26s; }   /* shorter viewport, keep pace even */
  .partner { font-size: .92rem; }
  .pmark svg { width: 19px; height: 19px; }
  .pmark img { width: 19px; height: 19px; }
}

/* ══════════════════════════════════════════════ FOUNDATION ══ */
.rail { position: relative; }
.rail-line { position: absolute; top: 24px; left: 0; right: 0; height: 2px; background: var(--line); }
.rail-fill { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-600), var(--gold-400)); transition: width 1.4s var(--ease-out); }
.rail-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.step { padding-top: 52px; position: relative; padding-right: var(--sp-2); }
.step::before { content: ''; position: absolute; top: 17px; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--beige-50); border: 2px solid var(--gold-600); transition: transform .25s var(--ease), background .25s var(--ease); }
.step:hover::before { background: var(--gold-500); transform: scale(1.2); }
.step-num { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; color: var(--gold-800); }
.step h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin: 4px 0 6px; }
.step p { font-size: .91rem; line-height: 1.6; }

/* ══════════════════════════════════════════════ PRINCIPLES ══ */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); position: relative; z-index: 2; }
.principle {
  display: flex; flex-direction: column; padding: 26px 24px;
  border-radius: var(--r-md); border: 1px solid var(--line-light);
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: opacity .5s var(--ease), transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.principle:hover { transform: translateY(-3px); border-color: rgba(227,183,92,.45); background: linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.03)); }
.principle-accent { background: linear-gradient(160deg, rgba(227,183,92,.16), rgba(227,183,92,.03)); border-color: rgba(227,183,92,.35); }
.principle-ico { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 14px; border-radius: 12px; background: rgba(227,183,92,.14); color: var(--gold-500); transition: background .25s var(--ease); }
.principle-ico svg { width: 21px; height: 21px; }
.principle:hover .principle-ico { background: rgba(227,183,92,.24); }
.principle h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 7px; }
.principle p { font-size: .92rem; line-height: 1.6; color: rgba(255,255,255,.64); }

/* ══════════════════════════════════════════════ CREEDS ══ */
.creeds { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); }
.creed {
  position: relative; display: flex; flex-direction: column;
  padding: 24px 22px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line-soft);
  transition: opacity .5s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.creed:hover { transform: translateY(-3px); box-shadow: var(--e2); border-color: rgba(201,152,46,.34); }

.creed-ico { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 13px; border-radius: 11px; background: var(--beige-200); color: var(--gold-800); transition: background .25s var(--ease); }
.creed-ico svg { width: 19px; height: 19px; }
.creed:hover .creed-ico { background: rgba(201,152,46,.16); }
.creed-idx { position: absolute; top: 22px; right: 22px; font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; color: var(--ink-faint); }
.creed h3 { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; margin-bottom: 6px; }
.creed p { font-size: .9rem; line-height: 1.58; }

/* ══════════════════════════════════════════════ IMAGE + TEXT ══ */
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: var(--sp-5); align-items: center; }
.split-media { position: relative; }
.split-media > .media--3x4 { box-shadow: var(--e3); }
.split-media-inset {
  position: absolute; right: -28px; bottom: 44px; width: 42%;
  border: 5px solid var(--beige-50); box-shadow: var(--e3); border-radius: var(--r);
}
.split-badge {
  position: absolute; left: -20px; top: 32px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px 18px; border-radius: var(--r);
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--e3); border: 1px solid rgba(227,183,92,.35);
}
.split-badge strong { font-family: var(--mono); font-size: 1.5rem; color: var(--gold-500); line-height: 1; }
.split-badge small { font-size: .66rem; color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }

.split-copy .deck { margin-bottom: var(--sp-3); }
.ticks { display: grid; gap: 9px; margin-bottom: var(--sp-3); }
.ticks li { position: relative; padding-left: 26px; font-size: .94rem; font-weight: 600; color: var(--navy-700); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .18em;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(201,152,46,.16);
  /* SVG check, inlined so it stays crisp and matches the icon set */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237F5C11' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px 11px;
}

/* ══════════════════════════════════════════════ BENTO ══ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); }
.cell {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  padding: 24px 22px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line-soft);
  transition: opacity .5s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.cell:hover { transform: translateY(-3px); box-shadow: var(--e2); border-color: rgba(201,152,46,.3); }
.cell-hero { grid-column: span 2; grid-row: span 2; justify-content: center; padding: var(--sp-4) var(--sp-3); }
.cell-ico { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px; border-radius: 11px; background: var(--beige-200); color: var(--gold-800); transition: background .25s var(--ease); }
.cell-ico svg { width: 20px; height: 20px; }
.cell-ico img { width: 20px; height: 20px; object-fit: contain; }
.cell:hover .cell-ico { background: rgba(201,152,46,.16); }
.cell h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.cell-hero h3 { font-size: 1.55rem; margin-bottom: 10px; }
.cell p { font-size: .9rem; line-height: 1.58; }
.cell-hero p { font-size: .96rem; }
.cell-list { margin-top: var(--sp-2); display: grid; gap: 8px; }
.cell-list li { position: relative; padding-left: 19px; font-size: .89rem; font-weight: 600; color: var(--navy-700); }
.cell-list li::before { content: ''; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); }
.cell-stat { justify-content: center; background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); border-color: transparent; color: rgba(255,255,255,.66); }
.cell-stat:hover { border-color: rgba(227,183,92,.4); }
.cell-figure { font-family: var(--mono); font-size: 2.35rem; font-weight: 500; color: var(--gold-500); line-height: 1; margin-bottom: 7px; }
.cell-stat p { color: rgba(255,255,255,.62); }

/* ══════════════════════════════════════════════ PORTFOLIO ══ */
.folio { display: grid; grid-template-columns: 258px 1fr; gap: var(--sp-2); position: relative; z-index: 2; }
.folio-tabs { display: flex; flex-direction: column; gap: 8px; }
.folio-tab {
  position: relative; display: grid; gap: 2px; text-align: left;
  padding: 13px 17px; border-radius: var(--r); border: 1px solid var(--line-light);
  background: rgba(255,255,255,.04);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.folio-tab::before { content: ''; position: absolute; left: 0; top: 13px; bottom: 13px; width: 3px; border-radius: 3px; background: var(--gold-500); transform: scaleY(0); transition: transform .35s var(--ease-out); }
.folio-tab:hover { background: rgba(255,255,255,.09); }
.folio-tab.is-active { background: rgba(227,183,92,.12); border-color: rgba(227,183,92,.4); }
.folio-tab.is-active::before { transform: scaleY(1); }
.ft-name { font-weight: 700; color: #fff; font-size: .93rem; }
.ft-meta { font-size: .76rem; color: rgba(255,255,255,.5); }
.ft-status { position: absolute; top: 13px; right: 15px; font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--r-full); background: rgba(255,255,255,.08); color: rgba(255,255,255,.62); }
.ft-live { background: rgba(227,183,92,.2); color: var(--gold-400); }

.folio-stage {
  border-radius: var(--r-md); border: 1px solid var(--line-light);
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: var(--sp-3); display: flex;
}
.folio-panel { flex: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-3); align-items: center; animation: panelIn .4s var(--ease); }
.folio-panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.folio-eyebrow { display: inline-block; font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 8px; }
.folio-copy h3 { font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.05rem); font-weight: 600; letter-spacing: -.02em; }
.folio-line { color: var(--gold-500); font-weight: 600; margin: 4px 0 10px; font-size: .95rem; }
.folio-copy > p { color: rgba(255,255,255,.62); font-size: .93rem; line-height: 1.62; }
.folio-specs { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-2); padding-top: var(--sp-2); border-top: 1px solid var(--line-light); }
.folio-specs dt { font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 2px; }
.folio-specs dd { font-size: .85rem; font-weight: 700; color: #fff; }
.folio-media { border-radius: var(--r-md); box-shadow: var(--e3); }

/* ══════════════════════════════════════════════ PRODUCTS ══ */
.prods { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); }
.prod {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r-md); background: #fff; border: 1px solid var(--line-soft);
  transition: opacity .5s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.prod:hover { transform: translateY(-4px); box-shadow: var(--e2); border-color: rgba(201,152,46,.3); }
.prod .media { border-radius: 0; }
.prod:hover .media > img { transform: scale(1.04); }
.prod-body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.prod-body h3 { font-family: var(--serif); font-size: 1.13rem; font-weight: 600; margin-bottom: 5px; }
.prod-body p { font-size: .88rem; line-height: 1.55; margin-bottom: 14px; }
.prod-body .btn { margin-top: auto; align-self: flex-start; }

/* ══════════════════════════════════════════════ COLLECTIONS ══ */
.collect { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); }
.col-card {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  transition: opacity .5s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  display: block;
}
.col-card:hover { transform: translateY(-3px); box-shadow: var(--e3); }
.col-card .media { border-radius: 0; height: 100%; }
.col-card:hover .media > img { transform: scale(1.05); }
.col-card-lead { grid-column: span 3; }
.col-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,23,41,.05) 30%, rgba(7,23,41,.86) 100%);
  transition: background .3s var(--ease);
}
.col-card:hover::after { background: linear-gradient(180deg, rgba(7,23,41,.2) 20%, rgba(7,23,41,.92) 100%); }
.col-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px 22px; }
.col-tag {
  display: inline-block; font-family: var(--mono); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-full);
  background: rgba(227,183,92,.22); color: var(--gold-400); margin-bottom: 8px;
  backdrop-filter: blur(6px);
}
.col-overlay h3 { color: #fff; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.col-card-lead .col-overlay h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.col-overlay p { color: rgba(255,255,255,.72); font-size: .9rem; margin-top: 5px; max-width: 46ch; }
.col-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: .82rem; font-weight: 700; color: var(--gold-400);
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.col-card:hover .col-cta, .col-card:focus-visible .col-cta { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════ INDUSTRIES ══ */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); }
.tile {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  padding: 24px 22px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line-soft);
  transition: opacity .5s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--e2); border-color: rgba(201,152,46,.3); }
.tile-active { border-color: rgba(201,152,46,.35); background: linear-gradient(165deg, #fff, rgba(227,183,92,.07)); }
.tile-ico { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px; border-radius: 11px; background: var(--beige-200); color: var(--gold-800); transition: background .25s var(--ease); }
.tile-ico svg { width: 20px; height: 20px; }
.tile:hover .tile-ico { background: rgba(201,152,46,.16); }
.tile h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.tile p { font-size: .89rem; line-height: 1.58; }
.tile-tag { position: absolute; top: 22px; right: 22px; font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; padding: 4px 9px; border-radius: var(--r-full); background: rgba(201,152,46,.16); color: var(--gold-800); }

/* ══════════════════════════════════════════════ TESTIMONIALS ══ */
.tstm { max-width: 820px; margin-inline: auto; position: relative; z-index: 2; }
.tstm-track { position: relative; min-height: 268px; }
.tstm-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateX(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease); pointer-events: none;
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
  border-radius: var(--r-lg); border: 1px solid var(--line-light);
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.tstm-slide.is-on { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.tstm-mark {
  display: block; font-family: var(--serif); font-size: 3.6rem; line-height: .5;
  color: rgba(227,183,92,.42); margin-bottom: 14px;
}
.tstm-stars { color: var(--gold-500); letter-spacing: 4px; font-size: .95rem; margin-bottom: 14px; }
.tstm-slide blockquote { font-family: var(--serif); font-size: clamp(1.05rem, 1.9vw, 1.35rem); font-weight: 500; line-height: 1.5; color: #fff; margin-bottom: var(--sp-3); }
.tstm-person { display: inline-flex; align-items: center; gap: 12px; }
.tstm-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900); font-weight: 800; font-size: .85rem; letter-spacing: .02em;
}
.tstm-id { text-align: left; }
.tstm-id strong { display: block; color: #fff; font-size: .92rem; }
.tstm-id small { color: rgba(255,255,255,.55); font-size: .8rem; }

.tstm-nav { display: flex; align-items: center; justify-content: center; gap: var(--sp-3); margin-top: var(--sp-3); }
.tstm-arrow {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-light); color: #fff; background: rgba(255,255,255,.06);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.tstm-arrow:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.tstm-dots { display: flex; gap: 7px; }
.tstm-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.26); transition: all .25s var(--ease); }
.tstm-dot.is-on { background: var(--gold-500); width: 20px; border-radius: var(--r-full); }

/* ══════════════════════════════════════════════ ROADMAP ══ */
.road { position: relative; display: grid; gap: 12px; max-width: 840px; margin-inline: auto; }
.road::before { content: ''; position: absolute; left: 10px; top: 14px; bottom: 14px; width: 2px; background: var(--line); }
.road-item { position: relative; padding-left: 46px; }
.road-dot { position: absolute; left: 0; top: 20px; width: 22px; height: 22px; border-radius: 50%; background: var(--beige-100); border: 2px solid var(--gold-600); display: grid; place-items: center; }
.road-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-600); transform: scale(0); transition: transform .4s var(--ease); }
.road-item.aos-animate .road-dot::after { transform: scale(1); }
.road-card {
  display: grid; grid-template-columns: 148px 1fr auto; gap: var(--sp-3); align-items: center;
  padding: 18px 24px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.road-card:hover { transform: translateX(4px); box-shadow: var(--e2); border-color: rgba(201,152,46,.28); }
.road-phase { display: block; font-family: var(--mono); font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-800); }
.road-card h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; margin: 3px 0 0; }
.road-card p { font-size: .89rem; line-height: 1.58; margin: 0; }
.road-state { justify-self: end; white-space: nowrap; font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-full); background: var(--beige-200); color: var(--ink-faint); }
.road-state-now { background: rgba(201,152,46,.16); color: var(--gold-800); }

/* ══════════════════════════════════════════════ FIGURES ══ */
.stats-band { overflow: hidden; }
.stats-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(227,183,92,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(227,183,92,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 50%, #000, transparent);
  mask-image: radial-gradient(80% 70% at 50% 50%, #000, transparent);
}
.figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-2); position: relative; z-index: 2; }
.figure { padding: var(--sp-3) var(--sp-2); border-left: 1px solid var(--line-light); }
.figure:first-child { border-left: 0; }
.figure strong { display: block; font-family: var(--mono); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 500; color: var(--gold-500); line-height: 1; }
.figure span { display: block; margin: 8px 0 6px; font-weight: 700; color: #fff; font-size: .96rem; }
.figure p { font-size: .86rem; color: rgba(255,255,255,.52); }

/* ══════════════════════════════════════════════ BLOG ══ */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); }
.post {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--r-md); background: #fff; border: 1px solid var(--line-soft);
  transition: opacity .5s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--e2); border-color: rgba(201,152,46,.3); }
.post .media { border-radius: 0; }
.post:hover .media > img { transform: scale(1.05); }
.post-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-full);
  background: rgba(7,23,41,.78); color: var(--gold-400); backdrop-filter: blur(6px);
}
.post-body { display: flex; flex-direction: column; flex: 1; padding: 16px 20px 20px; }
.post-meta { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .68rem; letter-spacing: .05em; color: var(--ink-faint); margin-bottom: 8px; }
.post-body h3 { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; line-height: 1.3; margin-bottom: 7px; }
.post-body p { font-size: .89rem; line-height: 1.56; margin-bottom: 14px; }
.post-body .btn-link { margin-top: auto; align-self: flex-start; }

/* ══════════════════════════════════════════════ FAQ ══ */
.faq-shell { max-width: 800px; }
.faq { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; transition: opacity .5s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.faq-item:hover { border-color: rgba(201,152,46,.32); }
.faq-item.is-open { border-color: rgba(201,152,46,.42); box-shadow: var(--e1); }
.faq-h { margin: 0; font-size: inherit; font-weight: inherit; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2);
  padding: 17px 20px; text-align: left;
  font-family: var(--sans); font-weight: 700; font-size: .98rem; color: var(--navy-800);
}
.faq-ico { position: relative; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--beige-200); transition: background .25s var(--ease); }
.faq-ico::before, .faq-ico::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--gold-800);
  transform: translate(-50%,-50%); transition: transform .3s var(--ease), background .25s var(--ease);
}
.faq-ico::before { width: 11px; height: 2px; }
.faq-ico::after  { width: 2px; height: 11px; }
.faq-q[aria-expanded="true"] .faq-ico { background: var(--gold-500); }
.faq-q[aria-expanded="true"] .faq-ico::before,
.faq-q[aria-expanded="true"] .faq-ico::after { background: var(--navy-900); }
.faq-q[aria-expanded="true"] .faq-ico::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-in { overflow: hidden; }
.faq-a-in p { padding: 0 20px 18px; font-size: .93rem; line-height: 1.62; }

/* ══════════════════════════════════════════════ CONTACT ══ */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: start; min-width: 0; }
.contact-facts { display: grid; gap: 12px; margin-top: var(--sp-3); }
.contact-facts li { display: flex; align-items: center; gap: 13px; }
/* the label + value sit in an unclassed <div> beside the icon — as a flex
   item it defaults to min-width:auto, which stops a long email/address from
   ever wrapping and pushes it past the container instead. */
.contact-facts li > div { min-width: 0; }
.cf-ico { display: grid; place-items: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; background: var(--beige-200); color: var(--gold-800); font-size: 1rem; }
.contact-facts small { display: block; font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.contact-facts a, .contact-facts span { font-weight: 700; color: var(--navy-800); font-size: .95rem; overflow-wrap: anywhere; word-break: break-word; }
.contact-facts a:hover { color: var(--gold-800); }
.trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--sp-3); }
.trust li { font-size: .8rem; font-weight: 600; color: var(--ink-soft); padding: 6px 13px; border-radius: var(--r-full); background: rgba(255,255,255,.7); border: 1px solid var(--line-soft); }
.trust li { display: inline-flex; align-items: center; gap: 7px; }
.trust li::before {
  content: ''; width: 13px; height: 13px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237F5C11' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: contain;
}

.contact-form { display: grid; gap: 11px; padding: 26px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--e1); }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; padding: 19px 16px 7px; border-radius: var(--r);
  border: 1px solid var(--line); background: var(--beige-50); font-size: .93rem;
  transition: border-color .22s var(--ease), background .22s var(--ease); resize: vertical;
}
.field select { padding-top: 20px; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-faint) 50%), linear-gradient(135deg, var(--ink-faint) 50%, transparent 50%); background-position: calc(100% - 20px) 23px, calc(100% - 15px) 23px; background-size: 6px 6px; background-repeat: no-repeat; }
.field label { position: absolute; left: 17px; top: 14px; font-size: .91rem; color: var(--ink-faint); pointer-events: none; transition: transform .24s var(--ease), color .24s var(--ease); transform-origin: left top; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-600); background: #fff; }
.field input:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label,
.field .label-static { transform: translateY(-8px) scale(.76); color: var(--gold-800); font-weight: 700; letter-spacing: .04em; }
.form-submit { width: 100%; margin-top: 4px; }
.form-note { font-size: .78rem; color: var(--ink-faint); text-align: center; }

/* form validation states — shared by the contact form and the enquiry modal */
.field.is-bad input, .field.is-bad textarea { border-color: #C0523A; background: #FFF7F5; }
.field-err { display: none; margin-top: 5px; font-size: .76rem; color: #A8412C; }
.field.is-bad .field-err { display: block; }
.field.is-ok input, .field.is-ok textarea { border-color: rgba(201,152,46,.55); }

/* ══════════ enquiry modal ══════════
   Markup lives in resources/views/partials/enquiry-modal.blade.php, included
   once from layouts/app.blade.php — one copy, available on every page that
   can trigger it via a [data-enquire] button, so the CSS lives here rather
   than in pages.css (which not every page loads). */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: var(--sp-3);
  visibility: hidden; opacity: 0;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal-veil { position: absolute; inset: 0; background: rgba(7,23,41,.62); backdrop-filter: blur(6px); }
.modal-card {
  position: relative; width: min(560px, 100%);
  max-height: 90vh; overflow-y: auto;
  background: var(--beige-50); border-radius: var(--r-lg);
  border: 1px solid var(--line-soft); box-shadow: var(--e3);
  padding: var(--sp-4);
  transform: scale(.94) translateY(12px); opacity: 0;
  transition: transform .38s var(--ease-out), opacity .38s var(--ease-out);
}
.modal.is-open .modal-card { transform: none; opacity: 1; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-faint);
  background: var(--beige-200); transition: all .22s var(--ease);
}
.modal-close:hover { background: var(--navy-800); color: #fff; }
.modal-card h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 4px; }
.modal-for {
  display: inline-flex; align-items: center; gap: 7px; margin: 10px 0 18px;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-800); background: rgba(201,152,46,.14);
  padding: 6px 12px; border-radius: var(--r-full);
}
.modal-form { display: grid; gap: 11px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.modal-ok { display: none; text-align: center; padding: var(--sp-3) 0; }
.modal-ok.is-on { display: block; animation: modalOkIn .5s var(--ease-out) both; }
@keyframes modalOkIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.ok-ring {
  width: 66px; height: 66px; margin: 0 auto var(--sp-2); border-radius: 50%;
  background: rgba(201,152,46,.16); color: var(--gold-700);
  display: grid; place-items: center;
}
.ok-ring svg { width: 30px; height: 30px; }
.modal-ok h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin-bottom: 6px; }
.modal-ok p { font-size: .93rem; }
@media (max-width: 760px) {
  .modal-row { grid-template-columns: 1fr; }
  .modal-card { padding: var(--sp-3); }
}

/* ══════════════════════════════════════════════ FOOTER ══ */
.foot { background: var(--navy-900); color: rgba(255,255,255,.6); padding: var(--sp-5) 0 0; }
.foot-top { display: grid; grid-template-columns: 1.9fr 1fr 1fr; gap: var(--sp-4); padding-bottom: var(--sp-4); border-bottom: 1px solid var(--line-light); }
.foot-line { margin-top: 12px; font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--gold-500); }
.foot-social { display: flex; gap: 9px; margin-top: var(--sp-2); }
.foot-social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-light); font-size: .74rem; font-weight: 700; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease); }
.foot-social a:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); transform: translateY(-2px); }
.foot-col h3 { color: #fff; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: var(--sp-2); font-family: var(--mono); font-weight: 500; }
.foot-col a { display: block; margin-bottom: 10px; font-size: .91rem; transition: color .25s var(--ease), transform .25s var(--ease); }
.foot-col a:hover { color: var(--gold-500); transform: translateX(3px); }
.foot-bottom { display: flex; justify-content: center; text-align: center; flex-wrap: wrap; gap: 10px; padding: var(--sp-3) 0; font-size: .82rem; color: rgba(255,255,255,.42); }

/* ══════════════════════════════════════════════ RESPONSIVE ══ */
@media (max-width: 1080px) {
  .rail-steps { grid-template-columns: repeat(2, 1fr); row-gap: var(--sp-4); }
  .rail-line { display: none; }
  .principles { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .creeds { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cell-hero { grid-column: span 2; grid-row: auto; }
  .split { grid-template-columns: 1fr; gap: var(--sp-4); }
  .split-media { max-width: 460px; }
  .folio { grid-template-columns: 1fr; }
  .folio-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 4px; }
  .folio-tab { min-width: 186px; }
  .prods, .tiles, .posts { grid-template-columns: repeat(2, 1fr); }
  .collect { grid-template-columns: repeat(2, 1fr); }
  .col-card-lead { grid-column: span 2; }
  /* keep row 2 even: 3 remaining cards would orphan one, so promote the last */
  .col-card:last-child { grid-column: span 2; }
  .col-card:last-child .media { aspect-ratio: 16 / 9; }
  .figures { grid-template-columns: repeat(2, 1fr); }
  .figure:nth-child(3) { border-left: 0; }
  .contact-split { grid-template-columns: 1fr; gap: var(--sp-4); }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

/* header/hamburger switch to the off-canvas drawer on tablets too, not just phones —
   the drawer's own styling (position, colours, transition) lives in pages.css,
   which loads after this file. */
@media (max-width: 991px) {
  .burger { display: flex; }
  .nav-actions .btn { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  .hero { min-height: 88vh; padding: calc(var(--band-y) + 48px) 0 var(--band-y); }
  .hero-scrim { background: linear-gradient(180deg, rgba(7,23,41,.86) 0%, rgba(7,23,41,.7) 45%, rgba(7,23,41,.94) 100%); }
  .hero-cta .btn { width: 100%; }
  .hero-facts { gap: var(--sp-3); }
  .scroll-hint { display: none; }

  .rail-steps { grid-template-columns: 1fr; gap: var(--sp-3); }
  .step { padding-top: 38px; padding-right: 0; }
  .principles, .creeds, .bento, .prods, .tiles, .posts, .collect { grid-template-columns: 1fr; }
  .cell-hero, .col-card-lead { grid-column: span 1; }

  .split-media { max-width: none; }
  .split-media-inset { width: 38%; right: -10px; bottom: 24px; }
  .split-badge { left: -8px; padding: 11px 14px; }

  .folio-panel { grid-template-columns: 1fr; }
  .folio-media { order: -1; }
  .folio-specs { gap: var(--sp-2); }

  .figures { grid-template-columns: 1fr; }
  .figure { border-left: 0; border-top: 1px solid var(--line-light); }
  .figure:first-child { border-top: 0; }

  .road-item { padding-left: 36px; }
  .road-card { grid-template-columns: 1fr; gap: 9px; padding: 18px 20px; }
  .road-state { grid-column: 1; justify-self: start; }

  .tstm-slide { padding: var(--sp-3) 20px; }
  .tstm-track { min-height: 320px; }

  .foot-top { grid-template-columns: 1fr; gap: var(--sp-3); }
  .foot-bottom { flex-direction: column; text-align: center; }
}
