/* ============================================================
   Tuu Post — Editorial system
   Brand: Tuu Post (orange accent, warm cream/ink neutrals, Poppins).
   Layout language: editorial — hairline rhythm, big display type,
   serif-italic accent words, bordered stat grids, comparison matrix,
   numbered rows, marquee, mono-label footer with giant display links.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --orange: #e15933;
  --orange-deep: #b8431f;
  --orange-press: #97361700;
  --ink: #17171b;
  --ink-soft: #26262c;
  --graphite: #3a3a3a;
  --muted: #6b6660;
  --cream: #FFCB8C;
  --cream-warm: #efeae0;
  --paper: #ffffff;
  --line: rgba(23, 20, 16, 0.13);
  --line-strong: rgba(23, 20, 16, 0.26);

  --shell: 1320px;
  --sec-pad: 120px;
}

/* density tweak (shared/site.js sets html.density-*) */
html.density-compact  { --sec-pad: 92px; }
html.density-standard { --sec-pad: 120px; }
html.density-airy     { --sec-pad: 152px; }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--orange); color: #fff; }

/* ── Typography ───────────────────────────────────────────── */
.display {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.01;
  text-wrap: balance;
  margin: 0;
}
.serif {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
}
.eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.eyebrow.on-dark { color: rgba(255, 255, 255, 0.6); }
.eyebrow.accent { color: var(--orange); }

/* ── Layout ───────────────────────────────────────────────── */
.wrap {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 720px) { .wrap { padding: 0 24px; } }

.divider { height: 1px; background: var(--line); border: none; margin: 0; }

.section { padding: var(--sec-pad) 0; }
.section.tight { padding: calc(var(--sec-pad) * 0.62) 0; }
.section--bg-soft { background: var(--cream); }
.section--bg-warm { background: var(--cream-warm); }
.section--bg-dark { background: var(--ink); color: #fff; }
.section--bg-orange { background: var(--orange); color: #fff; }

/* Section head: editorial 1fr / 2fr split */
.split-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: end;
}
.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
  text-wrap: balance;
}
.split-head-right {
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
  align-self: end;
}
.section--bg-dark .split-head-right { color: rgba(255,255,255,0.72); }
.partners-head { max-width: 760px; margin-bottom: 56px; }

