/* ============================================================
   Aksa Transport - CV Aksa Trekindo

   Design system measured from waabi.ai and re-pointed at Aksa's
   own brand. What was taken, and what was deliberately not:

   TAKEN   10px root so the scale reads in whole numbers; the type
           ramp with its line-height flip (85-90% display, 110-125%
           mid, 140-160% body) and -0.03em tracking band; opacity
           based text hierarchy instead of grey tokens; 12px card
           radius; 50px pill buttons; 7.15vw text gutter with a
           tight 24px gutter for full-bleed card rows; viewport
           scale pinned sections rather than tall padded blocks.

   NOT     waabi's #ff2c6b pink (Aksa's accent is its own maroon),
           and their text-black/50 body copy, which measures 3.4:1
           and fails AA. Softs here are tuned to pass.
   ============================================================ */

:root{
  /* 10px root, so 4.0rem === 40px and the ramp reads as measured */
  font-size:62.5%;

  --bg:#ffffff;
  --fg:#191818;                 /* waabi's foreground, warmer than pure ink */
  --cream:#e8e6e3;              /* waabi's cream, exact */
  --ink:#111010;
  /* Sampled from Aksa's own logo file, not guessed. The site ran on #7a0f13
     until they sent the real lockup; their red is brighter and cleaner. */
  --accent:#a90100;             /* Aksa red, used where waabi uses pink */
  --accent-hover:#7d0100;

  /* opacity-driven hierarchy, tuned up from waabi's 50% to pass AA */
  --fg-soft:color-mix(in srgb, var(--fg) 72%, transparent);   /* 7.0:1 body */
  --fg-mute:color-mix(in srgb, var(--fg) 65%, transparent);   /* 5.2:1 labels */
  --hair:color-mix(in srgb, var(--fg) 14%, transparent);

  --r:12px;                     /* one radius for every card and media box */
  --gut:7.15vw;                 /* waabi's w-calc text gutter */
  --gut-tight:24px;             /* their p-24 full-bleed card gutter */
  --pad-y:clamp(5rem,7vh,7.2rem);
  --maxw:150rem;

  /* One family. v1 paired a serif display face with Inter; Open Sans is the
     brief's "font utama", and pairing it with the old serif would read dated.
     Both tokens are kept so every existing rule resolves unchanged. */
  --serif:"Open Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  --sans:"Open Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  --ease:cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:auto}

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:var(--serif);
  font-size:1.6rem;             /* 16px body; display is 800 so it stays secondary */
  line-height:1.6;
  letter-spacing:0;
  font-optical-sizing:auto;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,p,figure,ul,ol{margin:0}
ul,ol{list-style:none;padding:0}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
table{border-collapse:collapse;width:100%}
::selection{background:var(--accent);color:#fff}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:2px}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.skip{
  position:absolute;left:1.6rem;top:-6rem;z-index:900;
  background:var(--ink);color:#fff;
  padding:1.2rem 1.8rem;border-radius:50px;
  font-family:var(--sans);font-size:1.3rem;font-weight:500;
  transition:top .2s;
}
.skip:focus{top:1.6rem}

/* ---------- type ramp ----------
   Re-cut for Open Sans and stepped up roughly 15% across the board, per the
   brief. Three things had to move together, not just the sizes:

   WEIGHT   v1 set every display step at 400, which works for a serif and
            looks anaemic in a humanist sans. Display is now 700/800.
   TRACKING v1 ran to -0.0578em, which a serif carries and Open Sans does
            not -- letters start colliding. Pulled back to about -0.03em.
   LEADING  line-height .85 assumed serif proportions. Open Sans has a
            taller x-height, so display sits near 1.0 to stop lines touching.
*/
.t-hero{font-weight:800;font-size:min(11vw,5.6rem);line-height:1.05;letter-spacing:-.032em}
.t-90{font-weight:800;font-size:3.6rem;line-height:1.12;letter-spacing:-.03em}
.t-80{font-weight:800;font-size:3.2rem;line-height:1.14;letter-spacing:-.028em}
.t-60{font-weight:700;font-size:2.6rem;line-height:1.15;letter-spacing:-.025em}
.t-40{font-weight:700;font-size:2.2rem;line-height:1.25;letter-spacing:-.02em}
.t-24{font-weight:400;font-size:1.8rem;line-height:1.45;letter-spacing:-.01em}
.t-20{font-weight:600;font-size:1.9rem;line-height:1.3;letter-spacing:-.015em}
.t-body{font-size:1.6rem;line-height:1.6;letter-spacing:0;color:var(--fg-soft);max-width:60ch}

@media (min-width:768px){
  /* Modest step up from the phone sizes — Open Sans 800 reads much larger
     than the serif 400 the original ramp was cut for, so the old 84/124px
     desktop display was overflowing a 1440×900 laptop. */
  .t-hero{font-size:min(6.6vw,7.2rem)}
  .t-90{font-size:5.4rem}
  .t-80{font-size:4.2rem}
  .t-60{font-size:3.4rem}
  .t-40{font-size:2.6rem}
  .t-24{font-size:1.9rem}
}

