/* ============================================================
   H&S Werbefotografie · KI-Bildproduktion
   Stacking layers: sticky cards, alternating light/dark
   ============================================================ */

:root {
  /* Light theme defaults */
  --bg:        #f4f4f6;   /* very slightly cool white — less warm, more tech */
  --bg-alt:    #eaeaee;
  --ink:       #0d0d12;
  --ink-soft:  #2a2a35;
  --muted:     #68687a;
  --rule:      #d4d4de;
  --rule-soft: #e3e3ea;

  /* Accent — electric cobalt */
  --accent:        #2c5fff;
  --accent-soft:   #e8edff;
  --accent-on:     #ffffff;   /* text on accent bg */
  --accent-dark:   #6690ff;   /* accent on dark bg */

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shell-max: 1380px;
  --shell-pad: clamp(20px, 5vw, 60px);
  --r-layer:   18px;

  --t-fast: 180ms ease;
  --t-mid:  300ms cubic-bezier(.2,.7,.3,1);
}

/* ---- dark layer overrides via custom props ---- */
.stack-layer[data-theme="dark"] {
  --bg:        #0d0d12;   /* slightly cool deep — not flat black */
  --bg-alt:    #16161e;
  --ink:       #eeeef4;
  --ink-soft:  #c0c0cc;
  --muted:     #72727e;
  --rule:      #252530;
  --rule-soft: #1e1e28;
  --accent-soft: #0d1840;  /* dark bg version of accent-soft */
}

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

html { scroll-behavior: smooth; }

body {
  background: #111; /* body bg = dark so no flash between layers */
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--ink); color: var(--bg); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px var(--shell-pad);
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

/* light header state (default — over light layers) */
.site-header.h-light {
  background: color-mix(in srgb, #f6f4ef 85%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: #e6e4dd;
  color: #111;
}
/* dark header state (over dark layers) */
.site-header.h-dark {
  background: color-mix(in srgb, #111 85%, transparent);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom-color: #2c2c2a;
  color: #f0ede6;
}

/* Logo swap */
.logo { display: block; }
.logo-dark, .logo-light { height: 32px; width: auto; transition: opacity 0.3s ease; }
.logo-dark  { display: block; }
.logo-light { display: none; }
.h-dark .logo-dark  { display: none; }
.h-dark .logo-light { display: block; }

.primary-nav {
  display: flex;
  gap: 4px;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.primary-nav a {
  opacity: 0.6;
  padding: 5px 13px;
  border-radius: 999px;
  transition: opacity var(--t-fast), background var(--t-mid), color var(--t-mid);
}
.primary-nav a:hover { opacity: 1; }

/* Active section pill — inverted like Chronos */
.h-light .primary-nav a.nav-active {
  background: #0d0d12;
  color: #f4f4f6;
  opacity: 1;
}
.h-dark .primary-nav a.nav-active {
  background: #eeeef4;
  color: #0d0d12;
  opacity: 1;
}

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid currentColor;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.65;
  transition: opacity var(--t-fast);
}
.lang-toggle:hover { opacity: 1; }
.lang-opt { opacity: 0.5; transition: opacity var(--t-fast); }
.lang-opt.is-active { opacity: 1; font-weight: 600; }
.lang-sep { opacity: 0.3; }

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), opacity var(--t-fast);
}
.cta-small { padding: 7px 14px; font-size: 13px; }
.cta-large { padding: 16px 30px; font-size: 16px; }

/* Primary CTA — accent blue everywhere */
.cta-primary {
  background: var(--accent);
  color: var(--accent-on);
  border-color: var(--accent);
}
.cta-primary:hover {
  background: #1a48f0;
  border-color: #1a48f0;
  transform: translateY(-1px);
}

/* Ghost buttons always use currentColor */
.cta-ghost {
  border-color: currentColor;
  opacity: 0.55;
}
.cta-ghost:hover { opacity: 1; }

