/* ============================================================
   Modern Cushions — design system
   ============================================================ */
:root {
  --sky-1: #8ba3d9;
  --sky-2: #a7b9e2;
  --sky-3: #ccd7ea;
  --cream: #f6efe4;
  --paper: #fdfbf7;
  --duck:  #ecf1f4;
  --pale:  #e4ecf7;
  --ink:   #111110;
  --char:  #191917;
  --card-brown: #565049;
  --body:  #5e5c58;
  --steel: #3d5e86;
  --steel-lt: #5b79a8;
  --line:  rgba(17, 17, 16, 0.12);
  --line-w: rgba(255, 255, 255, 0.16);
  --blue-card-1: #f0f5fc;
  --blue-card-2: #b9cdec;
  --cta-blue: #cbdef5;
  --r: 10px;
  --gutter: clamp(20px, 4.7vw, 72px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.container { padding-left: var(--gutter); padding-right: var(--gutter); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ---------- shared type ---------- */
.label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-transform: none;
}

.h-display {
  font-family: "Geist", Arial, sans-serif;
  font-weight: 250;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.statement {
  font-family: "Geist", Arial, sans-serif;
  font-weight: 250;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.28;
  letter-spacing: -0.005em;
}
.statement.steel { color: var(--steel); }
.statement.center { text-align: center; max-width: 880px; margin: 0 auto; }

.side-note { color: var(--body); font-size: 16px; max-width: 380px; }

/* ---------- reveal (hidden state only when JS is running) ---------- */
html.js .rv { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(.2,.6,.2,1), transform 0.9s cubic-bezier(.2,.6,.2,1); }
html.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn-pill {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 22px;
  border-radius: 8px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,30,60,.18); }

.icon-btn { display: inline-flex; align-items: stretch; gap: 6px; margin-top: 28px; }
.icon-btn .icon-box {
  display: grid; place-items: center;
  width: 46px; border-radius: 8px;
  background: var(--cta-blue);
  color: var(--steel);
  font-size: 19px;
  transition: background .25s ease;
}
.icon-btn .icon-label {
  display: grid; place-items: center;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 500;
  transition: transform .25s ease;
}
.icon-btn:hover .icon-label { transform: translateX(3px); }

/* ---------- WhatsApp ---------- */
.wa-ic { width: 18px; height: 18px; flex: none; }
.learn-more .wa-ic { color: #4fd06a; }
.icon-box-wa { color: #1faa4d; }
.icon-box-wa .wa-ic { width: 22px; height: 22px; }

/* Corner WhatsApp button — fallback only. The corner now belongs to the AI
   assistant below; chat.js re-mounts this if the widget fails to load. */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(10, 60, 30, 0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 34px rgba(10, 60, 30, 0.45); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- AI assistant (QalaDesk widget, themed to the house palette) ----------
   The widget injects its own <style> into <head> *after* this file loads, so its
   rules sit later in the cascade at equal specificity — every override below
   needs !important to win. IDs are the widget's; do not rename them. */

@keyframes mc-chat-in {
  0%   { opacity: 0; transform: scale(.6) translateY(14px); }
  70%  { opacity: 1; transform: scale(1.05) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
/* a single quiet lift every 12s — the wiggle the widget ships with is too loud
   for this page, and it stops for good once the chat has been opened */
@keyframes mc-chat-nudge {
  0%, 88%, 100% { transform: translateY(0) scale(1); }
  92%           { transform: translateY(-6px) scale(1.05); }
  96%           { transform: translateY(0) scale(1.01); }
}
@keyframes mc-chat-ring {
  0%   { transform: scale(1); opacity: .32; }
  70%  { transform: scale(2.1); opacity: 0; }
  100% { transform: scale(2.1); opacity: 0; }
}

#QALADESK-bubble {
  right: 22px !important;
  bottom: 22px !important;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(148deg, var(--steel-lt) 0%, var(--steel) 52%, #2b4467 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 14px 32px rgba(17, 32, 54, 0.34), 0 2px 8px rgba(17, 32, 54, 0.18) !important;
  animation: mc-chat-in .5s cubic-bezier(.34, 1.56, .64, 1) both,
             mc-chat-nudge 12s 5s ease-in-out infinite !important;
}
#QALADESK-bubble:hover {
  transform: scale(1.07) !important;
  box-shadow: 0 18px 40px rgba(17, 32, 54, 0.42), 0 4px 12px rgba(17, 32, 54, 0.2) !important;
}
#QALADESK-bubble svg { width: 25px; height: 25px; }

#QALADESK-pulse, #QALADESK-pulse2 {
  right: 22px !important;
  bottom: 22px !important;
  width: 60px !important;
  height: 60px !important;
  background: var(--steel) !important;
}
#QALADESK-pulse  { animation: mc-chat-ring 3s ease-out infinite !important; }
#QALADESK-pulse2 { animation: mc-chat-ring 3s ease-out .7s infinite !important; }

#QALADESK-dot {
  right: 24px !important;
  bottom: 70px !important;
  width: 13px !important;
  height: 13px !important;
  background: #d8593f !important;
  border-color: var(--paper) !important;
}

#QALADESK-tip {
  right: 96px !important;
  bottom: 33px !important;
  max-width: 252px !important;
  padding: 14px 16px !important;
  border-radius: 14px !important;
  background: var(--paper) !important;
  border: 1px solid var(--line);
  font-family: "Inter", Arial, sans-serif !important;
  color: var(--ink) !important;
  box-shadow: 0 18px 44px rgba(17, 32, 54, 0.18) !important;
}
#QALADESK-tip strong {
  font-family: "Geist", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px !important;
  letter-spacing: -0.005em;
  margin-bottom: 3px !important;
}
#QALADESK-tip span { color: var(--body) !important; font-size: 12.5px !important; line-height: 1.45; }
#QALADESK-tip::after { background: var(--paper) !important; }
#QALADESK-tip-close { background: var(--steel) !important; }

#QALADESK-iframe-container {
  right: 22px !important;
  bottom: 96px !important;
  width: 384px !important;
  height: min(600px, calc(100vh - 132px)) !important;
  height: min(600px, calc(100dvh - 132px)) !important;
  border-radius: 18px !important;
  box-shadow: 0 28px 70px rgba(17, 32, 54, 0.3), 0 6px 18px rgba(17, 32, 54, 0.12) !important;
}

/* The widget's own mobile rule makes the panel full-screen, which buries its
   only close button (the bubble) underneath it — there is no close control
   inside the iframe. Inset the panel instead so the bubble stays tappable. */
@media (max-width: 560px) {
  #QALADESK-bubble,
  #QALADESK-pulse, #QALADESK-pulse2 {
    right: 16px !important;
    bottom: 16px !important;
    width: 54px !important;
    height: 54px !important;
  }
  #QALADESK-dot { right: 18px !important; bottom: 58px !important; }
  #QALADESK-iframe-container {
    right: 10px !important;
    bottom: 82px !important;
    width: calc(100vw - 20px) !important;
    height: calc(100vh - 148px) !important;
    height: calc(100dvh - 148px) !important;
    border-radius: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #QALADESK-bubble { animation: none !important; }
  #QALADESK-pulse, #QALADESK-pulse2 { display: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg,
    var(--sky-1) 0%, var(--sky-2) 34%, var(--sky-3) 58%,
    #e4ddd2 80%, var(--cream) 100%);
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav-scrolled {
  background: #fff;
  padding: 13px var(--gutter);
  box-shadow: 0 1px 0 rgba(17, 17, 16, 0.08);
}
.nav-scrolled .logo-white { filter: none; }
.nav-scrolled .nav-links a { color: var(--ink); }
.nav-scrolled .btn-pill { background: var(--cta-blue); }
.nav-scrolled .btn-pill:hover { box-shadow: 0 8px 24px rgba(61, 94, 134, 0.25); }
.nav-scrolled .nav-burger span { background: var(--ink); }

section[id] { scroll-margin-top: 78px; }

/* ---------- split nav: burger left, logo centred, actions right ---------- */
.nav-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 26px; padding-bottom: 26px;
}
.nav-split .nav-burger { display: flex; justify-self: start; grid-column: 1; grid-row: 1; }
.nav-split .brand { justify-self: center; grid-column: 2; grid-row: 1; }
.nav-split .nav-inline { grid-column: 2; grid-row: 1; justify-self: center; display: none; }
.nav-split .nav-right { justify-self: end; grid-column: 3; grid-row: 1; display: flex; align-items: center; gap: clamp(16px, 2.4vw, 40px); }

