/* === DESIGN TOKENS === */
:root {
  --c-ink:       #0f172a;
  --c-ink-mid:   #3d4d5c;
  --c-ink-muted: #536070;
  --c-stone:     #f5f5f4;
  --c-warm:      #e4e4e2;
  --c-mist:      #e7e5e4;
  --c-grove:     #064e3b;
  --c-cream:     #ecfdf5;
}

/* === SCREEN READER ONLY === */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Public Sans', system-ui, sans-serif;
  background: #f5f5f4;
  color: #0f172a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === NAV — FIXED TOP BAR === */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  mix-blend-mode: difference;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  pointer-events: none;
}
#main-nav > * { pointer-events: auto; }

/* Brand — horizontal row */
.nav-brand {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  text-decoration: none; color: white;
}
.nav-brand img {
  height: 42px; width: auto;
  filter: brightness(0) invert(1);
}
.nav-brand-text {
  font-family: 'Spectral', serif;
  font-weight: 700; font-size: 28px; color: white;
  letter-spacing: -0.02em; line-height: 1;
}
.nav-brand-sub { display: none; }

/* Centre links */
.nav-left {
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links-list {
  display: flex; flex-direction: row; gap: 36px;
  list-style: none;
}
.nav-link {
  font-family: 'Public Sans', sans-serif;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em;
  color: white; text-decoration: none; font-weight: 400;
  transition: opacity 0.2s;
}
.nav-link:hover { opacity: 0.5; }

/* Right side: lang toggle */
.nav-right {
  display: flex; flex-direction: row; align-items: center; gap: 16px;
}
#lang-switch {
  font-family: 'Public Sans', sans-serif;
  font-size: 11px; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: white;
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 5px;
  transition: opacity 0.2s; opacity: 0.5;
  text-decoration: none;
}
#lang-switch:hover { opacity: 1; }
.lang-div { opacity: 0.3; }
.nav-cta { display: none; }

