/* =========================================================
   Perspectiv — Shared design system
   Sunshine Coast digital agency · Define, Build, Evolve.
   ========================================================= */

:root {
  --bg: #26252b;
  --bg-2: #2d2c33;
  --card: #2f2e36;
  --card-hover: #36343d;
  --ink: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --muted-2: rgba(255,255,255,0.68);
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.18);
  --max-w: 1480px;

  /* Editorial system (Premium upgrade) */
  --accent: #C5BAA8;
  --accent-soft: rgba(197,186,168,0.18);
  --accent-line: rgba(197,186,168,0.55);
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  /* Light section palette */
  --light-bg: #FBFAF9;
  --light-bg-2: #F4F1ED;
  --light-ink: #1f2620;
  --light-ink-2: #44403c;
  --light-muted: #78716c;
  --light-line: rgba(31,38,32,0.10);
  --light-line-strong: rgba(31,38,32,0.18);
}

/* Global serif on .em — except outlined hero "Evolve" which uses .outline */
.em {
  font-family: var(--serif);
  font-weight: 400;
}

/* ============== SCROLL REVEAL ============== */
[data-reveal],
.reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(0.16,1,0.3,1),
              transform .8s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
}
[data-reveal].is-revealed,
.reveal-child.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

/* ============== NAV ============== */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 26px 48px;
  z-index: 100;
  background: linear-gradient(180deg, rgba(20,18,24,0.55), transparent);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              background 0.3s ease,
              backdrop-filter 0.3s ease;
}
nav.site-nav.nav-scrolled {
  background: rgba(20,18,24,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
nav.site-nav.nav-hidden {
  transform: translateY(-110%);
}
.logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: opacity .2s;
}
.logo:hover { opacity: 0.75; }
.logo-img {
  display: block;
  height: 24px;
  width: auto;
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 900px) {
  .logo-img { height: 20px; }
}

/* ============== MOBILE HAMBURGER + DRAWER ============== */
.nav-burger {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  position: relative;
  width: 44px; height: 44px;
  justify-self: end;
  z-index: 110;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(0.16,1,0.3,1),
              opacity .25s ease;
}
.nav-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 24, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px 60px;
}
.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer-inner {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: left;
}
.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer-links a {
  display: block;
  padding: 18px 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  text-transform: none;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s cubic-bezier(0.16,1,0.3,1), color .2s ease;
  transition-delay: 0s;
}
.mobile-drawer.is-open .mobile-drawer-links a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-drawer.is-open .mobile-drawer-links a:nth-child(1) { transition-delay: 0.05s; }
.mobile-drawer.is-open .mobile-drawer-links a:nth-child(2) { transition-delay: 0.10s; }
.mobile-drawer.is-open .mobile-drawer-links a:nth-child(3) { transition-delay: 0.15s; }
.mobile-drawer.is-open .mobile-drawer-links a:nth-child(4) { transition-delay: 0.20s; }
.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
  color: var(--accent);
}
.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease .3s, transform .5s cubic-bezier(0.16,1,0.3,1) .3s;
}
.mobile-drawer.is-open .mobile-drawer-footer {
  opacity: 1;
  transform: translateY(0);
}
.mobile-drawer-footer a {
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-2);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav-burger { display: block; }
  nav.site-nav .nav-links { display: none; }
  nav.site-nav .nav-spacer { display: none; }
  nav.site-nav {
    grid-template-columns: auto 1fr;
    padding: 18px 24px;
  }
}
.nav-links {
  display: flex; gap: 8px;
  justify-self: center;
}
.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 12px;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 10px 18px; border-radius: 30px;
  transition: all .25s ease;
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.08);
  transform: scale(1.06);
  letter-spacing: 3px;
}
.nav-links a.active {
  color: var(--bg);
  background: var(--ink);
}
.nav-spacer { /* keeps centered column truly centered */ }

