/* ============================================================
   Entinex — Shared Stylesheet
   entinex.com · Last updated March 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,ital,wght@8..60,0,300;8..60,0,400;8..60,0,600;8..60,0,700;8..60,1,300;8..60,1,400;8..60,1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── TOKENS ── */
:root {
  --teal:         #066f8c;
  --teal-mid:     #055f79;
  --teal-deep:    #044a60;
  --teal-dim:     #066f8c22;
  --teal-glow:    #066f8c44;
  --gold:         #ecce1a;
  --gold-warm:    #d4a832;
  --gold-dim:     #d4a83233;
  --gold-mid:     #d4a83288;
  --coral:        #c45a50;
  --coral-dim:    #c45a5033;
  --bg:           #080c10;
  --bg2:          #0c1118;
  --card:         #0f1520;
  --card2:        #131a26;
  --border:       #1a2230;
  --border-mid:   #1e2a3a;
  --border-light: #243040;
  --white:        #edf0f4;
  --off-white:    #c8cdd8;
  --text:         #8a95a8;
  --muted:        #7a8499;
  --dim:          #6a7490;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.35s ease;
}
.site-nav.scrolled {
  background: rgba(8,12,16,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 15px 48px;
}
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--off-white); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  padding: 9px 22px;
  border-radius: 5px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-mid) !important; color: var(--white) !important; }

/* ── LAYOUT ── */
.page-wrap { max-width: 800px; margin: 0 auto; padding: 0 48px; }
.page-wrap.wide { max-width: 960px; }
.page-wrap.narrow { max-width: 680px; }

/* ── PAGE HEADER ── */
.page-header { padding: 140px 0 72px; }
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  display: block;
}
.page-header h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.lede {
  font-size: 19px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
}
.lede strong { color: var(--off-white); font-weight: 500; }

/* ── SECTION ── */
.section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.section-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 20px;
}
.section h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.section h2.large {
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.02em;
}
.section p {
  font-size: 17px;
  line-height: 1.82;
  color: var(--text);
  margin-bottom: 20px;
}
.section p:last-child { margin-bottom: 0; }
.section p strong { color: var(--off-white); font-weight: 500; }

/* ── ANSWER BOX ── */
.answer-box {
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 2px solid var(--gold-warm);
  border-radius: 10px;
  padding: 32px 36px;
  margin-bottom: 48px;
}
.answer-box .box-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-warm);
  margin-bottom: 14px;
  display: block;
}
.answer-box p {
  font-size: 17px;
  color: var(--white);
  line-height: 1.78;
  font-weight: 300;
  margin: 0;
}
.answer-box p strong { font-weight: 600; color: var(--gold-warm); }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 2px solid var(--gold-warm);
  padding: 24px 32px;
  margin: 36px 0;
  background: var(--card);
  border-radius: 0 8px 8px 0;
}
.pull-quote p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.7;
  margin: 0;
}
.pull-quote p strong { font-style: normal; font-weight: 600; color: var(--gold-warm); }

/* ── TEAL CALLOUT ── */
.callout-teal {
  background: var(--card);
  border: 1px solid var(--border-mid);
  border-top: 2px solid var(--teal);
  border-radius: 0 0 10px 10px;
  padding: 32px 36px;
  margin: 36px 0;
}
.callout-teal .box-label { color: var(--teal); }
.callout-teal p { font-size: 17px; line-height: 1.8; color: var(--off-white); font-weight: 300; margin-bottom: 14px; }
.callout-teal p:last-child { margin-bottom: 0; }
.callout-teal p strong { color: var(--white); font-weight: 500; }

/* ── GOLD CALLOUT (flashback) ── */
.callout-gold {
  background: var(--card2);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold-warm);
  border-radius: 0 10px 10px 0;
  padding: 32px 36px;
  margin: 36px 0;
}
.callout-gold .box-label { color: var(--gold-warm); }
.callout-gold p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.72;
  margin: 0;
}
.callout-gold p strong { font-style: normal; font-weight: 600; color: var(--gold-warm); }