/* once scrolled on laptop/desktop: logo left, full link bar centred, no burger */
@media (min-width: 861px) {
  .nav-scrolled.nav-split .nav-burger { display: none; }
  .nav-scrolled.nav-split .brand { grid-column: 1; justify-self: start; }
  .nav-scrolled.nav-split .nav-inline { display: flex; }
}
.nav-inline {
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  animation: navLinksIn .45s ease both;
}
.nav-inline a {
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: opacity .2s;
}
.nav-inline a:hover { opacity: .6; }
@keyframes navLinksIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.nav-split .logo-img { height: 46px; transition: height .35s ease; }
.nav-scrolled.nav-split { padding-top: 12px; padding-bottom: 12px; }
.nav-scrolled.nav-split .logo-img { height: 34px; }

.nav-action {
  font-size: 13px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: #fff;
  transition: opacity .25s;
}
.nav-action:hover { opacity: .65; }
.nav-action-key {
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 13px 26px;
}
.nav-action-key:hover { background: rgba(255, 255, 255, 0.14); opacity: 1; }
.nav-scrolled .nav-action { color: var(--ink); }
.nav-scrolled .nav-action-key { border-color: rgba(17, 17, 16, 0.3); }
.nav-scrolled .nav-action-key:hover { background: rgba(17, 17, 16, 0.06); }