@media (max-width: 920px) {
  .split-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn::after { content: none; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-on-orange { background: #fff; color: var(--ink); }
.btn-on-orange:hover { background: var(--cream); }
.btn-on-dark-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-on-dark-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.07); }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 69px; height: 69px; }
.brand-mark {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  flex: 1;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 24px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.is-active { color: var(--orange); }
.nav-cta .btn {
  background: var(--ink);
  color: #fff;
  padding: 11px 20px;
  font-size: 13px;
}
.nav-cta .btn:hover { background: var(--orange); }
@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero { padding: 80px 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero h1, .hero .display {
  font-size: clamp(50px, 6.4vw, 96px);
  margin: 22px 0 0;
}
.hero .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--graphite);
  max-width: 480px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-figure { margin-top: 64px; position: relative; }
.hero-figure img {
  width: 100%;
  height: clamp(360px, 46vw, 560px);
  object-fit: cover;
  border-radius: 4px;
}
.hero-figure .cap {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(23,20,16,0.78);
  color: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 2px;
  max-width: 320px;
}
.hero-figure .cap b { font-weight: 600; font-size: 14px; }
.hero-figure .cap span { font-size: 13px; color: rgba(255,255,255,0.72); }
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Hero meta row (homepage / solutions) */
.hero-meta {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-meta-item {
  flex: 1;
  padding: 22px 24px 0;
  text-align: center;
}
.hero-meta-num {
  display: block;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
}
.hero-meta-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.45;
}

/* ── Sub-hero (interior pages) ────────────────────────────── */
.subhero { padding: 56px 0 0; }
.crumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 40px;
}
.crumb a:hover { color: var(--orange); }
.crumb .sep { opacity: 0.5; }
.subhero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(46px, 6.2vw, 92px);
  line-height: 1.01;
  letter-spacing: -0.03em;
  margin: 16px 0 0;
  max-width: 20ch;
  text-wrap: balance;
}
.subhero .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--graphite);
  max-width: 620px;
  margin: 28px 0 0;
}
.subhero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 920px) { .subhero-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ── Pullquote / manifesto ────────────────────────────────── */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
}
.pullquote {
  font-size: clamp(26px, 3.1vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0;
  text-wrap: pretty;
}
.pullquote .serif { color: var(--orange); }
.section--bg-orange .pullquote .serif,
.section--bg-dark .pullquote .serif { color: #fff; }
.manifesto .eyebrow { padding-top: 10px; }
@media (max-width: 920px) { .manifesto { grid-template-columns: 1fr; gap: 20px; } }

/* Centered quote block (orange / soft sections) */
.quote-block { max-width: 1040px; }
.quote-block blockquote {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
.quote-block .attrib {
  margin-top: 28px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--orange);
}
.section--bg-orange .quote-block .attrib { color: rgba(255,255,255,0.85); }

/* ── Dual panes (physical / digital handoff) ──────────────── */
.dualbrand {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dualbrand .pane {
  padding: 72px 56px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
}
.dualbrand .pane.left { background: #3c3c47; }
.dualbrand .pane.right { background: var(--orange); }
.dualbrand h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 14px 0 0;
}
.dualbrand .desc {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  max-width: 400px;
  margin: 18px 0 0;
  line-height: 1.6;
}
.dualbrand .pane.right .desc { color: rgba(255,255,255,0.92); }
.dualbrand ul {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.dualbrand ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  padding-left: 18px; position: relative;
}
.dualbrand ul li::before {
  content: "▪"; position: absolute; left: 0; opacity: 0.6;
}
.dualbrand .pane.right ul li { color: rgba(255,255,255,0.92); }
.dualbrand .go {
  margin-top: 36px;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  background: #fff; color: var(--ink);
  transition: background 0.2s, transform 0.15s;
}
.dualbrand .go::after { content: none; }
.dualbrand .pane:hover .go { background: var(--cream); transform: translateX(2px); }

@media (max-width: 760px) {
  .dualbrand { grid-template-columns: 1fr; }
  .dualbrand .pane { padding: 48px 28px; min-height: 0; }
}

/* ── Comparison matrix ────────────────────────────────────── */
.matrix {
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
}
.matrix-head { display: grid; grid-template-columns: 210px 1fr 1fr; }
.matrix-head .cell { padding: 32px 28px; }
.matrix-head .gutter {
  background: var(--ink);
  color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.matrix-head .gutter .vs {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 40px;
  line-height: 0.9;
  margin-top: 8px;
}
.engine-col { border-left: 1px solid var(--line); color: #fff; }
.engine-col.physical { background: #3c3c47; }
.engine-col.digital  { background: var(--orange); }
.engine-col .badge {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; opacity: 0.75;
}
.engine-col h3 {
  font-family: "Poppins", sans-serif;
  font-size: 28px; font-weight: 700; letter-spacing: -0.025em;
  margin: 10px 0 4px;
}
.engine-col .sub { font-size: 13px; opacity: 0.85; line-height: 1.45; }
.matrix-row { display: grid; grid-template-columns: 210px 1fr 1fr; border-top: 1px solid var(--line); }
.matrix-row .cell { padding: 24px 28px; }
.matrix-row .row-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
  background: var(--cream);
  display: flex; align-items: flex-start;
}
.matrix-row .val {
  font-size: 15px; line-height: 1.55; color: var(--ink);
  border-left: 1px solid var(--line);
}
.matrix-row .val.physical-accent { box-shadow: inset 4px 0 0 var(--ink); }
.matrix-row .val.digital-accent { box-shadow: inset 4px 0 0 var(--orange); }
.matrix-row .val .pills { display: flex; flex-wrap: wrap; gap: 6px; }
.matrix-row .val .pill {
  font-size: 12px; letter-spacing: 0.04em;
  padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--graphite);
}
@media (max-width: 860px) {
  .matrix-head, .matrix-row { grid-template-columns: 1fr; }
  .matrix-row .val { border-left: none; border-top: 1px solid var(--line); }
  .engine-col { border-left: none; border-top: 1px solid rgba(255,255,255,0.18); }
}

/* ── Numbered rows ────────────────────────────────────────── */
.num-rows { border-top: 1px solid var(--line); }
.num-row {
  display: grid;
  grid-template-columns: 84px 1fr 2fr;
  gap: 32px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left 0.2s;
}
.num-row:hover { padding-left: 8px; }
.num-row .n {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--orange);
}
.num-row h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.08;
}
.num-row p { margin: 0; color: var(--graphite); font-size: 16px; line-height: 1.6; }
.section--bg-dark .num-rows,
.section--bg-dark .num-row { border-color: rgba(255,255,255,0.16); }
.section--bg-dark .num-row p { color: rgba(255,255,255,0.74); }
@media (max-width: 760px) {
  .num-row { grid-template-columns: 48px 1fr; }
  .num-row p { grid-column: 1 / -1; }
}

/* ── Feature cards ────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 920px) { .cards-grid, .cards-grid.cols-2, .cards-grid.cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--orange); }
.section--bg-soft .card, .section--bg-warm .card { background: var(--paper); }
.card .num, .card .num-tag {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--orange);
}
.card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.015em;
  margin: 0; line-height: 1.12;
}
.card p { margin: 0; color: var(--graphite); font-size: 15px; line-height: 1.6; }
.card .card-icon { width: 44px; height: 44px; }
.card .card-icon img { width: 100%; height: 100%; object-fit: contain; }
.card .more {
  margin-top: auto; padding-top: 6px;
  font-size: 13px; font-weight: 600; color: var(--orange);
  display: inline-flex; align-items: center; gap: 8px;
}
.card .more::after { content: none; }
.card--engine { background: #3c3c47; color: #fff; border-color: #3c3c47; }
.card--engine:hover { border-color: var(--orange); }
.card--engine p { color: rgba(255,255,255,0.74); }
.card--engine .card-tag {
  align-self: flex-start;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}

/* ── Stats (bordered grid) ────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 40px 28px 40px 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .v {
  display: block;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: var(--orange);
}
.stat .l { display: block; margin-top: 12px; font-size: 13px; color: var(--graphite); line-height: 1.45; }
.section--bg-dark .stats, .section--bg-dark .stat { border-color: rgba(255,255,255,0.18); }
.section--bg-dark .stat .v { color: #fff; }
.section--bg-dark .stat .l { color: rgba(255,255,255,0.72); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: none; } }

/* ── Pillars ──────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 920px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--paper);
}
.pillar .num {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 44px; line-height: 0.9;
  color: var(--orange);
}
.pillar h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin: 0;
}
.pillar p { margin: 0; color: var(--graphite); font-size: 15px; line-height: 1.6; }
.section--bg-dark .pillar { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.section--bg-dark .pillar h3 { color: #fff; }
.section--bg-dark .pillar p { color: rgba(255,255,255,0.72); }

/* ── Dual feature (image + body) ──────────────────────────── */
.dual-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 920px) { .dual-feature { grid-template-columns: 1fr; } }
.dual-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.dual-card:hover { border-color: var(--orange); }
.dual-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.dual-card-img img { width: 100%; height: 100%; object-fit: cover; }
.dual-card-img .badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 999px;
}
.dual-card-body { padding: 36px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.dual-card-body h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0;
}
.dual-card-body p { margin: 0; color: var(--graphite); font-size: 15px; line-height: 1.6; }
.dual-card-body ul {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.dual-card-body ul li {
  font-size: 14px; color: var(--graphite); padding-left: 20px; position: relative; line-height: 1.45;
}
.dual-card-body ul li::before { content: "▪"; color: var(--orange); position: absolute; left: 0; font-size: 12px; }
.dual-card-body .btn { align-self: flex-start; margin-top: auto; }

/* ── Logo cloud ───────────────────────────────────────────── */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.logo-cell {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 38px 24px;
  min-height: 190px;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(17,17,17,0.05), 0 8px 22px rgba(17,17,17,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.logo-cell:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(17,17,17,0.12); }
.logo-cell-mark { flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; }
.logo-cell-mark img { max-height: 88px; max-width: 92%; width: auto; height: auto; object-fit: contain; }
/* logos with heavy internal whitespace — scale up to match DSV */
.logo-cell-mark img[alt="DHL"] { max-height: 96px; }
.logo-cell-mark img[alt="Openserve"] { max-height: 104px; max-width: 100%; }
.logo-cell-mark img[alt="TEBA"] { max-height: 120px; max-width: 100%; transform: scale(1.15); }
.logo-cell-mark img[alt="Dream Hotels and Resorts"] { max-height: 110px; max-width: 100%; }
.logo-cell-mark img[alt="Flash"] { max-height: 100px; }
.logo-cell-cat {
  font-family: var(--font-body, inherit);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #111111;
  text-align: center;
  line-height: 1.3;
}
.section--bg-soft .logo-cell { background: #fff; }
.section[data-screen-label="Partners"] { background: #e4e2dd; }
@media (max-width: 720px) { .logos-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Marquee ──────────────────────────────────────────────── */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-inner { display: inline-flex; animation: marq 38s linear infinite; }
@media (prefers-reduced-motion: reduce) { .marquee-inner { animation: none; } }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-inner span {
  font-size: 30px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 56px; padding-left: 56px;
}
.marquee-inner span::after { content: "✦"; color: var(--orange); font-size: 16px; }

/* ── News grid ────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 920px) { .news-grid { grid-template-columns: 1fr; } }
.news-item {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s;
}
.news-item:hover { border-color: var(--orange); }
.news-img { aspect-ratio: 16/10; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--muted); }
.news-meta .tag {
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange);
}
.news-body h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.18; margin: 0;
}
.news-body p { margin: 0; color: var(--graphite); font-size: 14px; line-height: 1.55; }
.news-body .read {
  margin-top: auto; padding-top: 4px;
  font-size: 13px; font-weight: 600; color: var(--orange);
}


/* ── CTA strip ────────────────────────────────────────────── */
.cta-strip {
  background: #3c3c47;
  color: #fff;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  padding: 72px 64px;
  align-items: center;
}
.section--bg-soft .cta-strip, .section--bg-warm .cta-strip { /* keep ink */ }
.cta-strip h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.0;
  margin: 14px 0 0; color: #fff;
}
.cta-strip h2 .serif { color: var(--orange); }
.cta-strip > div:first-child > p {
  color: rgba(255,255,255,0.78);
  font-size: 16px; line-height: 1.6; margin: 18px 0 0; max-width: 520px;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.cta-meta { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,0.18); }
.cta-meta-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-size: 14px; color: rgba(255,255,255,0.82);
}
.cta-meta-pill {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); min-width: 88px;
}
@media (max-width: 860px) {
  .cta-strip { grid-template-columns: 1fr; gap: 36px; padding: 48px 28px; }
}

/* ── Footer (mono labels + giant display links) ───────────── */
.site-footer { background: var(--ink); color: #fff; padding: 88px 0 32px; }
.footer-feature {
  display: flex; flex-direction: column; gap: 6px;
  padding-bottom: 64px; margin-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-feature a {
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.0;
  color: #fff; transition: color 0.2s;
}
.footer-feature a:hover { color: var(--orange); }
.footer-feature a .serif { color: var(--orange); font-weight: 400; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.footer-brand img { width: 88px; height: 88px; }
.footer-brand-mark { font-weight: 700; font-size: 19px; color: #fff; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; max-width: 360px; margin: 18px 0 0; }
.footer-follow { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.footer-follow-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.footer-follow a {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center; color: rgba(255,255,255,0.8);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-follow a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.footer-col h4 {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin: 0 0 18px; font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 0; }
.footer-col a {
  display: block; padding: 7px 0;
  font-size: 14px; color: rgba(255,255,255,0.82);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bar {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 12px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* ── Service rows (commerce pages) ────────────────────────── */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.service-row:first-child { border-top: none; }
.service-row.reverse .service-media { order: 2; }
@media (max-width: 920px) {
  .service-row, .service-row.reverse { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .service-row.reverse .service-media { order: 0; }
}
.service-media { overflow: hidden; aspect-ratio: 4/3; background: var(--cream-warm); }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-num { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; color: var(--orange); margin-bottom: 14px; }
.service-row h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700; font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.04; letter-spacing: -0.025em; margin: 0 0 18px; text-wrap: balance;
}
.service-row > div > p { color: var(--graphite); font-size: 17px; line-height: 1.6; }
.service-bullets {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
@media (max-width: 600px) { .service-bullets { grid-template-columns: 1fr; } }
.service-bullets li { display: flex; gap: 10px; font-size: 14px; line-height: 1.45; color: var(--graphite); }
.service-bullets li::before { content: "▪"; color: var(--orange); font-size: 12px; margin-top: 2px; flex: none; }
.service-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* commerce toggle */
.commerce-toggle {
  display: inline-flex; gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 20px;
}
.commerce-toggle a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 9px 20px; border-radius: 999px;
}
.commerce-toggle a.is-active { background: var(--orange); color: #fff; }

/* ── Reveal ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 0.6s var(--ease-out, ease), transform 0.6s var(--ease-out, ease); }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; } }
@media print { .reveal, .reveal.in { opacity: 1 !important; transform: none !important; } }

/* ── Tweaks panel ─────────────────────────────────────────── */
.tweaks-fab {
  position: fixed; bottom: 20px; right: 20px; z-index: 120;
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--ink); color: #fff; border: none;
  display: none; place-items: center;
}
.tweaks-fab.show { display: grid; }
.tweaks-panel {
  position: fixed; bottom: 80px; right: 20px; z-index: 120;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 22px;
  display: none;
  flex-direction: column; gap: 20px;
}
.tweaks-panel.open { display: flex; }
.tweaks-header { display: flex; justify-content: space-between; align-items: center; }
.tweaks-title { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.tweaks-close { background: none; border: none; font-size: 15px; color: var(--muted); }
.tweak-label { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.tweak-options { display: flex; gap: 6px; }
.tweak-opt {
  flex: 1; padding: 9px 8px; font-size: 12px; font-weight: 500;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper); color: var(--ink);
}
.tweak-opt.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── Hero lead (single-statement rework) ──────────────────── */
.hero-lead {
  max-width: 1040px;
}
.hero-lead .display {
  font-size: clamp(50px, 7vw, 104px);
  margin: 0;
}
.hero-lead .hero-actions { margin-top: 36px; }

/* ── Bento grid (three pillars) ───────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(186px, auto);
  gap: 16px;
}
.bento-tile {
  border: 1px solid rgba(255,255,255,0.14);
  background: #3c3c47;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.bento-tile:hover { border-color: rgba(255,255,255,0.32); }
.bento-kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--orange);
}
.bento-tile h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.08;
  margin: 0; color: #fff;
}
.bento-tile p { margin: 0; color: rgba(255,255,255,0.74); font-size: 15px; line-height: 1.6; }
.tile-big { grid-column: span 2; grid-row: span 2; }
.tile-accent {
  grid-column: span 2;
  background: var(--orange);
  border-color: var(--orange);
  justify-content: center;
}
.tile-accent:hover { border-color: var(--orange); }
.bento-metric {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.bm-num {
  font-size: 52px; font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: var(--orange);
}
.bm-num--xl { font-size: clamp(56px, 7vw, 92px); color: #fff; }
.bm-label { font-size: 13px; color: rgba(255,255,255,0.74); line-height: 1.4; }
.tile-accent .bm-label { color: rgba(255,255,255,0.92); margin-top: 12px; }
@media (max-width: 920px) {
  .bento { grid-template-columns: 1fr; }
  .tile-big, .tile-accent { grid-column: span 1; grid-row: span 1; }
}

/* ── Value slider (digital → phygital) ────────────────────── */
.vslider {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.vslider-viz {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 6px;
}
.vs-dot {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream-warm);
  transition: background 0.3s var(--ease-out, ease);
}
.vs-dot.lit { background: var(--orange); }
.vslider-panel { display: flex; flex-direction: column; gap: 26px; }
.vslider-readout .vs-num {
  display: block;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.vslider-readout .vs-sub { display: block; margin-top: 10px; font-size: 14px; color: var(--graphite); line-height: 1.5; }
.vs-uplift .vs-num { color: var(--orange); }
.vs-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 999px;
  background: var(--line-strong); outline: none; margin: 4px 0 0;
}
.vs-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange); cursor: pointer;
  border: 3px solid #fff; box-shadow: 0 1px 5px rgba(17,17,17,0.25);
}
.vs-range::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange); cursor: pointer;
  border: 3px solid #fff; box-shadow: 0 1px 5px rgba(17,17,17,0.25);
}
.vs-ends {
  display: flex; justify-content: space-between;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-top: -8px;
}
.vs-note { font-size: 12px; color: var(--muted); margin: 0; }
@media (max-width: 920px) { .vslider { grid-template-columns: 1fr; gap: 36px; } }

/* ── Reveal stagger group ─────────────────────────────────── */
.reveal-group > * { opacity: 0; transform: translateY(16px); }
.reveal-group.in > * {
  opacity: 1; transform: none;
  transition: opacity 0.6s var(--ease-out, ease), transform 0.6s var(--ease-out, ease);
}
.reveal-group.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-group.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-group.in > *:nth-child(6) { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-group > *, .reveal-group.in > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}
@media print {
  .reveal-group > *, .reveal-group.in > * { opacity: 1 !important; transform: none !important; }
}
