/* ============================================================
   RAO FoodBev Systems — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root{
  /* Brand palette sampled directly from RAO FoodBev Systems' own profile deck
     (navy #0E1B2B / #10233C, orange #E2600D). Variable names kept as-is
     from the previous placeholder palette so every rule built on them
     re-themes automatically. */
  --ink:#222f3c;
  --ink-70: rgba(34,47,60,.7);
  --ink-50: rgba(34,47,60,.5);
  --ink-30: rgba(34,47,60,.3);
  --ink-12: rgba(34,47,60,.12);
  --slate:#24405f;
  --slate-deep:#14273f;
  --slate-deeper:#0e1b2b;
  --paper:#f4f5f7;
  --paper-dim:#e9ebee;
  --paper-2:#fbfcfd;
  --amber:#e2600d;
  --amber-deep:#b84c09;
  --amber-light:#f2915a;
  --white:#ffffff;
  --line: rgba(34,47,60,.1);
  --line-soft: rgba(244,245,247,.14);

  --f-display: 'Montserrat', sans-serif;
  --f-head: 'Montserrat', sans-serif;
  --f-body: 'Montserrat', sans-serif;

  --container: 1360px;
  --pad: clamp(20px, 4.5vw, 64px);
  --radius: 18px;

  --ease-o: cubic-bezier(.16,.84,.44,1);
  --ease-io: cubic-bezier(.65,0,.35,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:auto; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body.loading{ overflow:hidden; height:100vh; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
svg{ display:block; }

.container{
  max-width: var(--container);
  margin:0 auto;
  padding-left:var(--pad);
  padding-right:var(--pad);
}

/* Fix #1: every anchor-nav target gets breathing room above it so the
   fixed header never covers the heading — works for JS smooth-scroll
   AND plain native #hash navigation (direct links, JS not yet loaded). */
section[id]{ scroll-margin-top: 96px; }
@media (max-width: 980px){ section[id]{ scroll-margin-top: 84px; } }

::selection{ background:var(--amber); color:var(--slate-deeper); }

/* ---------- utility ---------- */
.eyebrow{
  font-family:var(--f-head);
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--amber-deep);
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
}
.eyebrow::before{
  content:'';
  width:26px; height:1px;
  background:var(--amber-deep);
  display:inline-block;
}
.light .eyebrow, .eyebrow.light{ color:var(--amber-light); }
.light .eyebrow::before, .eyebrow.light::before{ background:var(--amber-light); }

.section{
  position:relative;
  padding: clamp(70px,10vw,150px) 0;
}
.section-dark{
  background:var(--slate-deep);
  color:var(--paper-2);
}
.section-head{
  max-width:760px;
  margin-bottom: clamp(40px,6vw,80px);
}
.section-head h2{
  font-family:var(--f-display);
  font-weight:800;
  font-size:clamp(30px,4.4vw,54px);
  line-height:1.08;
  letter-spacing:-.01em;
  margin-top:16px;
}
.section-head p{
  margin-top:20px;
  font-size:clamp(16px,1.6vw,19px);
  color:var(--ink-70);
  max-width:620px;
  line-height:1.6;
}
.section-dark .section-head p{ color:rgba(244,245,247,.68); }

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--f-head);
  font-weight:600;
  font-size:14px;
  letter-spacing:.02em;
  padding:16px 28px;
  border-radius:100px;
  border:1px solid var(--ink);
  color:var(--ink);
  background:transparent;
  overflow:hidden;
  isolation:isolate;
}
.btn span{ position:relative; z-index:2; }
.btn svg{ position:relative; z-index:2; width:15px; height:15px; transition:transform .4s var(--ease-o); }
.btn::before{
  content:'';
  position:absolute; inset:0;
  background:var(--ink);
  transform:translateY(101%);
  transition:transform .45s var(--ease-io);
  z-index:1;
}
.btn:hover{ color:var(--paper); }
.btn:hover::before{ transform:translateY(0); }
.btn:hover svg{ transform:translate(3px,-3px); }
.btn-solid{ background:var(--ink); color:var(--paper); }
.btn-solid::before{ background:var(--amber); }
.btn-solid:hover{ color:var(--slate-deeper); }
.btn-amber{ border-color:var(--amber); color:var(--paper-2); }
.btn-amber::before{ background:var(--amber); }
.btn-amber:hover{ color:var(--slate-deeper); }
.light .btn, .btn.light{ border-color:rgba(244,245,247,.4); color:var(--paper-2); }
.light .btn::before, .btn.light::before{ background:var(--paper-2); }
.light .btn:hover, .btn.light:hover{ color:var(--slate-deeper); }

.tag{
  font-family:var(--f-head);
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:6px 12px;
  border:1px solid var(--ink-12);
  border-radius:100px;
  color:var(--ink-70);
}

/* ============================================================
   Loader
   ============================================================ */
#loader{
  position:fixed; inset:0; z-index:9999;
  background:var(--slate-deeper);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:26px;
}
#loader .loader-mark{
  font-family:var(--f-display);
  font-size:15vw;
  line-height:.8;
  color:var(--amber);
  font-weight:800;
  letter-spacing:-.02em;
}
#loader .loader-bar{
  width:min(320px,60vw); height:2px;
  background:rgba(244,245,247,.16);
  position:relative; overflow:hidden;
  border-radius:2px;
}
#loader .loader-bar i{
  position:absolute; left:0; top:0; bottom:0;
  width:0%; background:var(--amber);
  display:block;
}
#loader .loader-pct{
  font-family:var(--f-head); font-size:13px; color:rgba(244,245,247,.5); letter-spacing:.1em;
}

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor{
  position:fixed; top:0; left:0; width:14px; height:14px;
  border-radius:50%; background:var(--amber);
  pointer-events:none; z-index:9000; mix-blend-mode:difference;
  transform:translate(-50%,-50%);
  will-change:transform;
}
.cursor-ring{
  position:fixed; top:0; left:0; width:38px; height:38px;
  border-radius:50%; border:1px solid var(--ink-30);
  pointer-events:none; z-index:8999;
  transform:translate(-50%,-50%);
  transition:width .3s var(--ease-o), height .3s var(--ease-o), border-color .3s, background .3s;
  will-change:transform;
}
.cursor-ring.big{ width:70px; height:70px; background:rgba(226,96,13,.12); border-color:var(--amber); }
@media (hover:none), (pointer:coarse){
  .cursor,.cursor-ring{ display:none; }
}