.nav-burger { flex-direction: column; gap: 5px; padding: 8px; background: none; border: 0; }
.nav-burger span {
  display: block; width: 26px; height: 1.5px; background: #fff;
  transition: transform .35s ease, opacity .25s ease, background .35s ease;
}
.nav-scrolled .nav-burger span { background: var(--ink); }
.nav-burger[aria-expanded="true"] span { background: #fff; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- full-screen menu panel ---------- */
.nav-panel {
  position: fixed; inset: 0;
  z-index: 95;
  background: rgba(12, 12, 11, 0.97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: clamp(10px, 1.8vh, 22px);
  opacity: 0; visibility: hidden;
  transition: opacity .45s ease, visibility .45s;
}
.nav-panel.open { opacity: 1; visibility: visible; }
.nav-panel a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 300;
  color: #fff;
  opacity: .82;
  transform: translateY(14px);
  transition: opacity .3s, transform .5s;
}
.nav-panel.open a { transform: none; }
.nav-panel a:hover { opacity: 1; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.logo-img { height: 36px; width: auto; display: block; }
.logo-big { height: clamp(48px, 5vw, 68px); }
.logo-white { filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 34px; }
.nav-links a { color: #fff; font-weight: 500; font-size: 16px; opacity: .95; transition: opacity .2s; }
.nav-links a:hover { opacity: .65; }
.nav-burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; }

.hero-stage { position: relative; flex: 1; min-height: 66vh; }

/* ---------- hero carousel ---------- */
.hero-carousel {
  position: absolute;
  top: 0; left: 0; right: 0;
  /* extra height below the fold so the parallax drift never reveals a gap */
  height: calc(100% + 26vh);
  overflow: hidden;
  z-index: 1;
  background: #0e0e0d;
  will-change: transform;
}
/* scrim so the white nav stays legible over any photo */
.hero-carousel::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 190px;
  background: linear-gradient(rgba(8, 10, 16, 0.55), transparent);
  pointer-events: none;
  z-index: 2;
}
.hc-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(.4,0,.2,1);
}
.hc-slide.is-on { opacity: 1; }
.hc-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 5.5s linear;
}
.hc-slide.is-on img { transform: scale(1); }
/* centred serif headline, one per slide */
.hc-slide figcaption {
  position: absolute; left: 0; right: 0;
  top: calc(50% - 13vh);
  transform: translateY(-50%);
  z-index: 3;
  padding: 0 clamp(24px, 8vw, 140px);
  text-align: center;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(38px, 5.4vw, 92px);
  line-height: 1.06;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 40px rgba(8, 10, 16, 0.5);
  opacity: 0;
  transition: opacity .85s .2s ease;
}
.hc-slide.is-on figcaption { opacity: 1; }