/* ============== BUTTONS ============== */
.btn-fill, .btn-line {
  padding: 18px 36px; font-size: 12px; letter-spacing: 3px; font-weight: 700;
  text-transform: uppercase; cursor: pointer; border-radius: 40px;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; transition: all .2s; border: none;
}
.btn-fill { background: var(--ink); color: var(--bg); border: 1px solid var(--ink); }
.btn-fill:hover { background: rgba(255,255,255,0.88); }
.btn-line {
  background: rgba(255,255,255,0.05); color: var(--ink);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn-line:hover { border-color: var(--ink); background: rgba(255,255,255,0.12); }

/* ============== HERO (home) ============== */
.hero {
  --hero-image: url('hero-bg.jpg');
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center; padding: 0 24px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-content {
  min-height: 100vh;
  width: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding-top: 100px;
}
.hero .cta-group {
  margin-top: 0;
  padding: 0 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(1.05) brightness(0.7);
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,0.55), transparent 80%),
    linear-gradient(180deg,
      rgba(20,19,24,0.70) 0%,
      rgba(28,26,32,0.65) 45%,
      rgba(38,37,43,0.96) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero > * { position: relative; z-index: 2; }

h1.stacked {
  font-size: clamp(72px, 12vw, 200px);
  font-weight: 800; line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  position: relative; z-index: 2;
  text-shadow: 0 4px 30px rgba(0,0,0,0.45);
}
h1.stacked .line { display: block; }
h1.stacked .outline {
  -webkit-text-stroke: 1.6px var(--ink);
  color: transparent;
  font-style: italic;
  font-weight: 300;
  text-shadow: none;
}

.sub {
  margin-top: 48px; max-width: 720px;
  font-size: clamp(16px, 1.25vw, 20px); line-height: 1.6;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  position: relative; z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  text-align: center;
}
.sub.sub-morph {
  margin-top: 48px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(20px, 2vw, 30px);
  max-width: 820px;
  line-height: 1.3;
}
.hero .hero-tagline {
  margin-top: 0;
  margin-bottom: 28px;
}
.morph-text {
  display: inline-block;
  color: var(--ink);
  will-change: opacity, filter, transform;
  transition: opacity .42s ease, filter .42s ease, transform .42s ease;
}
.morph-text.is-swap {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(6px);
}
.mt-bold {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.mt-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cta-group {
  display: flex; gap: 16px;
  position: relative; z-index: 2; flex-wrap: wrap; justify-content: center;
}

/* ============== PAGE HEADER (inner pages) ============== */
.page-head {
  padding: 180px 60px 90px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-head .eyebrow {
  font-size: 11px; letter-spacing: 4px; color: var(--accent);
  text-transform: uppercase; margin-bottom: 24px;
  font-weight: 600;
}
.page-head h1 {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 0.96;
  max-width: 1100px;
}
.page-head h1 .em {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  -webkit-text-stroke: 1.4px var(--ink);
  color: transparent;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.page-head .lead {
  margin-top: 36px; max-width: 720px;
  font-size: clamp(16px, 1.2vw, 19px); line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

/* ============== MISSION / TEXT BANDS — default centered (inner page closing CTAs) ============== */
.mission {
  padding: 120px 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.mission .pre {
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.mission h2 {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 500; line-height: 1.25;
  letter-spacing: -0.02em; max-width: 900px; margin: 0 auto;
}
.mission h2 .em { font-style: italic; }

/* ============== SERVICES (4-card grid, used on home) ============== */
.services {
  background: var(--bg);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px 32px 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .35s ease, background .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card::after {
  content: ""; position: absolute;
  top: 22px; right: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>")
    center / 14px no-repeat;
  opacity: 0;
  transform: translate(8px, -4px);
  transition: opacity .3s ease, transform .35s ease;
}
.service-card:hover {
  background: var(--card-hover);
  border-color: var(--line-strong);
  transform: translateY(-6px);
}
.service-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}
.num {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase;
}
.service-card h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 4px;
}
.service-card p {
  font-size: 14px; line-height: 1.6; color: var(--muted-2);
  margin-top: auto;
}

/* ============== STATS ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 90px 60px;
  gap: 24px;
}
.stat .num-lg {
  font-size: 64px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1;
}
.stat .lbl {
  margin-top: 14px; font-size: 11px; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase;
}

/* ============== FOOTER ============== */
footer.site-footer {
  padding: 40px 60px 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px 24px;
}

/* ============== ABOUT PAGE ============== */
.about-grid {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about-grid h2 {
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15;
}
.about-grid h2 .em { font-style: italic; font-weight: 300; color: var(--muted); }
.about-grid p {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.82);
  margin-top: 22px;
}
.values {
  padding: 100px 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--card); border-radius: 22px; padding: 38px 32px;
  border: 1px solid var(--line);
}
.value-card .vnum {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 16px;
}
.value-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.value-card p { font-size: 14px; line-height: 1.6; color: var(--muted-2); }

/* ============== SERVICES PAGE (expandable cards) ============== */
.service-list {
  padding: 80px 60px 120px;
}
.service-row {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  cursor: pointer;
  transition: padding .3s ease;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row .row-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.service-row .num-col {
  font-size: 12px; letter-spacing: 4px; color: var(--muted);
  text-transform: uppercase;
}
.service-row .title-col {
  font-size: clamp(28px, 3.4vw, 44px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05;
  transition: transform .3s ease;
}
.service-row .plus-col {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 300;
  transition: transform .35s ease, background .3s ease, border-color .3s ease;
  color: var(--ink);
}
.service-row:hover .plus-col {
  border-color: var(--ink);
  background: rgba(255,255,255,0.06);
}
.service-row.open .plus-col {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.service-row .body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, margin .35s ease;
}
.service-row.open .body {
  max-height: 600px;
  margin-top: 28px;
}
.service-row .body-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
}
.service-row .body p {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.78);
  max-width: 720px;
}
.service-row .body .deliverables {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.service-row .body .deliverables span {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px; border-radius: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--muted-2);
}
.service-row .body .more {
  margin-top: 28px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 3px; font-weight: 700;
  text-transform: uppercase; color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

/* ============== CASE STUDIES ============== */
.case-studies {
  padding: 100px 60px;
  border-top: 1px solid var(--line);
}
.case-studies .sec-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 50px;
}
.case-studies h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
}
.case-studies h2 .em { font-style: italic; font-weight: 300; color: var(--muted); }
.case-studies .sec-head p {
  max-width: 380px; font-size: 14px; line-height: 1.65;
  color: var(--muted-2);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.case-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .35s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.case-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.case-card .vis {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #3a3942, #1f1e23);
  position: relative;
  overflow: hidden;
}
.case-card .vis::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%);
}
.case-card.vis-a .vis { background: linear-gradient(135deg, #4a4955, #26252b); }
.case-card.vis-b .vis { background: linear-gradient(135deg, #3d3c45, #1c1b1f); }
.case-card.vis-c .vis { background: linear-gradient(135deg, #5a5862, #2a2930); }
.case-card.vis-d .vis { background: linear-gradient(135deg, #404048, #18171b); }
.case-card .meta {
  padding: 28px 30px 32px;
}
.case-card .tag {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase;
}
.case-card h3 {
  margin-top: 10px;
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
}
.case-card p {
  margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--muted-2);
}

/* ============== WORK / PORTFOLIO PAGE ============== */
.work-grid {
  padding: 80px 60px 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.work-grid .work-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .4s ease, border-color .3s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.work-grid .work-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
}
.work-grid .work-card .vis {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #3a3942, #1f1e23);
  position: relative;
  overflow: hidden;
}
.work-grid .work-card .vis::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.10), transparent 60%);
}
.work-grid .work-card:nth-child(1) .vis { background: linear-gradient(135deg, #4a4955, #26252b); }
.work-grid .work-card:nth-child(2) .vis { background: linear-gradient(135deg, #3d3c45, #1c1b1f); }
.work-grid .work-card:nth-child(3) .vis { background: linear-gradient(135deg, #5a5862, #2a2930); }
.work-grid .work-card:nth-child(4) .vis { background: linear-gradient(135deg, #404048, #18171b); }
.work-grid .work-card:nth-child(5) .vis { background: linear-gradient(135deg, #4d4c56, #232228); }
.work-grid .work-card:nth-child(6) .vis { background: linear-gradient(135deg, #38373f, #15141a); }
.work-grid .work-card .meta {
  padding: 30px 32px 34px;
  display: flex; flex-direction: column; gap: 8px;
}
.work-grid .work-card .meta .tag {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase;
}
.work-grid .work-card .meta h3 {
  font-size: 24px; font-weight: 700; letter-spacing: -0.015em;
}
.work-grid .work-card .meta p {
  font-size: 14px; line-height: 1.6; color: var(--muted-2); margin-top: 4px;
}

/* ============== CONTACT PAGE ============== */
.contact-grid {
  padding: 80px 60px 120px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(28px, 3vw, 42px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15;
}
.contact-info h2 .em { font-style: italic; font-weight: 300; color: var(--muted); }
.contact-info p {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.82);
  margin-top: 22px; max-width: 460px;
}
.contact-info .info-block {
  margin-top: 40px;
}
.contact-info .info-block .label {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 8px;
}
.contact-info .info-block a, .contact-info .info-block span {
  font-size: 17px; color: var(--ink); text-decoration: none;
  font-weight: 500;
}
.contact-info .info-block a:hover { opacity: 0.7; }
.contact-info .socials {
  margin-top: 40px;
  display: flex; gap: 14px;
  flex-wrap: wrap;
}
.contact-info .socials a.fb-icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; border: none; background: none; border-radius: 10px;
  width: 52px; height: 52px;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 16px -6px rgba(24,119,242,0.35);
}
.contact-info .socials a.fb-icon-link svg {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: block;
}
.contact-info .socials a.fb-icon-link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 22px -6px rgba(24,119,242,0.55);
}

form.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 44px 36px;
  display: flex; flex-direction: column; gap: 22px;
}
form.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
form.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 11px; letter-spacing: 2.5px; color: var(--muted);
  text-transform: uppercase;
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 15px; color: var(--ink);
  letter-spacing: 0.2px;
  transition: border-color .2s ease, background .2s ease;
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: rgba(255,255,255,0.07);
}
form.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
/* Consent checkbox row */
.consent-row {
  margin-top: 4px;
  margin-bottom: 4px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  position: relative;
}
.consent-label input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.consent-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 6px; height: 10px;
  border: 2px solid #26252b;
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.consent-label input[type="checkbox"]:focus {
  outline: 2px solid rgba(197,186,168,0.5);
  outline-offset: 2px;
}
.consent-text {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2px;
}
.consent-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity .2s ease;
}
.consent-text a:hover { opacity: 0.8; }

form.contact-form .submit-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; flex-wrap: wrap; gap: 14px;
}
form.contact-form .submit-row .helper {
  font-size: 11px; letter-spacing: 2px; color: var(--muted);
  text-transform: uppercase;
}
form.contact-form button {
  font-family: inherit;
}
.form-success, .form-error {
  display: none;
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.form-success { background: rgba(120,200,140,0.12); color: #c4e8c8; border: 1px solid rgba(120,200,140,0.35); }
.form-error   { background: rgba(220,120,120,0.12); color: #f0c4c4; border: 1px solid rgba(220,120,120,0.35); }
form.contact-form.is-success .form-success { display: block; }
form.contact-form.is-error .form-error { display: block; }

/* ============== PACKAGES — bundles section ============== */
.packages-section {
  padding: 100px 60px 80px;
  border-top: 1px solid var(--line);
}
.packages-head {
  text-align: center;
  margin-bottom: 56px;
}
.packages-head .pre {
  font-size: 11px; letter-spacing: 4px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 22px;
}
.packages-head h2 {
  font-size: clamp(32px, 4vw, 56px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05;
  margin-bottom: 18px;
}
.packages-head h2 .em {
  font-style: italic; font-weight: 300; color: var(--muted);
}
.packages-head p.lead {
  max-width: 600px; margin: 0 auto;
  font-size: clamp(15px, 1.15vw, 17px); line-height: 1.6;
  color: var(--muted-2);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pkg-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s ease, border-color .3s ease, background .3s ease;
}
.pkg-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--card-hover);
}
.pkg-card.featured {
  background: linear-gradient(180deg, #34333c 0%, #2a292f 100%);
  border: 1px solid rgba(255,255,255,0.22);
}
.pkg-card.featured:hover {
  border-color: rgba(255,255,255,0.35);
}
.pkg-badge {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--ink); color: var(--bg);
  font-size: 10px; letter-spacing: 2.5px; font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.pkg-tag {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pkg-name {
  font-size: 26px; font-weight: 700; letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pkg-price {
  font-size: 13px; color: var(--muted);
  margin-bottom: 24px;
}
.pkg-price strong {
  font-size: 34px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em;
  margin-left: 8px;
}
.pkg-pitch {
  font-size: 14px; line-height: 1.55; color: var(--muted-2);
  margin-bottom: 22px;
  min-height: 60px;
}
.pkg-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.pkg-card.featured .pkg-list { border-top-color: rgba(255,255,255,0.16); }
.pkg-list li {
  font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.85);
  padding-left: 22px;
  position: relative;
}
.pkg-list li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--muted);
  font-size: 13px;
}
.pkg-card.featured .pkg-list li::before { color: rgba(255,255,255,0.65); }
.pkg-card .btn-line, .pkg-card .btn-fill {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
}

/* ============== SERVICE DETAIL PAGES ============== */
.service-detail {
  padding: 0;
}
.included-section {
  padding: 90px 60px 80px;
  border-top: 1px solid var(--line);
}
.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-head .pre {
  font-size: 11px; letter-spacing: 4px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(30px, 3.5vw, 48px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05;
  max-width: 760px; margin: 0 auto;
}
.section-head h2 .em {
  font-style: italic; font-weight: 300; color: var(--muted);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.included-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  transition: border-color .3s ease, background .3s ease;
}
.included-card:hover {
  border-color: var(--line-strong);
  background: var(--card-hover);
}
.included-card .ic-num {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 12px;
}
.included-card h3 {
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.included-card p {
  font-size: 13.5px; line-height: 1.55; color: var(--muted-2);
}

/* Process steps */
.process-section {
  padding: 90px 60px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-step {
  position: relative;
  padding-top: 28px;
}
.process-step::before {
  content: ""; position: absolute;
  top: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--ink);
}
.process-step .step-num {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 10px;
}
.process-step h3 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px; line-height: 1.6; color: var(--muted-2);
}

/* Pricing banner */
.pricing-section {
  padding: 90px 60px;
  border-top: 1px solid var(--line);
}
.pricing-banner {
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-banner .pre {
  font-size: 11px; letter-spacing: 4px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 18px;
}
.pricing-banner .price-from {
  font-size: 15px; color: var(--muted-2);
  margin-bottom: 6px;
}
.pricing-banner .price-amount {
  font-size: clamp(56px, 7vw, 88px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 14px;
}
.pricing-banner .price-note {
  font-size: 14px; line-height: 1.55; color: var(--muted-2);
  max-width: 480px; margin: 0 auto 28px;
}

/* FAQ */
.faq-section {
  padding: 90px 60px;
  border-top: 1px solid var(--line);
}
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
details.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-size: 28px; font-weight: 200; line-height: 1;
  color: var(--muted);
  transition: transform .25s ease, color .25s ease;
}
details.faq-item[open] summary::after {
  transform: rotate(45deg); color: var(--ink);
}
details.faq-item p {
  margin-top: 16px;
  font-size: 15px; line-height: 1.65; color: var(--muted-2);
  max-width: 720px;
}

/* ============== HOME — Service spotlights (richer than the thin cards) ============== */
.spotlight-section {
  padding: 100px 60px;
  border-top: 1px solid var(--line);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.spotlight {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 36px 32px;
  display: flex; flex-direction: column;
  transition: transform .35s ease, border-color .3s ease, background .3s ease;
  text-decoration: none; color: inherit;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.spotlight:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--card-hover);
}
.spotlight .sp-num {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 12px;
}
.spotlight h3 {
  font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 12px;
}
.spotlight h3 .em {
  font-style: italic; font-weight: 300; color: var(--muted);
}
.spotlight p {
  font-size: 14.5px; line-height: 1.55; color: var(--muted-2);
  margin-bottom: 20px;
}
.spotlight .sp-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 22px;
}
.spotlight .sp-chips span {
  font-size: 10.5px; letter-spacing: 2px; color: var(--muted-2);
  text-transform: uppercase;
  padding: 6px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}
.spotlight .sp-footer {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.spotlight .sp-from {
  font-size: 13px; color: var(--muted);
}
.spotlight .sp-from strong {
  font-size: 18px; font-weight: 700; color: var(--ink); margin-left: 6px;
}
.spotlight .sp-arrow {
  font-size: 12px; letter-spacing: 2px; font-weight: 700;
  text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}

/* ============== CLIENT CARDS (Work page) — minimal preview + expand ============== */
/* Reusable pattern: each client gets a .client-card with brand-echo styling.
   Collapsed = hero image + name + tag + expand chevron.
   Expanded = adds lede, deliverable chips, pillars, CTAs. */
.client-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color .3s ease, box-shadow .3s ease;
  margin-bottom: 22px;
}
.client-card:hover {
  border-color: var(--line-strong);
}
.cc-preview {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  color: inherit;
}
.cc-vis {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-color: #1c2620;
  transition: transform .6s ease;
}
.client-card:hover .cc-vis { transform: scale(1.015); }
.cc-meta {
  padding: 26px 32px 28px;
  border-top: 1px solid var(--line);
}
.cc-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 3px; font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cc-name {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.cc-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap;
}
.cc-sub {
  font-size: 14px; line-height: 1.5;
  color: var(--muted-2);
}
.cc-expand {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2.5px; font-weight: 700;
  text-transform: uppercase;
  padding: 8px 14px; border-radius: 100px;
  border: 1px solid currentColor;
  opacity: 0.75;
  transition: opacity .2s ease, background .2s ease;
}
.cc-preview:hover .cc-expand { opacity: 1; }
.cc-caret {
  display: inline-block;
  transition: transform .35s ease;
  font-weight: 400;
}
.client-card.is-open .cc-caret { transform: rotate(180deg); }
.client-card.is-open .cc-expand::after { /* hint changed state */ }
.cc-detail {
  overflow: hidden;
  max-height: 0;
  transition: max-height .55s cubic-bezier(0.16, 1, 0.3, 1);
}
.client-card.is-open .cc-detail {
  max-height: 1800px;
}
.cc-detail-inner {
  padding: 4px 32px 36px;
  border-top: 1px solid var(--line);
}
.cc-lede {
  font-size: 16px; line-height: 1.65;
  margin: 28px 0 22px;
}

/* ===== BRAND-ECHO: T-Squared (green + sand cream) ===== */
.client-card.client-tsquared {
  background: linear-gradient(180deg, #FBFAF9 0%, #F2EFEA 100%);
  border-color: rgba(68,120,92,0.22);
  color: #26262A;
  box-shadow: 0 30px 80px -30px rgba(68,120,92,0.30);
}
.client-card.client-tsquared:hover {
  border-color: rgba(68,120,92,0.45);
  box-shadow: 0 30px 80px -28px rgba(68,120,92,0.45);
}
.client-card.client-tsquared .cc-vis {
  background-image:
    linear-gradient(180deg, rgba(20,30,24,0.05), rgba(20,30,24,0.18)),
    url('../work/assets/tsquared-hero.webp');
}
.client-card.client-tsquared .cc-meta {
  border-top-color: rgba(68,120,92,0.18);
  position: relative;
}
.client-card.client-tsquared .cc-meta::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #44785C 0%, #C8AC81 100%);
}
.client-card.client-tsquared .cc-tag {
  color: #44785C;
}
.client-card.client-tsquared .cc-name {
  color: #1f2620;
  font-style: italic;
  font-weight: 400;
}
.client-card.client-tsquared .cc-sub {
  color: #6b6359;
}
.client-card.client-tsquared .cc-expand {
  color: #44785C;
  border-color: rgba(68,120,92,0.45);
}
.client-card.client-tsquared .cc-preview:hover .cc-expand {
  background: rgba(68,120,92,0.08);
}
.client-card.client-tsquared .cc-detail-inner {
  border-top-color: rgba(68,120,92,0.15);
}
.client-card.client-tsquared .cc-lede {
  color: #38342f;
}
.client-card.client-tsquared .pillar-label {
  color: #44785C;
}
.client-card.client-tsquared .pillar-text {
  color: #57534E;
}
.client-card.client-tsquared .case-deliverable-row span {
  background: rgba(200,172,129,0.22);
  color: #4a3f2c;
}
.client-card.client-tsquared .featured-cta .btn-fill {
  background: #44785C; color: #FBFAF9; border-color: #44785C;
}
.client-card.client-tsquared .featured-cta .btn-fill:hover {
  background: #345E48; border-color: #345E48;
}
.client-card.client-tsquared .featured-cta .btn-line {
  background: rgba(68,120,92,0.06);
  color: #345E48;
  border-color: rgba(68,120,92,0.35);
  backdrop-filter: none;
}
.client-card.client-tsquared .featured-cta .btn-line:hover {
  background: rgba(68,120,92,0.12);
  border-color: #44785C;
}

/* ============== T-SQUARED brand-echo case card (Work page) — LEGACY (kept for /services preview) ============== */
.case-feature.client-tsquared {
  /* Override featured-case styling for client brand */
}
.featured-case.client-tsquared {
  background: linear-gradient(180deg, #FBFAF9 0%, #F2EFEA 100%);
  border: 1px solid rgba(68,120,92,0.18);
  color: #26262A;
  box-shadow: 0 30px 80px -30px rgba(68,120,92,0.35);
  position: relative;
}
.featured-case.client-tsquared::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, #44785C 0%, #C8AC81 100%);
}
.featured-case.client-tsquared .featured-vis {
  background-image:
    linear-gradient(180deg, rgba(20,30,24,0.06), rgba(20,30,24,0.18)),
    url('../work/assets/tsquared-hero.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.featured-case.client-tsquared .featured-vis::before {
  content: "";
  display: none;
}
.featured-case.client-tsquared .featured-tag {
  color: #44785C;
  font-weight: 600;
}
.featured-case.client-tsquared .featured-year {
  color: #6b6359;
}
.featured-case.client-tsquared .featured-title {
  color: #1f2620;
}
.featured-case.client-tsquared .featured-sub {
  color: #57534E;
}
.featured-case.client-tsquared .pillar-label {
  color: #44785C;
}
.featured-case.client-tsquared .pillar-text {
  color: #57534E;
}
.featured-case.client-tsquared .featured-cta .btn-fill {
  background: #44785C; color: #FBFAF9; border-color: #44785C;
}
.featured-case.client-tsquared .featured-cta .btn-fill:hover {
  background: #345E48; border-color: #345E48;
}
.featured-case.client-tsquared .featured-cta .btn-line {
  background: rgba(68,120,92,0.06);
  color: #345E48;
  border-color: rgba(68,120,92,0.35);
  backdrop-filter: none;
}
.featured-case.client-tsquared .featured-cta .btn-line:hover {
  background: rgba(68,120,92,0.12);
  border-color: #44785C;
}
.case-deliverable-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 28px;
}
.case-deliverable-row span {
  font-size: 11px; letter-spacing: 2.5px; font-weight: 600;
  text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(200,172,129,0.22);
  color: #4a3f2c;
}
.case-tap-note {
  text-align: center;
  font-size: 12px; letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 22px;
}

/* ============== FEATURED CASE STUDY (work.html) ============== */
.case-feature {
  padding: 60px 60px 100px;
}
.featured-case {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  transition: border-color .3s ease;
}
.featured-case:hover { border-color: var(--line-strong); }
.featured-vis {
  display: block;
  aspect-ratio: 4/5;
  min-height: 480px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.25)),
    linear-gradient(160deg, #3d4d3f, #1c2620);
  position: relative;
  overflow: hidden;
}
.featured-vis::before {
  content: "T·S";
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(120px, 14vw, 220px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.10);
  font-style: italic;
}
.featured-vis::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08), transparent 60%);
}
.featured-body {
  padding: 50px 50px 48px;
  display: flex; flex-direction: column;
}
.featured-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.featured-tag, .featured-year {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase;
}
.featured-title {
  font-size: clamp(36px, 4vw, 52px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05;
  margin-bottom: 18px;
}
.featured-sub {
  font-size: 16px; line-height: 1.65; color: var(--muted-2);
  margin-bottom: 32px;
}
.featured-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin-bottom: 36px;
}
.pillar-label {
  font-size: 11px; letter-spacing: 2.5px; color: var(--ink);
  text-transform: uppercase; margin-bottom: 6px; font-weight: 600;
}
.pillar-text {
  font-size: 13px; line-height: 1.55; color: var(--muted-2);
}
.featured-cta {
  margin-top: auto;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  nav.site-nav {
    padding: 18px 24px;
    grid-template-columns: auto 1fr;
    background: rgba(38,37,43,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .nav-spacer, .nav-links { display: none; }
  .logo { font-size: 16px; justify-self: start; }
  .hero-content { padding-top: 80px; }
  .hero .cta-group { padding: 0 0 80px; }
  .hero .hero-tagline { margin-bottom: 24px; }
  .sub { font-size: 16px; max-width: 540px; }
  .services { grid-template-columns: 1fr 1fr; padding: 60px 24px; gap: 16px; }
  .service-card { padding: 30px 24px 26px; }
  .stats { grid-template-columns: 1fr 1fr; padding: 60px 24px; }
  .mission { padding: 70px 24px; }
  footer.site-footer { padding: 30px 24px 16px; flex-direction: column; align-items: center; gap: 10px; text-align: center; justify-content: center; }

  .page-head { padding: 130px 24px 60px; }
  .about-grid { grid-template-columns: 1fr; padding: 60px 24px; gap: 30px; }
  .values { grid-template-columns: 1fr; padding: 60px 24px; }
  .service-list { padding: 40px 24px 80px; }
  .service-row .row-top {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px 14px;
  }
  .service-row .num-col {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 11px;
    letter-spacing: 3px;
  }
  .service-row .title-col {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(24px, 6vw, 32px);
  }
  .service-row .plus-col {
    grid-column: 2;
    grid-row: 2;
  }
  .service-row .body-inner { grid-template-columns: 50px 1fr; gap: 16px; }
  .case-studies { padding: 60px 24px; }
  .case-studies .sec-head { flex-direction: column; align-items: start; gap: 18px; margin-bottom: 30px; }
  .case-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; padding: 40px 24px 80px; }
  .case-feature { padding: 40px 24px 70px; }
  .featured-case { grid-template-columns: 1fr; }
  .featured-vis { min-height: 280px; aspect-ratio: 16/10; }
  .featured-body { padding: 36px 28px; }
  .featured-pillars { grid-template-columns: 1fr; }
  .featured-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .contact-grid { grid-template-columns: 1fr; padding: 40px 24px 80px; gap: 40px; }
  form.contact-form { padding: 30px 24px; }
  form.contact-form .row { grid-template-columns: 1fr; gap: 18px; }

  .packages-section { padding: 60px 24px 50px; }
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .pkg-card { padding: 30px 24px 26px; }
  .included-section, .process-section, .pricing-section, .faq-section { padding: 60px 24px; }
  .included-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .pricing-banner { padding: 40px 24px; }
  .spotlight-section { padding: 60px 24px; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 16px; }
  .spotlight { padding: 28px 24px 24px; min-height: 0; }

  .case-feature { padding: 30px 24px 60px; }
  .client-card { border-radius: 18px; }
  .cc-vis { aspect-ratio: 16 / 9; }
  .cc-meta { padding: 22px 22px 24px; }
  .cc-detail-inner { padding: 4px 22px 28px; }
  .cc-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 600px) {
  h1.stacked { font-size: clamp(56px, 16vw, 100px); }
  .page-head h1 { font-size: clamp(42px, 11vw, 72px); }
}

/* ============== HERO ENTRANCE ANIMATION ============== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
h1.stacked .line:nth-child(1) { animation: heroFadeUp 0.75s cubic-bezier(0.16,1,0.3,1) both; animation-delay: 0.05s; }
h1.stacked .line:nth-child(2) { animation: heroFadeUp 0.75s cubic-bezier(0.16,1,0.3,1) both; animation-delay: 0.17s; }
h1.stacked .line:nth-child(3) { animation: heroFadeUp 0.75s cubic-bezier(0.16,1,0.3,1) both; animation-delay: 0.29s; }
.hero .sub-morph         { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both; animation-delay: 0.44s; }
.hero .sub               { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both; animation-delay: 0.56s; }
.hero .cta-group         { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both; animation-delay: 0.66s; }

/* ============== SCROLL REVEAL SYSTEM ============== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal-stagger].is-visible > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.09s; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.18s; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.27s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * {
    opacity: 1; transform: none; transition: none;
  }
  h1.stacked .line, .hero .sub, .hero .sub-morph, .hero .cta-group {
    animation: none;
  }
}

/* ============== TWO PATHS SECTION ============== */
.paths-section {
  padding: 100px 60px 80px;
  border-top: 1px solid var(--line);
}
.paths-head {
  text-align: center;
  margin-bottom: 56px;
}
.paths-head .pre {
  font-size: 11px; letter-spacing: 4px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 22px;
}
.paths-head h2 {
  font-size: clamp(32px, 4vw, 56px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 18px;
}
.paths-head h2 .em { font-style: italic; font-weight: 300; color: var(--muted); }
.paths-head .lead {
  max-width: 580px; margin: 0 auto;
  font-size: clamp(15px, 1.1vw, 17px); line-height: 1.6; color: var(--muted-2);
}
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.path-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px 40px;
  display: flex; flex-direction: column; gap: 0;
  transition: border-color .3s ease, background .3s ease;
}
.path-card:hover {
  border-color: var(--line-strong);
  background: var(--card-hover);
}
.path-featured {
  background: linear-gradient(160deg, #31303a 0%, #27262d 100%);
  border-color: rgba(255,255,255,0.20);
  position: relative;
  overflow: hidden;
}
.path-featured::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.5), rgba(255,255,255,0.15));
}
.path-featured:hover { border-color: rgba(255,255,255,0.32); }
.path-eyebrow {
  font-size: 11px; letter-spacing: 3.5px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 18px;
}
.path-featured .path-eyebrow { color: rgba(255,255,255,0.6); }
.path-card h3 {
  font-size: clamp(22px, 2.2vw, 30px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 18px;
}
.path-card p {
  font-size: 14.5px; line-height: 1.6; color: var(--muted-2);
  margin-bottom: 32px;
}
.path-price {
  font-size: 13px; color: var(--muted); margin-bottom: 28px; margin-top: auto;
}
.path-price strong {
  font-size: 36px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.025em; margin-left: 6px;
}
.path-card .btn-line,
.path-card .btn-fill {
  align-self: stretch; justify-content: center;
}

/* ============== PROOF / RECENT WORK ============== */
.proof-section {
  padding: 100px 60px;
  border-top: 1px solid var(--line);
}
.proof-head {
  text-align: center;
  margin-bottom: 50px;
}
.proof-head .pre {
  font-size: 11px; letter-spacing: 4px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 20px;
}
.proof-head h2 {
  font-size: clamp(30px, 3.5vw, 52px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.05;
}
.proof-head h2 .em { font-style: italic; font-weight: 300; color: var(--muted); }
.proof-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(68,120,92,0.25);
  background: linear-gradient(160deg, #FBFAF9 0%, #F0EDE8 100%);
  color: #26262A;
  text-decoration: none;
  box-shadow: 0 24px 70px -24px rgba(68,120,92,0.28);
  transition: border-color .3s ease, box-shadow .35s ease, transform .35s ease;
  position: relative;
}
.proof-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #44785C 0%, #C8AC81 100%);
}
.proof-card:hover {
  border-color: rgba(68,120,92,0.45);
  box-shadow: 0 30px 80px -20px rgba(68,120,92,0.40);
  transform: translateY(-4px);
}
.proof-vis {
  background-image:
    linear-gradient(180deg, rgba(20,30,24,0.06), rgba(20,30,24,0.22)),
    url('../work/assets/tsquared-hero.webp');
  background-size: cover;
  background-position: center 30%;
  min-height: 360px;
}
.proof-body {
  padding: 48px 48px 44px;
  display: flex; flex-direction: column;
}
.proof-scope {
  font-size: 11px; letter-spacing: 3px; font-weight: 600;
  text-transform: uppercase; color: #44785C;
  margin-bottom: 14px;
}
.proof-title {
  font-size: clamp(26px, 2.8vw, 38px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.1;
  color: #1f2620; margin-bottom: 16px;
}
.proof-desc {
  font-size: 15px; line-height: 1.65; color: #57534E;
  margin-bottom: 32px;
}
.proof-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(68,120,92,0.15);
}
.proof-pillar { display: flex; flex-direction: column; gap: 5px; }
.pp-label {
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: #44785C; font-weight: 600;
}
.pp-val { font-size: 13.5px; color: #38342f; font-weight: 500; }
.proof-cta-row { margin-top: auto; }
.proof-link {
  font-size: 12px; letter-spacing: 2.5px; font-weight: 700;
  text-transform: uppercase; color: #44785C;
  border-bottom: 1px solid rgba(68,120,92,0.4);
  padding-bottom: 3px;
  transition: border-color .2s;
}
.proof-card:hover .proof-link { border-color: #44785C; }

/* ============== CLOSING CTA ============== */
.home-cta {
  padding: 120px 60px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.home-cta .pre {
  font-size: 11px; letter-spacing: 4px; color: var(--muted);
  text-transform: uppercase; margin-bottom: 24px;
}
.home-cta h2 {
  font-size: clamp(36px, 5vw, 72px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 20px;
}
.home-cta h2 .em {
  font-style: italic; font-weight: 300; color: var(--muted);
}
.home-cta p {
  font-size: 16px; color: var(--muted-2); line-height: 1.6;
  margin-bottom: 40px;
}

/* ============== RESPONSIVE — new sections ============== */
@media (max-width: 900px) {
  .paths-section { padding: 60px 24px 50px; }
  .paths-grid { grid-template-columns: 1fr; max-width: 100%; }
  .path-card { padding: 34px 28px 30px; }
  .proof-section { padding: 60px 24px; }
  .proof-card { grid-template-columns: minmax(0, 1fr); }
  .proof-vis { min-height: 220px; aspect-ratio: 16/9; }
  .proof-body { padding: 32px 28px 30px; overflow: hidden; }
  .proof-pillars { grid-template-columns: 1fr; gap: 14px; }
  .home-cta { padding: 80px 24px; }
}

/* ===========================================================
   PREMIUM UPGRADE — Section-by-section
   =========================================================== */

/* ---------- Light section base ---------- */
.section-light {
  background: var(--light-bg);
  color: var(--light-ink);
  border-top: 1px solid var(--light-line);
}
.section-light .pre {
  color: color-mix(in srgb, var(--accent) 60%, var(--light-ink-2));
}
.section-light .eyebrow {
  color: color-mix(in srgb, var(--accent) 60%, var(--light-ink-2));
}
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--light-ink);
}
.section-light p,
.section-light li,
.section-light .lead {
  color: var(--light-ink-2);
}
.section-light .em,
.section-light h2 .em,
.section-light h3 .em,
.section-light h1 .em {
  color: rgba(31,38,32,0.55);
  font-style: italic;
}
.section-light .btn-line {
  color: var(--light-ink);
  background: rgba(31,38,32,0.04);
  border-color: rgba(31,38,32,0.45);
  backdrop-filter: none;
}
.section-light .btn-line:hover {
  background: rgba(31,38,32,0.08);
  border-color: var(--light-ink);
}
.section-light .btn-fill {
  background: var(--light-ink);
  color: var(--light-bg);
  border-color: var(--light-ink);
}
.section-light .btn-fill:hover {
  background: var(--light-ink-2);
}

/* Preserve white text inside dark cards on light sections */
.section-light .included-card,
.section-light .pkg-card,
.section-light .value-card,
.section-light .service-card,
.section-light .case-card:not([style*="FBFAF"]),
.section-light .pricing-banner {
  color: var(--ink);
}
.section-light .included-card h2,
.section-light .included-card h3,
.section-light .included-card h4,
.section-light .pkg-card h2,
.section-light .pkg-card h3,
.section-light .pkg-card h4,
.section-light .pkg-card .pkg-name,
.section-light .value-card h3,
.section-light .pricing-banner h2 {
  color: var(--ink);
}
.section-light .included-card p,
.section-light .included-card li,
.section-light .pkg-card p,
.section-light .pkg-card li,
.section-light .value-card p,
.section-light .pricing-banner p {
  color: var(--muted-2);
}
.section-light .included-card .em,
.section-light .pkg-card .em,
.section-light .value-card .em {
  color: var(--muted);
}
/* Pkg featured card on light keeps its gradient */
.section-light .pkg-card.featured {
  background: linear-gradient(180deg, #34333c 0%, #2a292f 100%);
}

/* Buttons inside dark pkg-cards must stay limestone-readable regardless of section colour */
.section-light .pkg-card .btn-line {
  color: var(--accent);
  border-color: rgba(197,186,168,0.45);
  background: rgba(197,186,168,0.06);
  backdrop-filter: none;
}
.section-light .pkg-card .btn-line:hover {
  color: var(--ink);
  border-color: var(--accent);
  background: rgba(197,186,168,0.14);
}
.section-light .pkg-card.featured .btn-fill {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.section-light .pkg-card.featured .btn-fill:hover {
  background: #d4cabf;
  border-color: #d4cabf;
}

/* ---------- Eyebrow accent — global limestone tint ---------- */
.pre {
  color: var(--accent);
}
.section-light .pre {
  color: color-mix(in srgb, var(--accent) 60%, var(--light-ink-2));
}

/* ---------- Hero "Evolve" — keep Helvetica outlined (unchanged) ---------- */
h1.stacked .outline {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- MISSION (asymmetric editorial — scoped to .section-light only) ---------- */
.mission.section-light {
  padding: 140px 60px 130px;
  text-align: left;
}
.mission-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.mission-side {
  position: sticky;
  top: 130px;
}
.mission-side .pre {
  margin-bottom: 60px;
}
.mission-marker {
  font-size: 11px; letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1.7;
  padding-top: 18px;
  border-top: 1px solid var(--accent-line);
  max-width: 160px;
}
.mission-stmt {
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.022em;
  max-width: 960px;
  color: var(--ink);
}
.mission-stmt .em {
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

/* ---------- MANIFESTO BREAK ---------- */
.manifesto-break {
  padding: 120px 60px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.manifesto-break::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 1px;
  background: var(--accent);
  transform: translate(-50%, -56px);
}
.manifesto-line {
  font-size: clamp(40px, 7.5vw, 120px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: var(--ink);
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-line .em {
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

/* ---------- TWO PATHS — limestone polish ---------- */
.path-featured {
  background: linear-gradient(160deg, #32313a 0%, #28272e 100%);
  border-color: var(--accent-line);
}
.path-featured::before {
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}
.path-featured:hover {
  border-color: var(--accent);
}
.path-featured .path-eyebrow { color: var(--accent); }
.path-card .path-eyebrow { color: var(--accent); }

/* ---------- SERVICES EDITORIAL (massive list, light) ---------- */
.services-editorial {
  padding: 130px 60px 110px;
}
.se-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.se-head .pre { margin-bottom: 22px; }
.se-head h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.se-head h2 .em {
  font-style: italic;
}

.se-list {
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--light-line);
}
.se-row {
  display: grid;
  grid-template-columns: 64px 1fr auto auto 36px;
  align-items: center;
  gap: 32px;
  padding: 44px 8px;
  border-bottom: 1px solid var(--light-line);
  text-decoration: none;
  color: var(--light-ink);
  position: relative;
  transition: padding .4s cubic-bezier(0.16,1,0.3,1), background .35s ease;
  overflow: hidden;
}
.se-row::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -1px;
  height: 2px;
  background: var(--accent);
  transition: right .55s cubic-bezier(0.16,1,0.3,1);
}
.se-row:hover {
  padding-left: 32px;
  padding-right: 32px;
  background: linear-gradient(90deg, var(--accent-soft) 0%, transparent 80%);
}
.se-row:hover::after { right: 0; }

.se-num {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--light-muted);
  font-weight: 600;
  font-feature-settings: "tnum";
}
.se-name-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.se-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(54px, 9vw, 132px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--light-ink);
  transition: transform .45s cubic-bezier(0.16,1,0.3,1);
}
.se-row:hover .se-name {
  transform: translateX(4px);
}
.se-desc {
  font-size: 14.5px;
  color: var(--light-muted);
  line-height: 1.5;
  margin-top: 8px;
  max-width: 360px;
}
.se-line {
  height: 1px;
  background: var(--light-line-strong);
  min-width: 60px;
  transition: background .35s ease;
}
.se-row:hover .se-line { background: var(--accent); }
.se-price {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--light-ink);
  white-space: nowrap;
}
.se-arrow {
  font-size: 22px;
  color: var(--light-ink);
  opacity: 0.3;
  transition: opacity .35s ease, transform .45s cubic-bezier(0.16,1,0.3,1);
  justify-self: end;
}
.se-row:hover .se-arrow {
  opacity: 1;
  transform: translateX(8px);
}

/* ---------- PROOF — sits on light section, restore card contrast ---------- */
.proof-section.section-light {
  background: var(--light-bg-2);
  border-top: 1px solid var(--light-line);
  padding: 110px 60px 130px;
}
.proof-section.section-light .pre { color: color-mix(in srgb, var(--accent) 70%, var(--light-ink-2)); }
.proof-section.section-light h2 { color: var(--light-ink); }
.proof-section.section-light .em { color: rgba(31,38,32,0.55); font-style: italic; }
.proof-card {
  box-shadow: 0 30px 80px -28px rgba(68,120,92,0.30), 0 8px 24px -8px rgba(31,38,32,0.10);
}

/* ---------- CLOSING CTA — dramatic full-bleed ---------- */
.home-cta {
  padding: 180px 60px 160px;
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--accent);
}
.home-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.home-cta .pre {
  margin-bottom: 32px;
  color: var(--accent);
}
.home-cta-headline {
  font-size: clamp(48px, 9vw, 152px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 36px;
}
.home-cta-headline .em {
  font-style: italic;
  color: var(--ink);
}
.home-cta-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ---------- Eyebrow refinement (limestone-tinted) ---------- */
.mission .pre,
.paths-head .pre,
.se-head .pre,
.proof-head .pre,
.home-cta .pre {
  font-weight: 600;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .mission { padding: 80px 24px; }
  .mission-inner { grid-template-columns: 1fr; gap: 36px; }
  .mission-side { position: static; }
  .mission-side .pre { margin-bottom: 24px; }
  .mission-marker { padding-top: 14px; }
  .mission-stmt { font-size: clamp(26px, 6vw, 36px); }

  .manifesto-break { padding: 70px 24px; }
  .manifesto-line { font-size: clamp(36px, 9vw, 56px); }

  .services-editorial { padding: 70px 24px 60px; }
  .se-head { margin-bottom: 40px; }
  .se-row {
    grid-template-columns: 36px 1fr auto;
    grid-template-rows: auto auto;
    gap: 16px 14px;
    padding: 26px 4px;
  }
  .se-row:hover { padding-left: 4px; padding-right: 4px; }
  .se-num { grid-column: 1 / 2; grid-row: 1 / 2; align-self: center; }
  .se-name-block { grid-column: 2 / 3; grid-row: 1 / 2; }
  .se-arrow { grid-column: 3 / 4; grid-row: 1 / 2; align-self: center; }
  .se-line { display: none; }
  .se-price {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    font-size: 11px;
  }
  .se-name {
    font-size: clamp(26px, 8.5vw, 64px);
    letter-spacing: -0.04em;
    line-height: 0.92;
  }
  .se-desc { font-size: 13px; max-width: none; }

  .proof-section.section-light { padding: 60px 24px 80px; }
  .home-cta { padding: 100px 24px 90px; }
  .home-cta-headline { font-size: clamp(44px, 12vw, 72px); }
}

/* ===========================================================
   MISSION ON LIGHT — color overrides
   =========================================================== */
.mission.section-light {
  padding: 140px 60px 130px;
  border-top: none;
  border-bottom: none;
  text-align: left;
}
.mission.section-light h2.mission-stmt {
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.022em;
  max-width: 960px;
  margin: 0;
  color: var(--light-ink);
}
.mission.section-light h2.mission-stmt .em {
  color: var(--light-ink);
  font-style: italic;
}
.mission.section-light .mission-marker {
  color: var(--light-muted);
  border-top-color: color-mix(in srgb, var(--accent) 70%, var(--light-bg-2));
}
.mission.section-light .pre {
  color: color-mix(in srgb, var(--accent) 60%, var(--light-ink-2));
  margin-bottom: 0;
}

/* ===========================================================
   PATHS — Editorial spread (replaces old card grid)
   =========================================================== */
.paths-section {
  padding: 130px 60px 120px;
  border-top: 1px solid var(--line);
}
.paths-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.paths-head .pre { margin-bottom: 22px; }
.paths-head h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.paths-head h2 .em { font-style: italic; }
.paths-head .lead {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--muted-2);
}

.paths-editorial {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--line);
}
.path-col {
  padding: 70px 64px 60px;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  position: relative;
  transition: background .4s ease;
}
.path-col--lead {
  background: linear-gradient(180deg, transparent 0%, rgba(197,186,168,0.06) 100%);
}
.path-col:hover {
  background: linear-gradient(180deg, transparent 0%, rgba(197,186,168,0.10) 100%);
}
.paths-divider {
  background: var(--line);
}

.path-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}
.path-step {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 700;
}
.path-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
.path-headline {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
}
.path-body {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 380px;
}
.path-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.path-from {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.path-from strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-top: 6px;
}
.path-link {
  font-size: 12px;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: transform .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.path-link:hover {
  transform: translateX(4px);
}
.path-link--bold {
  color: var(--accent);
  border-color: var(--accent);
}
.path-link--bold:hover {
  color: color-mix(in srgb, var(--accent) 80%, white);
  border-color: color-mix(in srgb, var(--accent) 80%, white);
}

/* ===========================================================
   MIX & MATCH — Modular packages section (dark)
   =========================================================== */
.mix-section {
  padding: 130px 60px 110px;
  border-top: 1px solid var(--line);
}
.mix-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.mix-head .pre { margin-bottom: 22px; }
.mix-head h2 {
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.mix-head h2 .em { font-style: italic; }
.mix-head .lead {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: var(--muted-2);
}

.mix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--accent-line);
  border-bottom: 1px solid var(--line);
}
.mix-combo {
  padding: 50px 40px 44px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .4s ease;
}
.mix-combo:last-child { border-right: none; }
.mix-combo:hover {
  background: linear-gradient(180deg, rgba(197,186,168,0.04) 0%, transparent 100%);
}
.mix-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.mix-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--ink);
}
.mix-price {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}
.mix-price strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.mix-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mix-list li {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}
.mix-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}
.mix-foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-style: italic;
  font-family: var(--serif);
}
.mix-cta {
  text-align: center;
  margin-top: 60px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.mix-note {
  font-size: 15px;
  color: var(--muted-2);
  line-height: 1.55;
  margin-bottom: 26px;
}
.mix-note strong {
  color: var(--ink);
  font-weight: 600;
}

/* T-Squared mark on services.html case-card */
.services-case-mark {
  position: absolute;
  top: 20px;
  right: 20px;
  width: auto;
  height: auto;
  max-width: 40px;
  max-height: 46px;
  object-fit: contain;
  opacity: 0.85;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 900px) {
  .services-case-mark { top: 14px; right: 14px; max-width: 28px; max-height: 32px; }
}

/* Cap the services-page case study vis height so it doesn't balloon at desktop */
.case-studies .case-card .vis {
  max-height: 360px;
}

/* ===========================================================
   T-SQUARED LOGO MARK ON PROOF CARD
   =========================================================== */
.proof-body {
  position: relative;
}
.proof-client-mark {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity .3s ease, transform .35s ease;
  pointer-events: none;
}
.proof-card:hover .proof-client-mark {
  opacity: 1;
  transform: scale(1.04);
}

/* ===========================================================
   RESPONSIVE — Paths editorial, Mix section
   =========================================================== */
@media (max-width: 900px) {
  .paths-section { padding: 70px 24px 60px; }
  .paths-head { margin-bottom: 40px; }
  .paths-editorial { grid-template-columns: 1fr; }
  .paths-divider { display: none; }
  .path-col { padding: 44px 24px 40px; min-height: 0; }
  .path-col + .path-col { border-top: 1px solid var(--line); }
  .path-meta { margin-bottom: 30px; }
  .path-headline { font-size: clamp(28px, 7vw, 36px); margin-bottom: 18px; }
  .path-body { margin-bottom: 30px; }
  .path-from strong { font-size: 28px; }

  .mix-section { padding: 70px 24px 60px; }
  .mix-head { margin-bottom: 40px; }
  .mix-grid { grid-template-columns: 1fr; }
  .mix-combo { padding: 36px 24px 30px; border-right: none; border-bottom: 1px solid var(--line); }
  .mix-combo:last-child { border-bottom: none; }
  .mix-cta { margin-top: 36px; }

  /* Hide the floating logo mark on mobile — the image above already shows the brand */
  .proof-client-mark { display: none; }
}

/* ===========================================================
   ABOUT PAGE — Origin, Principles, Process timeline, Commitments
   =========================================================== */

/* ---------- Origin story (asymmetric narrative, dark) ---------- */
.about-origin {
  padding: 140px 60px 130px;
  border-top: 1px solid var(--line);
}
.about-origin-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.origin-side {
  position: sticky;
  top: 130px;
}
.origin-side .pre {
  margin-bottom: 30px;
  display: block;
}
.origin-mark {
  display: block;
  width: 270px;
  height: auto;
  margin-bottom: 30px;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0.92;
  transition: transform .8s cubic-bezier(0.16,1,0.3,1), opacity .4s ease;
}
.about-origin:hover .origin-mark {
  transform: translateY(-4px);
  opacity: 1;
}
.origin-meta {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 20px;
  border-top: 1px solid var(--accent-line);
  max-width: 160px;
}
.origin-body { max-width: 760px; }
.origin-headline {
  font-size: clamp(36px, 4.6vw, 68px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 50px;
  color: var(--ink);
}
.origin-headline .em {
  font-style: italic;
  color: var(--ink);
}
.origin-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
}
.origin-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted-2);
}
.origin-lede {
  font-size: 22px !important;
  font-weight: 500;
  color: var(--ink) !important;
  line-height: 1.45 !important;
  letter-spacing: -0.01em;
}

/* ---------- Principles (editorial numbered list, light) ---------- */
.principles-section {
  padding: 140px 60px 120px;
}
.principles-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.principles-head .pre { margin-bottom: 22px; }
.principles-head h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.principles-list {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--light-line);
}
.principle-row {
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  gap: 50px;
  align-items: center;
  padding: 56px 8px;
  border-bottom: 1px solid var(--light-line);
  position: relative;
  transition: padding .4s cubic-bezier(0.16,1,0.3,1), background .4s ease;
}
.principle-row:hover {
  padding-left: 28px;
  padding-right: 28px;
  background: linear-gradient(90deg, var(--accent-soft) 0%, transparent 80%);
}
.pr-num {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--light-ink);
  line-height: 0.9;
  font-feature-settings: "tnum";
}
.pr-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--light-ink);
}
.pr-name .em {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  -webkit-text-stroke: 1.2px var(--light-ink);
  color: transparent;
  font-style: italic;
  font-weight: 300;
}
.pr-body {
  font-size: 15.5px;
  color: var(--light-muted) !important;
  line-height: 1.65;
  max-width: 620px;
}
.pr-line {
  height: 1px;
  background: var(--light-line-strong);
  width: 60px;
  justify-self: end;
  transition: width .45s cubic-bezier(0.16,1,0.3,1), background .35s ease;
}
.principle-row:hover .pr-line {
  width: 100px;
  background: var(--accent);
}

/* ---------- Process timeline (dark, 4-step) ---------- */
.process-flow {
  padding: 140px 60px 140px;
  border-top: 1px solid var(--line);
}
.process-flow-head {
  text-align: center;
  margin-bottom: 90px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.process-flow-head .pre { margin-bottom: 22px; }
.process-flow-head h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.process-timeline {
  list-style: none;
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
/* Solid vertical line — runs through the center of all dots */
.process-timeline::before {
  content: "";
  position: absolute;
  left: 8px;       /* aligned with dot center (16px dot, half = 8) */
  top: 38px;       /* start at center of first dot */
  bottom: 38px;    /* end at center of last dot */
  width: 1px;
  background: var(--accent-line);
  z-index: 0;
}
.pt-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
  padding: 32px 0;
  position: relative;
}
/* The dot is part of the num element, flex-aligned to its center */
.pt-num {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  position: relative;
  z-index: 1;
  min-width: 130px;
}
.pt-num::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 0 7px var(--bg);  /* "cuts" the line behind the dot */
  position: relative;
}
.pt-body {
  padding-top: 6px;
}
.pt-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
}
.pt-text {
  font-size: 15.5px;
  color: var(--muted-2);
  line-height: 1.7;
  max-width: 560px;
}

/* ---------- Commitments (light, 2x2 grid) ---------- */
.commitments-section {
  padding: 140px 60px 130px;
}
.commitments-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.commitments-head .pre { margin-bottom: 22px; }
.commitments-head h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--accent-line);
}
.commitment {
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  position: relative;
  transition: background .35s ease;
}
.commitment:nth-child(2n) { border-right: none; }
.commitments-grid .commitment:nth-last-child(-n+2) { border-bottom: none; }
.commitment:hover {
  background: linear-gradient(180deg, var(--accent-soft) 0%, transparent 100%);
}
.cm-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--light-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.cm-mark svg { display: block; }
.cm-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--light-ink);
  margin-bottom: 10px;
}
.cm-text {
  font-size: 15px;
  color: var(--light-muted) !important;
  line-height: 1.6;
  max-width: 400px;
}

/* ---------- RESPONSIVE (About page) ---------- */
@media (max-width: 900px) {
  .about-origin { padding: 70px 24px 60px; }
  .about-origin-inner { grid-template-columns: 1fr; gap: 36px; }
  .origin-side { position: static; }
  .origin-mark { width: 140px; margin-bottom: 18px; }
  .origin-headline { font-size: clamp(28px, 7vw, 40px); margin-bottom: 30px; }
  .origin-lede { font-size: 18px !important; }
  .origin-copy p { font-size: 15.5px; }

  .principles-section { padding: 70px 24px 60px; }
  .principles-head { margin-bottom: 40px; }
  .principle-row {
    grid-template-columns: 70px 1fr;
    gap: 24px;
    padding: 32px 4px;
  }
  .principle-row:hover { padding-left: 12px; padding-right: 12px; }
  .pr-num { font-size: 48px; }
  .pr-name { font-size: clamp(22px, 6vw, 28px); }
  .pr-body { font-size: 14.5px; }
  .pr-line { display: none; }

  .process-flow { padding: 70px 24px 70px; }
  .process-flow-head { margin-bottom: 50px; }
  .process-timeline::before { left: 6px; top: 30px; bottom: 30px; }
  .pt-step { grid-template-columns: auto 1fr; gap: 22px; padding: 22px 0; }
  .pt-num { font-size: 32px; gap: 18px; min-width: 80px; }
  .pt-num::before { width: 12px; height: 12px; box-shadow: 0 0 0 5px var(--bg); }
  .pt-name { font-size: clamp(20px, 5vw, 24px); }
  .pt-text { font-size: 14.5px; }

  .commitments-section { padding: 70px 24px 60px; }
  .commitments-head { margin-bottom: 40px; }
  .commitments-grid { grid-template-columns: 1fr; }
  .commitment { padding: 32px 24px; border-right: none; }
  .commitments-grid .commitment:nth-last-child(-n+2) { border-bottom: 1px solid var(--light-line); }
  .commitments-grid .commitment:last-child { border-bottom: none; }
}

/* ===========================================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   =========================================================== */
.legal-head {
  text-align: center;
  padding: 180px 60px 80px;
  border-bottom: 1px solid var(--line);
}
.legal-head .eyebrow {
  font-size: 11px; letter-spacing: 4px; color: var(--accent);
  text-transform: uppercase; margin-bottom: 22px; font-weight: 600;
}
.legal-head h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.legal-head h1 .em {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  -webkit-text-stroke: 1.6px var(--ink);
  color: transparent;
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.04em;
}
.legal-head .updated {
  font-size: 11px; letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 30px;
}
.legal-head .lead {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: var(--muted-2);
  max-width: 680px;
  margin: 0 auto;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 60px 100px;
}
.legal-section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.legal-section:first-child { border-top: none; padding-top: 0; }
.legal-section h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.legal-section h2 .legal-num {
  display: inline-block;
  margin-right: 18px;
  color: var(--accent);
  font-weight: 800;
}
.legal-section h2 .app-ref {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  vertical-align: middle;
}
.legal-section p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.legal-section ul li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted-2);
  padding-left: 26px;
  position: relative;
  margin-bottom: 14px;
}
.legal-section ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.legal-section strong { color: var(--ink); font-weight: 600; }
.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(197,186,168,0.40);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.legal-section a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.legal-disclaimer {
  max-width: 780px;
  margin: 70px auto 0;
  padding: 26px 32px;
  background: rgba(197,186,168,0.06);
  border: 1px solid rgba(197,186,168,0.18);
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
}