/* ============================================================
   Header
   ============================================================ */
#site-header{
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:22px 0;
  transition: padding .4s var(--ease-o), background .4s var(--ease-o), box-shadow .4s;
}
#site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
#site-header.scrolled{
  padding:14px 0;
  background:rgba(244,245,247,.82);
  backdrop-filter:blur(14px) saturate(1.4);
  box-shadow:0 1px 0 var(--line);
}
.logo{
  font-family:var(--f-display);
  font-weight:800;
  font-size:20px;
  letter-spacing:-.02em;
  display:flex; align-items:baseline; gap:8px;
  color:var(--paper-2);
  transition:color .3s;
}
.logo small{
  font-family:var(--f-head); font-weight:600; font-size:10.5px;
  letter-spacing:.1em; text-transform:uppercase; color:rgba(244,245,247,.55);
  transition:color .3s;
}
/* the "RAO" wordmark is always brand orange, matching the source lockup */
.logo-mark{ color:var(--amber); }
#site-header.scrolled .logo{ color:var(--ink); }
#site-header.scrolled .logo small{ color:var(--ink-50); }
#site-header.scrolled .logo-mark{ color:var(--amber-deep); }
.footer-brand .logo-mark{ color:var(--amber); }

.nav-desktop{ display:flex; align-items:center; gap:2px; }
.nav-desktop a{
  position:relative;
  font-family:var(--f-head); font-size:13.5px; font-weight:600;
  padding:10px 16px; color:rgba(244,245,247,.75);
  transition:color .3s;
}
.nav-desktop a span{ position:relative; }
.nav-desktop a span::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:1px;
  background:var(--paper-2); transform:scaleX(0); transform-origin:right;
  transition:transform .35s var(--ease-o), background .3s;
}
.nav-desktop a:hover span::after,
.nav-desktop a.active span::after{ transform:scaleX(1); transform-origin:left; }
.nav-desktop a.active{ color:var(--paper-2); }
#site-header.scrolled .nav-desktop a{ color:var(--ink-70); }
#site-header.scrolled .nav-desktop a span::after{ background:var(--ink); }
#site-header.scrolled .nav-desktop a.active{ color:var(--ink); }

.header-right{ display:flex; align-items:center; gap:14px; }
.header-right > a.btn{
  border-color:rgba(244,245,247,.4); color:var(--paper-2);
}
.header-right > a.btn::before{ background:var(--paper-2); }
.header-right > a.btn:hover{ color:var(--slate-deeper); }
#site-header.scrolled .header-right > a.btn{ border-color:var(--ink); color:var(--ink); }
#site-header.scrolled .header-right > a.btn::before{ background:var(--ink); }
#site-header.scrolled .header-right > a.btn:hover{ color:var(--paper); }

.burger{
  width:46px; height:46px; border-radius:50%; border:1px solid rgba(244,245,247,.35);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px;
  background:none; transition:border-color .3s;
}
.burger i{ width:16px; height:1.4px; background:var(--paper-2); display:block; transition:transform .35s var(--ease-o), opacity .2s, background .3s; }
#site-header.scrolled .burger{ border-color:var(--ink-12); }
#site-header.scrolled .burger i{ background:var(--ink); }

/* Fix #2: hamburger morphs into an X while the mobile menu is open, so the
   button visibly communicates "tap to close" instead of staying 3 static bars. */
.burger.active i:nth-child(1){ transform: translateY(6.4px) rotate(45deg); }
.burger.active i:nth-child(2){ opacity:0; transform: scaleX(0); }
.burger.active i:nth-child(3){ transform: translateY(-6.4px) rotate(-45deg); }
@media (min-width: 981px){ .burger{ display:none; } }
@media (max-width: 980px){ .nav-desktop{ display:none; } }

/* mobile menu */
#mobile-menu{
  position:fixed; inset:0; z-index:850;
  background:var(--slate-deeper);
  clip-path: circle(0px at calc(100% - 45px) 45px);
  transition: clip-path .7s var(--ease-io);
  pointer-events:none;
}
#mobile-menu.open{ clip-path: circle(150% at calc(100% - 45px) 45px); pointer-events:auto; }
#mobile-menu .container{ height:100%; display:flex; flex-direction:column; justify-content:center; gap:6px; padding-top:100px; padding-bottom:60px; }
#mobile-menu a{
  font-family:var(--f-display); font-size:clamp(30px,8vw,52px); color:var(--paper-2);
  font-weight:700; padding:10px 0; border-bottom:1px solid var(--line-soft);
  opacity:0; transform:translateY(30px);
}
#mobile-menu .mm-foot{ margin-top:30px; color:rgba(244,245,247,.5); font-family:var(--f-head); font-size:13px; opacity:0; }

/* ============================================================
   Hero
   ============================================================ */
