/* ===========================================================
   Healthy Trucker Co. - premium dark theme v3
   Spacious, fluid, built for large screens (iMac) down to mobile.
   Everything scales with the viewport. Let it breathe.
   =========================================================== */

:root {
  --bg:      #090C11;
  --bg-2:    #0E1219;
  --bg-3:    #141A23;
  --ink:     #FFFFFF;
  --text:    #C2CAD4;
  --muted:   #828D99;
  --line:    rgba(255,255,255,0.10);
  --line-2:  rgba(255,255,255,0.18);
  --accent:  #FFFFFF;
  --accent-2:#E6ECF2;
  --accent-dk:#8A95A1;
  /* light "paper" sections */
  --paper:   #F3EFE7;
  --paper-2: #E9E3D6;
  --ink-d:   #15202A;
  --text-d:  #3C474F;
  --muted-d: #6B7680;
  --line-d:  rgba(20,30,40,0.12);
  --steel:   #8597A6;

  /* fluid layout system */
  --max: 1840px;
  --pad: clamp(24px, 5.5vw, 160px);
  --sec: clamp(96px, 12vw, 230px);
  --gap: clamp(28px, 3vw, 64px);

  --radius: 4px;
  --ease: cubic-bezier(.19,.8,.22,1);
  --display: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  font-size: clamp(16px, 0.55rem + 0.5vw, 19px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.02; font-weight: 800; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.3rem, 3.6vw, 4rem); font-weight: 900; line-height: 1.0; }
h2 { font-size: clamp(1.8rem, 2.7vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 1.3vw, 1.5rem); font-weight: 700; letter-spacing: -0.01em; }