/* Header CTA */
.site-header .cta-small {
  background: currentColor;
  font-size: 13px;
  padding: 7px 14px;
}
.site-header .cta-small span,
.site-header .cta-small {
  /* text color inverse of currentColor — trick: use mix */
  color: transparent;
}
/* Simpler: just style two states */
.h-light .header-cta-btn { background: #111; color: #f0ede6; }
.h-dark  .header-cta-btn { background: #f0ede6; color: #111; }
.site-header a.cta-small {
  background: var(--ink, #111);
  color: var(--bg, #f6f4ef);
  border-color: transparent;
}
.site-header a.cta-small:hover { transform: translateY(-1px); }

/* ============================================================
   STACK LAYERS — the main show
   ============================================================ */
.stack-layer {
  position: sticky;
  top: 0;
  z-index: var(--zi, 1);
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--r-layer) var(--r-layer) 0 0;
  box-shadow: 0 -8px 48px rgba(0,0,0,0.18);
  will-change: transform;
  /* Each layer must be at least viewport-tall so content is reachable
     before the next layer slides over it */
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* First layer: no top radius, clear fixed header */
.stack-layer:first-of-type {
  border-radius: 0;
  box-shadow: none;
  padding-top: 48px; /* clear fixed header (header is now ~48px) */
}

.layer-inner {
  transform-origin: top center;
  will-change: transform;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   INNER CONTENT — shell + spacing
   ============================================================ */
.layer-inner > section,
.layer-inner > .marquee {
  max-width: var(--shell-max);
  margin: 0 auto;
  width: 100%;
  padding: clamp(48px, 6vw, 80px) var(--shell-pad);
}
.layer-inner > .marquee { padding-block: 0; }

/* Subsequent dark/light layers get a little top clearance for the fixed header */
.stack-layer:not(:first-of-type) .layer-inner > section:first-child {
  padding-top: clamp(64px, 7vw, 96px);
}

/* Section head row */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
/* On dark backgrounds use the lighter accent variant */
.stack-layer[data-theme="dark"] .eyebrow { color: var(--accent-dark); }
.section-title {
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

/* ============================================================
   HERO
   ============================================================ */
.layer-inner > .hero {
  max-width: 100%;
  padding: 0;
}
.hero {
  display: grid;
  text-align: center;
}
.hero-bg-img {
  grid-area: 1/1;
  width: 100%;
  height: auto;
  display: block;
}
.hero-bg-2 {
  animation: hero-cf-2 21s ease-in-out infinite;
}
.hero-bg-3 {
  animation: hero-cf-3 21s ease-in-out infinite;
}
@keyframes hero-cf-2 {
  0%,   28% { opacity: 0; }   /* hidden while img1 shows */
  33%,  66% { opacity: 1; }   /* stays at 1 until img3 fully covers it */
  72%, 100% { opacity: 0; }   /* fades out after img3 is on top */
}
@keyframes hero-cf-3 {
  0%,   61% { opacity: 0; }   /* hidden */
  66%,  90% { opacity: 1; }   /* visible */
  95%, 100% { opacity: 0; }   /* fades out to reveal img1 base */
}
.hero-content {
  grid-area: 1/1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(20px, 5vw, 60px) clamp(28px, 4vw, 52px);
  color: #fff;
}
.hero-content .hero-title,
.hero-content .hero-meta {
  color: #fff;
  text-shadow:
    0 0 12px rgba(0,0,0,0.9),
    0 0 28px rgba(0,0,0,0.7),
    0 0 56px rgba(0,0,0,0.5);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(36px, 5vw, 64px);
  flex-wrap: wrap;
  text-align: left;
}
.hero-coords { font-feature-settings: "tnum"; }

.hero-title {
  font-weight: 500;
  font-size: clamp(28px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 auto clamp(20px, 2.5vw, 32px);
  max-width: 32ch;
}
.hero-title .line { display: block; }

/* Process blurb layer: non-sticky so all 5 items are scrollable */
#prozess-ki {
  position: relative;
  min-height: auto;
}

.hero-ticker-wrap {
  display: block;
  width: 25ch;
  overflow: hidden;
  white-space: nowrap;
  margin: -25px auto clamp(12px, 2vw, 20px);
  padding-block: 18px;
}
.hero-ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: hero-ticker 20s linear infinite;
  color: #fff;
  text-shadow:
    0 0 12px rgba(0,0,0,0.9),
    0 0 28px rgba(0,0,0,0.7),
    0 0 56px rgba(0,0,0,0.5);
}
.ticker-text { white-space: nowrap; flex-shrink: 0; }
@keyframes hero-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-title .line-3 {
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: 0.01em;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-top: 0.6em;
  max-width: 40ch;
  line-height: 1.35;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.hero-logo {
  width: clamp(200px, 28vw, 420px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.5));
}

.hero-lede {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  max-width: 80ch;
  color: var(--ink-soft);
  margin: 0 auto clamp(28px, 4vw, 44px);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(48px, 7vw, 88px);
}

/* ============================================================
   PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--bg-alt) 0 22px,
      color-mix(in srgb, var(--rule) 60%, var(--bg-alt)) 22px 23px
    );
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.ph-tag {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 8px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.ph-caption { opacity: 0.6; font-size: 11px; }

.ratio-21x9 { aspect-ratio: 21/9; }
.ratio-4x3  { aspect-ratio: 4/3; }
.ratio-3x4  { aspect-ratio: 3/4; }
.ratio-1x1  { aspect-ratio: 1/1; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--rule);
  overflow: hidden;
  max-width: none !important;
  padding: 0 !important;
  background: var(--bg-alt);
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  padding-block: 18px;
  animation: marquee 42s linear infinite;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   INTRO / MANIFEST (dark layer)
   ============================================================ */
.intro-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.intro-title {
  font-weight: 500;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 22ch;
}
.intro-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1em;
}
@media (max-width: 800px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS BLURB — AI workflow steps in Layer 2
   ============================================================ */
.process-blurb {
  margin-top: clamp(48px, 7vw, 88px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(32px, 5vw, 56px);
}
.pb-heading {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: clamp(28px, 4vw, 48px);
  max-width: 38ch;
}
.pb-list {
  list-style: none;
  display: grid;
  gap: 0;
}
.pb-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: clamp(20px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.pb-num {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-top: 3px;
  font-feature-settings: "tnum";
}
.pb-body { display: flex; flex-direction: column; gap: 8px; }
.pb-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pb-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 72ch;
}

/* ============================================================
   SERVICES — numbered row list (fits in one viewport)
   ============================================================ */
.service-list {
  border-top: 1px solid var(--rule);
  list-style: none;
}
.svc-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0 32px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background var(--t-fast);
}
.svc-row:hover {
  background: var(--accent-soft);
  margin-inline: calc(var(--shell-pad) * -1);
  padding-inline: var(--shell-pad);
  border-bottom-color: var(--accent);
}
.stack-layer[data-theme="dark"] .svc-row:hover { background: var(--accent-soft); }
.svc-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-feature-settings: "tnum";
  align-self: start;
  padding-top: 4px;
}
.svc-body { display: flex; flex-direction: column; gap: 4px; }
.svc-body h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.svc-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; max-width: 56ch; }
.svc-arrow {
  font-size: 20px;
  color: var(--muted);
  transition: transform var(--t-mid), color var(--t-fast);
}
.svc-row:hover .svc-arrow { transform: translate(3px, -3px); color: var(--accent); }

@media (max-width: 680px) {
  .svc-row { grid-template-columns: 40px 1fr auto; gap: 0 16px; }
}

/* ============================================================
   PROCESS (dark layer)
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--rule);
}
@media (max-width: 760px) { .process-steps { grid-template-columns: 1fr; } }

.process-step {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.process-step:last-child { border-right: none; }
@media (max-width: 760px) {
  .process-step { border-right: none; padding-right: 0; }
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--accent-dark);
}
.step-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 14px;
  opacity: 0.8;
}
.step-detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.step-detail strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 4px;
  font-weight: 600;
}
.process-step h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  padding-right: 20px;
}
.process-step p { font-size: 15px; color: var(--ink-soft); max-width: 38ch; padding-right: 20px; }

/* ============================================================
   WORKS — horizontal carousel (all 6 visible, no overflow)
   ============================================================ */
.works-carousel {
  position: relative;
}

.works-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* show 3.2 cards — the partial 4th hints at scrollability */
  padding-right: var(--shell-pad);
  cursor: grab;
}
.works-grid:active { cursor: grabbing; }
.works-grid::-webkit-scrollbar { display: none; }

.work-card {
  flex: 0 0 calc(33.33% - 14px);
  min-width: 220px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.work-card .img-placeholder {
  transition: transform var(--t-mid), filter var(--t-mid);
}
.work-card:hover .img-placeholder {
  transform: scale(1.012);
  filter: contrast(1.04);
}

.work-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 6px;
}
.work-card h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Carousel nav buttons */
.carousel-nav {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.carousel-btn:hover {
  border-color: var(--ink);
  background: var(--bg-alt);
  transform: scale(1.06);
}
.carousel-btn:disabled { opacity: 0.25; cursor: default; transform: none; }

@media (max-width: 800px) {
  .work-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 480px) {
  .work-card { flex: 0 0 85%; }
}

/* ============================================================
   PROOF — stats (dark layer)
   ============================================================ */
.proof {
  padding-block: clamp(60px, 8vw, 100px) !important;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--rule);
}
@media (max-width: 760px) { .proof-grid { grid-template-columns: repeat(2,1fr); } }

.proof-item {
  padding: 36px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.proof-item:last-child { border-right: none; }
@media (max-width: 760px) {
  .proof-item:nth-child(2n) { border-right: none; }
}
.proof-num {
  display: block;
  font-weight: 500;
  font-size: clamp(38px, 4.5vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--accent-dark);
}
.proof-item p { font-size: 14px; color: var(--ink-soft); max-width: 26ch; }

/* ============================================================
   TESTIMONIALS (dark layer)
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
  padding: 32px 28px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.testimonial figcaption { font-size: 13px; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { border-top: 1px solid var(--rule); }

.faq-item { border-bottom: 1px solid var(--rule); padding: 24px 0; }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  opacity: 0.6;
  flex-shrink: 0;
  transition: transform var(--t-mid);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 14px 0 4px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* ============================================================
   CTA BANNER (dark layer)
   ============================================================ */
.cta-banner {
  padding-bottom: clamp(40px,5vw,72px) !important;
}
.cta-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.cta-title {
  font-weight: 500;
  font-size: clamp(52px, 9vw, 148px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 14ch;
}
.cta-title span { display: block; }
.cta-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  display: block;
}
.cta-lede {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 32px;
}

/* ============================================================
   FOOTER (inside dark layer)
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 52px var(--shell-pad) 28px;
}
.footer-grid {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1/-1; }
}
.footer-logo { height: 52px; width: auto; margin-bottom: 14px; }
.footer-block h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-block p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.footer-block a { transition: color var(--t-fast); }
.footer-block a:hover { color: var(--ink); }

.footer-base {
  max-width: var(--shell-max);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-links a { margin-left: 18px; }
.footer-links a:hover { color: var(--ink); }

/* ============================================================
   RESPONSIVE — header nav collapse
   ============================================================ */
@media (max-width: 900px) { .primary-nav { display: none; } }
@media (max-width: 520px) {
  .site-header a.cta-small { display: none; }
  .logo-dark, .logo-light { height: 28px; }
}