#hero{
  position:relative; min-height:100vh; display:flex; flex-direction:column; justify-content:flex-end;
  overflow:hidden; background:var(--slate-deeper); color:var(--paper-2);
}
#hero-canvas{ position:absolute; inset:0; z-index:1; }
#hero .hero-media{
  position:absolute; inset:0; z-index:0;
}
#hero .hero-media img{ width:100%; height:100%; object-fit:cover; opacity:.5; }
#hero .hero-scrim{
  position:absolute; inset:0; z-index:2;
  background:
    radial-gradient(120% 90% at 15% 100%, rgba(14,27,43,.92) 10%, rgba(14,27,43,.55) 45%, rgba(14,27,43,.15) 70%),
    linear-gradient(180deg, rgba(14,27,43,.75) 0%, rgba(14,27,43,.25) 30%, rgba(14,27,43,.55) 78%, rgba(14,27,43,.96) 100%);
}
#hero .container{ position:relative; z-index:3; width:100%; padding-top:150px; padding-bottom:56px; }
.hero-top-row{ display:flex; justify-content:space-between; align-items:flex-start; gap:30px; margin-bottom:26px; }
.hero-badge{
  font-family:var(--f-head); font-size:12.5px; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(244,245,247,.7); border:1px solid rgba(244,245,247,.25); border-radius:100px;
  padding:8px 16px; display:inline-flex; align-items:center; gap:8px;
}
.hero-badge i{ width:6px; height:6px; border-radius:50%; background:var(--amber); display:inline-block; box-shadow:0 0 0 3px rgba(226,96,13,.25); }
.hero-title{
  font-family:var(--f-display); font-weight:800;
  font-size:clamp(32px, 5.6vw, 82px);
  line-height:1.04; letter-spacing:-.02em;
  max-width:100%;
}
.hero-title .line{ overflow:hidden; display:block; }
.hero-title .line span{ display:block; }
.hero-title em{ font-style:normal; color:var(--amber); }
.hero-sub{
  margin-top:28px; max-width:520px; font-size:clamp(15px,1.4vw,18.5px);
  color:rgba(244,245,247,.72); line-height:1.65;
}
.hero-bottom{
  display:flex; align-items:flex-end; justify-content:space-between; gap:40px; flex-wrap:wrap;
  margin-top:56px; padding-top:36px; border-top:1px solid rgba(244,245,247,.16);
}
.hero-actions{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:clamp(24px,4vw,56px); }
.hero-stats .stat{ text-align:left; }
.hero-stats .stat b{
  display:block; font-family:var(--f-display); font-size:clamp(26px,3vw,40px); font-weight:700;
  color:var(--paper-2);
}
.hero-stats .stat span{ font-family:var(--f-head); font-size:12px; letter-spacing:.04em; color:rgba(244,245,247,.55); }
.scroll-cue{
  position:absolute; right:var(--pad); bottom:26px; z-index:4;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:rgba(244,245,247,.55); font-family:var(--f-head); font-size:11px; letter-spacing:.14em;
  writing-mode:vertical-rl;
}
.scroll-cue .line{ width:1px; height:52px; background:rgba(244,245,247,.25); position:relative; overflow:hidden; }
.scroll-cue .line i{ position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--amber); animation:cueDrop 2.2s ease-in-out infinite; }
@keyframes cueDrop{ 0%{ top:-100%; } 50%{ top:0; } 100%{ top:100%; } }
@media (max-width: 720px){ .scroll-cue{ display:none; } }

/* Fix #3: on common laptop heights (1366x768, 1280x800 logical) the hero's
   four-line headline + stats/CTA row measured 858px tall against a 720-800px
   viewport, pushing "Schedule a review call" below the fold. Tighten the
   vertical rhythm so the primary CTAs stay on screen at first paint. */