/* vertical slide markers, centred on the left edge */
.hc-dots {
  position: absolute;
  left: clamp(18px, 3.2vw, 46px);
  top: calc(50% - 13vh);
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px;
  z-index: 4;
}
.hc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  padding: 0; cursor: pointer;
  position: relative;
  transition: background .3s;
}
.hc-dot:hover { background: #fff; }
.hc-dot::before {
  content: ""; position: absolute;
  inset: -8px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  opacity: 0; transform: scale(.7);
  transition: opacity .4s, transform .4s;
}
.hc-dot[aria-selected="true"] { background: #fff; }
.hc-dot[aria-selected="true"]::before { opacity: 1; transform: scale(1); }

/* scroll chevron */
.hc-scroll {
  position: absolute; left: 50%;
  bottom: calc(26vh + clamp(26px, 4vh, 46px));
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.9);
  padding: 10px;
  animation: hcNudge 2.6s ease-in-out infinite;
}
.hc-scroll svg { width: 30px; height: 17px; display: block; }
.hc-scroll:hover { color: #fff; }
@keyframes hcNudge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}
@media (prefers-reduced-motion: reduce) { .hc-scroll { animation: none; } }

/* .hero-sub is still used by the accessories page hero */
.hero-sub {
  max-width: 380px;
  padding-left: 22px;
  border-left: 1px solid rgba(94, 92, 88, 0.5);
  font-family: "Geist", Arial, sans-serif;
  font-weight: 250;
  font-size: 22px;
  line-height: 1.4;
  color: var(--body);
}

/* ============================================================
   THE NAME (definition + expanding image)
   ============================================================ */
.sec-name { background: var(--paper); padding-top: 120px; }

.two-col { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.col-label .label { position: sticky; top: 40px; }
.col-body .statement { max-width: 820px; }
.side-note + .side-note { margin-top: 18px; }

.sec-name .two-col + .two-col { margin-top: 100px; }

.expand-wrap { height: 210vh; margin-top: 60px; }
.expand-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.expand-media {
  --p: 0;
  position: relative;
  width: calc(62% + 38% * var(--p));
  height: calc(56vh + 44vh * var(--p));
  border-radius: calc(12px * (1 - var(--p)));
  overflow: hidden;
}
.expand-media::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(8, 10, 16, calc(0.45 * var(--p)));
}
.expand-media img { width: 100%; height: 100%; object-fit: cover; }

.define-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 34px clamp(20px, 4vw, 64px) 48px;
  border-top: 1px solid rgba(255,255,255,.55);
  color: #fff;
  opacity: calc((var(--p) - 0.55) / 0.45);
}
.define-left h3 { font-family: "Geist", Arial, sans-serif; font-weight: 400; font-size: 24px; }
.define-left h4 { font-weight: 400; font-size: 19px; opacity: .85; margin-top: 4px; }
.define-right h4 {
  font-family: "Geist", Arial, sans-serif; font-weight: 250;
  font-size: clamp(20px, 2.1vw, 32px); line-height: 1.3;
  max-width: 560px; text-align: right;
}

/* ============================================================
   EMPTY IN / FINISHED OUT (duck egg)
   ============================================================ */
.sec-duck { background: var(--duck); padding: 140px 0 130px; }
.sec-duck .h-display { color: var(--body); margin-bottom: 90px; }

.io-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 16px; }
.io-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  height: min(78vh, 680px);
}
.io-van { display: flex; align-items: center; justify-content: center; padding: clamp(24px, 4vw, 64px); }
.io-van img {
  max-width: min(88%, 620px); height: auto;
  filter: drop-shadow(0 36px 42px rgba(30, 40, 70, 0.28));
}
.io-van figcaption {
  position: absolute; left: 28px; bottom: 22px;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--body);
}
.io-num { color: var(--steel-lt); margin-right: 8px; }
.io-done img { width: 100%; height: 100%; object-fit: cover; }
.caption-card {
  position: absolute;
  left: clamp(16px, 2.4vw, 36px); bottom: clamp(16px, 2.4vw, 36px);
  max-width: 450px;
  background: #0e0e0d;
  color: #fff;
  border-radius: var(--r);
  padding: 26px 30px 30px;
}
.caption-card h3 { display: flex; align-items: center; gap: 10px; font-weight: 400; font-size: 18px; margin-bottom: 12px; }
.caption-card .dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; }
.caption-card p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.82); }

/* ============================================================
   ANATOMY (exploded seat)
   ============================================================ */
.sec-anatomy { background: #fff; color: var(--steel); padding: 40px 0 0; overflow: clip; }

.anatomy-head { display: flex; flex-direction: column; align-items: center; gap: 40px; padding-top: 60px; }
.pill-label {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 16px;
  background: rgba(255,255,255,.4);
}

.anatomy-wrap { height: 260vh; }
.anatomy-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
}

