/* ============================================
   PITHCO. — Main Stylesheet
   ============================================ */

/* ---- Fonts ---- */
/* Pith Light = Quarto Light — display headings */
@font-face {
  font-family: 'Pith Light';
  src: url('fonts/pith-heading-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pith Light';
  src: url('fonts/pith-heading-light-italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Pith Medium = Quarto Medium — subheadings, emphasis */
@font-face {
  font-family: 'Pith Medium';
  src: url('fonts/pith-heading-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pith Medium';
  src: url('fonts/pith-heading-medium-italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Pith Sans Regular = Intervogue Regular — labels, UI */
@font-face {
  font-family: 'Pith Sans';
  src: url('fonts/pith-sans-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Pith Sans Medium = Intervogue Medium — buttons, emphasis labels */
@font-face {
  font-family: 'Pith Sans';
  src: url('fonts/pith-sans-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --black:      #161514;
  --white:      #FFFFFF;
  --mid:        #F7F6F3;
  --border:     rgba(22,21,20,0.1);
  --muted:      rgba(22,21,20,0.45);
  --muted2:     rgba(22,21,20,0.65);
  --gold:       #C9A84F;
  --green:      #12E59A;

  --pad:        clamp(24px, 5vw, 80px);
  --sec:        clamp(80px, 10vw, 140px);
  --r:          16px;

  /* Font stacks */
  --sans:       'DM Sans', sans-serif;
  --head:       'Pith Light', Georgia, serif;
  --head-medium:'Pith Medium', Georgia, serif;
  --ui:         'Pith Sans', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-x: none;
}
html { overflow-x: clip; }

/* Selection color */
::selection { background: var(--gold); color: #fff; }
::-moz-selection { background: var(--gold); color: #fff; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: var(--white);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(22,21,20,0.04);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-r {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-r a {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.nav-r a:hover { opacity: 1; }
.nav-r .cta {
  opacity: 1;
  background: var(--black);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 0;
  font-weight: 500;
}
.nav-r .cta:hover { opacity: 0.82; }

/* ============================================
   HERO
   ============================================ */
.hero-sec {
  background: #FFFFFF;
  position: relative;
  min-height: calc(100vh - 60px);
  padding-top: 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.hero-sec > .wrap {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.hero-spacer { display: block; }

.hero-accent {
  width: 60px; height: 3px;
  background: var(--gold);
  margin-bottom: 32px;
}
.hero-h1 {
  font-family: var(--head);
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 920px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.15s forwards;
}
.hero-h1 em {
  font-style: normal;
  color: var(--muted2);
}
.hero-sub {
  font-size: clamp(18px, 1.7vw, 24px);
  color: var(--muted2);
  font-weight: 400;
  margin-bottom: 40px;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 0;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,21,20,0.18);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--muted2);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 0;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid rgba(22,21,20,0.2);
  box-shadow: 0 1px 4px rgba(22,21,20,0.06);
  margin-left: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  color: var(--black);
  border-color: rgba(22,21,20,0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(22,21,20,0.08);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 0;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,21,20,0.22);
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.sec { padding-top: var(--sec); padding-bottom: var(--sec); }

.eyebrow {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

h2.display {
  font-family: var(--head);
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
h2.display em { font-style: normal; color: var(--muted2); }

h2.heading {
  font-family: var(--head-medium);
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p.body {
  font-family: var(--sans);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  color: var(--muted2);
  font-weight: 400;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-sec { background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.problem-sec::after {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,79,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow-gold { color: var(--gold); }
.gold-line { width: 50px; height: 2px; background: var(--gold); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 128px);
  align-items: center;
}
.problem-grid h2 { color: var(--white); margin-bottom: 32px; }
.problem-grid h2 em { color: rgba(246,244,240,0.6); }
.problem-grid p.body { color: rgba(246,244,240,0.82); margin-bottom: 22px; }
.problem-grid p.body:last-child { margin-bottom: 0; }

/* ============================================
   WHAT YOU CAN'T SEE
   ============================================ */
.cant-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(64px, 10vw, 160px);
  align-items: start;
}
.cant-inner h2 { margin-bottom: 32px; }
.cant-right { padding-top: 12px; }
.cant-right p.body { margin-bottom: 20px; }
.cant-right p.body:last-child { margin-bottom: 0; }
.cant-highlight {
  display: inline-block;
  font-family: var(--head-medium);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  color: var(--black);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 28px;
  line-height: 1.3;
}

/* ============================================
   CONFIGURATION INTELLIGENCE
   ============================================ */
.ci-intro {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 72px);
  border-left: 4px solid var(--gold);
  padding-left: 32px;
}
.ci-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ui);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 3px;
  transition: opacity 0.2s;
}
.ci-link:hover { opacity: 0.45; }

/* Dimension section — text left, cards right */
.dim-parallax {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}
.dim-left {
  position: sticky;
  top: 170px;
  align-self: start;
}
.ci-link {
  margin-top: 32px;
  display: inline-flex;
}
.dim-right {
  position: relative;
}
.dim-right-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dim-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(32px);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, opacity 0.6s ease;
  will-change: transform, opacity;
}
.dim-card.in { opacity: 1; transform: translateY(0); }
.dim-card:hover { box-shadow: 0 8px 32px rgba(22,21,20,0.06); transform: translateY(-2px); }
.dim-card-icon {
  font-size: 24px;
  line-height: 1;
  color: var(--gold);
}
.dim-card-label {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}
.dim-card-body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted2);
  font-weight: 400;
}
.dim-card-outcome {
  background: var(--gold);
  border-color: var(--gold);
}
.dim-card-outcome .dim-card-icon { color: var(--black); }
.dim-card-outcome .dim-card-label { color: var(--black); }
.dim-card-outcome .dim-card-body { color: rgba(22,21,20,0.65); }

/* ============================================
   APPROACH
   ============================================ */
.approach-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}
.approach-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
/* Timeline layout — alternating left/right */
.approach-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
/* Central vertical line */
.approach-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: rgba(22,21,20,0.08);
  transform: translateX(-50%);
}
.step {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 56px;
  width: 50%;
}
/* Odd steps (1,3): right side — dot, connector line, number, then content */
.step:nth-child(odd) {
  margin-left: 50%;
  padding-left: 120px;
  flex-direction: row;
}
.step:nth-child(odd) .step-n {
  position: absolute;
  left: 24px;
}
/* Even steps (2,4): left side — content, number, connector line, dot */
.step:nth-child(even) {
  margin-right: 50%;
  padding-right: 120px;
  flex-direction: row-reverse;
  text-align: right;
}
.step:nth-child(even) .step-n {
  position: absolute;
  right: 24px;
}
.step:last-child { padding-bottom: 0; }
.step-n {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 0;
  border: 1.5px solid rgba(22,21,20,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--head-medium);
  font-weight: 500;
  font-size: 28px;
  color: var(--gold);
  background: var(--white);
  z-index: 2;
}
/* Gold dot on center line */
.step:nth-child(odd)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: -4.5px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 3;
}
.step:nth-child(even)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -4.5px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 3;
}
/* Connector line from dot to number box */
.step:nth-child(odd)::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 4px;
  width: 20px;
  height: 1.5px;
  background: rgba(22,21,20,0.08);
}
.step:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 4px;
  width: 20px;
  height: 1.5px;
  background: rgba(22,21,20,0.08);
}
.step > div { flex: 1; }
.step-title {
  font-family: var(--head-medium);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
  padding-top: 4px;
}
.step-body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted2);
  font-weight: 400;
}

/* ============================================
   RESULT
   ============================================ */
.result-band { background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.result-band::after {
  content: '';
  position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,79,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.result-band h2.display { color: var(--white); }
.result-band h2.display em { color: rgba(246,244,240,0.6); }
.result-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.result-inner h2 { color: var(--white); margin-bottom: 20px; }
.result-inner h2 em { color: rgba(246,244,240,0.6); }
.result-intro { color: rgba(255,255,255,0.75); font-size: clamp(16px, 1.2vw, 18px); font-weight: 400; line-height: 1.7; }
.result-list { display: flex; flex-direction: column; }
.result-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.result-item:last-child { border-bottom: none; }
.result-tag {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,79,0.12);
  border: 1px solid rgba(201,168,79,0.2);
  padding: 5px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}
.result-content { flex: 1; }
.result-text { font-family: var(--sans); font-size: clamp(16px, 1.2vw, 19px); color: rgba(255,255,255,0.9); line-height: 1.6; font-weight: 400; }

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-radius: 0; background: transparent; overflow: visible; border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  background: transparent;
  border-radius: 0;
  margin: 0;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q-text { font-family: var(--head-medium); font-size: clamp(19px, 1.6vw, 24px); line-height: 1.3; font-weight: 500; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 0;
  border: 1.5px solid rgba(22,21,20,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, transform 0.35s, background 0.25s;
  overflow: visible;
}
.faq-icon svg { width: 11px; height: 11px; }
.faq-item.open .faq-icon { border-color: var(--gold); background: var(--gold); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 28px; font-size: clamp(16px, 1.2vw, 18px); line-height: 1.75; color: var(--muted2); font-weight: 400; }

/* ============================================
   CTA
   ============================================ */
.cta-wrap {
  padding: 0 var(--pad);
  padding-bottom: var(--sec);
  max-width: 1440px;
  margin: 0 auto;
}
.cta-inner {
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
/* Two-tone: dark header, light body */
.cta-header {
  background: var(--black);
  padding: clamp(48px, 6vw, 80px) clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.cta-header-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.06;
  top: -140px; right: -100px;
  pointer-events: none;
}
.cta-header h2 {
  color: var(--white);
  font-family: var(--head);
  font-size: clamp(26px, 3.2vw, 50px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 640px;
  position: relative;
}
.cta-header h2 em { font-style: normal; color: rgba(246,244,240,0.5); }
.cta-header-meta {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  position: relative;
}
.cta-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-meta-label {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.cta-meta-value {
  font-size: 15px;
  color: rgba(246,244,240,0.9);
  font-weight: 400;
}
.cta-meta-value a { color: rgba(246,244,240,0.9); text-decoration: none; transition: color 0.2s; }
.cta-meta-value a:hover { color: var(--white); }
/* Light body with form */
.cta-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  padding: clamp(36px, 5vw, 64px) clamp(48px, 7vw, 96px);
}
.cta-body-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-body-label {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cta-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  position: relative;
}
.cta-sub {
  font-size: 14px;
  color: var(--muted);
  text-align: right;
  line-height: 1.65;
  font-weight: 400;
}
.cta-sub a { color: var(--muted2); text-decoration: none; transition: color 0.2s; }
.cta-sub a:hover { color: var(--black); }

/* ============================================
   FOOTER
   ============================================ */
footer { border-top: 1px solid var(--border); padding: clamp(40px, 6vw, 72px) var(--pad); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-tagline {
  font-family: var(--head);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 300;
  color: var(--muted2);
}
.footer-r { display: flex; flex-direction: row; align-items: center; gap: 20px; }
.footer-r span {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-r a {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-r a:hover { color: var(--black); }

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .problem-grid { grid-template-columns: 1fr; }
  .cant-inner { grid-template-columns: 1fr; }

  .dim-parallax { grid-template-columns: 1fr; }
  .dim-left { position: static; }


  .dim-card { padding: 24px; }
  /* Timeline mobile: number left, text right, no line */
  .approach-steps::before { display: none; }
  .step,
  .step:nth-child(odd),
  .step:nth-child(even) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding-bottom: 40px;
  }
  .step:nth-child(odd) .step-n,
  .step:nth-child(even) .step-n {
    position: static;
    left: auto;
    right: auto;
    flex-shrink: 0;
  }
  .step-n { width: 52px; height: 52px; min-width: 52px; font-size: 18px; }
  .step:nth-child(odd)::after,
  .step:nth-child(even)::after { display: none; }
  .step:nth-child(odd)::before,
  .step:nth-child(even)::before { display: none; }
  .result-inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-header-meta { flex-direction: column; gap: 16px; }
  .cta-body-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-form-fields { grid-template-columns: 1fr; }
  .nav-r a:not(.cta) { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-r { flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 560px) {
  .hero-sec { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-top: 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-spacer { display: none; }
  .hero-h1 { margin-bottom: 20px; }
  .hero-sub { white-space: normal; margin-bottom: 28px; }
  .btn-ghost { margin-left: 0; margin-top: 12px; }
  .sec { padding-top: clamp(48px, 8vw, 80px); padding-bottom: clamp(48px, 8vw, 80px); }
  .cta-header { padding: 48px 28px; }
  .cta-header h2 { font-size: clamp(28px, 7vw, 40px); }
  .cta-body { padding: 36px 28px; }
  .cta-body-label { font-size: 15px; }
  .cta-actions .btn { font-size: 14px; padding: 16px 28px; }
  .cta-sub { font-size: 16px; }

  /* Footer bigger on mobile */
  footer { padding: clamp(48px, 8vw, 72px) var(--pad); }
  .footer-tagline { font-size: clamp(24px, 6vw, 36px); }
  .footer-r span,
  .footer-r a { font-size: 14px; }
  .footer-r { gap: 12px; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: 24px 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}
.cookie-btn {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.cookie-btn:hover { opacity: 0.85; }

/* ============================================
   DARK MODE PREP
   ============================================ */
[data-theme="dark"] {
  --black: #F6F4F0;
  --white: #161514;
  --mid:   #1E1D1B;
  --border: rgba(246,244,240,0.1);
  --muted:  rgba(246,244,240,0.45);
  --muted2: rgba(246,244,240,0.65);
}

/* ============================================
   CTA FORM
   ============================================ */
.cta-form-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), margin-top 0.5s cubic-bezier(0.16,1,0.3,1);
  margin-top: 0;
}
.cta-form-drawer.open {
  max-height: 500px;
  margin-top: 32px;
}
.cta-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.cta-field-full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--black);
  background: transparent;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form textarea { resize: vertical; min-height: 120px; }