@media (max-height: 820px){
  #hero .container{ padding-top:104px; padding-bottom:28px; }
  .hero-top-row{ margin-bottom:14px; }
  .hero-badge{ padding:6px 14px; }
  .hero-title{ font-size:clamp(28px, 4.6vw, 60px); line-height:1.06; }
  .hero-sub{ margin-top:14px; font-size:clamp(14px,1.2vw,16.5px); }
  .hero-bottom{ margin-top:26px; padding-top:20px; }
  .hero-stats{ gap:clamp(18px,3vw,40px); }
  .hero-stats .stat b{ font-size:clamp(20px,2.4vw,30px); }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee-strip{
  background:var(--paper-dim); border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding:22px 0; overflow:hidden; position:relative;
}
.marquee-track{ display:flex; width:max-content; gap:0; will-change:transform; }
.marquee-track .grp{ display:flex; align-items:center; gap:0; }
.marquee-strip .item{
  font-family:var(--f-head); font-weight:600; font-size:clamp(18px,2.2vw,26px);
  color:var(--ink-30); padding:0 40px; white-space:nowrap; display:flex; align-items:center; gap:40px;
}
.marquee-strip .item::after{ content:'✦'; font-size:13px; color:var(--amber); }

/* ============================================================
   Approach / Why it matters
   ============================================================ */
.approach-lede{
  font-family:var(--f-display); font-weight:700;
  font-size:clamp(24px,3.6vw,44px); line-height:1.22; letter-spacing:-.01em;
  max-width:16ch;
}
.approach-lede .word{ opacity:.16; }
.approach-grid{
  margin-top:70px; display:grid; grid-template-columns:repeat(5,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
}
.approach-grid .cell{
  background:var(--paper); padding:30px 22px; min-height:190px;
  display:flex; flex-direction:column; justify-content:space-between;
}
.approach-grid .cell .num{ font-family:var(--f-head); font-size:12px; color:var(--amber-deep); font-weight:700; }
.approach-grid .cell p{ font-family:var(--f-head); font-size:16.5px; font-weight:600; line-height:1.35; }
@media (max-width: 900px){ .approach-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 560px){ .approach-grid{ grid-template-columns:1fr; } }

/* ============================================================
   Outcome checklist
   ============================================================ */
.outcome-wrap{ display:grid; grid-template-columns: .8fr 1.2fr; gap:60px; align-items:start; }
.outcome-media{ position:sticky; top:110px; border-radius:var(--radius); overflow:hidden; aspect-ratio:4/5; }
.outcome-media img{ width:100%; height:100%; object-fit:cover; }
.outcome-badge{
  position:absolute; left:18px; bottom:18px; background:var(--paper-2); border-radius:14px;
  padding:16px 20px; box-shadow:0 14px 34px rgba(14,27,43,.25); max-width:78%;
}
.outcome-badge b{ display:block; font-family:var(--f-display); font-size:34px; font-weight:800; color:var(--amber-deep); line-height:1; }
.outcome-badge span{ font-family:var(--f-head); font-size:12.5px; color:var(--ink-70); letter-spacing:.02em; }
.outcome-list{ display:flex; flex-direction:column; gap:10px; }
.outcome-item{
  display:flex; align-items:center; gap:20px; padding:20px 18px; border-radius:14px;
  border:1px solid var(--line); background:var(--paper-2);
  transition:transform .3s var(--ease-o), border-color .3s, background .3s;
}
.outcome-item:hover{ transform:translateX(6px); border-color:var(--amber-deep); background:var(--white); }
.outcome-item .outcome-num{
  font-family:var(--f-display); font-weight:800; font-size:26px; color:var(--ink-12);
  flex:none; width:38px; transition:color .3s;
}
.outcome-item:hover .outcome-num{ color:var(--amber-light); }
.outcome-item .ico{
  width:44px; height:44px; border-radius:50%; background:var(--paper); flex:none;
  display:flex; align-items:center; justify-content:center; transition:background .3s;
}
.outcome-item:hover .ico{ background:var(--amber); }
.outcome-item .ico svg{ width:18px; height:18px; stroke:var(--amber-deep); transition:stroke .3s; }
.outcome-item:hover .ico svg{ stroke:var(--white); }
.outcome-item h4{ font-family:var(--f-head); font-weight:600; font-size:clamp(17px,1.8vw,21px); }
@media (max-width: 900px){
  .outcome-wrap{ grid-template-columns:1fr; }
  .outcome-media{ position:relative; top:0; aspect-ratio:16/9; }
}

/* ============================================================
   Challenges accordion
   ============================================================ */
.acc{ border-top:1px solid var(--line); }
.acc-item{ border-bottom:1px solid var(--line); }
.acc-head{
  width:100%; background:none; border:0; text-align:left; padding:26px 0;
  display:flex; align-items:center; justify-content:space-between; gap:20px; color:var(--ink);
}
.acc-head .q-num{ font-family:var(--f-head); color:var(--amber-deep); font-size:13px; margin-right:16px; }
.acc-head h3{ font-family:var(--f-head); font-weight:600; font-size:clamp(17px,2vw,22px); flex:1; line-height:1.35; }
.acc-plus{ width:34px; height:34px; border-radius:50%; border:1px solid var(--ink-12); position:relative; flex:none; }
.acc-plus::before,.acc-plus::after{ content:''; position:absolute; background:var(--ink); top:50%; left:50%; }
.acc-plus::before{ width:12px; height:1.4px; transform:translate(-50%,-50%); }
.acc-plus::after{ width:1.4px; height:12px; transform:translate(-50%,-50%); transition:transform .35s var(--ease-o); }
.acc-item.open .acc-plus::after{ transform:translate(-50%,-50%) rotate(90deg) scale(0); }
.acc-item.open .acc-plus{ background:var(--ink); }
.acc-item.open .acc-plus::before,.acc-item.open .acc-plus::after{ background:var(--paper); }
.acc-body{ height:0; overflow:hidden; }
.acc-body-in{ padding:0 0 30px 58px; color:var(--ink-70); font-size:15.5px; max-width:640px; line-height:1.6; }
.acc-item.open .acc-head h3{ color:var(--amber-deep); }

/* ============================================================
   Process timeline (horizontal pin)
   ============================================================ */
#process{ background:var(--slate-deep); color:var(--paper-2); }
.process-pin{ height:100vh; display:flex; flex-direction:column; justify-content:center; overflow:hidden; }
.process-head{ padding: 0 var(--pad); margin-bottom:40px; text-align:left; }
.process-head .eyebrow{ justify-content:flex-start; }
.process-track{ display:flex; gap:26px; padding:0 var(--pad); width:max-content; }
.process-card{
  width:min(72vw,420px); background:rgba(244,245,247,.04); border:1px solid rgba(244,245,247,.14);
  border-radius:var(--radius); padding:36px 30px; flex:none;
}
.process-card .pc-num{ font-family:var(--f-display); font-size:44px; font-weight:700; color:rgba(244,245,247,.18); }
.process-card h3{ font-family:var(--f-head); font-size:22px; font-weight:600; margin-top:18px; color:var(--amber); }
.process-card p{ margin-top:14px; color:rgba(244,245,247,.65); font-size:15px; line-height:1.6; }
.process-progress{ margin:0 var(--pad); margin-top:44px; height:2px; background:rgba(244,245,247,.14); position:relative; }
.process-progress i{ position:absolute; left:0; top:0; bottom:0; width:0%; background:var(--amber); }
@media (max-height: 800px){
  .process-head{ margin-bottom:24px; }
  .process-head h2{ font-size:clamp(24px,3.2vw,38px) !important; }
  .process-card{ padding:26px 24px; }
  .process-card .pc-num{ font-size:32px; }
  .process-card h3{ margin-top:12px; font-size:19px; }
  .process-card p{ margin-top:10px; font-size:14px; }
  .process-progress{ margin-top:28px; }
}

/* ============================================================
   Disciplines
   ============================================================ */
.disc-wrap{ display:grid; grid-template-columns: .95fr 1.1fr; gap:0; border-top:1px solid var(--line); }
.disc-list{ border-right:1px solid var(--line); }
.disc-row{
  width:100%; text-align:left; background:none; border:0; border-bottom:1px solid var(--line);
  padding:22px 20px; display:flex; align-items:center; gap:18px; color:var(--ink-50);
}
.disc-row .dr-num{ font-family:var(--f-head); font-size:12.5px; color:var(--ink-30); flex:none; width:22px; }
.disc-row h3{ font-family:var(--f-head); font-weight:600; font-size:clamp(16px,1.9vw,20px); flex:1; }
.disc-row .dr-arrow{ opacity:0; transform:translateX(-6px); transition:all .3s var(--ease-o); width:16px; height:16px; stroke:var(--amber-deep); }
.disc-row.active{ color:var(--ink); }
.disc-row.active .dr-arrow{ opacity:1; transform:translateX(0); }
.disc-row.active .dr-num{ color:var(--amber-deep); }
.disc-panel{ position:relative; display:grid; }
.disc-pane{
  grid-area:1/1; padding:10px 10px 10px 44px;
  opacity:0; visibility:hidden; pointer-events:none;
  display:grid; grid-template-rows:auto auto; gap:20px; align-content:start;
}
.disc-pane.active{ opacity:1; visibility:visible; pointer-events:auto; }
.disc-pane .dp-media{ border-radius:14px; overflow:hidden; aspect-ratio:16/8; }
.disc-pane .dp-media img{ width:100%; height:100%; object-fit:cover; }
.disc-pane ul{ display:flex; flex-direction:column; gap:10px; }
.disc-pane ul li{ font-size:15px; color:var(--ink-70); padding-left:18px; position:relative; }
.disc-pane ul li::before{ content:''; position:absolute; left:0; top:9px; width:6px; height:6px; border-radius:50%; background:var(--amber); }
@media (max-width: 900px){
  .disc-wrap{ grid-template-columns:1fr; }
  .disc-list{ border-right:0; }
  .disc-pane{ padding:16px 0 0 12px; }
}

/* ============================================================
   Compliance / Built for F&B
   ============================================================ */
.compliance-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:20px; }
.compliance-grid .cimg{ border-radius:14px; overflow:hidden; position:relative; display:flex; flex-direction:column; background:var(--paper-2); border:1px solid var(--line); }
.compliance-grid .cimg .cimg-photo{ aspect-ratio:4/3; overflow:hidden; }
.compliance-grid .cimg img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease-o); }
.compliance-grid .cimg:hover img{ transform:scale(1.08); }
/* solid orange caption bar, matching the source deck's image treatment */
.compliance-grid .cimg span{
  color:var(--white); font-family:var(--f-head); font-size:13px; font-weight:700;
  background:var(--amber); padding:14px 16px;
}
.compliance-note{ margin-top:50px; max-width:820px; font-family:var(--f-head); font-size:clamp(18px,2.4vw,25px); font-weight:500; line-height:1.5; }
.compliance-note b{ color:var(--amber-deep); }
.compliance-formats{ margin-top:26px; display:flex; flex-wrap:wrap; gap:10px; }
@media (max-width: 900px){ .compliance-grid{ grid-template-columns:repeat(2,1fr); } }