.explode-stage {
  position: relative;
  width: min(calc(min(88vh, 820px) * 0.6667), 94vw);
  aspect-ratio: 1024 / 1536;
}
.es-assembled {
  position: absolute;
  left: 50%; top: 47%;
  height: 64%; width: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 30px 36px rgba(30, 40, 70, 0.25));
  will-change: transform, opacity;
}
.es-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.es-part {
  position: absolute;
  will-change: transform, opacity;
  opacity: 0;
  filter: drop-shadow(0 14px 18px rgba(30, 40, 70, 0.18));
  pointer-events: none;
}
.es-label {
  --lt: 0;
  position: absolute;
  display: flex; align-items: center;
  pointer-events: none;
}
.lb-block {
  display: block;
  max-width: 240px;
  opacity: calc((var(--lt) - 0.35) / 0.65);
  transform: translateY(calc(5px * (1 - var(--lt))));
}
.side-l .lb-block { text-align: right; padding-right: 14px; margin-left: auto; }
.side-r .lb-block { text-align: left; padding-left: 14px; }
.lb-name {
  display: block;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--steel);
}
.lb-num {
  font-style: normal; font-weight: 500;
  font-size: 10px; color: var(--steel-lt);
  margin-right: 8px; letter-spacing: .12em;
}
.lb-desc {
  display: block; margin-top: 4px;
  font-size: 11.5px; line-height: 1.45;
  color: var(--body);
  text-transform: none; letter-spacing: 0;
}
.es-label .lb-line {
  flex: none; width: 0;
  position: relative;
  border-top: 1px solid rgba(61, 94, 134, 0.55);
}
.side-l .lb-line, .side-r .lb-line {
  flex: 1;
  transform: scaleX(min(1, calc(var(--lt) * 1.6)));
}
.side-l .lb-line { transform-origin: right center; }
.side-r .lb-line { transform-origin: left center; }
.lb-line::after {
  content: "";
  position: absolute; top: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--steel);
}
.side-l .lb-line::after { right: -3px; }
.side-r .lb-line::after { left: -3px; }
.side-b {
  flex-direction: column; align-items: center;
  transform: none;
}
.side-b .lb-vline {
  position: relative;
  width: 1px; height: 26px;
  background: rgba(61, 94, 134, 0.55);
  transform: scaleY(min(1, calc(var(--lt) * 1.6)));
  transform-origin: top center;
}
.side-b .lb-vline::before {
  content: "";
  position: absolute; top: -3px; left: -2.5px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--steel);
}
.side-b .lb-block { text-align: center; padding: 8px 0 0; margin: 0; }

.xfade-cue {
  position: absolute;
  bottom: 5vh; left: 50%;
  transform: translateX(-50%);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--body);
  opacity: calc(1 - var(--cue-hide, 0));
  transition: opacity .4s;
  white-space: nowrap;
}

.anatomy-specs {
  position: absolute; top: 12vh; right: var(--gutter);
  display: grid; gap: 8px;
  text-align: right;
}
.anatomy-specs div { display: flex; justify-content: flex-end; gap: 16px; align-items: baseline; }
.anatomy-specs dt { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); }
.anatomy-specs dd { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--steel-lt); }


/* ============================================================
   DARK — COLLECTION
   ============================================================ */
.sec-dark { background: var(--char); color: #fff; padding: 150px 0 150px; overflow: clip; }

.dark-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 90px; }
.dark-lede { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.85); max-width: 480px; justify-self: end; margin-top: 8px; }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-w);
  border-bottom: 1px solid var(--line-w);
}
.stats-row div {
  padding: 34px 26px 30px;
  border-left: 1px solid var(--line-w);
  display: grid; gap: 8px;
}
.stats-row div:first-child { border-left: 0; }
.stats-row strong { font-family: "Geist", Arial, sans-serif; font-weight: 250; font-size: clamp(30px, 3vw, 46px); }
.stats-row span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }

.chart-block { padding-top: 90px; padding-bottom: 40px; }
.chart { display: grid; gap: 26px; }
.chart-row { display: grid; grid-template-columns: 210px 1fr 170px; align-items: center; gap: 22px; }
.chart-name { font-size: 14px; color: rgba(255,255,255,.85); }
.chart-val { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.chart-track {
  height: 30px;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px calc(100% / 12));
  background-size: 100% 100%;
}
.chart-bar { height: 100%; width: 0; background: var(--steel-lt); transition: width 1.4s cubic-bezier(.2,.7,.2,1); }
.chart-bar.bar-alt { background: repeating-linear-gradient(45deg, rgba(91,121,168,.9) 0 6px, rgba(91,121,168,.4) 6px 12px); }
.chart.play .chart-bar { width: var(--w); }
.chart-axis { display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .08em; color: rgba(255,255,255,.45); padding-top: 4px; }

.dark-statement { margin-top: 90px; margin-bottom: 70px; }
.dark-statement .statement { max-width: 900px; }