/* waabi's micro labels: sentence case, near-neutral tracking, never uppercase */
.t-label{
  font-family:var(--sans);font-size:1.2rem;line-height:1.4;
  font-weight:500;letter-spacing:.02em;color:var(--fg-mute);display:block;
}
.t-meta{
  font-family:var(--sans);font-size:1.35rem;line-height:1.4;
  font-weight:500;letter-spacing:.02em;
}

/* ---------- pill buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;
  height:4.6rem;padding:0 2.4rem;border-radius:50px;
  font-family:var(--sans);font-size:1.4rem;font-weight:700;letter-spacing:.01em;
  transition:background .2s,transform .15s var(--ease),opacity .2s;
}
.btn:active{transform:scale(.98)}
.btn--accent{background:var(--accent);color:#fff}      /* 11:1 */
.btn--accent:hover{background:var(--accent-hover)}
.btn--light{background:#fff;color:var(--fg)}
.btn--light:hover{background:var(--cream)}
.btn--ghost{border:1px solid color-mix(in srgb,currentColor 25%,transparent)}
.btn--ghost:hover{background:color-mix(in srgb,currentColor 8%,transparent)}

/* ============================================================
   nav
   ============================================================ */
.nav{
  position:fixed;left:0;right:0;top:1.6rem;z-index:500;
  display:flex;justify-content:flex-start;padding:0 var(--gut-tight);
  pointer-events:none;
}
.nav__pill{
  pointer-events:auto;
  display:flex;align-items:center;gap:1.2rem;
  padding:.8rem .8rem .8rem 1.6rem;
  background:color-mix(in srgb,var(--bg) 88%,transparent);
  backdrop-filter:blur(14px) saturate(1.4);
  -webkit-backdrop-filter:blur(14px) saturate(1.4);
  border-radius:var(--r);
  box-shadow:0 1px 2px rgba(14,18,27,.06),0 12px 34px -14px rgba(14,18,27,.22);
}
.nav__brand{display:flex;align-items:center;gap:.8rem;flex:0 0 auto}
/* Aksa's own lockup, replacing the mark+CSS wordmark the site used before
   they supplied it. Sized by height so the ratio never has to be restated. */
.nav__logo{height:2.8rem;width:auto;display:block}
.nav__here{
  font-family:var(--sans);font-size:1.45rem;font-weight:600;
  padding-left:1.2rem;border-left:1px solid var(--hair);
  color:var(--fg-mute);white-space:nowrap;
}
.nav__cta{
  flex:0 0 auto;white-space:nowrap;
  background:var(--accent);color:#fff;
  font-family:var(--sans);font-size:1.45rem;font-weight:700;
  padding:1rem 1.6rem;border-radius:50px;
  transition:background .2s,transform .15s var(--ease);
}
.nav__cta:hover{background:var(--accent-hover)}
.nav__cta:active{transform:scale(.97)}
.nav__burger{
  flex:0 0 auto;width:3.6rem;height:3.6rem;border-radius:50px;
  display:grid;place-content:center;gap:.45rem;transition:background .2s;
}
.nav__burger:hover{background:color-mix(in srgb,var(--fg) 7%,transparent)}
.nav__burger span{
  display:block;width:1.4rem;height:1.5px;background:currentColor;
  transition:transform .35s var(--ease);
}
.nav__burger[aria-expanded="true"] span:first-child{transform:translateY(3px) rotate(45deg)}
.nav__burger[aria-expanded="true"] span:last-child{transform:translateY(-3px) rotate(-45deg)}

.menu{
  position:fixed;inset:0;z-index:450;
  background:var(--ink);color:#fff;
  display:flex;align-items:center;
  padding:12rem var(--gut) var(--gut);
  overflow-y:auto;overscroll-behavior:contain;
  opacity:0;transition:opacity .4s var(--ease);
}
.menu[hidden]{display:none}
.menu.is-open{opacity:1}
.menu__inner{width:100%;max-width:var(--maxw);margin:0 auto}
.menu__list li{overflow:hidden;border-top:1px solid rgba(255,255,255,.14)}
.menu__list li:last-child{border-bottom:1px solid rgba(255,255,255,.14)}
.menu__list a{
  display:flex;align-items:baseline;gap:2rem;padding:.34em 0;
  font-size:clamp(2.4rem,4.4vw,4rem);line-height:1.1;letter-spacing:-.03em;
  translate:0 105%;transition:translate .6s var(--ease),color .25s;
}
.menu.is-open .menu__list a{translate:0 0}
.menu__list li:nth-child(1) a{transition-delay:.04s}
.menu__list li:nth-child(2) a{transition-delay:.08s}
.menu__list li:nth-child(3) a{transition-delay:.12s}
.menu__list li:nth-child(4) a{transition-delay:.16s}
.menu__list li:nth-child(5) a{transition-delay:.2s}
.menu__list li:nth-child(6) a{transition-delay:.24s}
.menu__list a:hover{color:rgba(255,255,255,.6)}
.menu__list i{font-family:var(--sans);font-style:normal;font-size:1rem;font-weight:500;opacity:.45}
.menu__foot{
  display:flex;flex-wrap:wrap;gap:2.4rem 6rem;
  margin-top:4rem;padding-top:2.4rem;border-top:1px solid rgba(255,255,255,.14);
}
.menu__foot .t-label{color:rgba(255,255,255,.55);margin-bottom:.8rem}
.menu__foot p{color:rgba(255,255,255,.85)}
.menu__foot a{text-decoration:underline;text-underline-offset:.22em;text-decoration-color:rgba(255,255,255,.35)}
.menu__foot a:hover{color:#fff;text-decoration-color:#fff}

/* ============================================================
   1. hero - 250svh track, 100svh pin, film scrubbed by scroll,
      then shrinks to a collage tile
   ============================================================ */
.hero{position:relative;z-index:50;height:250svh;margin-bottom:-75svh;color:#fff}
.hero__track{position:relative;height:100%}
.hero__pin{position:sticky;top:0;height:100svh;width:100%}
.hero__media{
  position:absolute;inset:0;transform-origin:50% 50%;
  will-change:transform,clip-path;clip-path:inset(0);overflow:hidden;
  background:#111010;
}
.hero__poster,
.hero__film{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:50% 55%;display:block;
}
.hero__media picture{
  position:absolute;inset:0;width:100%;height:100%;display:block;
}
.hero__media picture img{
  width:100%;height:100%;object-fit:cover;object-position:50% 55%;display:block;
}
.hero__film{opacity:0;pointer-events:none;transition:opacity .45s ease}
.hero__film.is-on{opacity:1}
.hero__tint{position:absolute;inset:0;background:rgba(8,8,9,.26)}
.hero__scrim{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg,rgba(8,8,9,.34) 0%,rgba(8,8,9,.02) 24%,rgba(8,8,9,.14) 50%,rgba(8,8,9,.8) 100%),
    linear-gradient(96deg,rgba(8,8,9,.5) 0%,rgba(8,8,9,0) 62%);
}
.hero__second{
  position:absolute;inset:auto 0 0 0;
  padding:0 0 clamp(6rem,10vh,10rem);
  opacity:0;pointer-events:none;
}
.hero__second-in{max-width:var(--maxw);margin:0 auto;padding:0 var(--gut)}
.hero__second p{max-width:26ch;text-wrap:balance}
.hero__flow{
  position:relative;margin-top:-100svh;height:100svh;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:0 0 clamp(5rem,8vh,8rem);
}
.hero__copy{max-width:var(--maxw);width:100%;margin:0 auto;padding:0 var(--gut)}
/* line-height .85 puts glyph tops and tails outside the line box, so the
   reveal mask needs headroom at both ends or it clips them */
.hero .line{display:block;overflow:hidden;padding:.18em 0;margin:-.18em 0}
.hero .line > span{display:block;translate:0 102%;transition:translate 1.05s var(--ease)}
.hero .line:nth-child(2) > span{transition-delay:.09s}
.hero.is-in .line > span{translate:0 0}
.hero__sub{
  margin-top:2.4rem;max-width:46ch;
  font-size:1.6rem;line-height:1.5;color:rgba(255,255,255,.92);
  opacity:0;translate:0 1rem;
  transition:opacity .9s .38s var(--ease),translate .9s .38s var(--ease);
}
.hero.is-in .hero__sub{opacity:1;translate:0 0}
.hero__btn{
  margin-top:3.2rem;align-self:flex-start;opacity:0;translate:0 1rem;
  transition:opacity .9s .5s var(--ease),translate .9s .5s var(--ease),background .2s;
}
.hero.is-in .hero__btn{opacity:1;translate:0 0}

/* ---------- reveal ---------- */
.reveal{opacity:0;translate:0 2rem;transition:opacity .85s var(--ease),translate .85s var(--ease)}
.reveal.is-in{opacity:1;translate:0 0}

/* ============================================================
   2. collage - four lanes of tiles, same object as the hero card.
   Outer lanes (1 and 4) drift in opposite directions on scroll;
   inner two stay put so the copy channel stays readable.
   ============================================================ */
.collage{position:relative;height:150svh;background:var(--bg);overflow:clip}
.lanes{position:absolute;inset:0;pointer-events:none}
.lane{
  position:absolute;top:0;height:150svh;
  display:flex;flex-direction:column;justify-content:space-between;
  will-change:transform;
}
.lane--1{left:24px}
.lane--2{left:16.667%}
.lane--3{right:16.667%}
.lane--4{right:24px}
.tile{display:block;width:11.2vw;height:11.2vw}
/* 1.11vw is 16px at 1440, which is exactly the radius main.js holds the
   shrinking hero card at, so the card lands on a tile that matches it. */
.tile img{width:100%;height:100%;object-fit:cover;border-radius:1.11vw;display:block}

/* The inner lanes start 16.667% from each edge and are one tile wide, so the
   free channel is 100 - 2*(16.667 + 11.2) = 44.3vw. The copy has to stay
   inside that or tiles land on the text -- this is why the tile size and this
   width can never be changed independently. */
.collage__copy{
  position:absolute;z-index:2;top:24%;left:50%;translate:-50% 0;
  width:min(38vw,46rem);text-align:center;
}
.collage__kicker{color:var(--fg-mute);margin-bottom:1.6rem}

.trusted{padding:var(--pad-y) 0;background:var(--bg)}
.trusted .head{max-width:var(--maxw);margin:0 auto;padding:0 var(--gut)}
.trusted h2{max-width:20ch}
.marquee{position:relative;margin-top:6rem}
.marquee__view{
  overflow:hidden;cursor:grab;user-select:none;touch-action:pan-y;
  border-block:1px solid var(--hair);padding-block:2.4rem;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 9%,#000 91%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 9%,#000 91%,transparent);
}
.marquee__view.is-grabbing{cursor:grabbing}
.marquee__track{display:flex;width:max-content;will-change:transform}
.marquee__set{display:flex;align-items:center}
.marquee__btn{
  position:absolute;top:50%;z-index:2;
  width:4.4rem;height:4.4rem;border-radius:50%;
  display:grid;place-content:center;
  background:color-mix(in srgb,var(--bg) 92%,transparent);
  backdrop-filter:blur(12px) saturate(1.4);
  -webkit-backdrop-filter:blur(12px) saturate(1.4);
  box-shadow:0 1px 2px rgba(14,18,27,.08),0 10px 28px -12px rgba(14,18,27,.28);
  color:var(--fg);
  transform:translateY(-50%);
  transition:background .2s,color .2s,transform .15s var(--ease);
}
.marquee__btn--prev{left:max(1.2rem,var(--gut-tight))}
.marquee__btn--next{right:max(1.2rem,var(--gut-tight))}
.marquee__btn svg{width:1.8rem;height:1.8rem;display:block}
.marquee__btn path{
  fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;
}
.marquee__btn:hover{background:#fff;color:var(--accent)}
.marquee__btn:active{transform:translateY(-50%) scale(.96)}
.marquee__set span{
  display:flex;align-items:center;justify-content:center;
  width:clamp(17rem,19vw,24rem);height:10rem;padding:0 1.2rem;
}
/* Full colour, not the usual greyscale wall. These are the official files the
   customers issued, and half of them are a mark sitting on its own brand block
   -- Circle K on red, Taro on green, FKS on black. Desaturating those turns a
   logo into a grey rectangle, which looks like a broken image rather than
   restraint. The radius softens the blocks so they sit as chips in the row.

   Every file is composed onto one 1000x290 canvas by tools/logos.py, with the
   mark optically balanced inside it, so sizing here is just "fill the cell".
   No max-height: that cap is what used to do the sizing, and it shrank the
   square badges to half the width of the wordmarks. */
.marquee__set img{
  width:100%;height:auto;pointer-events:none;
  -webkit-user-drag:none;user-select:none;
  border-radius:3px;opacity:.9;transition:opacity .3s,transform .3s var(--ease);
}
.marquee__set span:hover img{opacity:1;transform:scale(1.04)}

/* ============================================================
   4. statement - full viewport, one line of type and one action
   ============================================================ */
.statement{
  /* Height follows content (the old forced 100svh measured 26% full), and the
     top compensates for .trusted's bottom padding so the headline sits centred
     in its whitespace instead of 216px-above / 126px-below. */
  display:flex;align-items:center;
  padding:calc(var(--pad-y) * .4) 0 calc(var(--pad-y) * 1.4);overflow:clip;
}
.statement__in{max-width:var(--maxw);margin:0 auto;width:100%;padding:0 var(--gut)}
.statement h2{max-width:14ch}
.statement .btn{margin-top:4rem}

/* ============================================================
   5. fleet - full-bleed card row on the tight gutter
   ============================================================ */
.fleet{padding:0 var(--gut-tight) var(--pad-y)}
.fleet__grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gut-tight);
  max-width:var(--maxw);margin:0 auto;
}
.unit{
  background:var(--cream);border-radius:var(--r);
  padding:2.4rem;display:flex;flex-direction:column;
  transition:background .35s var(--ease);
}
.unit:hover{background:#e0ddd8}
.unit img{
  width:100%;height:clamp(12rem,15vw,17rem);object-fit:contain;object-position:50% 100%;
  margin-bottom:2rem;transition:transform .6s var(--ease);
}
.unit:hover img{transform:translateX(.6rem)}
.unit__band{font-family:var(--sans);font-size:1.3rem;font-weight:600;margin-top:.8rem}
.unit__use{font-size:1.5rem;line-height:1.4;color:var(--fg-soft);margin-top:1rem;flex:1}
.unit__cta{
  align-self:flex-start;margin-top:2.4rem;white-space:nowrap;
  font-family:var(--sans);font-size:1.3rem;font-weight:500;
  padding:1rem 1.6rem;border-radius:50px;background:var(--ink);color:#fff;
  transition:background .2s,transform .15s var(--ease);
}
.unit__cta:hover{background:var(--accent)}
.unit__cta:active{transform:scale(.97)}

/* ============================================================
   6. models - 200svh, media pinned left, copy cycling right
   ============================================================ */
.models{position:relative;background:var(--bg);height:200svh}
.models__in{
  max-width:var(--maxw);margin:0 auto;height:100%;
  padding:0 var(--gut);
  display:flex;gap:4rem;justify-content:space-between;
}
.models__media{position:relative;flex:1;max-width:60rem;height:100%}
.models__pin{
  position:sticky;top:0;height:100svh;display:flex;align-items:center;
}
.models__frame{
  position:relative;width:100%;aspect-ratio:1;
  border-radius:var(--r);overflow:hidden;background:var(--cream);
}
.models__frame img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  opacity:0;transition:opacity .55s var(--ease);
}
.models__frame img.is-on{opacity:1}

.models__col{position:relative;flex:1;max-width:42rem;height:100%}
.models__text{
  position:sticky;top:0;height:100svh;
  display:flex;flex-direction:column;justify-content:center;align-items:flex-start;gap:2rem;
}
.models__item{display:none}
.models__item.is-on{display:block}
.models__item h3{margin-bottom:1.2rem}
.models__item p{color:var(--fg-soft);max-width:38ch}
.models__item dl{margin-top:2.4rem;display:grid;gap:1.2rem}
.models__item div{display:flex;gap:1.6rem;align-items:baseline}
.models__item dt{
  font-family:var(--sans);font-size:1.2rem;font-weight:500;color:var(--fg-mute);
  min-width:11rem;
}
.models__item dd{margin:0;font-size:1.5rem}
/* progress rail, the same device waabi uses under its cycling column */
.models__rail{position:relative;height:1px;width:100%;background:var(--hair);overflow:hidden}
.models__rail i{
  position:absolute;inset:0 auto 0 0;display:block;
  background:var(--accent);width:0;transition:width .4s var(--ease);
}
.models__count{display:flex;justify-content:space-between;width:100%}

/* ============================================================
   7. commitments - dark, full viewport
   ============================================================ */
.commit{position:relative;min-height:100svh;display:flex;align-items:center;color:#fff;overflow:clip;
  padding:var(--pad-y) var(--gut)}
.commit__bg{position:absolute;inset:0;z-index:-1}
.commit__bg img{width:100%;height:100%;object-fit:cover;object-position:50% 45%}
.commit__bg::after{
  content:"";position:absolute;inset:0;
  background:rgba(40,40,42,.42);
}
.commit__in{
  max-width:var(--maxw);margin:0 auto;width:100%;
  padding:clamp(3.2rem,5vw,5.6rem) clamp(2.4rem,4vw,4.8rem);
  background:rgba(32,32,34,.62);
  -webkit-backdrop-filter:blur(14px) saturate(.85);
  backdrop-filter:blur(14px) saturate(.85);
  border-radius:var(--r);
  border:1px solid rgba(255,255,255,.1);
}
.commit__in h2{max-width:18ch;padding-top:.06em}
.commit__cols{
  display:grid;grid-template-columns:repeat(4,1fr);gap:3.2rem;
  margin-top:4.8rem;padding-top:3.2rem;border-top:1px solid rgba(255,255,255,.18);
}
.commit__cols h3{margin-bottom:1.2rem}
.commit__cols p{font-size:1.5rem;line-height:1.5;color:rgba(255,255,255,.86)}

/* ============================================================
   8. coverage - cream
   ============================================================ */
.coverage{background:var(--cream);padding:var(--pad-y) 0}
.coverage__head{max-width:var(--maxw);margin:0 auto;padding:0 var(--gut)}
.cities{
  display:flex;flex-wrap:wrap;gap:.8rem;
  max-width:var(--maxw);margin:5rem auto 0;padding:0 var(--gut);
}
.cities li{
  font-family:var(--sans);font-size:1.3rem;font-weight:500;
  padding:.9rem 1.6rem;border-radius:50px;
  border:1px solid color-mix(in srgb,var(--fg) 18%,transparent);
  color:var(--fg-soft);
}
.cities li b{font-weight:600;color:var(--accent)}
.cities li:has(b){border-color:var(--accent);background:color-mix(in srgb,var(--accent) 7%,transparent)}

.sectors{
  /* four, not v1's three: the sector list went from six to eight, and three
     columns left two orphans on the last row */
  display:grid;grid-template-columns:repeat(4,1fr);gap:var(--gut-tight);
  max-width:var(--maxw);margin:6rem auto 0;padding:0 var(--gut);
}
.sectors figure{position:relative;border-radius:var(--r);overflow:hidden}
.sectors img{width:100%;aspect-ratio:16/11;object-fit:cover;transition:transform .8s var(--ease)}
.sectors figure:hover img{transform:scale(1.05)}
.sectors figcaption{
  position:absolute;left:2rem;bottom:1.6rem;z-index:2;color:#fff;
  font-size:clamp(1.8rem,2vw,2.4rem);letter-spacing:-.03em;line-height:1;
  text-shadow:0 2px 18px rgba(0,0,0,.6);
}
.sectors figure::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,transparent 45%,rgba(0,0,0,.62));
}