/* ============================================================
   Differentiation
   ============================================================ */
.diff-wrap{ display:grid; grid-template-columns: .78fr 1.22fr; gap:50px; align-items:start; }
.diff-media{ position:sticky; top:110px; border-radius:var(--radius); overflow:hidden; aspect-ratio:3/4; border:1px solid rgba(244,245,247,.14); }
.diff-media img{ width:100%; height:100%; object-fit:cover; }
.diff-content{ display:flex; flex-direction:column; gap:36px; }
.diff-list{ display:flex; flex-direction:column; }
.diff-item{ display:flex; gap:20px; padding:20px 0; border-bottom:1px solid rgba(244,245,247,.14); }
.diff-item:first-child{ padding-top:0; }
.diff-item .di-ico{ flex:none; width:38px; height:38px; border-radius:50%; background:rgba(226,96,13,.14); display:flex; align-items:center; justify-content:center; }
.diff-item .di-ico svg{ width:17px; height:17px; stroke:var(--amber); }
.diff-item h4{ font-family:var(--f-head); font-weight:600; font-size:17px; color:var(--paper-2); }
.diff-item p{ margin-top:6px; font-size:14.5px; color:rgba(244,245,247,.6); line-height:1.55; }
.diff-quote{
  border:1px solid rgba(244,245,247,.18); border-radius:var(--radius); padding:36px 34px;
  background:rgba(244,245,247,.03);
}
.diff-quote .q-mark{ font-family:var(--f-display); font-size:52px; color:var(--amber); line-height:1; }
.diff-quote p{ font-family:var(--f-head); font-size:clamp(16px,1.7vw,19px); line-height:1.5; color:var(--paper-2); margin-top:6px; }
@media (max-width: 900px){
  .diff-wrap{ grid-template-columns:1fr; gap:30px; }
  .diff-media{ position:relative; top:0; aspect-ratio:16/9; }
}

/* ============================================================
   Team / delivery
   ============================================================ */