/* Burger — hidden on desktop */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 15px 11px;
}
.burger span {
  display: block; width: 22px; height: 1.5px; background: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile */
@media (max-width: 768px) {
  #main-nav {
    padding: 20px 24px;
    mix-blend-mode: normal; background: transparent;
  }
  .nav-brand img { filter: none; }
  .nav-brand-text { color: #0f172a; }
  .nav-left { display: none; }
  .nav-right { display: none; }
  .burger { display: flex; }
  .burger span { background: #0f172a; }
}

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: #0f172a;
  flex-direction: column; align-items: flex-start;
  justify-content: center; padding: 60px 48px; gap: 12px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: 'Spectral', serif;
  font-size: clamp(32px, 8vw, 52px); font-weight: 700;
  color: #f1f5f9; text-decoration: none; letter-spacing: -0.02em;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: #6ee7b7; }
.mobile-lang {
  margin-top: 32px; display: flex; gap: 16px; align-items: center;
}
.mobile-lang-btn {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.2em; color: rgba(241,245,249,0.5);
  background: none; border: none; cursor: pointer; font-weight: 400;
  transition: color 0.2s; padding: 12px 8px; text-decoration: none;
}
.mobile-lang-btn.active { color: #f1f5f9; }
.mobile-lang-sep {
  color: rgba(241,245,249,0.2); font-size: 12px;
}
.mobile-cta {
  margin-top: 16px;
  font-family: 'Public Sans', sans-serif !important;
  font-size: 11px !important; font-weight: 400 !important;
  text-transform: uppercase !important; letter-spacing: 0.4em !important;
  color: #0f172a !important; background: #f1f5f9;
  padding: 14px 28px; text-decoration: none !important;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* === HERO LOAD ANIMATIONS === */
@keyframes headline-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-h1  { animation: headline-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) both; }
.anim-sub { animation: headline-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
.anim-cta { animation: headline-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.50s both; }

/* === HERO === */
#hero {
  min-height: 100vh; min-height: 100svh;
  background: #f5f5f4;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 16px;
  padding: 120px 48px 80px;
  position: relative;
  align-items: end;
  overflow: hidden;
}
.hero-left  {
  grid-column: 1 / 9;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-video-wrap {
  /* natural size, no cropping */
}
.hero-video {
  width: 100%; height: auto;
  display: block;
  max-height: 52vh;
  max-width: calc(62vw - 48px);
}
.hero-right {
  grid-column: 9 / 13;
  padding-bottom: 8px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-h1 {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.88; letter-spacing: -0.05em; color: #0f172a;
  margin-bottom: 0;
}
.hero-h1-sub {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: clamp(11px, 1vw, 15px);
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--c-ink-muted); display: block; margin-top: 14px;
}
.hero-sub {
  font-family: 'Spectral', serif; font-weight: 400; font-style: italic;
  font-size: clamp(15px, 1.6vw, 21px); color: #0f172a;
  line-height: 1.55; margin-bottom: 36px;
  max-width: 52ch;
}
.btn-noir {
  display: inline-block; font-family: 'Public Sans', sans-serif;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.4em;
  font-weight: 400; color: #f5f5f4; background: #0f172a;
  border: none; padding: 17px 28px; text-decoration: none; cursor: pointer;
  transition: opacity 0.2s;
}
.btn-noir:hover { opacity: 0.72; }
.btn-noir:active { transform: scale(0.97); transition: transform 100ms ease-out; }
.btn-hero { background: #064e3b; color: #f5f5f4; }
.btn-hero:hover { opacity: 0.88; }
.hero-bg-img {
  position: absolute; left: 62%; right: 0; top: 0;
  width: auto; height: 100%; object-fit: cover;
  filter: grayscale(1) opacity(0.22); mix-blend-mode: multiply;
  pointer-events: none; will-change: transform;
}
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-label {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; color: #0f172a; opacity: 0.3;
}
.scroll-line { width: 1px; height: 40px; background: #0f172a; opacity: 0.2; }

@media (max-width: 768px) {
  #hero {
    display: flex; flex-direction: column; justify-content: flex-start;
    padding: 88px 24px 56px; min-height: auto; gap: 24px;
  }
  .hero-left { flex: 0 0 auto; display: flex; flex-direction: column; gap: 20px; }
  .hero-right {
    display: flex; flex-direction: column; gap: 20px;
    grid-column: unset;
  }
  .hero-video { max-width: 100%; max-height: none; width: 100%; }
  .hero-bg-img { display: none; }
}

/* === SERVICES === */
#services { background: #e4e4e2; padding: 100px 0 128px; overflow: hidden; }
.services-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section-eyebrow {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: var(--c-ink-muted); display: block; margin-bottom: 18px;
}
.section-h2 {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(36px, 5vw, 72px); line-height: 1.0;
  letter-spacing: -0.03em; color: #064e3b;
}
.section-header { margin-bottom: 72px; }
/* Subgrid layout: define 5 explicit row tracks on the parent grid, then make
   each tier a subgrid that inherits them. This guarantees that the items in
   the same row position align across all 3 columns — regardless of how
   many lines the description has, how tall the video renders, or what other
   content might be added later. The 1fr middle row absorbs any whitespace. */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto 1fr auto auto; /* roman, name, desc(grow), readmore, video */
  gap: 40px 40px;
  align-items: start;
}
.services-grid > .reveal,
.svc-col-right > .reveal {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  align-items: start;
}
/* Tiers without a "Read more →" link (e.g. future variants): collapse row 4
   so the video still lands in row 5. */
.services-grid > .reveal:not(:has(.svc-readmore)),
.svc-col-right > .reveal:not(:has(.svc-readmore)) {
  grid-row: span 4;
  grid-template-rows: auto auto 1fr auto;
}
.svc-col-right { display: contents; }
.service-roman {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; color: #0f172a;
  opacity: 0.3; margin-bottom: 14px;
}
.service-name {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(30px, 3.8vw, 54px); letter-spacing: -0.03em;
  color: #0f172a; line-height: 1.0; margin-bottom: 12px;
}
/* Service tier headline link (homepage I/II/III) */
.service-name a {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.service-name a:hover { opacity: 0.7; }
/* Inline "Read more →" CTA below the service description (homepage).
   justify-self:start keeps it sized to its text inside its subgrid cell
   (so the underline scopes to the text, not to the column width). */
.svc-readmore {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 400;
  color: #0f172a; text-decoration: none;
  padding-bottom: 4px; margin-bottom: 28px;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
  justify-self: start;
}
.svc-readmore:hover { opacity: 0.7; }
.service-desc {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 16px; line-height: 1.72; color: var(--c-ink-mid);
  max-width: 340px; margin-bottom: 28px;
}
.svc-img-wrap {
  position: relative; overflow: hidden;
}
.svc-img-wrap img {
  width: 100%; display: block;
  filter: grayscale(1) brightness(0.88);
  transition: filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-img-wrap:hover img { filter: grayscale(0) brightness(1); }
@media (hover: none) {
  .svc-img-wrap img { filter: grayscale(0) brightness(1); }
}
/* Video portfolio card */
.svc-video-wrap {
  position: relative; overflow: hidden; display: block;
  text-decoration: none;
}
.svc-video-wrap video {
  width: 100%; display: block;
  filter: grayscale(1);
  transition: filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-video-wrap:hover video { filter: grayscale(0); }
@media (hover: none) {
  .svc-video-wrap video { filter: grayscale(0); }
}
.svc-visit {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) translateY(8px);
  background: #f5f5f4; color: #0f172a;
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  font-weight: 400; letter-spacing: 0.4em; text-transform: uppercase;
  padding: 13px 24px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.svc-video-wrap:hover .svc-visit,
.svc-video-wrap:focus-within .svc-visit {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) translateY(0);
}
.svc-img-tag {
  position: absolute; font-family: 'Public Sans', sans-serif;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.35em; font-weight: 500;
  padding: 8px 14px;
}
.svc-img-tag.dark {
  bottom: 18px; left: 18px; color: #f1f5f9; background: rgba(15,23,42,0.72);
}
.svc-img-tag.light {
  bottom: 14px; right: 14px; color: #0f172a; background: rgba(245,245,244,0.88);
}
@media (max-width: 768px) {
  #services { padding: 72px 0 80px; }
  .services-inner { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* === ABOUT === */
#about { background: #f5f5f4; padding: 0 48px 100px; }
.about-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  border-top: 1px solid rgba(15,23,42,0.07); padding-top: 80px;
}
.about-eyebrow {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; color: var(--c-ink-muted);
  display: block; margin-bottom: 24px;
}
.about-story {
  font-family: 'Spectral', serif; font-weight: 400;
  font-size: clamp(16px, 1.7vw, 20px); line-height: 1.75; color: #0f172a;
}
.stat-item {
  display: flex; align-items: baseline; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid rgba(15,23,42,0.07);
}
.stat-item:first-child { border-top: 1px solid rgba(15,23,42,0.07); }
.stat-val {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: 26px; color: #0f172a; min-width: 60px; flex-shrink: 0;
}
.stat-lbl {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 16px; color: var(--c-ink-mid); line-height: 1.6;
}
@media (max-width: 768px) {
  #about { padding: 0 24px 72px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* === PROCESS === */
#process { background: #064e3b; padding: 100px 48px; }
.process-inner { max-width: 1280px; margin: 0 auto; }
.process-header { margin-bottom: 64px; }
.process-eyebrow {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em;
  color: #6ee7b7; opacity: 0.6; display: block; margin-bottom: 16px;
}
.process-h2 {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(30px, 4.2vw, 58px); line-height: 1.08;
  letter-spacing: -0.03em; color: #ecfdf5;
}
.process-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.09);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.process-col {
  padding: 52px 40px 60px;
  transition: background 0.3s ease;
}
.process-col:hover { background: rgba(255,255,255,0.04); }
.process-col:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.09); }
.process-roman {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.35em;
  color: #ecfdf5; opacity: 0.3; display: block; margin-bottom: 44px;
}
.process-title {
  font-family: 'Spectral', serif; font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px); color: #ecfdf5;
  margin-bottom: 18px; line-height: 1.15;
}
.process-desc {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 16px; line-height: 1.78; color: rgba(236,253,245,0.88);
}
@media (max-width: 768px) {
  #process { padding: 72px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-col:not(:last-child) {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,0.09);
  }
  .process-col { padding: 36px 0 44px; }
}

/* === FAQ === */
#faq { background: #ecfdf5; padding: 120px 48px; border-top: 1px solid rgba(6,78,59,0.06); }
.faq-inner { max-width: 1280px; margin: 0 auto; }
.faq-grid {
  display: grid; grid-template-columns: 2fr 5fr; gap: 80px; align-items: start;
}
.faq-eyebrow {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: #064e3b; opacity: 0.55; display: block; margin-bottom: 18px;
}
.faq-h2 {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(36px, 4.8vw, 64px); line-height: 1.0;
  letter-spacing: -0.03em; color: #064e3b; margin-bottom: 24px;
}
.faq-lede {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 15px; line-height: 1.7; color: #3d4d5c; max-width: 28ch;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid rgba(6,78,59,0.14);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(6,78,59,0.14); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 28px 0;
  font-family: 'Spectral', serif; font-weight: 600;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.25;
  letter-spacing: -0.01em; color: #0f172a;
  transition: color 0.25s ease;
}
.faq-item summary:hover { color: #064e3b; }
.faq-item summary:focus-visible {
  outline: 2px solid #064e3b; outline-offset: 4px; border-radius: 2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  flex-shrink: 0; width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #064e3b;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor;
  top: 50%; left: 50%;
}
.faq-icon::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.faq-answer {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 16px; line-height: 1.7; color: #3d4d5c;
  padding: 0 0 32px 0; max-width: 64ch;
}

@media (max-width: 900px) {
  #faq { padding: 80px 32px; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-item summary { padding: 22px 0; gap: 20px; }
  .faq-answer { padding-bottom: 26px; font-size: 15px; }
}

/* === CONTACT === */
#contact { background: #f5f5f4; padding: 100px 48px 128px; }
.contact-inner { max-width: 1280px; margin: 0 auto; }
.contact-header { margin-bottom: 64px; }
.contact-grid {
  display: grid; grid-template-columns: 2fr 5fr; gap: 80px; align-items: start;
}
.info-lbl {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; color: var(--c-ink-muted);
  margin-bottom: 8px;
}
.info-val {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 16px; color: #0f172a; margin-bottom: 36px;
}
.info-val a { color: inherit; text-decoration: none; }
.avail-row { display: flex; align-items: center; gap: 10px; }
.avail-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #064e3b; flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}
.avail-text {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 16px; color: #064e3b;
}

/* Form */
.form-lbl {
  display: block; font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.35em; color: var(--c-ink-muted);
  margin-bottom: 10px;
}
.form-field { margin-bottom: 30px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(15,23,42,0.18); border-radius: 0;
  padding: 13px 0; font-family: 'Public Sans', sans-serif;
  font-size: 16px; font-weight: 300; color: #0f172a; outline: none;
  transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--c-ink-muted);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-bottom-color: #0f172a;
}
.form-field select {
  cursor: pointer; color: var(--c-ink-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
  padding-right: 22px;
}
.form-field select.selected { color: #0f172a; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) {
  #contact { padding: 72px 24px 80px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-2col { grid-template-columns: 1fr; gap: 0; }
}

/* === FOOTER === */
footer {
  background: #e7e5e4; border-top: 1px solid rgba(15,23,42,0.07);
  padding: 64px 48px 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 48px;
}
.footer-logo-row {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 14px;
}
.footer-logo-row img { height: 42px; width: auto; }
.footer-brand-name {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: 28px; color: #0f172a; letter-spacing: -0.02em;
}
.footer-copy {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--c-ink-muted); line-height: 1.9;
}
.footer-nav-head {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--c-ink-muted); margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-ink-muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: #064e3b; }
@media (max-width: 768px) {
  footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* === TABLET (769px–1100px) === */
@media (min-width: 769px) and (max-width: 1100px) {
  #main-nav { padding: 24px 32px; }

  #hero {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    padding: 100px 32px 64px;
  }
  .hero-left  { grid-column: 1 / 2; }
  .hero-right { grid-column: 2 / 3; }
  .hero-h1    { font-size: clamp(52px, 8vw, 80px); }
  .hero-video { max-height: 42vh; max-width: 100%; }
  .hero-bg-img { display: none; }

  .services-inner { padding: 0 32px; }
  .services-grid  { gap: 24px; }

  #about { padding: 0 32px 80px; }

  #process { padding: 80px 32px; }
  .process-col { padding: 36px 20px 44px; }

  #contact { padding: 80px 32px 100px; }
  .contact-grid { gap: 48px; }

  footer { padding: 48px 32px 32px; }
}

/* === MOBILE OVERRIDES === */
@media (max-width: 768px) {
  .btn-noir { letter-spacing: 0.2em; }
  .footer-links a { padding: 6px 0; display: block; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #e7e5e4; }
::-webkit-scrollbar-thumb { background: rgba(6,78,59,0.3); border-radius: 2px; }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .anim-h1, .anim-sub, .anim-cta { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .avail-dot { animation: none; }
  .svc-img-wrap img { transition: none; }
  .cta-email::after { transition: none; }
}

/* === SKIP LINK === */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #0f172a; color: #f5f5f4;
  font-family: 'Public Sans', sans-serif; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 20px; text-decoration: none; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* === FOCUS VISIBLE === */
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-bottom-color: #064e3b;
  outline: 2px solid #064e3b;
  outline-offset: 2px;
}
.btn-noir:focus-visible {
  outline: 2px solid #064e3b;
  outline-offset: 3px;
}
.nav-link:focus-visible,
.nav-brand:focus-visible,
#lang-switch:focus-visible,
.burger:focus-visible,
.footer-links a:focus-visible,
.mobile-lang-btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

/* === HERO LOSS LINE === */
.hero-loss {
  font-family: 'Public Sans', sans-serif;
  font-size: clamp(12px, 0.9vw, 14px);
  letter-spacing: 0.04em;
  color: var(--c-ink-muted);
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 0;
}

/* === PROCESS TIMELINE === */
.process-timeline {
  display: block;
  font-family: 'Public Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(236,253,245,0.65);
  margin-top: 20px;
}

/* === FORM SUCCESS NOTE === */
.form-success-note {
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #064e3b;
  margin-top: 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.form-success-note a {
  color: #064e3b;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.form-success-note a:hover { opacity: 0.7; }

/* === GDPR CONSENT === */
.consent-row {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 28px; min-height: 44px;
}
.consent-row input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: #064e3b; cursor: pointer;
}
.consent-lbl {
  font-family: 'Public Sans', sans-serif; font-size: 12px; font-weight: 300;
  color: rgba(15,23,42,0.52); line-height: 1.6; cursor: pointer;
}
.consent-lbl a {
  color: #064e3b; text-decoration: underline; text-underline-offset: 2px;
}
.consent-lbl a:hover { opacity: 0.7; }

/* === SUBMIT BUTTON === */
.btn-submit {
  width: 100%; display: flex;
  align-items: center; justify-content: center; gap: 10px;
}

/* === NOSCRIPT: show all reveal elements === */
@media (scripting: none) {
  .reveal { opacity: 1; transform: none; }
}

/* ===========================================================================
   PAGES (multi-page support — pricing, services, etc.)
   =========================================================================== */

/* === PAGE HERO (compact hero used by inner pages like /pricing/) === */
.page-hero {
  padding: 168px 48px 80px;
  background: #f5f5f4;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: end;
}
.page-hero-eyebrow {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: var(--c-ink-muted); display: block; margin-bottom: 22px;
}
.page-hero h1 {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.96;
  letter-spacing: -0.04em; color: #0f172a;
}
.page-hero-sub {
  font-family: 'Spectral', serif; font-weight: 400; font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px); color: var(--c-ink-mid);
  line-height: 1.55; max-width: 52ch;
}
@media (max-width: 900px) {
  .page-hero { padding: 116px 24px 56px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* === TIERS === */
#tiers { background: #ecfdf5; padding: 100px 48px; border-top: 1px solid rgba(6,78,59,0.06); }
.tiers-inner { max-width: 1280px; margin: 0 auto; }
.tiers-header { margin-bottom: 64px; }
.tiers-header .section-h2 { color: #064e3b; }
.tiers-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px;
}
.tier-card {
  background: #f5f5f4;
  padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative;
  border-top: 3px solid transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card.featured { background: #064e3b; color: #ecfdf5; border-top-color: #6ee7b7; }
.tier-tag {
  font-family: 'Public Sans', sans-serif; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: var(--c-ink-muted); margin-bottom: 18px;
}
.tier-card.featured .tier-tag { color: #6ee7b7; opacity: 0.85; }
.tier-name {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.02em;
  color: #0f172a; margin-bottom: 10px; line-height: 1.0;
}
.tier-card.featured .tier-name { color: #ecfdf5; }
.tier-price {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(34px, 4vw, 52px); color: #064e3b; line-height: 1.0;
  margin-bottom: 6px; letter-spacing: -0.03em;
}
.tier-card.featured .tier-price { color: #ecfdf5; }
.tier-price-note {
  font-family: 'Public Sans', sans-serif; font-size: 13px;
  font-weight: 300; color: var(--c-ink-muted); margin-bottom: 32px;
}
.tier-card.featured .tier-price-note { color: rgba(236,253,245,0.65); }
.tier-list {
  list-style: none; flex: 1;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.tier-list li {
  font-family: 'Public Sans', sans-serif; font-size: 14px;
  font-weight: 300; line-height: 1.5; color: var(--c-ink-mid);
  padding-left: 22px; position: relative;
}
.tier-card.featured .tier-list li { color: rgba(236,253,245,0.85); }
.tier-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 12px; height: 1px; background: #064e3b;
}
.tier-card.featured .tier-list li::before { background: #6ee7b7; }
.tier-timeline {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.35em; font-weight: 500;
  color: var(--c-ink-muted); padding-bottom: 22px;
  border-bottom: 1px solid rgba(15,23,42,0.08); margin-bottom: 24px;
}
.tier-card.featured .tier-timeline {
  color: rgba(236,253,245,0.55); border-bottom-color: rgba(255,255,255,0.12);
}
.tier-cta {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 400;
  color: #0f172a; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.25s;
}
.tier-card.featured .tier-cta { color: #6ee7b7; }
.tier-cta::after { content: '→'; transition: transform 0.25s; display: inline-block; }
.tier-cta:hover { gap: 16px; }
@media (max-width: 900px) {
  #tiers { padding: 80px 24px; }
  .tiers-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* === COMPARISON TABLE === */
#compare { background: #f5f5f4; padding: 100px 48px; }
.compare-inner { max-width: 1280px; margin: 0 auto; }
.compare-header { margin-bottom: 56px; }
.compare-table {
  width: 100%; border-collapse: collapse;
  font-family: 'Public Sans', sans-serif;
}
.compare-table th, .compare-table td {
  padding: 18px 20px; text-align: left;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  font-size: 14px; font-weight: 300; color: var(--c-ink-mid);
  vertical-align: top;
}
.compare-table thead th {
  font-family: 'Public Sans', sans-serif;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em;
  font-weight: 500; color: var(--c-ink-muted);
  border-bottom: 2px solid #064e3b; padding-bottom: 22px;
}
.compare-table th[scope="row"] {
  font-weight: 400; color: #0f172a; width: 40%;
}
.compare-table td.tier-col { text-align: center; width: 20%; }
.compare-table td.yes { color: #064e3b; font-weight: 500; }
.compare-table td.no  { color: rgba(15,23,42,0.55); }
.compare-table tr.featured-col-highlight td.tier-col-standard {
  background: rgba(6,78,59,0.04);
}
@media (max-width: 900px) {
  #compare { padding: 80px 24px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 14px 10px; }
  .compare-table th[scope="row"] { width: 50%; }
}

/* === ADD-ONS === */
#addons { background: #064e3b; padding: 100px 48px; color: #ecfdf5; }
.addons-inner { max-width: 1280px; margin: 0 auto; }
.addons-header { margin-bottom: 56px; }
.addons-header .section-eyebrow { color: #6ee7b7; opacity: 0.7; }
.addons-header .section-h2 { color: #ecfdf5; }
.addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid rgba(255,255,255,0.10); }
.addon-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.addon-row:nth-child(odd) { padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.10); }
.addon-row:nth-child(even) { padding-left: 32px; }
.addon-name {
  font-family: 'Spectral', serif; font-weight: 600;
  font-size: clamp(18px, 1.7vw, 22px); color: #ecfdf5;
  letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 6px;
}
.addon-desc {
  font-family: 'Public Sans', sans-serif; font-size: 13px;
  font-weight: 300; color: rgba(236,253,245,0.65); line-height: 1.6;
}
.addon-price {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.3em; font-weight: 500;
  color: #6ee7b7; white-space: nowrap;
}
@media (max-width: 900px) {
  #addons { padding: 80px 24px; }
  .addons-grid { grid-template-columns: 1fr; }
  .addon-row, .addon-row:nth-child(odd), .addon-row:nth-child(even) {
    padding: 24px 0; border-right: none;
  }
}

/* === WHY NO UPFRONT === */
#why-no-upfront { background: #f5f5f4; padding: 100px 48px; }
.why-inner { max-width: 920px; margin: 0 auto; text-align: left; }
.why-eyebrow {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: var(--c-ink-muted); display: block; margin-bottom: 22px;
}
.why-headline {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(30px, 4vw, 52px); line-height: 1.05;
  letter-spacing: -0.03em; color: #064e3b; margin-bottom: 32px;
}
.why-body {
  font-family: 'Spectral', serif; font-weight: 400; font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px); line-height: 1.65; color: #0f172a;
}
.why-body p + p { margin-top: 18px; }
@media (max-width: 900px) {
  #why-no-upfront { padding: 80px 24px; }
}

/* === FINAL CTA on inner pages === */
#final-cta { background: #0f172a; color: #f5f5f4; padding: 100px 48px; }
.final-cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.final-cta-text {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.1;
  letter-spacing: -0.02em; color: #f5f5f4;
}
.final-cta .btn-noir { background: #6ee7b7; color: #0f172a; }
.final-cta .btn-noir:hover { opacity: 0.88; }
@media (max-width: 900px) {
  #final-cta { padding: 72px 24px; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ===========================================================================
   SERVICE PAGES (web-development, web-design, seo, ai-automation)
   =========================================================================== */

/* === BREADCRUMB BAR === */
.breadcrumb {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.3em; font-weight: 400;
  color: var(--c-ink-muted);
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--c-ink-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #064e3b; }
.breadcrumb .crumb-sep { opacity: 0.4; }
.breadcrumb .crumb-current { color: #0f172a; }

/* === WHAT-IT-IS (front-loaded definition for AI-search extraction) === */
#what-is { background: #f5f5f4; padding: 80px 48px 100px; }
.what-is-inner {
  max-width: 920px; margin: 0 auto;
}
.what-is-eyebrow {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: var(--c-ink-muted); display: block; margin-bottom: 22px;
}
.what-is-body {
  font-family: 'Spectral', serif; font-weight: 400;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.55; color: #0f172a;
  letter-spacing: -0.005em;
}
.what-is-body p + p { margin-top: 18px; }
.what-is-body strong { font-weight: 700; color: #064e3b; }
@media (max-width: 900px) {
  #what-is { padding: 64px 24px 80px; }
}

/* === PERSONAS (who it's for) === */
#personas { background: #ecfdf5; padding: 100px 48px; border-top: 1px solid rgba(6,78,59,0.06); }
.personas-inner { max-width: 1280px; margin: 0 auto; }
.personas-header { margin-bottom: 56px; }
.personas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.persona-card {
  background: #f5f5f4; padding: 36px 32px;
  border-top: 3px solid #064e3b;
}
.persona-icon {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: 32px; line-height: 1; color: #064e3b;
  margin-bottom: 18px; display: block;
}
.persona-name {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.02em;
  color: #0f172a; margin-bottom: 14px; line-height: 1.15;
}
.persona-desc {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 15px; line-height: 1.65; color: var(--c-ink-mid);
}
@media (max-width: 900px) {
  #personas { padding: 80px 24px; }
  .personas-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* === DELIVERABLES (what's included) === */
#deliverables { background: #f5f5f4; padding: 100px 48px; }
.deliverables-inner { max-width: 1280px; margin: 0 auto; }
.deliverables-header { margin-bottom: 56px; }
.deliverables-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid rgba(15,23,42,0.08);
}
.deliverable-row {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  display: flex; gap: 18px; align-items: baseline;
}
.deliverable-row:nth-child(even) { padding-left: 32px; padding-right: 0; border-left: 1px solid rgba(15,23,42,0.08); }
.deliverable-num {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.3em; font-weight: 500;
  color: #064e3b; flex-shrink: 0; min-width: 32px;
}
.deliverable-name {
  font-family: 'Spectral', serif; font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px); color: #0f172a;
  letter-spacing: -0.01em; margin-bottom: 6px; line-height: 1.25;
}
.deliverable-desc {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 14px; line-height: 1.6; color: var(--c-ink-mid);
}
@media (max-width: 900px) {
  #deliverables { padding: 80px 24px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .deliverable-row, .deliverable-row:nth-child(even) {
    padding: 24px 0; border-left: none;
  }
}

/* === LIVE EXAMPLES === */
#live-examples { background: #e7e5e4; padding: 100px 48px; }
.examples-inner { max-width: 1280px; margin: 0 auto; }
.examples-header { margin-bottom: 56px; }
.examples-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px;
}
.example-card {
  display: flex; flex-direction: column;
  text-decoration: none; background: #f5f5f4;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.example-card:hover { transform: translateY(-4px); }
.example-video {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.5s;
}
.example-card:hover .example-video { filter: grayscale(0); }
.example-meta { padding: 24px 24px 28px; }
.example-tag {
  font-family: 'Public Sans', sans-serif; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: var(--c-ink-muted); display: block; margin-bottom: 12px;
}
.example-name {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em;
  color: #0f172a; margin-bottom: 8px; line-height: 1.1;
}
.example-summary {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 14px; line-height: 1.6; color: var(--c-ink-mid);
  margin-bottom: 18px;
}
.example-cta {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: #064e3b; display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.example-card:hover .example-cta { gap: 12px; }
@media (max-width: 900px) {
  #live-examples { padding: 80px 24px; }
  .examples-grid { grid-template-columns: 1fr; }
}

/* === STACK (tech stack chips) === */
#stack { background: #064e3b; padding: 100px 48px; color: #ecfdf5; }
.stack-inner { max-width: 1280px; margin: 0 auto; }
.stack-header { margin-bottom: 56px; }
.stack-header .section-eyebrow { color: #6ee7b7; opacity: 0.7; }
.stack-header .section-h2 { color: #ecfdf5; }
.stack-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.stack-col-title {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.35em; font-weight: 500;
  color: #6ee7b7; opacity: 0.85; display: block; margin-bottom: 18px;
}
.stack-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.stack-chip {
  font-family: 'Public Sans', sans-serif; font-size: 13px;
  font-weight: 400; letter-spacing: 0.02em;
  color: #ecfdf5; border: 1px solid rgba(110,231,183,0.35);
  padding: 8px 16px; background: rgba(255,255,255,0.02);
}
.stack-note {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 14px; line-height: 1.65; color: rgba(236,253,245,0.65);
}
@media (max-width: 900px) {
  #stack { padding: 80px 24px; }
  .stack-cols { grid-template-columns: 1fr; gap: 40px; }
}

/* ===========================================================================
   BLOG INDEX (list of all posts)
   =========================================================================== */

#blog-list { background: #f5f5f4; padding: 80px 48px 120px; }
.blog-list-inner { max-width: 920px; margin: 0 auto; }
.blog-card {
  border-bottom: 1px solid rgba(15,23,42,0.10);
}
.blog-card:first-child { border-top: 1px solid rgba(15,23,42,0.10); }
.blog-card-link {
  display: block;
  padding: 36px 0 40px;
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card-link:hover { padding-left: 12px; }
.blog-card-link:focus-visible {
  outline: 2px solid #064e3b; outline-offset: 6px;
  background: rgba(6,78,59,0.04);
}
.blog-card-meta {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.3em; font-weight: 500;
  color: var(--c-ink-muted);
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.blog-card-dot { opacity: 0.4; }
.blog-card-headline {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05;
  letter-spacing: -0.02em; color: #0f172a; margin-bottom: 14px;
  transition: color 0.25s;
  max-width: 22ch;
}
.blog-card-link:hover .blog-card-headline { color: #064e3b; }
.blog-card-excerpt {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 15.5px; line-height: 1.7; color: var(--c-ink-mid);
  max-width: 60ch; margin-bottom: 18px;
}
.blog-card-cta {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: #064e3b;
}
@media (max-width: 900px) {
  #blog-list { padding: 56px 24px 80px; }
  .blog-card-link { padding: 28px 0 32px; }
  .blog-card-link:hover { padding-left: 0; }
}

/* ===========================================================================
   ARTICLE / BLOG POST LAYOUT
   =========================================================================== */

.article-page { background: #f5f5f4; }

/* Article header (replaces the page-hero pattern for posts) */
.article-header {
  background: #f5f5f4;
  padding: 168px 48px 56px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}
.article-header-inner { max-width: 760px; margin: 0 auto; }
.article-meta {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.3em; font-weight: 500;
  color: var(--c-ink-muted);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.article-meta-dot { opacity: 0.4; }
.article-headline {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(36px, 5.4vw, 68px); line-height: 1.0;
  letter-spacing: -0.03em; color: #0f172a;
  margin-bottom: 32px;
}
.article-excerpt {
  font-family: 'Spectral', serif; font-weight: 400; font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px); line-height: 1.55;
  color: var(--c-ink-mid);
  max-width: 56ch;
}
@media (max-width: 900px) {
  .article-header { padding: 116px 24px 40px; }
  .article-meta { gap: 10px; }
}

/* Article body */
.article-body {
  max-width: 760px; margin: 0 auto;
  padding: 64px 48px 80px;
  font-family: 'Public Sans', sans-serif;
}
.article-body p {
  font-weight: 300; font-size: 17px; line-height: 1.75;
  color: #0f172a; margin-bottom: 22px;
}
.article-body h2 {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.15;
  letter-spacing: -0.02em; color: #064e3b;
  margin-top: 56px; margin-bottom: 22px;
}
.article-body h3 {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.25;
  letter-spacing: -0.01em; color: #0f172a;
  margin-top: 36px; margin-bottom: 14px;
}
.article-body strong { font-weight: 600; color: #064e3b; }
.article-body em { font-style: italic; }
.article-body a {
  color: #064e3b; text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.article-body a:hover { opacity: 0.7; }
.article-body ul, .article-body ol {
  margin: 0 0 22px 22px; font-weight: 300; font-size: 17px; line-height: 1.75;
  color: #0f172a;
}
.article-body li { margin-bottom: 8px; }
/* Article inline blockquote — hanging open-quote, no left stripe.
   The size + italic + breathing room is the differentiation. */
.article-body blockquote {
  font-family: 'Spectral', serif; font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px); line-height: 1.5;
  color: #064e3b;
  margin: 44px 0;
  padding: 0;
  position: relative;
  text-indent: -0.4em; /* hang the opening quote into the margin */
}
.article-body blockquote::before {
  content: '\201C'; /* opening curly double-quote */
  font-family: 'Spectral', serif; font-style: italic; font-weight: 700;
  color: #064e3b; opacity: 0.45;
}
.article-body table {
  width: 100%; border-collapse: collapse; margin: 32px 0;
  font-family: 'Public Sans', sans-serif; font-size: 14px;
}
.article-body table th,
.article-body table td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid rgba(15,23,42,0.10);
  vertical-align: top; font-weight: 300; line-height: 1.55;
}
.article-body table thead th {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em;
  font-weight: 500; color: var(--c-ink-muted);
  border-bottom: 2px solid #064e3b; padding-bottom: 18px;
}
.article-body table th[scope="row"] {
  font-weight: 400; color: #0f172a;
}
.article-body .tldr {
  background: #ecfdf5;
  border: 1px solid rgba(6,78,59,0.18);
  padding: 24px 28px; margin: 0 0 40px 0;
}
.article-body .tldr-label {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: #064e3b; display: block; margin-bottom: 10px;
}
.article-body .tldr p {
  font-family: 'Spectral', serif; font-style: italic;
  font-size: 18px; line-height: 1.6; color: #0f172a; margin-bottom: 0;
  font-weight: 400;
}
.article-body .decision-box {
  background: #0f172a; color: #f5f5f4;
  padding: 32px 36px; margin: 40px 0;
}
.article-body .decision-box-label {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: #6ee7b7; display: block; margin-bottom: 14px;
}
.article-body .decision-box ol {
  color: #f5f5f4; margin-left: 22px;
}
.article-body .decision-box ol li { margin-bottom: 10px; }
.article-body .decision-box strong { color: #6ee7b7; }
@media (max-width: 900px) {
  .article-body { padding: 40px 24px 60px; }
  .article-body p { font-size: 16px; }
  .article-body ul, .article-body ol { font-size: 16px; }
}

/* Related-services row at the foot of an article */
.article-related {
  background: #ecfdf5; padding: 64px 48px;
  border-top: 1px solid rgba(6,78,59,0.10);
}
.article-related-inner { max-width: 1280px; margin: 0 auto; }
.article-related-eyebrow {
  font-family: 'Public Sans', sans-serif; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.4em; font-weight: 500;
  color: var(--c-ink-muted); display: block; margin-bottom: 28px;
}
.article-related-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
}
.article-related-card {
  background: #f5f5f4; padding: 28px 24px;
  text-decoration: none; display: block;
  border-top: 2px solid #064e3b;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.article-related-card:hover { transform: translateY(-3px); }
.article-related-card-name {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(20px, 2vw, 24px); letter-spacing: -0.01em;
  color: #0f172a; margin-bottom: 8px; line-height: 1.2;
}
.article-related-card-desc {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 14px; line-height: 1.55; color: var(--c-ink-mid);
}
@media (max-width: 900px) {
  .article-related { padding: 48px 24px; }
  .article-related-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* === YES/NO MATRIX (used on AI automation page for honest scoping) === */
#yes-no { background: #ecfdf5; padding: 100px 48px; border-top: 1px solid rgba(6,78,59,0.06); }
.yes-no-inner { max-width: 1280px; margin: 0 auto; }
.yes-no-header { margin-bottom: 56px; }
.yes-no-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.yes-no-col {
  background: #f5f5f4; padding: 36px 32px;
  border-top: 3px solid #064e3b;
}
.yes-no-col.no { border-top-color: rgba(15,23,42,0.18); }
.yes-no-col-title {
  font-family: 'Spectral', serif; font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em;
  color: #0f172a; margin-bottom: 6px; line-height: 1.1;
  display: flex; align-items: center; gap: 14px;
}
.yes-no-col.no .yes-no-col-title { color: rgba(15,23,42,0.55); }
.yes-no-col-title-mark {
  font-family: 'Public Sans', sans-serif; font-size: 14px;
  font-weight: 600; color: #064e3b;
  width: 24px; height: 24px; display: inline-flex;
  align-items: center; justify-content: center;
  border: 1.5px solid currentColor; border-radius: 50%;
}
.yes-no-col.no .yes-no-col-title-mark { color: rgba(15,23,42,0.32); }
.yes-no-col-lede {
  font-family: 'Public Sans', sans-serif; font-weight: 300;
  font-size: 14px; line-height: 1.65; color: var(--c-ink-mid);
  margin-bottom: 24px;
}
.yes-no-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.yes-no-list li {
  font-family: 'Public Sans', sans-serif; font-size: 14px;
  font-weight: 400; line-height: 1.55; color: #0f172a;
  padding: 14px 0; border-bottom: 1px solid rgba(15,23,42,0.07);
}
.yes-no-list li:last-child { border-bottom: none; }
.yes-no-list li b {
  display: block; margin-bottom: 4px;
  font-family: 'Spectral', serif; font-weight: 600;
  font-size: 17px; letter-spacing: -0.01em; color: #064e3b;
}
.yes-no-col.no .yes-no-list li b { color: rgba(15,23,42,0.45); }
.yes-no-list li span {
  font-weight: 300; color: var(--c-ink-mid); line-height: 1.6;
  display: block; font-size: 13.5px;
}
@media (max-width: 900px) {
  #yes-no { padding: 80px 24px; }
  .yes-no-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* === COMPARISON ROW (custom vs builder) === */
#vs-builders { background: #f5f5f4; padding: 100px 48px; }
.vs-inner { max-width: 1280px; margin: 0 auto; }
.vs-header { margin-bottom: 56px; }
.vs-table {
  width: 100%; border-collapse: collapse;
  font-family: 'Public Sans', sans-serif;
}
.vs-table th, .vs-table td {
  padding: 18px 20px; text-align: left;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  font-size: 14px; font-weight: 300; color: var(--c-ink-mid);
  vertical-align: top;
}
.vs-table thead th {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em;
  font-weight: 500; color: var(--c-ink-muted);
  border-bottom: 2px solid #064e3b; padding-bottom: 22px;
}
.vs-table th[scope="row"] {
  font-weight: 400; color: #0f172a; width: 32%;
}
.vs-table .col-mark { color: #064e3b; font-weight: 500; }
.vs-table .col-warn { color: rgba(15,23,42,0.55); }
.vs-table .col-bad  { color: rgba(15,23,42,0.32); }
@media (max-width: 900px) {
  #vs-builders { padding: 80px 24px; }
  .vs-table { font-size: 13px; }
  .vs-table th, .vs-table td { padding: 14px 10px; }
  .vs-table th[scope="row"] { width: 40%; }
}