/* ============================================================
   9. contact
   ============================================================ */
.cta{
  max-width:var(--maxw);margin:0 auto;padding:var(--pad-y) var(--gut);
  display:grid;grid-template-columns:.9fr 1.1fr;gap:6rem;align-items:center;
}
.cta__media img{border-radius:var(--r);width:100%;aspect-ratio:4/5;object-fit:cover}
.cta__copy .t-24{margin-top:2.4rem;color:var(--fg-soft);max-width:38ch}
.cta__copy .btn{margin-top:3.2rem}
.cta__rows{margin-top:5rem;border-top:1px solid var(--hair)}
.row{
  display:grid;grid-template-columns:12rem 1fr;align-items:center;gap:1.6rem;
  padding:1.8rem .4rem;border-bottom:1px solid var(--hair);
  transition:padding-inline .35s var(--ease),background .25s;
}
.row:hover{padding-left:1.6rem;padding-right:1.6rem;background:color-mix(in srgb,var(--fg) 3%,transparent)}
.row b{font-weight:400;font-size:clamp(1.7rem,1.6vw,2rem);letter-spacing:-.03em;
  text-decoration:underline;text-decoration-color:color-mix(in srgb,var(--fg) 22%,transparent);
  text-underline-offset:.28em;text-decoration-thickness:1px}