.team-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.team-col h3{ font-family:var(--f-head); font-weight:600; font-size:20px; margin-bottom:22px; display:flex; align-items:center; gap:10px; }
.team-col h3 i{ width:8px; height:8px; border-radius:50%; background:var(--amber-deep); display:inline-block; }
.team-col ul{ display:flex; flex-direction:column; gap:16px; }
.team-col li{ padding:18px 20px; border:1px solid var(--line); border-radius:12px; font-size:15px; color:var(--ink-70); display:flex; gap:14px; align-items:flex-start; }
.team-col li b{ font-family:var(--f-head); color:var(--ink); font-weight:600; }
.team-col .t-idx{ font-family:var(--f-head); font-size:12px; color:var(--amber-deep); flex:none; padding-top:2px; }
@media (max-width: 860px){ .team-wrap{ grid-template-columns:1fr; gap:30px; } }

/* ============================================================
   Leadership
   ============================================================ */
.leader-head{
  margin-top:26px; display:flex; align-items:center; gap:24px; flex-wrap:wrap;
  padding-bottom:32px; border-bottom:1px solid var(--line);
}
.leader-photo-circle{
  width:110px; height:110px; border-radius:50%; overflow:hidden; flex:none;
  border:3px solid var(--paper-2); box-shadow:0 8px 24px rgba(14,27,43,.15), 0 0 0 1px var(--line);
}
.leader-photo-circle img{ width:100%; height:100%; object-fit:cover; }
.leader-head-text{ flex:1; min-width:220px; }
.leader-name{ font-family:var(--f-display); font-size:clamp(26px,3.2vw,38px); font-weight:800; }
.leader-role{ font-family:var(--f-head); color:var(--amber-deep); font-weight:600; margin-top:6px; font-size:15px; }
.leader-cred{ margin-top:10px; color:var(--ink-50); font-size:13.5px; }
.leader-stat{
  margin-left:auto; text-align:right; padding-left:24px; border-left:1px solid var(--line); flex:none;
}
.leader-stat b{ display:block; font-family:var(--f-display); font-size:32px; font-weight:800; color:var(--amber-deep); line-height:1; }
.leader-stat span{ font-family:var(--f-head); font-size:12px; color:var(--ink-50); }
.leader-bio{ margin-top:28px; font-size:16px; color:var(--ink-70); line-height:1.7; max-width:70ch; }
.leader-tags{ margin-top:24px; display:flex; flex-wrap:wrap; gap:10px; }
@media (max-width: 640px){
  .leader-head{ gap:18px; }
  .leader-photo-circle{ width:76px; height:76px; }
  .leader-stat{ margin-left:0; padding-left:0; border-left:0; text-align:left; width:100%; padding-top:14px; border-top:1px solid var(--line); }
}

/* ============================================================
   Track record
   ============================================================ */
.track-wrap{ display:grid; grid-template-columns: 1fr 1fr; gap:60px; }
.track-main{ display:flex; flex-direction:column; }
.track-row{ display:grid; grid-template-columns: 90px 1fr auto; gap:16px; align-items:center; padding:20px 0; border-bottom:1px solid rgba(244,245,247,.14); }
.track-row .tr-flag{ font-family:var(--f-head); font-size:12px; color:var(--amber); border:1px solid rgba(226,96,13,.4); border-radius:100px; padding:6px 10px; text-align:center; }
.track-row h4{ font-family:var(--f-head); font-weight:600; font-size:16.5px; color:var(--paper-2); }
.track-row span{ font-size:13px; color:rgba(244,245,247,.55); }
.track-row p{ font-size:13.5px; color:rgba(244,245,247,.6); grid-column:2; margin-top:4px; }
.track-extra{
  margin-top:30px; padding-top:26px; border-top:1px solid rgba(244,245,247,.14);
  font-size:14px; line-height:1.8; color:rgba(244,245,247,.55);
}
.track-extra b{ color:var(--paper-2); }
.track-map{ position:relative; border:1px solid rgba(244,245,247,.14); border-radius:var(--radius); min-height:420px; overflow:hidden; }
.track-map svg{ width:100%; height:100%; }
.track-map .pin{ position:absolute; }
.track-map .pin .dot{ width:9px; height:9px; border-radius:50%; background:var(--amber); box-shadow:0 0 0 5px rgba(226,96,13,.2); }
.track-map .pin .pulse{ position:absolute; inset:-9px; border-radius:50%; border:1px solid var(--amber); opacity:0; animation:pinPulse 2.6s ease-out infinite; }
.track-map .pin .lbl{ position:absolute; top:14px; left:50%; transform:translateX(-50%); white-space:nowrap; font-family:var(--f-head); font-size:11px; color:rgba(244,245,247,.75); background:rgba(14,27,43,.7); padding:3px 8px; border-radius:6px; }
@keyframes pinPulse{ 0%{ transform:scale(.4); opacity:.9; } 100%{ transform:scale(2.4); opacity:0; } }
@media (max-width: 900px){ .track-wrap{ grid-template-columns:1fr; } .track-map{ min-height:320px; order:-1; } }

/* ============================================================
   Case studies
   ============================================================ */
.case-block{
  display:grid; grid-template-columns: 84px 180px 1fr; gap:8px 32px;
  padding:44px 0; border-top:1px solid var(--line);
}
.case-block:last-of-type{ border-bottom:1px solid var(--line); }

/* hollow ghost numeral — the single visual anchor per entry, replaces the
   orphaned pill badge that used to float over a now-removed photo */
.case-index{
  font-family:var(--f-display); font-weight:800; font-size:56px; line-height:1;
  color:transparent; -webkit-text-stroke:1.5px var(--ink-12); transition:-webkit-text-stroke-color .3s;
}
.case-block:hover .case-index{ -webkit-text-stroke-color:var(--amber-deep); }