/* ── CORAL CALLOUT (operational debt / CSD) ── */
.callout-coral {
  background: linear-gradient(135deg, #1a0c0c 0%, #200f0f 100%);
  border: 2px solid var(--coral);
  border-radius: 10px;
  padding: 32px 36px;
  margin: 36px 0;
}
.callout-coral .box-label { color: var(--coral); }
.callout-coral .term {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  display: block;
}
.callout-coral p { font-size: 16px; color: var(--off-white); line-height: 1.78; font-weight: 300; margin-bottom: 14px; }
.callout-coral p:last-child { margin-bottom: 0; }
.callout-coral p strong { color: var(--white); font-weight: 500; }
.callout-coral p em { color: var(--coral); font-style: normal; font-weight: 500; }

/* ── CARD ── */
.card {
  background: var(--card);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  padding: 22px 24px;
}
.card .card-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

/* ── TWO-COLUMN GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

/* ── STEP LIST ── */
.step-list { position: relative; }
.step-list::before {
  content: '';
  position: absolute;
  left: 17px; top: 36px; bottom: 36px;
  width: 1px;
  background: var(--border-mid);
}
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 34px; height: 34px;
  background: var(--card2);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 2px;
}
.step-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 7px; }
.step p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ── CREDENTIAL LIST ── */
.credential-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.credential-list li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.credential-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold-warm); font-weight: 500; }
.credential-list li em { color: var(--dim); font-style: italic; font-size: 13px; }

/* ── SIGNAL STRIP ── */
.signal-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 48px;
  display: flex;
  gap: 52px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  max-width: 940px; 
  margin: 0 auto;
}
.signal-strip::-webkit-scrollbar { display: none; }
.signal-item { flex-shrink: 0; }
.signal-item .sig-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; display: block; }
.signal-item .sig-value { font-size: 13px; color: var(--off-white); font-weight: 500; }