.seat-tabs { display: flex; gap: 34px; margin-bottom: 44px; border-bottom: 1px solid var(--line-w); }
.tab {
  padding: 0 2px 14px;
  font-size: 16px;
  color: rgba(255,255,255,.45);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .25s;
}
.tab:hover { color: rgba(255,255,255,.8); }
.tab.active { color: #fff; border-bottom-color: #fff; }

.seat-splide { padding-left: var(--gutter); }
.seat-splide .splide__slide { border-radius: var(--r); overflow: hidden; }
.slide-img { width: min(460px, 78vw); height: 560px; }
.slide-img img { width: 100%; height: 100%; object-fit: cover; }
.slide-txt {
  width: min(520px, 82vw); height: 560px;
  background: var(--card-brown);
  padding: 42px 44px 38px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.slide-txt h3 { font-family: "Geist", Arial, sans-serif; font-weight: 250; font-size: 30px; line-height: 1.2; margin-bottom: 18px; }
.slide-txt p { color: rgba(255,255,255,.78); font-size: 15.5px; line-height: 1.65; max-width: 400px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag-list li {
  font-size: 12.5px; color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: 6px 12px;
}
.learn-more {
  display: flex; align-items: center; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.25);
  font-weight: 500; font-size: 15px;
}
.learn-more span { font-size: 17px; }
.learn-more:hover { opacity: .75; }

.seat-splide .splide__arrow {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--cta-blue); opacity: 1;
}
.seat-splide .splide__arrow svg { fill: var(--steel); width: 18px; height: 18px; }
.seat-splide .splide__arrow:disabled { opacity: .25; }
.seat-splide .splide__pagination { display: none; }

/* ============================================================
   SERVICE — if it has seats
   ============================================================ */
.sec-service { background: var(--paper); padding: 150px 0; }
.service-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 110px); align-items: start; }
.service-copy .side-note { margin-top: 34px; }
.service-list { margin-top: 40px; columns: 2; column-gap: 40px; }
.service-list li {
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  break-inside: avoid;
}
.service-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.service-collage figure { border-radius: var(--r); overflow: hidden; position: relative; }
.service-collage img { width: 100%; height: 300px; object-fit: cover; transition: transform .6s ease; }
.service-collage figure:hover img { transform: scale(1.04); }
.service-collage figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px;
  font-size: 12.5px; color: #fff; letter-spacing: .02em;
  background: linear-gradient(transparent, rgba(0,0,0,.62));
}

.trusted-by {
  display: flex; align-items: center; gap: clamp(30px, 5vw, 80px);
  margin-top: 110px; padding-top: 40px;
  border-top: 1px solid var(--line);
}
.trusted-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--body); flex: none; }

.logo-marquee {
  flex: 1;
  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);
}
.lm-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.logo-marquee:hover .lm-track { animation-play-state: paused; }
.lm-set {
  display: flex; align-items: center;
  gap: clamp(44px, 4.5vw, 84px);
  padding-right: clamp(44px, 4.5vw, 84px);
}
.lm-set img {
  height: 52px; width: auto;
  max-width: 170px; object-fit: contain;
  filter: grayscale(1) opacity(0.72);
  transition: filter .3s;
}
.lm-set img:hover { filter: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .lm-track { animation: none; width: auto; flex-wrap: wrap; }
  .lm-set[aria-hidden="true"] { display: none; }
  .lm-set { flex-wrap: wrap; gap: 30px; }
}

/* ============================================================
   PALE — testimonials
   ============================================================ */
.sec-pale { background: var(--pale); padding: 150px 0; }
.sec-pale .statement { max-width: 860px; }