/* one clean byline instead of a pill + small-caps label doing the same job */
.case-rail{ display:flex; flex-direction:column; gap:4px; padding-top:6px; }
.case-client{ font-family:var(--f-head); font-weight:700; font-size:14.5px; color:var(--ink); line-height:1.3; }
.case-loc{ font-family:var(--f-head); font-size:12.5px; color:var(--ink-50); }

.case-content{ min-width:0; }
.case-content h3{
  font-family:var(--f-display); font-weight:700; font-size:clamp(22px,2.6vw,30px);
  line-height:1.2; max-width:32ch; overflow-wrap:break-word;
}

/* underline tabs — matches the hover-underline language the header nav
   already uses, instead of the generic filled pill-button pattern */
.case-tabs{ display:flex; gap:24px; margin-top:24px; border-bottom:1px solid var(--line); flex-wrap:wrap; }
.case-tab{
  position:relative; font-family:var(--f-head); font-size:12.5px; font-weight:600;
  padding:0 0 12px; border:0; background:none; color:var(--ink-50); transition:color .25s;
}
.case-tab::after{
  content:''; position:absolute; left:0; right:0; bottom:-1px; height:2px;
  background:var(--amber-deep); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease-o);
}
.case-tab:hover{ color:var(--ink-70); }
.case-tab.active{ color:var(--ink); }
.case-tab.active::after{ transform:scaleX(1); }

.case-panels{ margin-top:22px; min-height:112px; }
.case-panel{ display:none; font-size:14.5px; color:var(--ink-70); line-height:1.7; max-width:56ch; }
.case-panel.active{ display:block; }
.case-panel ul{ display:flex; flex-direction:column; gap:8px; }
.case-panel li{ padding-left:16px; position:relative; }
.case-panel li::before{ content:''; position:absolute; left:0; top:9px; width:5px; height:5px; border-radius:50%; background:var(--amber-deep); }

@media (max-width: 700px){
  .case-block{ grid-template-columns: 52px 1fr; grid-template-areas:"idx rail" "content content"; row-gap:4px; }
  .case-index{ grid-area:idx; font-size:38px; }
  .case-rail{ grid-area:rail; flex-direction:row; align-items:baseline; gap:8px; padding-top:0; }
  .case-content{ grid-area:content; margin-top:18px; }
}

/* ============================================================
   Gallery — compact horizontal scroller (was a tall masonry grid)
   ============================================================ */
.gallery-section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.gallery-nav{ display:flex; gap:10px; flex:none; }
.gallery-nav-btn{
  width:46px; height:46px; border-radius:50%; border:1px solid var(--line); background:var(--paper-2);
  color:var(--ink); font-size:16px; transition:background .3s, border-color .3s, color .3s;
}
.gallery-nav-btn:hover{ background:var(--amber); border-color:var(--amber); color:var(--white); }

.gallery-grid{
  display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x proximity;
  padding-bottom:18px; scroll-behavior:smooth; -webkit-overflow-scrolling:touch;
}
.gallery-grid .g-item{
  flex:none; width:min(78vw,320px); height:230px; scroll-snap-align:start;
  border-radius:14px; overflow:hidden; position:relative; cursor:pointer;
}
.gallery-grid .g-item img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .7s var(--ease-o); }
.gallery-grid .g-item:hover img{ transform:scale(1.06); }
.gallery-grid .g-item .g-overlay{
  position:absolute; inset:0; background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,.6));
  opacity:0; transition:opacity .35s;
  display:flex; align-items:flex-end; padding:16px;
}
.gallery-grid .g-item:hover .g-overlay{ opacity:1; }
.gallery-grid .g-item .g-overlay span{ color:var(--white); font-family:var(--f-head); font-size:13px; font-weight:600; }
.gallery-grid::-webkit-scrollbar{ height:6px; }
.gallery-grid::-webkit-scrollbar-track{ background:var(--line); border-radius:6px; }
.gallery-grid::-webkit-scrollbar-thumb{ background:var(--amber-deep); border-radius:6px; }
@media (max-width: 560px){ .gallery-nav{ display:none; } }

#lightbox{
  position:fixed; inset:0; z-index:9500; background:rgba(10,12,15,.94);
  display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .35s;
}
#lightbox.open{ opacity:1; pointer-events:auto; }
#lightbox img{ max-width:88vw; max-height:82vh; border-radius:8px; box-shadow:0 30px 90px rgba(0,0,0,.5); }
#lightbox .lb-close{ position:absolute; top:26px; right:var(--pad); width:46px; height:46px; border-radius:50%; border:1px solid rgba(244,245,247,.3); background:none; color:var(--white); font-size:18px; }
#lightbox .lb-cap{ position:absolute; bottom:30px; left:0; right:0; text-align:center; color:rgba(244,245,247,.7); font-family:var(--f-head); font-size:13px; }
#lightbox .lb-nav{ position:absolute; top:50%; transform:translateY(-50%); width:50px; height:50px; border-radius:50%; border:1px solid rgba(244,245,247,.3); background:none; color:var(--white); }
#lightbox .lb-prev{ left:var(--pad); }
#lightbox .lb-next{ right:var(--pad); }

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.testi-card{ background:var(--paper-2); border:1px solid var(--line); border-radius:var(--radius); padding:40px; display:flex; flex-direction:column; gap:24px; }
.testi-card .q-mark{ font-family:var(--f-display); font-size:52px; color:var(--amber); line-height:1; }
.testi-card p{ font-size:16px; line-height:1.7; color:var(--ink-70); }
.testi-foot{ display:flex; align-items:center; gap:14px; margin-top:auto; }
.testi-foot .tf-avatar{ width:46px; height:46px; border-radius:50%; background:var(--slate-deep); color:var(--paper-2); display:flex; align-items:center; justify-content:center; font-family:var(--f-head); font-weight:700; }
.testi-foot b{ font-family:var(--f-head); font-size:14.5px; display:block; }
.testi-foot span{ font-size:12.5px; color:var(--ink-50); }
@media (max-width: 860px){ .testi-grid{ grid-template-columns:1fr; } }