p { margin-bottom: 1.2rem; }
a { color: var(--ink); text-decoration: none; transition: color 240ms var(--ease), opacity 240ms var(--ease); }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
strong { color: var(--ink); font-weight: 600; }
em { color: var(--ink); }
::selection { background: var(--accent); color: #090C11; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); position: relative; z-index: 2; }
.section { padding-top: var(--sec); padding-bottom: var(--sec); position: relative; z-index: 2; }
.section.tight { padding-top: clamp(64px, 7vw, 130px); padding-bottom: clamp(64px, 7vw, 130px); }
.section.alt { background: var(--bg-2); }
.center { text-align: center; }
.lead { font-size: clamp(1.1rem, 0.9rem + 0.6vw, 1.45rem); color: var(--muted); line-height: 1.65; }
.center .lead { margin-left: auto; margin-right: auto; max-width: 760px; }
.balance { text-wrap: balance; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  text-transform: uppercase; letter-spacing: 0.32em;
  font-size: clamp(0.7rem, 0.8vw, 0.82rem); font-weight: 600; color: var(--muted);
  margin-bottom: 2rem;
}
.eyebrow::before { display: none; }
.nav-links .caret { display: none; }

/* ---------- Blog article (featured) ---------- */
.post-byline { display: flex; align-items: center; gap: 14px; margin-top: clamp(1.6rem, 2.5vw, 2.2rem); }
.post-byline .avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 0.9rem; color: #fff; flex: none; }
.post-byline .who { color: #fff; font-weight: 600; font-size: 0.96rem; line-height: 1.3; }
.post-byline .who small { display: block; color: rgba(255,255,255,0.7); font-weight: 400; font-size: 0.82rem; }
.article figure { margin: clamp(2.2rem, 3vw, 3.2rem) 0; }
.article figure img { width: 100%; border-radius: var(--radius); display: block; }
.article figcaption { color: var(--muted); font-size: 0.86rem; margin-top: 12px; }
.article .lede { font-size: clamp(1.1rem, 1.3vw, 1.3rem); color: #fff; line-height: 1.6; margin-bottom: 1.8rem; }
.takeaways { background: var(--bg-2); border-radius: var(--radius); padding: clamp(26px, 2.6vw, 44px); margin: clamp(2.2rem, 3vw, 3rem) 0; }
.takeaways h3 { color: #fff; margin-bottom: 16px; }
.takeaways ul { margin: 0 0 0 1.1rem; }
.takeaways li { margin-bottom: 10px; color: var(--text); }
.article h2 + .faq, .article .faq { margin-top: 1.5rem; }
.center .eyebrow, .quote .eyebrow { justify-content: center; }

/* Editorial section header: heading left, lead offset right on large screens */
.section-head { margin-bottom: clamp(56px, 6vw, 110px); }
.section-head.split { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 4vw, 90px); align-items: end; }
.section-head h2 { max-width: 16ch; }
.section-head .lead { max-width: 46ch; }
.section-head.split .lead { padding-bottom: 0.4rem; }
.section-head.center { text-align: center; }
.section-head.center h2, .section-head.center .lead { max-width: none; margin-left: auto; margin-right: auto; }
.section-head.center .lead { max-width: 760px; margin-top: 1.6rem; }

.info-bar { display: none !important; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); will-change: opacity, transform; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #090C11; font-weight: 600;
  padding: 18px 40px; border-radius: 46px; border: 1px solid var(--ink);
  cursor: pointer; font-size: clamp(0.92rem, 1vw, 1rem); letter-spacing: 0.01em;
  position: relative; overflow: hidden;
  transition: color 320ms var(--ease), border-color 320ms var(--ease);
}
.btn::before { content: ""; position: absolute; inset: 0; background: #161D27; transform: translateY(101%); transition: transform 420ms var(--ease); z-index: -1; }
.btn:hover { color: #fff; border-color: var(--ink); }
.btn:hover::before { transform: translateY(0); }
.btn .arrow { transition: transform 320ms var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn.teal, .btn.light { background: var(--ink); color: #090C11; border-color: var(--ink); }
.btn.outline, .btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn.outline::before, .btn.ghost::before { background: var(--ink); }
.btn.outline:hover, .btn.ghost:hover { color: #090C11; border-color: var(--ink); }

.tlink { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.02em; }
.tlink .u { position: relative; }
.tlink .u::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 380ms var(--ease); }
.tlink:hover .u::after { transform: scaleX(1); }
.tlink .arrow { color: var(--accent); transition: transform 320ms var(--ease); }
.tlink:hover .arrow { transform: translateX(6px); }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 380ms var(--ease), backdrop-filter 380ms var(--ease), border-color 380ms var(--ease); border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(9,12,17,0.78); backdrop-filter: blur(18px) saturate(120%); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: clamp(80px, 7vw, 116px); transition: height 380ms var(--ease); }
.site-header.scrolled .nav { height: clamp(70px, 5vw, 84px); }

.brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.brand .logo-icon { width: clamp(30px, 2.2vw, 38px); height: clamp(30px, 2.2vw, 38px); fill: currentColor; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--display); font-weight: 900; font-style: italic; font-size: clamp(1.6rem, 1.9vw, 2.1rem); letter-spacing: 0.01em; }
.logo-text small { font-style: normal; font-weight: 600; font-size: clamp(0.46rem, 0.5vw, 0.56rem); letter-spacing: 0.42em; margin-top: 6px; opacity: 0.7; }

.nav-links { display: flex; align-items: center; gap: clamp(28px, 2.6vw, 52px); list-style: none; }
.nav-links a { color: rgba(255,255,255,0.78); font-weight: 400; font-size: clamp(0.9rem, 1vw, 1.02rem); position: relative; letter-spacing: 0.01em; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 1px; background: var(--accent); }

.nav-cta { display: flex; align-items: center; gap: clamp(16px, 1.6vw, 30px); }
.nav-cta .btn-nav { border: 1px solid var(--line-2); color: #fff; padding: 11px 26px; border-radius: 46px; font-weight: 500; font-size: 0.9rem; transition: background 240ms var(--ease), color 240ms var(--ease), border-color 240ms var(--ease); }
.nav-cta .btn-nav:hover { background: var(--accent); color: #090C11; border-color: var(--accent); }
.login-link, .cart-link { color: rgba(255,255,255,0.78); font-weight: 400; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }
.login-link:hover, .cart-link:hover { color: #fff; }
.login-link svg, .cart-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; cursor: pointer; color: #fff; line-height: 1; }

/* ---------- Nav dropdown ---------- */
.nav-links li.has-sub { position: relative; }
.nav-links .caret { display: none; }
.nav-links li.has-sub:hover .caret { transform: rotate(180deg); }
.nav-sub { position: absolute; top: 100%; left: -14px; min-width: 320px; padding: 12px; margin-top: 8px; background: rgba(10,14,19,0.97); backdrop-filter: blur(18px) saturate(120%); border: 1px solid var(--line); border-radius: 12px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s; z-index: 130; box-shadow: 0 34px 80px rgba(0,0,0,0.55); }
.nav-links li.has-sub:hover .nav-sub, .nav-links li.has-sub:focus-within .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-sub a { padding: 13px 16px; border-radius: 8px; color: rgba(255,255,255,0.82) !important; font-size: 0.95rem; white-space: nowrap; transition: background .2s var(--ease), color .2s, padding-left .2s var(--ease); }
.nav-sub a:hover { background: rgba(255,255,255,0.07); color: #fff !important; padding-left: 22px; }
.nav-sub a small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: 3px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(48px, 7vh, 110px); background: url("assets/hero.jpg") center/cover no-repeat; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(9,12,17,0.95) 0%, rgba(9,12,17,0.72) 46%, rgba(9,12,17,0.25) 76%, rgba(9,12,17,0.6) 100%), linear-gradient(0deg, rgba(9,12,17,0.96) 2%, rgba(9,12,17,0) 52%); }
.hero .container { z-index: 2; padding-top: clamp(120px, 14vh, 220px); }
.hero-content { max-width: 1000px; }
.hero h1 { color: #fff; max-width: 18ch; margin-bottom: clamp(1.8rem, 3vw, 2.8rem); }
.hero-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: clamp(32px, 5vw, 96px); flex-wrap: wrap; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: clamp(1.05rem, 1.2vw, 1.3rem); max-width: 52ch; margin: 0; line-height: 1.6; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .eyebrow, .hero h1, .hero-foot { opacity: 0; transform: translateY(44px); }
.hero.ready .eyebrow { animation: rise 1s var(--ease) 0.15s forwards; }
.hero.ready h1 { animation: rise 1.2s var(--ease) 0.3s forwards; }
.hero.ready .hero-foot { animation: rise 1s var(--ease) 0.7s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.scroll-cue { position: absolute; right: var(--pad); bottom: clamp(36px, 5vh, 64px); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 14px; color: rgba(255,255,255,0.5); font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue .bar { width: 1px; height: 64px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content: ""; position: absolute; top: -64px; left: 0; width: 1px; height: 64px; background: var(--accent); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0% { top: -64px; } 60%,100% { top: 64px; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: clamp(22px, 2.4vw, 38px) 0; position: relative; z-index: 2; }
.marquee-track { display: flex; width: max-content; animation: scrollx 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-weight: 800; font-size: clamp(1.3rem, 2.4vw, 2.4rem); color: rgba(255,255,255,0.14); letter-spacing: 0.01em; text-transform: uppercase; padding: 0 clamp(28px, 3vw, 56px); display: inline-flex; align-items: center; gap: clamp(28px, 3vw, 56px); white-space: nowrap; }
.marquee span::after { content: "\2737"; color: var(--accent); font-size: 0.7em; opacity: 0.8; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Page hero ---------- */
.page-hero { position: relative; padding-top: clamp(180px, 20vh, 320px); padding-bottom: clamp(90px, 11vw, 180px); text-align: center; background: var(--bg-2); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero .container { z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: var(--muted); max-width: 680px; margin: clamp(1.4rem,2vw,2.2rem) auto 0; font-size: clamp(1.05rem, 1.3vw, 1.3rem); }

/* ---------- Feature rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; position: relative; z-index: 2; overflow: hidden; }
.feature .media { min-height: clamp(420px, 96vh, 1100px); background-size: cover; background-position: center; transform: scale(1.001); transition: transform 1.6s var(--ease); }
.feature:hover .media { transform: scale(1.05); }
.feature .content { display: flex; flex-direction: column; justify-content: center; padding: clamp(64px, 9vw, 180px) clamp(32px, 7vw, 160px); }
.feature .content .inner { max-width: 620px; }
.feature.reverse .media { order: 2; }
.feature .content p { color: var(--text); }
.feature .findex { font-family: var(--display); font-weight: 800; font-size: clamp(0.78rem, 0.9vw, 0.92rem); letter-spacing: 0.22em; color: var(--accent); margin-bottom: 1.8rem; display: block; }
.feature .content h2 { margin-bottom: 1.6rem; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 56px); }
.stat { padding: clamp(20px, 3vw, 40px) clamp(20px, 2vw, 40px); text-align: center; }
.stat .big { font-family: var(--display); font-weight: 900; font-size: clamp(2.4rem, 3.4vw, 3.8rem); color: #fff; line-height: 1; letter-spacing: -0.03em; }
.stat .lab { display: block; margin-top: 18px; color: var(--muted); font-size: clamp(0.76rem, 0.9vw, 0.9rem); text-transform: uppercase; letter-spacing: 0.18em; }

/* ---------- Approach ---------- */
.approach { display: grid; grid-template-columns: 1fr; }
.step { display: grid; grid-template-columns: clamp(80px, 9vw, 200px) 1fr clamp(160px, 16vw, 320px); gap: clamp(24px, 3vw, 64px); align-items: start; padding: clamp(40px, 4vw, 72px) 0; border-top: 1px solid var(--line); transition: padding-left 380ms var(--ease); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step:hover { padding-left: clamp(8px, 1.5vw, 28px); }
.step .sn { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 2vw, 2.2rem); color: var(--accent); letter-spacing: 0.04em; }
.step h3 { color: #fff; margin-bottom: 14px; font-size: clamp(1.4rem, 1.8vw, 1.9rem); }
.step p { color: var(--muted); margin: 0; max-width: 60ch; }
.step .sa { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; text-align: right; padding-top: 0.6rem; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: var(--gap); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.auto { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(36px, 3.4vw, 64px); transition: background 320ms var(--ease), transform 320ms var(--ease), border-color 320ms var(--ease); position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 420ms var(--ease); }
.card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.card:hover::before { transform: scaleX(1); }
.section.alt .card { background: var(--bg-3); }
.card .num { font-family: var(--display); font-size: clamp(0.78rem, 0.9vw, 0.92rem); font-weight: 800; color: var(--accent); letter-spacing: 0.16em; margin-bottom: clamp(28px, 3vw, 48px); display: block; }
.card .icon { font-size: 1.8rem; margin-bottom: 20px; }
.card .tag { font-size: 0.72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; display: block; margin-bottom: 12px; }
.card h3 { margin-bottom: 16px; color: #fff; }
.card p { color: var(--muted); margin-bottom: 0; line-height: 1.7; }

/* ---------- Split (inner pages) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 120px); align-items: center; }
.split .imgwrap { overflow: hidden; border-radius: var(--radius); }
.split img { width: 100%; height: 100%; max-height: 620px; object-fit: cover; filter: saturate(0.96) contrast(1.02); transition: transform 1.5s var(--ease); border-radius: var(--radius); }
.split .imgwrap:hover img { transform: scale(1.05); }
.split.reverse .split-text { order: 2; }
.split-text p { color: var(--text); }
.split-text h2 { margin-bottom: 1.4rem; }

/* ---------- Focus ---------- */
.focus-item { padding: 4px 0; }
.focus-item h3 { display: flex; align-items: baseline; gap: 18px; margin-bottom: 16px; color: #fff; font-size: clamp(1.3rem, 1.8vw, 1.8rem); }
.focus-item h3 .n { font-size: 0.9rem; color: var(--accent); font-family: var(--display); font-weight: 800; }
.focus-item p { color: var(--muted); max-width: 44ch; }

/* ---------- Testimonial ---------- */
.quote { max-width: 1100px; margin: 0 auto; text-align: center; }
.quote blockquote { font-family: var(--display); font-size: clamp(1.5rem, 2.4vw, 2.4rem); color: #fff; font-weight: 700; line-height: 1.3; margin-bottom: 2rem; letter-spacing: -0.015em; }
.quote blockquote .mark { color: var(--accent); }
.quote cite { color: var(--muted); font-style: normal; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.82rem; }

/* ---------- Shop ---------- */
.product { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 300ms var(--ease), border-color 300ms var(--ease); }
.product:hover { transform: translateY(-6px); border-color: var(--line-2); }
.product .thumb { aspect-ratio: 4/3; background: var(--bg-3); display: grid; place-items: center; font-size: 2.6rem; color: var(--muted); }
.product .thumb .line-ic { width: 56px; height: 56px; stroke: var(--muted); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.product .body { padding: clamp(26px, 2.2vw, 38px); display: flex; flex-direction: column; flex: 1; }
.product .body h3 { font-size: 1.2rem; margin-bottom: 6px; color: #fff; }
.product .body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.product .price { font-family: var(--display); font-size: 1.6rem; font-weight: 800; color: #fff; margin: 18px 0 20px; }
.product .btn { width: 100%; justify-content: center; }

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 300ms var(--ease), border-color 300ms var(--ease); }
.post-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.post-card .thumb { aspect-ratio: 3/2; background-size: cover; background-position: center; transition: transform 1.3s var(--ease); }
.post-card:hover .thumb { transform: scale(1.06); }
.post-card .body { padding: clamp(28px, 2.4vw, 44px); }
.post-card .meta { font-size: 0.76rem; color: var(--muted); margin-bottom: 16px; letter-spacing: 0.14em; text-transform: uppercase; }
.post-card h3 { margin-bottom: 14px; color: #fff; font-size: clamp(1.2rem, 1.5vw, 1.55rem); }
.post-card p { color: var(--muted); font-size: 0.98rem; }

.article { max-width: 820px; margin: 0 auto; }
.article p, .article li { color: var(--text); font-size: clamp(1.02rem, 1.1vw, 1.15rem); }
.article h2 { margin: 2.8rem 0 1rem; }
.article h3 { margin: 2rem 0 0.7rem; color: #fff; }
.article ul { margin: 0 0 1.4rem 1.3rem; }
.article li { margin-bottom: 0.6rem; }
.article .meta { color: var(--muted); font-size: 0.8rem; margin-bottom: 2.6rem; letter-spacing: 0.12em; text-transform: uppercase; }
.article .card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); }
.article .card::before { display: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 960px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: clamp(24px, 2.6vw, 38px) 4px; }
.faq summary { font-weight: 600; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 28px; font-family: var(--display); font-size: clamp(1.1rem, 1.5vw, 1.45rem); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.8rem; color: var(--accent); font-weight: 300; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 18px 0 0; color: var(--muted); max-width: 80ch; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 1.6vw, 28px); max-width: 820px; margin: 0 auto; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid label { display: block; font-size: 0.74rem; font-weight: 600; color: var(--muted); margin-bottom: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 17px 19px; border: 1px solid var(--line-2); border-radius: var(--radius); font-family: inherit; font-size: 1rem; color: #fff; background: var(--bg-2); transition: border-color 240ms var(--ease); }
.form-grid textarea { min-height: 160px; resize: vertical; }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #58626d; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: none; border-color: var(--accent); }
.form-grid option { color: #000; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; padding: var(--sec) 0; background: url("assets/operating.jpg") center/cover fixed no-repeat; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: rgba(9,12,17,0.88); }
.cta-band .container { z-index: 2; }
.cta-band h2 { color: #fff; max-width: 18ch; margin: 0 auto; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 600px; margin: 1.6rem auto 2.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: #05070A; color: var(--muted); padding-top: clamp(72px, 8vw, 140px); padding-bottom: 40px; border-top: 1px solid var(--line); position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr; gap: clamp(40px, 4vw, 80px); margin-bottom: clamp(56px, 6vw, 96px); }
.site-footer h4 { color: #fff; font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px; }
.site-footer a { color: var(--muted); font-size: 0.98rem; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 13px; }
.site-footer .brand { color: #fff; margin-bottom: 22px; }
.site-footer .brand .logo-text { font-size: 1.6rem; }
.site-footer .foot-copy { max-width: 38ch; font-size: 0.98rem; line-height: 1.75; }
.footer-bottom { padding-top: 4px; font-size: 0.82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: #5e6772; }
.footer-bottom a { font-size: inherit; color: #97a1ab; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Clean line icons in cards ---------- */
.card .line-ic { width: 42px; height: 42px; stroke: #fff; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 22px; display: block; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(40px, 5vw, 96px); align-items: center; }
.team-photo { position: relative; aspect-ratio: 4/5; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-items: center; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo svg { width: 78px; height: 78px; stroke: var(--line-2); fill: none; stroke-width: 1.1; }
.team-photo .ph { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: var(--muted); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; }
.team-role { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 1.4rem; display: block; }
.team h2 { margin-bottom: 1.4rem; }
@media (max-width: 1000px) { .team { grid-template-columns: 1fr; } .team-photo { max-width: 440px; } }

/* ---------- Brand logo ---------- */
.brand-logo { height: clamp(48px, 4vw, 66px); width: auto; display: block; transition: height 380ms var(--ease); }
.site-header.scrolled .brand-logo { height: clamp(42px, 3.2vw, 54px); }
.site-footer .brand-logo { height: 58px; margin-bottom: 22px; }

/* ---------- Testimonial over photo ---------- */
.quote-band { position: relative; padding: var(--sec) 0; background-size: cover; background-position: center 30%; overflow: hidden; }
.quote-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,12,17,0.94) 0%, rgba(9,12,17,0.72) 48%, rgba(9,12,17,0.34) 100%); }
.quote-band .container { z-index: 2; }
.quote-band .quote { text-align: left; margin: 0; max-width: 840px; }
.quote-band .quote .eyebrow { justify-content: flex-start; }

/* ---------- Newsletter popup ---------- */
.nl-pop { position: fixed; bottom: 28px; right: 28px; z-index: 180; width: min(380px, calc(100vw - 36px)); background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.55); transform: translateY(24px); opacity: 0; pointer-events: none; transition: opacity .5s var(--ease), transform .5s var(--ease); overflow: hidden; }
.nl-pop.show { opacity: 1; transform: none; pointer-events: auto; }
.nl-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 14px 16px 22px; border-bottom: 1px solid var(--line); }
.nl-head h4 { color: #fff; font-family: var(--display); font-size: 0.98rem; letter-spacing: 0.01em; }
.nl-actions { display: flex; gap: 4px; flex: none; }
.nl-actions button { background: none; border: none; color: var(--muted); cursor: pointer; width: 30px; height: 30px; border-radius: 50%; font-size: 1.2rem; line-height: 1; display: grid; place-items: center; transition: background .2s, color .2s; }
.nl-actions button:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nl-body { padding: 22px 22px 26px; }
.nl-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; line-height: 1.6; }
.nl-form { display: flex; gap: 8px; }
.nl-form input { flex: 1; min-width: 0; padding: 13px 16px; border: 1px solid var(--line-2); background: var(--bg); color: #fff; border-radius: 40px; font-family: inherit; font-size: 0.92rem; }
.nl-form input:focus { outline: none; border-color: #fff; }
.nl-form input::placeholder { color: #58626d; }
.nl-form button { border: none; background: #fff; color: #090C11; border-radius: 40px; padding: 0 22px; font-weight: 600; cursor: pointer; font-size: 0.9rem; transition: background .2s; }
.nl-form button:hover { background: var(--accent-2); }
.nl-success { color: #fff; font-size: 0.96rem; margin: 0; }
.nl-launch { position: fixed; bottom: 28px; right: 28px; z-index: 180; background: #fff; color: #090C11; border: none; border-radius: 40px; padding: 14px 24px; font-weight: 600; font-size: 0.9rem; cursor: pointer; box-shadow: 0 16px 40px rgba(0,0,0,0.45); display: none; align-items: center; gap: 10px; }
.nl-launch.show { display: inline-flex; }
.nl-launch svg { width: 17px; height: 17px; }

/* ---------- Programme detail page ---------- */
.prog-cover { position: relative; min-height: 64vh; display: flex; align-items: flex-end; padding: 200px 0 80px; background-size: cover; background-position: center; }
.prog-cover::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,12,17,0.96) 4%, rgba(9,12,17,0.4) 60%, rgba(9,12,17,0.7)); }
.prog-cover .container { z-index: 2; }
.prog-cover h1 { color: #fff; max-width: 20ch; }
.prog-cover .lead { color: rgba(255,255,255,0.84); max-width: 60ch; margin-top: 1.4rem; }
.covers-list { columns: 2; column-gap: clamp(32px, 5vw, 80px); }
.covers-list li { break-inside: avoid; margin-bottom: 16px; color: var(--text); padding-left: 26px; position: relative; list-style: none; }
.covers-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 9px; height: 9px; border: 1px solid var(--muted); border-radius: 50%; }

/* ---------- Programme page (premium) ---------- */
.prog-cover { min-height: 82vh; padding-top: clamp(220px, 24vh, 340px); }
.prog-cover .cover-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: clamp(1.8rem, 3vw, 2.6rem); }
.cover-items { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 30px) clamp(40px, 5vw, 96px); }
.cover-item { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.cover-item svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.7; flex: none; margin-top: 5px; }
.cover-item p { color: var(--text); margin: 0; font-size: clamp(1rem, 1.1vw, 1.12rem); line-height: 1.55; }
@media (max-width: 720px) { .cover-items { grid-template-columns: 1fr; } }

/* ---------- Services (intriguing) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.svc { position: relative; overflow: hidden; display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(32px, 2.6vw, 48px); min-height: clamp(380px, 30vw, 470px); color: inherit; transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease); }
.section.alt .svc { background: var(--bg-3); }
.svc::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #fff; transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.svc:hover { transform: translateY(-8px); border-color: var(--line-2); }
.svc:hover::before { transform: scaleX(1); }
.svc .ghost-n { position: absolute; top: -0.16em; right: 0.08em; font-family: var(--display); font-weight: 900; font-size: clamp(5rem, 7vw, 8rem); line-height: 1; color: #fff; opacity: 0.05; pointer-events: none; }
.svc .svc-ic { width: 46px; height: 46px; stroke: #fff; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; margin-bottom: clamp(40px, 5vw, 88px); position: relative; }
.svc .svc-body { flex: 1; }
.svc .tag { font-size: 0.72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; display: block; margin-bottom: 12px; }
.svc h3 { color: #fff; margin-bottom: 14px; }
.svc p { color: var(--muted); margin: 0; font-size: 0.97rem; line-height: 1.7; }
.svc .more { margin-top: clamp(24px, 2vw, 34px); display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; font-size: 0.92rem; }
.svc .more .arrow { transition: transform .32s var(--ease); }
.svc:hover .more .arrow { transform: translateX(6px); }

/* ---------- Services showcase (interactive) ---------- */
.showcase { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 5vw, 96px); align-items: start; }
.showcase-nav { display: flex; flex-direction: column; }
.sc-item { }
.sc-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: clamp(22px, 2.5vw, 36px) 0; text-decoration: none; transition: padding-left .45s var(--ease); }
.sc-n { font-family: var(--display); font-weight: 800; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.12em; }
.sc-title { font-family: var(--display); font-weight: 800; color: #fff; font-size: clamp(1.3rem, 2.1vw, 2rem); letter-spacing: -0.015em; transition: color .3s; }
.sc-arrow { color: #fff; opacity: 0; transform: translateX(-10px); transition: opacity .3s var(--ease), transform .3s var(--ease); display: inline-flex; }
.sc-arrow svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.sc-item:hover .sc-head, .sc-item.active .sc-head { padding-left: clamp(8px, 1.4vw, 24px); }
.sc-item:hover .sc-arrow, .sc-item.active .sc-arrow { opacity: 1; transform: none; }
.showcase-nav:hover .sc-item:not(:hover) .sc-title { color: var(--muted); }
.sc-reveal { display: none; }

.showcase-stage { position: sticky; top: 110px; }
.stage-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background: var(--bg-3); }
.stage-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: opacity .45s var(--ease); }
.stage-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,11,16,0.94) 4%, rgba(8,11,16,0.2) 58%, rgba(8,11,16,0.55)); z-index: 1; }
.stage-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(28px, 3vw, 50px); }
.stage-body .tag { color: var(--muted); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.18em; display: block; margin-bottom: 14px; }
.stage-body h3 { color: #fff; font-size: clamp(1.5rem, 2.2vw, 2.1rem); margin-bottom: 14px; }
.stage-body p { color: rgba(255,255,255,0.82); margin-bottom: 22px; max-width: 46ch; }
.stage-body .more { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; }
.stage-body .more .arrow { transition: transform .3s var(--ease); }
.stage-body .more:hover .arrow { transform: translateX(6px); }

@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; gap: 0; }
  .showcase-stage { display: none; }
  .sc-head { grid-template-columns: auto 1fr; padding-bottom: 18px; }
  .sc-arrow { display: none; }
  .sc-reveal { display: block; padding: 0 0 30px; }
  .sc-reveal .sc-img { aspect-ratio: 16/10; background-size: cover; background-position: center; border-radius: var(--radius); margin-bottom: 16px; }
  .sc-reveal p { color: var(--muted); margin: 0 0 14px; }
  .sc-reveal .more { color: #fff; font-weight: 600; font-size: 0.92rem; }
}

/* ---------- Blog grid (4-up, 3:4, full-bleed, borderless) ---------- */
.blog-section .container { max-width: none; padding-left: clamp(24px, 3.5vw, 72px); padding-right: clamp(24px, 3.5vw, 72px); }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 2.4vw, 48px); }
.blog-grid .post-card { background: transparent; border: none; border-radius: 0; overflow: visible; }
.blog-grid .post-card:hover { transform: none; }
.blog-grid .post-card .thumb { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); }
.blog-grid .post-card .body { padding: 26px 0 0; display: flex; flex-direction: column; flex: 1; }
.blog-grid .post-card h3 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5em; }
.blog-grid .post-card .excerpt { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: 5em; }
.blog-grid .post-card .byline { margin-top: auto; }
.post-card .excerpt { color: var(--muted); font-size: 0.96rem; line-height: 1.7; }
.post-card .byline { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 4px; }
.post-card .avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 0.78rem; color: #fff; flex: none; }
.post-card .who { font-size: 0.84rem; color: #fff; font-weight: 600; line-height: 1.25; }
.post-card .who small { display: block; color: var(--muted); font-weight: 400; font-size: 0.74rem; }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; z-index: 200; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(450px, 100%); background: var(--bg-2); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .45s var(--ease); z-index: 201; display: flex; flex-direction: column; }
.cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 30px 32px; border-bottom: 1px solid var(--line); }
.cart-head h3 { color: #fff; font-size: 1.3rem; }
.cart-close { background: none; border: none; color: var(--muted); font-size: 1.7rem; cursor: pointer; line-height: 1; }
.cart-close:hover { color: #fff; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 32px; }
.cart-empty { color: var(--muted); padding: 60px 0; text-align: center; }
.cart-row { display: flex; gap: 16px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-row .ci-name { flex: 1; color: #fff; font-weight: 600; font-size: 0.95rem; }
.cart-row .ci-name small { display: block; color: var(--muted); font-weight: 400; margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 12px; }
.cart-qty button { width: 28px; height: 28px; border: 1px solid var(--line-2); background: transparent; color: #fff; border-radius: 50%; cursor: pointer; font-size: 1rem; line-height: 1; transition: background .2s, color .2s; }
.cart-qty button:hover { background: #fff; color: #090C11; }
.cart-qty span { min-width: 18px; text-align: center; color: #fff; }
.ci-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.78rem; letter-spacing: 0.04em; }
.ci-remove:hover { color: #fff; }
.cart-foot { padding: 26px 32px 32px; border-top: 1px solid var(--line); }
.cart-sub { display: flex; justify-content: space-between; align-items: baseline; color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.3rem; margin-bottom: 20px; }
.cart-sub span:first-child { font-family: var(--font); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }
.cart-foot .btn { width: 100%; justify-content: center; }
.cart-note { color: var(--muted); font-size: 0.76rem; text-align: center; margin-top: 16px; line-height: 1.6; }

/* ===========================================================
   LIGHT "PAPER" SECTIONS (strategic contrast)
   =========================================================== */
.section.paper { background: var(--paper); color: var(--text-d); }
.section.paper h1, .section.paper h2, .section.paper h3, .section.paper h4 { color: var(--ink-d); }
.section.paper p { color: var(--text-d); }
.section.paper .lead { color: var(--muted-d); }
.section.paper .eyebrow { color: var(--accent-dk); }
.section.paper .eyebrow::before { background: var(--accent-dk); }
.section.paper .btn { background: var(--ink-d); color: #fff; border-color: var(--ink-d); }
.section.paper .btn::before { background: var(--accent); }
.section.paper .btn:hover { color: var(--ink-d); border-color: var(--ink-d); }
.section.paper .btn.ghost { background: transparent; color: var(--ink-d); border-color: rgba(20,30,40,0.24); }
.section.paper .btn.ghost::before { background: var(--ink-d); }
.section.paper .btn.ghost:hover { color: #fff; }

/* ---------- Hero trust line ---------- */
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: clamp(2rem, 3vw, 3rem); color: rgba(255,255,255,0.72); font-size: clamp(0.8rem, 0.95vw, 0.92rem); letter-spacing: 0.03em; }
.hero-trust span { display: inline-flex; align-items: center; gap: 12px; }
.hero-trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- Insight / problem ---------- */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: clamp(48px, 5vw, 84px); }
.insight-item { padding-top: 0; }
.insight-item h3 { color: #fff; font-size: clamp(1.1rem, 1.4vw, 1.4rem); margin-bottom: 12px; }
.insight-item p { color: var(--muted); margin: 0; font-size: 0.98rem; line-height: 1.7; }

/* ---------- Audience pathways ---------- */
.path { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px, 4vw, 64px); align-items: center; padding: clamp(26px, 3vw, 44px) 0; text-decoration: none; transition: padding-left .4s var(--ease); }
.path:hover { padding-left: clamp(8px, 1.6vw, 26px); }
.path .p-ix { font-family: var(--display); font-weight: 800; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.35rem); }
.path .p-main h3 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.5rem); margin-bottom: 10px; }
.path .p-main p { color: var(--muted); margin: 0; max-width: 58ch; }
.path .p-go { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: #fff; flex: none; transition: background .3s var(--ease), color .3s, transform .3s var(--ease); }
.path:hover .p-go { background: #fff; color: #090C11; transform: translateX(6px); }
.path .p-go svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; }

/* ---------- How it works route-line ---------- */
.route { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(22px, 2vw, 40px); position: relative; margin-top: clamp(44px, 4vw, 76px); }
.route::before { content: ""; position: absolute; top: 23px; left: 7%; right: 7%; height: 2px; background: repeating-linear-gradient(90deg, var(--accent) 0 16px, transparent 16px 30px); opacity: 0.7; }
.route-step { position: relative; }
.route-num { width: 48px; height: 48px; border-radius: 50%; background: #fff; color: #090C11; display: grid; place-items: center; font-family: var(--display); font-weight: 800; position: relative; z-index: 1; margin-bottom: 26px; }
.route-step h3 { color: #fff; font-size: clamp(1.1rem, 1.4vw, 1.35rem); margin-bottom: 10px; }
.route-step p { color: var(--muted); margin: 0; font-size: 0.96rem; line-height: 1.65; }
.route::before { background: repeating-linear-gradient(90deg, var(--line-2) 0 16px, transparent 16px 30px); opacity: 1; }

/* ---------- Trust / credibility ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 2.4vw, 44px); }
.trust-cell { padding: 0; display: flex; gap: 16px; align-items: flex-start; }
.trust-cell svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.6; flex: none; margin-top: 3px; }
.trust-cell h3 { color: #fff; font-size: 1.05rem; margin-bottom: 7px; }
.trust-cell p { color: var(--muted); margin: 0; font-size: 0.92rem; line-height: 1.6; }

/* ---------- Featured blog ---------- */
.blog-feature { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 4vw, 76px); align-items: start; }
.feat-card { display: block; text-decoration: none; }
.feat-wrap { overflow: hidden; border-radius: var(--radius); }
.feat-card .thumb { aspect-ratio: 16/10; background-size: cover; background-position: center; transition: transform 1.2s var(--ease); }
.feat-card:hover .thumb { transform: scale(1.04); }
.feat-card .meta { color: var(--accent-dk); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; margin: 24px 0 12px; }
.feat-card h3 { color: var(--ink-d); font-size: clamp(1.6rem, 2.3vw, 2.3rem); margin-bottom: 14px; line-height: 1.15; }
.feat-card p { color: var(--muted-d); max-width: 60ch; }
.feat-list { display: flex; flex-direction: column; }
.feat-item { display: grid; grid-template-columns: 104px 1fr; gap: 22px; padding: 24px 0; border-top: 1px solid var(--line-d); text-decoration: none; align-items: center; }
.feat-item:first-child { border-top: none; padding-top: 0; }
.feat-item .thumb { aspect-ratio: 1; background-size: cover; background-position: center; border-radius: 8px; }
.feat-item .meta { color: var(--accent-dk); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.feat-item h4 { color: var(--ink-d); font-size: 1.08rem; line-height: 1.3; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) { .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 1024px) {
  .insight-grid { grid-template-columns: 1fr 1fr; }
  .route { grid-template-columns: 1fr 1fr; }
  .route::before { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .blog-feature { grid-template-columns: 1fr; }
  .path { grid-template-columns: auto 1fr; }
  .path .p-go { display: none; }
}
@media (max-width: 640px) {
  .insight-grid, .route, .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-head.split { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature .media { min-height: 56vh; order: 0 !important; }
  .step { grid-template-columns: clamp(54px,8vw,90px) 1fr; }
  .step .sa { display: none; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(9,12,17,0.98); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); padding: 12px var(--pad) 28px; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav-links a.active::after { display: none; }
  .nav-links .caret { display: none; }
  .nav-sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: none; backdrop-filter: none; padding: 4px 0 0 14px; margin: 0; min-width: 0; }
  .nav-sub a { padding: 10px 0 !important; }
  .nav-toggle { display: block; }
  .nav-cta .btn-nav, .nav-cta .login-link { display: none; }
  .scroll-cue { display: none; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   PROGRAMME PAGES v2 - bespoke service-page system (MONOCHROME)
   Dark base, white/grey accents only. No blue, no light sections.
   =========================================================== */

/* ---- Hero: programme marker + slow Ken Burns ---- */
.prog-cover { overflow: hidden; }
.prog-cover .cover-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); animation: heroZoom 22s var(--ease) forwards; z-index: 0; }
@keyframes heroZoom { to { transform: scale(1.13); } }
@media (prefers-reduced-motion: reduce) { .prog-cover .cover-bg { animation: none; transform: none; } }
.prog-cover .prog-no { display: inline-flex; align-items: center; gap: 14px; color: #fff; font-family: var(--display); font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; font-size: clamp(0.74rem, 0.9vw, 0.86rem); margin-bottom: 1.8rem; }
.prog-cover .prog-no::before { content: ""; width: 34px; height: 3px; background: var(--accent); flex: none; }
.prog-cover h1 { font-size: clamp(2.6rem, 5.4vw, 5.4rem); }
.prog-cover .lead { font-size: clamp(1.12rem, 1.3vw, 1.45rem); }

/* ---- Problem / insight (editorial two-col) ---- */
.problem { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 110px); align-items: start; }
.problem .p-statement { font-family: var(--display); font-weight: 800; color: var(--muted); font-size: clamp(1.7rem, 2.6vw, 2.7rem); line-height: 1.16; letter-spacing: -0.02em; }
.problem .p-statement .hi { color: #fff; }
.problem .p-body p { color: var(--text); font-size: clamp(1.05rem, 1.1vw, 1.18rem); }
.problem .p-body p:last-child { margin-bottom: 0; }
.problem-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 44px); margin-top: clamp(48px, 5vw, 88px); }
.problem-stat { padding-top: 22px; border-top: 2px solid var(--accent); }
.problem-stat .ps-big { font-family: var(--display); font-weight: 900; color: #fff; font-size: clamp(2rem, 3vw, 3rem); line-height: 1; letter-spacing: -0.03em; }
.problem-stat p { color: var(--muted); margin: 14px 0 0; font-size: 0.95rem; line-height: 1.6; }

/* ---- Who this is for (chunky signs, dark) ---- */
.signs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.6vw, 24px); }
.sign { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 2.2vw, 36px); display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; transition: transform .35s var(--ease), border-color .35s var(--ease); }
.section.alt .sign { background: var(--bg-3); }
.sign:hover { transform: translateY(-4px); border-color: var(--line-2); }
.sign .s-ic { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; margin-top: 2px; }
.sign p { margin: 0; color: var(--text); font-size: 1rem; line-height: 1.55; }
.sign strong { color: #fff; }

/* ---- What support includes (substantial cards) ---- */
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2vw, 30px); }
.support-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(32px, 3vw, 54px); position: relative; overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease); }
.section.alt .support-card { background: var(--bg-3); }
.support-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.support-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.support-card:hover::before { transform: scaleX(1); }
.support-card .sc-ic { width: 40px; height: 40px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: clamp(24px, 2.4vw, 36px); display: block; }
.support-card h3 { color: #fff; margin-bottom: 12px; font-size: clamp(1.2rem, 1.5vw, 1.5rem); }
.support-card p { color: var(--muted); margin: 0; line-height: 1.7; font-size: 0.98rem; }

/* ---- How it works (chunky journey panels) ---- */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 24px); }
.j-step { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 2.6vw, 46px); position: relative; overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease); }
.section.alt .j-step { background: var(--bg-3); }
.j-step:hover { transform: translateY(-6px); border-color: var(--line-2); }
.j-step .j-n { font-family: var(--display); font-weight: 900; color: #fff; font-size: clamp(2.2rem, 3vw, 3.2rem); line-height: 1; display: block; margin-bottom: clamp(20px, 2vw, 32px); }
.j-step h3 { color: #fff; font-size: clamp(1.1rem, 1.3vw, 1.32rem); margin-bottom: 10px; }
.j-step p { color: var(--muted); margin: 0; font-size: 0.95rem; line-height: 1.6; }

/* ---- For drivers / for fleets (audience split) ---- */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 30px); }
.aud-panel { border-radius: var(--radius); padding: clamp(34px, 3.4vw, 60px); }
.aud-panel.driver { background: var(--bg-2); border: 1px solid var(--line); }
.aud-panel.fleet { background: var(--bg-3); border: 1px solid var(--line-2); }
.aud-tag { color: var(--accent-2); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; font-weight: 700; display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.aud-tag svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.6; }
.aud-panel h3 { color: #fff; font-size: clamp(1.4rem, 1.9vw, 1.95rem); margin-bottom: 16px; }
.aud-panel > p { color: var(--text); }
.aud-list { list-style: none; margin: 20px 0 0; }
.aud-list li { position: relative; padding-left: 30px; margin-bottom: 14px; color: var(--muted); line-height: 1.55; }
.aud-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #fff; font-weight: 700; }

/* ---- Outcome (chunky top-accent cards, dark) ---- */
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.2vw, 40px); }
.outcome { padding-top: 24px; border-top: 2px solid var(--accent); }
.outcome h3 { color: #fff; font-size: clamp(1.15rem, 1.4vw, 1.4rem); margin-bottom: 10px; }
.outcome p { color: var(--muted); margin: 0; font-size: 0.98rem; line-height: 1.65; }

/* ---- Related programmes (large clickable blocks) ---- */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 1.8vw, 28px); }
.related-card { display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px, 2.8vw, 48px); transition: transform .38s var(--ease), border-color .38s var(--ease); }
.section.alt .related-card { background: var(--bg-3); }
.related-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.related-card .r-reason { color: var(--muted); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; margin-bottom: 14px; display: block; }
.related-card h3 { color: #fff; margin-bottom: 12px; font-size: clamp(1.25rem, 1.5vw, 1.55rem); }
.related-card p { color: var(--muted); flex: 1; font-size: 0.96rem; line-height: 1.65; margin-bottom: 0; }
.related-card .r-go { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 0.92rem; }
.related-card .r-go .arrow { color: #fff; transition: transform .32s var(--ease); }
.related-card:hover .r-go .arrow { transform: translateX(6px); }

/* ---- Final CTA (clean split panel) ---- */
.enquire-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(36px, 4vw, 84px); align-items: start; }
.enquire-intro h2 { color: #fff; margin-bottom: 1.4rem; }
.enquire-intro > p { color: var(--text); max-width: 42ch; }
.assure { list-style: none; margin: clamp(26px, 3vw, 40px) 0 0; }
.assure li { position: relative; padding-left: 34px; margin-bottom: 16px; color: var(--muted); line-height: 1.55; }
.assure li svg { position: absolute; left: 0; top: 1px; width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.7; }
.enquire-card { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 3vw, 52px); }
.enquire-card .form-grid { max-width: none; margin: 0; }

/* ---- Sticky mobile enquiry bar ---- */
.sticky-cta { display: none; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(9,12,17,0.94); backdrop-filter: blur(16px) saturate(120%); border-top: 1px solid var(--line); }
  .sticky-cta .btn { flex: 1; justify-content: center; padding: 15px 18px; }
  .sticky-cta .btn.outline { flex: 0 0 auto; }
  .nl-pop, .nl-launch { bottom: 88px; }
}

/* ---- Programme responsive ---- */
@media (max-width: 1024px) {
  .problem { grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); }
  .signs-grid, .support-grid, .journey, .outcome-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .audience, .enquire-split { grid-template-columns: 1fr; }
  .problem-stats { gap: 20px; }
}
@media (max-width: 640px) {
  .signs-grid, .support-grid, .journey, .outcome-grid, .related-grid, .problem-stats { grid-template-columns: 1fr; }
}

/* ---------- Blog post: table of contents + related reading ---------- */
.toc { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 2.6vw, 38px); margin: clamp(2rem, 3vw, 3rem) 0; }
.toc h4 { color: #fff; font-family: var(--display); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.toc ol { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.toc li { margin-bottom: 10px; font-size: 0.98rem; }
.toc a { color: var(--text); }
.toc a:hover { color: #fff; }
.post-related { margin-top: clamp(2.6rem, 3.4vw, 3.6rem); }
.post-related h3 { color: #fff; margin-bottom: 8px; }
.post-related a { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); color: #fff; font-weight: 600; font-size: clamp(1rem, 1.2vw, 1.15rem); transition: padding-left .3s var(--ease); }
.post-related a:last-child { border-bottom: 1px solid var(--line); }
.post-related a:hover { padding-left: 8px; }
.post-related a .arrow { color: var(--accent); flex: none; }
.post-related a small { display: block; color: var(--muted); font-weight: 400; font-size: 0.85rem; margin-top: 4px; }
.article h2 { scroll-margin-top: 120px; }

/* ===========================================================
   BLOG v2 - categories, tags, richer CTA, card polish
   =========================================================== */

/* ---- Post hero meta: category pill + read time ---- */
.post-meta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 1.6rem; }
.post-cat { display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border: 1px solid var(--line-2); border-radius: 40px; color: #fff !important; font-family: var(--display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; transition: background .25s var(--ease), color .25s var(--ease); }
.post-cat::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.post-cat:hover { background: #fff; color: #090C11 !important; }
.post-cat:hover::before { background: #090C11; }
.post-meta-row .rt { color: rgba(255,255,255,0.66); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---- Tag chips (end of article) ---- */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: clamp(2.4rem, 3vw, 3.2rem) 0 0; }
.tag-row .tag-label { color: var(--muted); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; margin-right: 4px; }
.tag-row .chip { display: inline-flex; padding: 9px 17px; border: 1px solid var(--line); border-radius: 40px; background: var(--bg-2); color: var(--muted); font-size: 0.84rem; }

/* ---- Richer post CTA ---- */
.post-cta { position: relative; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(34px, 4vw, 58px) clamp(30px, 4vw, 58px) clamp(34px, 4vw, 58px) clamp(34px, 4.4vw, 64px); margin: clamp(2.6rem, 3.4vw, 3.6rem) 0 0; }
.post-cta::before { content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: var(--accent); }
.post-cta .eyebrow { margin-bottom: 1rem; }
.post-cta h3 { color: #fff; font-size: clamp(1.5rem, 2.2vw, 2.1rem); margin-bottom: 14px; line-height: 1.12; }
.post-cta p { color: var(--text); margin-bottom: 28px; max-width: 58ch; }
.post-cta .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Blog index: filter bar + card category chip ---- */
.blog-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 auto clamp(44px, 5vw, 80px); }
.blog-filter button { background: transparent; border: 1px solid var(--line-2); color: var(--muted); padding: 12px 24px; border-radius: 40px; font-family: inherit; font-size: 0.9rem; cursor: pointer; transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease); }
.blog-filter button:hover { color: #fff; }
.blog-filter button.active { background: #fff; color: #090C11; border-color: #fff; }
.post-card.is-hidden { display: none; }
.blog-grid .post-card .thumb { position: relative; }
.post-card .cat-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(5,7,10,0.66); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.22); color: #fff; font-family: var(--display); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 8px 14px; border-radius: 40px; }
.post-card .readmore { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; font-size: 0.88rem; margin-top: 18px; opacity: 0; transform: translateX(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.post-card .readmore .arrow { color: var(--accent); transition: transform .3s var(--ease); }
.post-card:hover .readmore { opacity: 1; transform: none; }
.post-card:hover .readmore .arrow { transform: translateX(5px); }

/* ---- Cohesive image colour grading (fit the dark site) ---- */
.prog-cover .cover-bg,
.feature .media,
.split .imgwrap img,
.article figure img,
.blog-grid .post-card .thumb,
.post-card .thumb,
.team-photo img,
.stage-img { filter: saturate(0.6) contrast(1.06) brightness(0.92); }
.quote-band { filter: saturate(0.65) contrast(1.04); }

/* ===========================================================
   PAGE LOADER + TRANSITIONS (site-wide)
   =========================================================== */
.page-loader { position: fixed; inset: 0; z-index: 9999; background: #05070A; display: grid; place-items: center; opacity: 1; transition: opacity .45s var(--ease), visibility .45s; }
.page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader .pl-logo { width: clamp(150px, 20vw, 230px); height: auto; opacity: 0; transform: translateY(10px) scale(0.98); }
.page-loader.reveal .pl-logo { animation: plIn 1.05s var(--ease) forwards; }
.page-loader:not(.reveal) .pl-logo { opacity: 1; transform: none; }
.page-loader .pl-line { position: absolute; left: 50%; bottom: clamp(60px, 12vh, 120px); transform: translateX(-50%); width: 120px; height: 2px; background: rgba(255,255,255,0.12); overflow: hidden; }
.page-loader .pl-line::after { content: ""; position: absolute; top: 0; bottom: 0; left: -40%; width: 40%; background: #fff; animation: plBar 1.1s var(--ease) infinite; }
@keyframes plIn { to { opacity: 1; transform: none; } }
@keyframes plBar { 0% { left: -40%; } 100% { left: 100%; } }
body { animation: pageFade .6s var(--ease) both; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .page-loader .pl-logo { animation: none; opacity: 1; transform: none; }
  .page-loader .pl-line { display: none; }
  body { animation: none; }
}

@media (max-width: 600px) { .blog-filter button { padding: 10px 18px; font-size: 0.84rem; } }

/* ---------- Programme hero: darken image + gradient above it (match blog) ---------- */
.prog-cover::before { z-index: 1; background: linear-gradient(90deg, rgba(9,12,17,0.94) 0%, rgba(9,12,17,0.80) 40%, rgba(9,12,17,0.45) 72%, rgba(9,12,17,0.66) 100%), linear-gradient(0deg, rgba(9,12,17,0.96) 2%, rgba(9,12,17,0) 58%); }
.prog-cover .cover-bg { filter: saturate(0.55) contrast(1.05) brightness(0.74); z-index: 0; }
.prog-cover .container { z-index: 2; }

/* ---------- Page hero with cinematic image (blog/listing) ---------- */
.page-hero.has-img { min-height: clamp(440px, 56vh, 640px); display: flex; align-items: center; border-bottom: none; }
.page-hero.has-img .ph-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center 35%; filter: saturate(0.55) contrast(1.05) brightness(0.9); transform: scale(1.04); animation: heroZoom 22s var(--ease) forwards; }
.page-hero.has-img::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(9,12,17,0.82) 0%, rgba(9,12,17,0.66) 45%, rgba(9,12,17,0.94) 100%); }
.page-hero.has-img .container { position: relative; z-index: 2; }
.page-hero.has-img .eyebrow { color: rgba(255,255,255,0.72); }
.page-hero.has-img h1 { color: #fff; }
.page-hero.has-img p { color: rgba(255,255,255,0.82); }
@media (prefers-reduced-motion: reduce) { .page-hero.has-img .ph-bg { animation: none; transform: none; } }

/* ---------- Blog post body gutter (stop text touching edges on mobile) ---------- */
.article { padding-left: clamp(22px, 6vw, 34px); padding-right: clamp(22px, 6vw, 34px); }

/* ---------- Contact: find-us split + map embed ---------- */
.contact-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 64px); align-items: stretch; }
.contact-info { display: flex; flex-direction: column; }
.contact-info .ci-row { padding: clamp(18px, 2vw, 26px) 0; border-top: 1px solid var(--line); }
.contact-info .ci-row:first-of-type { border-top: none; }
.contact-info .ci-lab { display: block; color: var(--muted); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }
.contact-info .ci-val { color: #fff; font-size: clamp(1.05rem, 1.3vw, 1.25rem); }
.contact-info .ci-val a { color: #fff; }
.contact-info .btn { margin-top: clamp(22px, 2.4vw, 32px); align-self: flex-start; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 420px; position: relative; }
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(0.2) contrast(1.02); }
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; } .map-embed { min-height: 320px; } .map-embed iframe { min-height: 320px; } }

.map-embed .map-link { position: absolute; bottom: 14px; right: 14px; z-index: 2; background: rgba(5,7,10,0.82); backdrop-filter: blur(8px); border: 1px solid var(--line-2); color: #fff !important; padding: 9px 15px; border-radius: 40px; font-size: 0.8rem; font-weight: 600; }
.map-embed .map-link:hover { background: #fff; color: #090C11 !important; }

/* ---------- Contact: full-bleed black & white map ---------- */
.map-full { position: relative; width: 100%; height: clamp(360px, 52vh, 580px); margin-top: clamp(40px, 5vw, 80px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.map-full iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) contrast(1.05) brightness(0.96); }
.map-full .map-link { position: absolute; bottom: 18px; right: 18px; z-index: 2; background: rgba(5,7,10,0.82); backdrop-filter: blur(8px); border: 1px solid var(--line-2); color: #fff !important; padding: 10px 16px; border-radius: 40px; font-size: 0.82rem; font-weight: 600; }
.map-full .map-link:hover { background: #fff; color: #090C11 !important; }

/* ---------- Quick Start (interactive try-this cards) ---------- */
.qs-progress { color: #fff; white-space: nowrap; }
.qs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); }
.qs-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: relative; transition: border-color .3s var(--ease); }
.qs-card::before { content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease); }
.qs-card.done { border-color: var(--line-2); }
.qs-card.done::before { transform: scaleY(1); }
.qs-head { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(16px, 1.8vw, 24px); padding: clamp(24px, 2.6vw, 36px); font-family: inherit; }
.qs-ic svg { width: 38px; height: 38px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; display: block; }
.qs-t { min-width: 0; }
.qs-n { font-family: var(--display); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.16em; color: var(--muted); display: block; margin-bottom: 6px; }
.qs-head h3 { color: #fff; font-size: clamp(1.15rem, 1.4vw, 1.4rem); margin: 0 0 4px; }
.qs-teaser { color: var(--muted); font-size: 0.95rem; }
.qs-chev svg { width: 22px; height: 22px; stroke: var(--muted); fill: none; stroke-width: 2; transition: transform .35s var(--ease); }
.qs-card.open .qs-chev svg { transform: rotate(180deg); stroke: #fff; }
.qs-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.qs-card.open .qs-body { max-height: 520px; }
.qs-body > * { padding-left: clamp(24px, 2.6vw, 36px); padding-right: clamp(24px, 2.6vw, 36px); }
.qs-why { color: var(--text); font-size: 0.96rem; margin: 0 0 1rem; }
.qs-recipe { list-style: none; margin: 0 0 1.2rem; }
.qs-recipe li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--muted); font-size: 0.95rem; }
.qs-recipe li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border: 1px solid var(--accent-dk); border-radius: 50%; }
.qs-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-bottom: clamp(24px, 2.6vw, 36px); padding-top: 4px; }
.qs-tried { display: inline-flex; align-items: center; gap: 9px; background: transparent; border: 1px solid var(--line-2); color: #fff; border-radius: 40px; padding: 11px 20px; font-family: inherit; font-size: 0.86rem; font-weight: 600; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.qs-tried:hover { border-color: #fff; }
.qs-tried::before { content: "+"; font-size: 1.05rem; line-height: 1; }
.qs-card.done .qs-tried { background: #fff; color: #090C11; border-color: #fff; }
.qs-card.done .qs-tried::before { content: "\2713"; }
@media (max-width: 980px) { .qs-grid { grid-template-columns: 1fr; } .qs-card.open .qs-body { max-height: 600px; } }

/* ---------- Thank you page ---------- */
.thankyou { min-height: 72vh; display: flex; align-items: center; }
.thankyou .lead { max-width: 640px; margin-left: auto; margin-right: auto; }
.thankyou h1 { color: #fff; }
.ty-mark { width: clamp(72px, 8vw, 92px); height: clamp(72px, 8vw, 92px); border-radius: 50%; border: 1px solid var(--line-2); display: inline-grid; place-items: center; margin-bottom: clamp(26px, 3vw, 40px); }
.ty-mark svg { width: 40%; height: 40%; stroke: var(--accent); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.ty-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: clamp(28px, 3vw, 42px); }
.ty-note { color: var(--muted); font-size: 0.92rem; margin-top: clamp(24px, 2.4vw, 34px); margin-bottom: 0; }

/* ---------- Route: truck driving across the line ---------- */
.route-truck { position: absolute; top: 1px; left: 0; z-index: 0; animation: truckDrive 8s linear infinite; will-change: left; pointer-events: none; }
.route-truck svg { width: clamp(32px, 3.2vw, 44px); height: auto; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; display: block; }
@keyframes truckDrive { 0% { left: -6%; } 90% { left: 100%; } 100% { left: 100%; } }
@media (prefers-reduced-motion: reduce) { .route-truck { display: none; } }

/* ---------- Quick Start: card images ---------- */
.qs-img { aspect-ratio: 16/10; background-size: cover; background-position: center; filter: saturate(0.6) contrast(1.05) brightness(0.92); }
.qs-head { grid-template-columns: 1fr auto; }

/* ---------- Blog post: richer formatting (dividers, pull-quotes, callouts) ---------- */
.article h2 { border-top: 1px solid var(--line); padding-top: clamp(1.7rem, 2.2vw, 2.4rem); margin-top: clamp(2.6rem, 3.4vw, 3.6rem); }
.article .pullquote { font-family: var(--display); font-weight: 800; color: #fff; font-size: clamp(1.35rem, 2.1vw, 1.95rem); line-height: 1.28; letter-spacing: -0.015em; border-left: 3px solid var(--accent); padding: 6px 0 6px 26px; margin: clamp(2rem, 3vw, 2.8rem) 0; }
.article .callout { background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: clamp(22px, 2.6vw, 34px); margin: clamp(2rem, 3vw, 2.8rem) 0; }
.article .callout h4 { color: #fff; font-family: var(--display); font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 16px; }
.article .callout ul { margin: 0; }
.article ul.checklist { list-style: none; margin: 1.2rem 0 1.6rem; padding: 0; }
.article ul.checklist li { position: relative; padding-left: 32px; margin-bottom: 12px; }
.article ul.checklist li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--accent-dk); }
.article ul.checklist li::after { content: ""; position: absolute; left: 6px; top: 7px; width: 6px; height: 10px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); }

/* ---------- Cookie consent banner ---------- */
.cookie-banner { position: fixed; bottom: 28px; left: 28px; z-index: 200; width: min(420px, calc(100vw - 36px)); background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.55); padding: 22px 22px 20px; transform: translateY(24px); opacity: 0; pointer-events: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.cookie-banner.show { opacity: 1; transform: none; pointer-events: auto; }
.cookie-banner .cookie-text { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 18px; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; }
.cookie-banner .cookie-actions .btn { padding: 12px 24px; font-size: 0.88rem; }
@media (max-width: 600px) { .cookie-banner { left: 12px; right: 12px; bottom: 12px; width: auto; } .nl-pop, .nl-launch { bottom: 150px; } }