/* ── COMPARISON TABLE ── */
.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--border-mid); }
table.ct { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 680px; }
table.ct thead tr { background: var(--card2); border-bottom: 2px solid var(--border-light); }
table.ct th { text-align: left; padding: 14px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
table.ct th.hl { color: var(--gold-warm); background: linear-gradient(180deg, #1a150000 0%, var(--card2) 100%); }
table.ct td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; line-height: 1.55; background: var(--card); }
table.ct td.dim-row { font-weight: 600; color: var(--off-white); font-size: 13px; }
table.ct td.hl { color: var(--white); font-weight: 500; background: linear-gradient(180deg, #12100200 0%, #d4a83210 100%); border-left: 1px solid var(--gold-dim); border-right: 1px solid var(--gold-dim); }
table.ct td.hl.key { color: var(--gold-warm); font-weight: 600; background: linear-gradient(180deg, #d4a83218 0%, #d4a83208 100%); }
table.ct tr:last-child td { border-bottom: none; }
table.ct tr.key-row td { background: var(--bg2); }
table.ct tr.key-row td.hl.key { background: linear-gradient(180deg, #d4a83222 0%, #d4a83212 100%); }
.key-badge { display: inline-block; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); background: var(--teal-dim); padding: 2px 6px; border-radius: 3px; margin-left: 6px; vertical-align: middle; }

/* ── FAQ ── */
.faq-section { padding: 72px 0; border-top: 1px solid var(--border); }
.faq-section h3 { font-family: 'Source Serif 4', Georgia, serif; font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 36px; letter-spacing: -0.01em; }
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item .faq-q { font-size: 16px; font-weight: 600; color: var(--off-white); margin-bottom: 10px; line-height: 1.4; }
.faq-item .faq-a { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ── CTA SECTION ── */
.cta-section { padding: 80px 0; border-top: 1px solid var(--border); text-align: center; }
.cta-section h2 { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.15; }
.cta-section h2 em { font-style: italic; color: var(--gold-warm); }
.cta-section .cta-sub { font-size: 17px; color: var(--muted); max-width: 500px; margin: 0 auto 36px; line-height: 1.7; font-weight: 300; }
.cta-note { margin-top: 18px; font-size: 13px; color: var(--dim); font-style: italic; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost::after { content: '→'; color: var(--gold-warm); }
.btn-ghost:hover { color: var(--off-white); }

/* ── DISAMBIGUATION ── */
.disambiguation { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 16px 20px; margin-top: 40px; }
.disambiguation p { font-size: 13px; color: var(--dim); font-style: italic; line-height: 1.6; margin: 0; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 48px;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.footer-brand { font-family: 'Source Serif 4', Georgia, serif; font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.footer-brand strong { color: var(--off-white); }
.footer-legal { font-size: 12px; color: var(--dim); line-height: 1.6; max-width: 480px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer-nav a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--off-white); }
.footer-social { display: flex; gap: 16px; margin-top: 12px; justify-content: flex-end; }
.footer-social a { color: var(--dim); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-social a:hover { color: var(--muted); }

/* ── FORM STYLES ── */
.intake-form { display: flex; flex-direction: column; gap: 32px; }
.form-section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal); padding-bottom: 12px; border-bottom: 1px solid var(--border); display: block; }
.field-group { display: flex; flex-direction: column; gap: 7px; }
.field-group label { font-size: 13px; font-weight: 600; color: var(--off-white); letter-spacing: 0.02em; line-height: 1.4; }
.field-hint { font-size: 13px; color: var(--muted); line-height: 1.55; }
.field-group input,
.field-group select,
.field-group textarea {
  background: var(--card);
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  color: var(--white);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--dim); }
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }
.field-group textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6478' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.field-group select option { background: var(--card2); color: var(--white); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.phone-row { display: grid; grid-template-columns: 160px 1fr 130px; gap: 10px; }
.field-divider { height: 1px; background: var(--border); }
.goals-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.goal-item { display: flex; flex-direction: column; gap: 6px; }
.goal-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); display: block; }
.goal-item textarea { min-height: 90px; font-size: 14px; }
.submit-section { display: flex; flex-direction: column; gap: 14px; padding-top: 8px; }
.btn-submit { background: var(--teal); color: var(--white); font-family: 'DM Sans', -apple-system, sans-serif; font-size: 16px; font-weight: 600; padding: 16px 32px; border-radius: 6px; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; letter-spacing: 0.01em; width: 100%; }
.btn-submit:hover { background: var(--teal-mid); transform: translateY(-1px); }
.submit-note { font-size: 13px; color: var(--dim); text-align: center; line-height: 1.6; font-style: italic; }

/* ── OPENING STATEMENT (form) ── */
.opening { background: var(--card2); border: 1px solid var(--border-mid); border-left: 3px solid var(--teal); border-radius: 0 10px 10px 0; padding: 28px 32px; margin-bottom: 52px; }
.opening p { font-size: 17px; color: var(--off-white); line-height: 1.75; font-weight: 300; margin-bottom: 12px; }
.opening p:last-child { margin-bottom: 0; }
.opening p strong { color: var(--white); font-weight: 500; }
.opening p em { color: var(--gold-warm); font-style: italic; }

/* ── HERO (homepage only) ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 140px 48px 100px; max-width: 940px; margin: 0 auto; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 40px; opacity: 0; animation: fadeUp 0.6s ease 0.1s forwards; display: block; }
.hero-setup { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(17px, 2vw, 21px); font-weight: 300; font-style: italic; color: var(--text); line-height: 1.75; max-width: 720px; margin-bottom: 44px; opacity: 0; animation: fadeUp 0.6s ease 0.25s forwards; }
.hero-setup strong { font-style: normal; font-weight: 400; color: var(--off-white); }
.hero-tagline { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(38px, 6vw, 68px); font-weight: 700; color: var(--white); line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.6s ease 0.55s forwards; }
.hero-tagline .accent { color: var(--gold-warm); }
.hero-follow { font-size: 18px; font-weight: 300; color: var(--text); line-height: 1.75; max-width: 640px; margin-bottom: 52px; opacity: 0; animation: fadeUp 0.6s ease 0.75s forwards; }
.hero-follow em { font-style: italic; color: var(--off-white); }
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.6s ease 0.9s forwards; }

/* ── TWO-SIDES (Page 5) ── */
.two-sides { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 40px 0; }
.side-card { background: var(--card); border: 1px solid var(--border-mid); border-radius: 8px; padding: 24px 26px; }
.side-card .side-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; display: block; }
.side-card.researcher .side-label { color: var(--teal); }
.side-card.ceo .side-label { color: var(--gold-warm); }
.side-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }
.side-card p strong { color: var(--off-white); font-weight: 500; }

/* ── ROLE LIST (Page 5) ── */
.role-list { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.role-item { background: var(--card); border: 1px solid var(--border-mid); border-radius: 8px; padding: 18px 22px; display: flex; gap: 16px; align-items: flex-start; }
.role-icon { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); background: var(--teal-dim); padding: 3px 8px; border-radius: 3px; white-space: nowrap; margin-top: 2px; flex-shrink: 0; }
.role-title { font-size: 15px; font-weight: 600; color: var(--off-white); margin-bottom: 4px; }
.role-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── CONTRAST GRID (Page 6) ── */
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 40px 0; }
.contrast-card { background: var(--card); border: 1px solid var(--border-mid); border-radius: 8px; padding: 22px 24px; }
.contrast-card.incumbent { border-top: 2px solid var(--muted); }
.contrast-card.insurgent { border-top: 2px solid var(--teal); }
.contrast-card .c-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; display: block; }
.contrast-card.incumbent .c-label { color: var(--muted); }
.contrast-card.insurgent .c-label { color: var(--teal); }
.contrast-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.contrast-card ul li { font-size: 14px; color: var(--muted); padding-left: 14px; position: relative; line-height: 1.55; }
.contrast-card ul li::before { content: '·'; position: absolute; left: 0; font-weight: 700; }
.contrast-card.incumbent ul li::before { color: var(--muted); }
.contrast-card.insurgent ul li::before { color: var(--teal); }
.contrast-card.insurgent ul li { color: var(--off-white); }

/* ── SPEED PIVOT (Page 6) ── */
.speed-pivot { background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%); border: 1px solid var(--border-light); border-top: 2px solid var(--teal); border-radius: 0 0 10px 10px; padding: 36px 40px; margin: 40px 0; }
.pivot-line { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(20px, 2.8vw, 26px); font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 20px; letter-spacing: -0.01em; display: block; }