.quote-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 90px;
}
.quote-card {
  background: linear-gradient(180deg, var(--blue-card-1) 0%, var(--blue-card-2) 130%);
  border-radius: var(--r);
  padding: 30px 26px 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 44px;
  min-height: 380px;
}
.quote-card p {
  font-family: "Geist", Arial, sans-serif;
  font-weight: 300; font-size: 18.5px; line-height: 1.45;
  color: #21293a;
}
.quote-card footer { display: grid; gap: 3px; }
.quote-card strong { font-size: 15px; font-weight: 600; }
.quote-card span { font-size: 13.5px; color: #4c5a75; }
.quote-card em {
  font-style: normal; justify-self: start; margin-top: 12px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(33,41,58,.3); border-radius: 999px; padding: 5px 10px;
  color: #33405c;
}

.cta-card {
  position: relative;
  margin-top: 16px;
  background: var(--cta-blue);
  border-radius: var(--r);
  padding: 46px clamp(26px, 4vw, 60px) 52px;
  overflow: hidden;
}
.cta-mark { height: 34px; width: auto; margin-bottom: 70px; position: relative; }
.cta-dots {
  position: absolute; inset: 0 0 auto 0; height: 100%;
  background-image: radial-gradient(rgba(61,94,134,.5) 1px, transparent 1.4px);
  background-size: 26px 18px;
  -webkit-mask-image: linear-gradient(115deg, transparent 42%, rgba(0,0,0,.8) 60%, transparent 82%);
          mask-image: linear-gradient(115deg, transparent 42%, rgba(0,0,0,.8) 60%, transparent 82%);
  pointer-events: none;
}
.cta-card h3 {
  position: relative;
  font-family: "Geist", Arial, sans-serif;
  font-weight: 250; font-size: clamp(26px, 2.6vw, 40px); line-height: 1.25;
  color: var(--steel); max-width: 700px;
}
.cta-card .icon-btn { position: relative; margin-top: 40px; }
.cta-card .icon-box { background: #fff; }

/* ============================================================
   PROCESS
   ============================================================ */
.sec-process { background: var(--paper); padding: 150px 0 0; }
.process-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 90px; }
.process-head .side-note { justify-self: end; margin-top: 10px; max-width: 440px; }

.step-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-bottom: 120px;
}
.step { border-top: 1px solid var(--line); padding-top: 22px; }
.step-num {
  font-family: "Geist", Arial, sans-serif;
  font-weight: 250; font-size: 30px; color: var(--steel-lt);
}
.step h3 { font-family: "Geist", Arial, sans-serif; font-weight: 300; font-size: 22px; margin: 18px 0 12px; }
.step p { font-size: 14.5px; color: var(--body); line-height: 1.65; }

.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.strip img { width: 100%; height: clamp(240px, 42vh, 460px); object-fit: cover; }

/* ============================================================
   FAQ
   ============================================================ */
.sec-faq { background: var(--duck); padding: 150px 0; }
.sec-faq .h-display { color: var(--body); margin-bottom: 60px; }

.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 2px;
  cursor: pointer;
  font-family: "Geist", Arial, sans-serif;
  font-weight: 300; font-size: clamp(18px, 1.6vw, 23px);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; width: 30px; height: 30px; flex: none; border: 1px solid var(--line); border-radius: 50%; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .3s;
}
.faq-x::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .faq-x::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-list details p { padding: 0 56px 26px 2px; color: var(--body); max-width: 720px; }

/* ============================================================
   CONNECT (dark)
   ============================================================ */
.sec-connect { background: var(--char); color: #fff; padding: 150px 0 120px; }
.connect-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 110px); align-items: center; }
.connect-mark { height: 30px; width: auto; opacity: .9; margin-bottom: 120px; }
.connect-copy .statement { color: rgba(255,255,255,.62); max-width: 460px; }
.connect-copy .wt { color: #fff; }

.connect-media { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; align-items: stretch; }
.connect-media figure { border-radius: var(--r); overflow: hidden; }
.connect-media img { width: 100%; height: 100%; object-fit: cover; }
.cm-wide img { min-height: 420px; }
.cm-tall img { min-height: 420px; }

.contact-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  margin-top: 110px; padding-top: 40px;
  border-top: 1px solid var(--line-w);
}
.contact-row dt { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.contact-row dd { font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,.88); }
.contact-row a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0d0d0c; color: #fff; padding-top: 110px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.footer-tag {
  font-family: "Geist", Arial, sans-serif;
  font-weight: 250; font-size: clamp(28px, 2.8vw, 42px); line-height: 1.2;
}
.footer-cols { display: grid; grid-template-columns: repeat(3, auto); gap: 40px 70px; justify-content: start; align-content: start; }
.footer-cols div { display: grid; gap: 18px; align-content: start; }
.footer-cols a { font-weight: 500; font-size: 16px; }
.footer-cols a:hover { opacity: .65; }

.footer-dots {
  height: 130px;
  margin: 90px 0 60px;
  background-image: radial-gradient(rgba(255,255,255,.4) 1px, transparent 1.4px);
  background-size: 24px 16px;
  -webkit-mask-image:
    linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent),
    linear-gradient(90deg, #000 0%, transparent 18%, #000 34%, transparent 52%, #000 71%, transparent 88%, #000 100%);
          mask-image:
    linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent),
    linear-gradient(90deg, #000 0%, transparent 18%, #000 34%, transparent 52%, #000 71%, transparent 88%, #000 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 30px;
  justify-content: space-between; align-items: flex-end;
  padding-bottom: 56px;
}
.footer-legal { display: grid; gap: 6px; text-align: right; }
.footer-legal p { font-size: 14px; color: rgba(255,255,255,.75); }
.footer-legal .fl-sub { color: rgba(255,255,255,.45); }