.row:hover b{color:var(--accent);text-decoration-color:var(--accent)}

/* ============================================================
   quote panel
   ============================================================ */
.rfq{position:fixed;inset:0;z-index:700}
.rfq[hidden]{display:none}
.rfq__scrim{position:absolute;inset:0;background:rgba(10,10,11,.55);opacity:0;transition:opacity .35s var(--ease)}
.rfq.is-open .rfq__scrim{opacity:1}
.rfq__panel{
  position:absolute;right:0;top:0;bottom:0;width:min(52rem,100%);
  background:var(--bg);padding:3.2rem;
  overflow-y:auto;overscroll-behavior:contain;
  translate:100% 0;transition:translate .45s var(--ease);
  box-shadow:-24px 0 60px -30px rgba(10,10,11,.5);
}
.rfq.is-open .rfq__panel{translate:0 0}
.rfq__head{display:flex;align-items:flex-start;justify-content:space-between;gap:1.6rem}
.rfq__x{
  flex:0 0 auto;width:3.6rem;height:3.6rem;border-radius:50px;
  display:grid;place-content:center;font-size:1.2rem;color:var(--fg-mute);
  transition:background .2s,color .2s;
}
.rfq__x:hover{background:var(--cream);color:var(--fg)}
.rfq__intro{margin-top:1.6rem;color:var(--fg-soft)}
.rfq__form{display:grid;grid-template-columns:1fr 1fr;gap:1.8rem;margin-top:3.2rem}
.fld{display:flex;flex-direction:column;gap:.7rem;grid-column:1/-1}
.fld--half{grid-column:span 1}
.fld label{font-family:var(--sans);font-size:1.3rem;font-weight:500}
.fld input,.fld select{
  font-family:var(--sans);font-size:1.5rem;
  padding:1.2rem 1.4rem;border-radius:8px;
  border:1px solid color-mix(in srgb,var(--fg) 24%,transparent);
  background:#fff;color:var(--fg);
  transition:border-color .2s,box-shadow .2s;
}
.fld input::placeholder{color:var(--fg-mute)}
.fld input:focus,.fld select:focus{
  outline:none;border-color:var(--accent);
  box-shadow:0 0 0 3px color-mix(in srgb,var(--accent) 16%,transparent);
}
.fld input[aria-invalid="true"]{border-color:var(--accent)}
.fld__err{grid-column:1/-1;margin:0;font-family:var(--sans);font-size:1.3rem;color:var(--accent)}
.rfq__send{grid-column:1/-1;margin-top:1rem;width:100%}
.rfq__alt{grid-column:1/-1;margin:0;font-family:var(--sans);font-size:1.3rem;color:var(--fg-mute);text-align:center}
.rfq__alt a{color:var(--accent);text-decoration:underline;text-underline-offset:.2em}