.legal-crosslink {
  max-width: 860px;
  margin: 50px auto 0;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  border-top: 1px solid var(--line);
}
.legal-crosslink a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}
.legal-crosslink a:hover { color: var(--ink); }

/* Legal footer mini-bar — attached visually to site-footer above it */
.legal-footer {
  padding: 12px 60px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  border-top: 1px solid var(--line);
  margin-top: -1px;
}
.legal-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}
.legal-footer a:hover { color: var(--accent); }
.legal-footer .sep { opacity: 0.4; }
/* Hide top border of legal-footer when it sits directly under site-footer (avoid double-rule) */
footer.site-footer + .legal-footer,
footer.audit-footer + .legal-footer {
  border-top: 0;
  padding-top: 6px;
}

@media (max-width: 900px) {
  .legal-head { padding: 130px 24px 60px; }
  .legal-content { padding: 50px 24px 70px; }
  .legal-section h2 { font-size: 20px; }
  .legal-section h2 .legal-num { display: block; margin-bottom: 8px; margin-right: 0; }
  .legal-section h2 .app-ref { display: block; margin-left: 0; margin-top: 6px; }
  .legal-crosslink { flex-direction: column; gap: 16px; padding: 24px 24px; }
  .legal-footer { flex-wrap: wrap; justify-content: center; padding: 18px 24px 30px; gap: 10px 18px; }
  .legal-footer .sep { display: none; }
}