/* ── ABOUT GRID (Page 2) ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* ── STORY PLACEHOLDER (Page 2) ── */
.story-placeholder { background: var(--card2); border: 1px dashed var(--border-light); border-radius: 10px; padding: 32px 36px; margin: 36px 0; }
.placeholder-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); margin-bottom: 12px; display: block; }
.story-placeholder p { font-size: 15px; color: var(--dim); line-height: 1.7; font-style: italic; margin: 0; }

/* ── COSTS GRID (Page 3) ── */
.costs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 36px 0; }
.cost-card { background: var(--card); border: 1px solid var(--border-mid); border-radius: 8px; padding: 20px 22px; }
.cost-card.visible { border-top: 2px solid var(--teal); }
.cost-card.hidden { border-top: 2px solid var(--coral); }
.cost-card .cost-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; display: block; }
.cost-card.visible .cost-label { color: var(--teal); }
.cost-card.hidden .cost-label { color: var(--coral); }
.cost-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.cost-card ul li { font-size: 14px; color: var(--muted); padding-left: 14px; position: relative; line-height: 1.5; }
.cost-card ul li::before { content: '·'; position: absolute; left: 0; font-weight: 700; }
.cost-card.visible ul li::before { color: var(--teal); }
.cost-card.hidden ul li::before { color: var(--coral); }
.costs-note { font-size: 15px; color: var(--muted); line-height: 1.7; font-style: italic; text-align: center; margin-top: 16px; }
.costs-note strong { color: var(--off-white); font-style: normal; font-weight: 500; }

/* ── THANK YOU / 404 ── */
.message-page { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 48px; }
.message-page h1 { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: var(--white); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 24px; }
.message-page h1 em { font-style: italic; color: var(--gold-warm); }
.message-page p { font-size: 18px; color: var(--text); line-height: 1.75; max-width: 520px; margin-bottom: 16px; font-weight: 300; }
.message-page p strong { color: var(--off-white); font-weight: 500; }
.message-page .actions { display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
.hamburger { display: none; }
@media (max-width: 768px) {
  .site-nav { padding: 16px 20px; }
  .site-nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .page-wrap { padding: 0 20px; }
  .page-header { padding: 110px 0 52px; }
  .hero { padding: 110px 20px 72px; }
  .signal-strip { padding: 18px 20px; gap: 32px; }
  .grid-2, .costs-grid, .contrast-grid, .two-sides, .about-grid { grid-template-columns: 1fr; }
  .grid-3, .goals-grid { grid-template-columns: 1fr; }
  .field-row, .phone-row { grid-template-columns: 1fr; }
  .site-footer { padding: 28px 20px; grid-template-columns: 1fr; }
  .footer-nav { align-items: flex-start; }
  .footer-social { justify-content: flex-start; }
  .opening { padding: 20px 20px; }
  .callout-gold, .callout-teal, .callout-coral, .speed-pivot { padding: 24px 20px; }
  .answer-box { padding: 24px 20px; }
  .pull-quote { padding: 20px 20px; }
  .story-placeholder { padding: 24px 20px; }
  .cta-section { padding: 60px 0; }
  .faq-section { padding: 52px 0; }
  .section { padding: 52px 0; }
  .message-page { padding: 120px 20px 60px; }
  .puppies-grid { grid-template-columns: 1fr !important; }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--off-white);
    transition: all 0.3s ease;
  }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,12,16,0.97);
    z-index: 200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    font-family: 'Source Serif 4', Georgia, serif;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold-warm); }
  .mobile-menu .close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
   }
}

@media print {
  .site-nav, .hero-actions, .cta-section { display: none; }
  body { background: #fff; color: #222; }
  .hero-tagline, .page-header h1, .section h2, .faq-item .faq-q { color: #111; }
  .answer-box { border-color: #999; background: #f5f5f0; }
  .answer-box p { color: #111; }
}