/* ============================================================
   B2B
   ============================================================ */
.b2b-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.b2b-card{ border-radius:var(--radius); padding:44px 38px; position:relative; overflow:hidden; }
.b2b-card.one{ background:var(--slate-deep); color:var(--paper-2); }
.b2b-card.two{ background:var(--ink); color:var(--paper-2); }
.b2b-card .b2b-icon{ width:52px; height:52px; border-radius:14px; background:rgba(226,96,13,.15); display:flex; align-items:center; justify-content:center; margin-bottom:26px; }
.b2b-card .b2b-icon svg{ width:24px; height:24px; stroke:var(--amber); }
.b2b-card h3{ font-family:var(--f-display); font-size:clamp(20px,2.4vw,27px); font-weight:700; }
.b2b-card ul{ margin-top:20px; display:flex; flex-direction:column; gap:14px; }
.b2b-card li{ padding-left:20px; position:relative; font-size:14.5px; color:rgba(244,245,247,.68); line-height:1.55; }
.b2b-card li::before{ content:''; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background:var(--amber); }
.b2b-note{ margin-top:26px; text-align:center; font-family:var(--f-head); font-size:15px; color:rgba(244,245,247,.55); }
@media (max-width: 860px){ .b2b-grid{ grid-template-columns:1fr; } }

/* ============================================================
   Engage / Contact
   ============================================================ */
.engage-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.engage-card{ border:1px solid var(--line); border-radius:var(--radius); padding:28px 24px; transition:border-color .3s, transform .3s var(--ease-o); }
.engage-card:hover{ border-color:var(--amber-deep); transform:translateY(-6px); }
.engage-card .ec-num{ font-family:var(--f-display); font-size:13px; color:var(--amber-deep); font-weight:700; }
.engage-card h4{ font-family:var(--f-head); font-weight:600; font-size:17px; margin-top:14px; }
.engage-card p{ margin-top:8px; font-size:13.5px; color:var(--ink-50); }
@media (max-width: 900px){ .engage-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 560px){ .engage-grid{ grid-template-columns:1fr; } }

.contact-cta{ margin-top:90px; border-radius:28px; background:var(--slate-deep); color:var(--paper-2); overflow:hidden; position:relative; }
.contact-cta-inner{ position:relative; z-index:2; padding:clamp(40px,6vw,80px); display:grid; grid-template-columns:1.2fr 1fr; gap:50px; }
.contact-cta h2{ font-family:var(--f-display); font-size:clamp(30px,4vw,50px); font-weight:800; line-height:1.08; }
.contact-cta .cc-note{ margin-top:20px; color:rgba(244,245,247,.65); font-size:15.5px; max-width:44ch; line-height:1.6; }
.contact-cta .cc-actions{ margin-top:34px; display:flex; gap:16px; flex-wrap:wrap; }
.contact-info{ display:flex; flex-direction:column; gap:22px; justify-content:center; }
.contact-info .ci-row{ display:flex; gap:16px; align-items:flex-start; padding-bottom:20px; border-bottom:1px solid rgba(244,245,247,.14); }
.contact-info .ci-row:last-child{ border-bottom:0; }
.contact-info .ci-ico{ width:38px; height:38px; border-radius:50%; background:rgba(226,96,13,.14); display:flex; align-items:center; justify-content:center; flex:none; }
.contact-info .ci-ico svg{ width:16px; height:16px; stroke:var(--amber); }
.contact-info b{ font-family:var(--f-head); font-size:15px; display:block; }
.contact-info span{ font-size:13.5px; color:rgba(244,245,247,.6); }
.contact-info a:hover b{ color:var(--amber); }
@media (max-width: 860px){ .contact-cta-inner{ grid-template-columns:1fr; } }

/* ============================================================
   Footer
   ============================================================ */
footer{ background:var(--ink); color:rgba(244,245,247,.7); padding:70px 0 30px; }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:40px; flex-wrap:wrap; padding-bottom:50px; border-bottom:1px solid rgba(244,245,247,.12); }
.footer-brand .logo{ color:var(--paper-2); }
.footer-brand p{ margin-top:16px; max-width:340px; font-size:14px; color:rgba(244,245,247,.5); line-height:1.6; }
.footer-cols{ display:flex; gap:60px; flex-wrap:wrap; }
.footer-col h5{ font-family:var(--f-head); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:rgba(244,245,247,.4); margin-bottom:16px; }
.footer-col a, .footer-col span{ display:block; font-size:14.5px; padding:6px 0; color:rgba(244,245,247,.75); }
.footer-col a:hover{ color:var(--amber); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; flex-wrap:wrap; gap:14px; font-size:12.5px; color:rgba(244,245,247,.4); font-family:var(--f-head); letter-spacing:.03em; }
.footer-disc{ display:flex; gap:16px; flex-wrap:wrap; }

/* ============================================================
   Reveal helpers (GSAP targets)
   ============================================================ */
.reveal{ opacity:0; transform:translateY(40px); }
.split-line{ overflow:hidden; }

/* scrollbar accent */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--paper); }
::-webkit-scrollbar-thumb{ background:var(--ink-30); border-radius:10px; }

@media (max-width: 700px){
  .section{ padding: 56px 0; }
  .outcome-wrap, .diff-wrap, .team-wrap, .leader-wrap, .track-wrap{ gap:32px; }
}