/* ============================================================
   footer
   ============================================================ */
.foot{background:var(--ink);color:#fff;padding:var(--pad-y) 0 3.2rem}
.foot__top{
  max-width:var(--maxw);margin:0 auto;padding:0 var(--gut) 6rem;
  display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:4rem;
}
.foot__brand{display:flex;align-items:center;gap:1.2rem;align-self:flex-start}
.foot__brand img{height:3.4rem;width:auto;display:block}
.foot__addr{color:rgba(255,255,255,.75)}
.foot__nav{display:flex;flex-direction:column;gap:1rem;align-items:flex-start}
.foot__nav a{font-family:var(--sans);font-size:1.3rem;font-weight:500;color:rgba(255,255,255,.75);transition:color .2s}
.foot__nav a:hover{color:#fff}
.foot__bar{
  /* full-bleed, so the hairline spans the viewport like the marquee's rules
     instead of floating as a 1500px strip on wide screens */
  margin-top:6rem;padding:2.4rem var(--gut) 0;
  border-top:1px solid rgba(255,255,255,.14);
  display:flex;justify-content:space-between;gap:2rem;flex-wrap:wrap;
  font-family:var(--sans);font-size:1.35rem;color:rgba(255,255,255,.6);
}
.foot__bar span{display:flex;align-items:center;gap:1rem}
.foot__astina{height:1.2rem;width:auto;opacity:.8}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width:1080px){
  .fleet__grid,.sectors{grid-template-columns:repeat(2,1fr)}
  .commit__cols{grid-template-columns:repeat(2,1fr)}
  .foot__top{grid-template-columns:1fr 1fr}
}
@media (max-width:860px){
  :root{--gut:24px}

  /* No shrink here. The card's whole job is to settle onto one collage tile,
     and below this width the collage is a mosaic rather than four scrolling
     lanes -- there is no tile at that position, so the card was landing on
     top of the copy instead. Hold the photo full-bleed and let the headline
     scroll off it, which is the part that reads on a phone anyway. */
  .hero{height:175svh;margin-bottom:0}
  .hero__media{transform:none!important;clip-path:none!important}
  .hero__scrim{opacity:1!important}
  .hero__second{display:none}

  /* waabi drops its lanes entirely below md. Ours carry Aksa's own yard and
     units, which is the reason the section exists, so they stay and are
     re-laid as a mosaic. display:contents dissolves the four lane boxes so
     their tiles become grid items of .lanes directly, which also makes the
     absolute positioning and the JS drift transform moot. */
  .collage{
    height:auto;min-height:0;padding:var(--pad-y) var(--gut);
    display:flex;flex-direction:column;
  }
  .collage__copy{order:-1;position:static;translate:0 0;width:auto;max-width:44rem;margin:0 auto;padding:0}
  .lanes{
    position:static;display:grid;grid-template-columns:repeat(3,1fr);
    gap:.8rem;margin-top:4.8rem;
  }
  .lane{display:contents}
  .lane .tile:nth-child(4){display:none}      /* 12 of 16, so it stays 4 rows */
  .tile{width:auto;height:auto;aspect-ratio:1}
  .tile img{border-radius:.8rem}

  /* the pinned two-column cycle has no room; stack it and show every model */
  .models{height:auto;padding:var(--pad-y) 0}
  .models__in{flex-direction:column;height:auto;gap:4rem}
  .models__media,.models__col{max-width:none;height:auto}
  .models__pin,.models__text{position:static;height:auto}
  .models__frame img{position:relative;opacity:1}
  .models__frame img:not(.is-on){display:none}
  .models__item{display:block;padding-bottom:4rem}
  .models__rail,.models__count{display:none}
  .cta{grid-template-columns:1fr}
  .cta__media{order:2}
  .cta__media img{aspect-ratio:16/10}
  .nav__here{display:none}
}

@media (max-width:640px){
  .fleet__grid,.sectors,.commit__cols{grid-template-columns:1fr}
  .foot__top{grid-template-columns:1fr}
  .row{grid-template-columns:1fr;row-gap:.4rem}
  .rfq__form{grid-template-columns:1fr}
  .fld--half{grid-column:1/-1}
  .rfq__panel{top:auto;width:100%;max-height:92svh;border-radius:var(--r) var(--r) 0 0;translate:0 100%}
  .marquee__btn{width:3.8rem;height:3.8rem}
}
@media (max-width:420px){
  .nav__logo{height:2rem}
  .nav__pill{gap:.8rem;padding-left:1.2rem}
  .nav__cta{font-size:1.2rem;padding:.9rem 1.2rem}
}

/* ============================================================
   reduced motion - the choreography collapses to plain sections
   ============================================================ */
@media (prefers-reduced-motion:reduce){
  .reveal,.hero .line>span,.hero__sub,.hero__btn{opacity:1!important;translate:0!important;transition:none!important}
  .hero{height:auto;margin-bottom:0}
  .hero__pin{position:relative}
  .hero__media{transform:none!important;clip-path:none!important}
  .hero__film{display:none}
  .hero__second{display:none}
  .collage{height:auto;min-height:0;padding:var(--pad-y) var(--gut)}
  .collage__copy{position:static;translate:0 0;width:auto;max-width:44rem;margin:0 auto}
  .models{height:auto;padding:var(--pad-y) 0}
  .models__in{flex-direction:column;height:auto}
  .models__pin,.models__text{position:static;height:auto}
  .models__frame img{position:relative;opacity:1}
  .models__frame img:not(.is-on){display:none}
  .models__item{display:block;padding-bottom:4rem}
  .models__rail,.models__count{display:none}
}

/* ============================================================
   Services, coverage, insights
   ============================================================ */

/* Services carry a heading of their own now, per the annotation. It sits in
   its OWN section, not inside .models: that block is a 200svh track whose
   .models__in is exactly 200svh too, so anything added beside it overflows
   the section and the sticky pin starts late. */
.svc-head{padding:var(--pad-y) 0 2.8rem}
.svc-head__in{max-width:var(--maxw);margin:0 auto;padding:0 var(--gut)}
.svc-head .t-label{
  font-size:1.4rem;line-height:1.5;font-weight:600;
  letter-spacing:.04em;
}
.svc-head__in h2{margin-top:1.2rem;padding-bottom:.08em}
.models__cta{margin-top:2.8rem}

/* Coverage as an editorial split: intro column left, region ledger right.
   The previous pass tried cards and the pill list fought every card size it
   was given, so the regions read as a ledger instead -- hairline rows, a
   status dot, and the cities as a chip cloud with the full row width. */
.cov{
  max-width:var(--maxw);margin:0 auto;padding:0 var(--gut);
  display:grid;grid-template-columns:minmax(30rem,38rem) 1fr;
  gap:clamp(3.2rem,6vw,9.6rem);align-items:start;
}
.cov__intro{position:sticky;top:9.6rem}
.cov__intro h2{margin-top:1.4rem}
.cov__ask{margin-top:2.8rem}
.cov__ledger{display:flex;flex-direction:column}
.cov__row{
  display:flex;flex-direction:column;gap:2rem;
  padding:3.2rem 0;border-top:1px solid var(--hair);
}
.cov__row:last-child{border-bottom:1px solid var(--hair)}
.cov__meta{display:flex;align-items:flex-start;gap:1.6rem}
.cov__dot{
  flex:0 0 auto;width:1.2rem;height:1.2rem;border-radius:50%;
  background:var(--accent);margin-top:1.3rem;
  box-shadow:0 0 0 4px color-mix(in srgb,var(--accent) 15%,transparent);
}
.cov__row--soon .cov__dot{
  background:transparent;border:2px solid var(--fg-mute);box-shadow:none;
}
.cov__status{
  font-family:var(--sans);font-size:1.25rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;color:var(--accent);display:block;margin-top:.6rem;
}
.cov__row--soon .cov__status{color:var(--fg-mute)}
.cov__row .cities{max-width:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.8rem}
.cov__row .cities li{
  font-family:var(--sans);font-size:1.4rem;font-weight:600;
  padding:.8rem 1.4rem;border-radius:50px;
  border:1px solid var(--hair);background:#fff;color:var(--fg);
}
.cov__row .cities b{font-weight:800;color:var(--accent)}
.cov__row .t-body{max-width:56ch}
.lnk{
  color:var(--accent);font-weight:700;font-family:var(--sans);font-size:inherit;
  text-decoration:underline;text-underline-offset:4px;text-decoration-thickness:1.5px;
  padding:0;transition:color .2s;
}
.lnk:hover{color:var(--accent-hover)}
.sectors__note{max-width:var(--maxw);margin:3.2rem auto 0;padding:0 var(--gut)}

/* duration as a choice rather than a sentence to compose */
.chips{display:flex;flex-wrap:wrap;gap:.8rem}
.chips input{position:absolute;opacity:0;pointer-events:none}
.chips label{
  display:inline-flex;align-items:center;padding:1rem 1.8rem;border-radius:50px;
  border:1.5px solid var(--hair);font-family:var(--sans);font-size:1.45rem;
  font-weight:700;cursor:pointer;transition:background .2s,border-color .2s,color .2s;
}
.chips input:checked + label{background:var(--accent);border-color:var(--accent);color:#fff}
.chips input:focus-visible + label{outline:2px solid var(--accent);outline-offset:3px}

/* insights: teasers into the static blog */
.insights{padding:var(--pad-y) 0;background:var(--bg)}
.insights__in{max-width:var(--maxw);margin:0 auto;padding:0 var(--gut)}
.insights__head{max-width:70rem}
.insights__head h2{margin-top:1.2rem}
.posts{margin-top:5.6rem;display:grid;grid-template-columns:repeat(3,1fr);gap:2.4rem}
.post{
  display:flex;flex-direction:column;border:1px solid var(--hair);
  border-radius:var(--r);overflow:hidden;
  transition:transform .3s var(--ease),border-color .3s;
}
.post:hover{transform:translateY(-.4rem);border-color:var(--accent)}
.post img{width:100%;aspect-ratio:16/10;object-fit:cover}
.post__in{padding:2.6rem;display:flex;flex-direction:column;flex:1}
.post__k{
  font-family:var(--sans);font-size:1.2rem;font-weight:700;letter-spacing:.07em;
  text-transform:uppercase;color:var(--accent);
}
.post h3{margin-top:1rem;font-size:2.1rem;font-weight:700;line-height:1.25;letter-spacing:-.015em}
.post p{margin-top:1.2rem;font-size:1.6rem;line-height:1.5;color:var(--fg-soft);flex:1}
.post__more{margin-top:2rem;font-family:var(--sans);font-size:1.45rem;font-weight:700;color:var(--accent)}

@media (max-width:1024px){
  .posts{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:860px){
  .cov{grid-template-columns:1fr;gap:3.2rem}
  .cov__intro{position:static}
  .posts{grid-template-columns:1fr}
}

/* Why Choose grew from four cards to seven. Four columns leaves a ragged row
   of three, so the last card spans two and the second row fills exactly. */
.commit__cols > div:last-child{grid-column:span 2}
@media (max-width:1024px){ .commit__cols > div:last-child{grid-column:span 2} }
@media (max-width:860px){ .commit__cols > div:last-child{grid-column:auto} }

.insights__all{margin-top:4rem}