/* ============================================================
   ACCESSORIES PAGE
   ============================================================ */
.acc-hero { min-height: 64vh; min-height: 64svh; }
.acc-hero-body {
  margin-top: auto;
  padding-top: 20vh;
  padding-bottom: 64px;
  display: grid;
  gap: 30px;
}
.acc-title {
  font-family: "Geist", Arial, sans-serif;
  font-weight: 250;
  font-size: clamp(46px, 7.6vw, 116px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
}
.acc-sub { border-left-color: rgba(94, 92, 88, 0.5); }

.sec-acc { background: var(--paper); padding: 110px 0 130px; }
.sec-acc .two-col { margin-bottom: 90px; }

.acc-banner {
  height: clamp(150px, 24vh, 230px);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 30px;
}
.acc-banner img { width: 100%; height: 100%; object-fit: cover; }

.acc-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 20px 2px;
  border-bottom: 1px solid var(--line);
}
.acc-list li:first-child { border-top: 1px solid var(--line); }
.acc-list h3 {
  font-family: "Geist", Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
}
.acc-list p { color: var(--body); font-size: 14.5px; margin-top: 4px; max-width: 560px; }
.acc-wa {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  color: #1faa4d;
  font-weight: 600; font-size: 13px; letter-spacing: .04em;
  border: 1px solid rgba(31, 170, 77, 0.35);
  border-radius: 999px;
  padding: 8px 15px;
  transition: background .25s, color .25s;
}
.acc-wa:hover { background: #1faa4d; color: #fff; }
.acc-wa svg { width: 16px; height: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row div:nth-child(3) { border-left: 0; }
  .stats-row div:nth-child(n+3) { border-top: 1px solid var(--line-w); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }

  .anatomy-specs { display: none; }
  .lb-desc { display: none; }
  .lb-name { font-size: 10px; }
  .lb-block { max-width: 150px; }
  .io-grid { grid-template-columns: 1fr; }
  .io-card { height: auto; min-height: 320px; }
  .io-done { height: min(70vh, 560px); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 74px; right: var(--gutter);
    flex-direction: column; gap: 4px;
    background: rgba(14,14,13,.94); border-radius: 12px; padding: 18px 26px;
  }
  .nav-links.open a { padding: 8px 0; }

  .two-col, .dark-head, .service-grid, .process-head, .connect-grid { grid-template-columns: 1fr; }
  .dark-lede, .process-head .side-note { justify-self: start; }
  .col-label .label { position: static; margin-bottom: 20px; }
  .sec-name .two-col + .two-col { margin-top: 60px; }

  .nav-split { grid-template-columns: auto auto; }
  .nav-split .brand { justify-self: end; grid-column: 2; }
  .nav-split .nav-right { display: none; }
  .nav-split .logo-img { height: 34px; }
  .hc-slide figcaption { font-size: clamp(34px, 9vw, 52px); padding: 0 26px; }
  .hc-dots { left: 14px; gap: 14px; }
  .hc-scroll { bottom: calc(26vh + 22px); }
  .acc-wa span { display: none; }
  .acc-wa { padding: 9px; border-radius: 50%; }
  .acc-list li { align-items: flex-start; }
  .hero-sub { font-size: 17px; max-width: 320px; padding-left: 16px; }
  .hero-coords { flex-direction: row; align-items: center; gap: 16px; }
  .btn-pill { padding: 10px 16px; font-size: 14px; }
  .nav { padding: 16px var(--gutter); }
  .nav-scrolled { padding: 10px var(--gutter); }
  .wa-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .wa-float svg { width: 26px; height: 26px; }

  .chart-row { grid-template-columns: 1fr; gap: 8px; }
  .chart-val { order: 3; }
  .seat-tabs { flex-wrap: wrap; gap: 18px 26px; }

  .quote-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr; }
  .strip img:nth-child(n+2) { display: none; }
  .service-collage { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }
  .expand-wrap { height: 170vh; }
  .anatomy-wrap { height: 220vh; }
  .define-overlay { flex-direction: column; gap: 14px; }
  .define-right h4 { text-align: left; }
  .trusted-by { flex-direction: column; align-items: stretch; gap: 24px; }
  .lm-set img { height: 40px; max-width: 130px; }
  .logo-img { height: 30px; }
}
