:root {
  --bg: #faf8f5;
  --bg-alt: #f2ede6;
  --fg: #1a2744;
  --fg-muted: #5c6a85;
  --accent: #c8933a;
  --accent-dark: #a6742a;
  --white: #ffffff;
  --border: #e2d9cc;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.site-header nav {
  display: flex;
  gap: 28px;
}
.site-header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  background: var(--bg);
  padding: 80px 32px 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-cta {
  display: inline-block;
  background: var(--fg);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta:hover { background: #2a3a5e; }

/* Hero card + badge */
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 4px 32px rgba(26, 39, 68, 0.08);
}
.card-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 6px;
}
.card-attr {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.card-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(200, 147, 58, 0.35);
}
.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

/* ── PROOF ── */
.proof {
  padding: 32px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.proof-inner { max-width: 1160px; margin: 0 auto; }
.proof-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 20px;
}
.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.logo-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
}

/* ── SECTION COMMON ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 48px;
}

/* ── SERVICES ── */
.services { padding: 80px 32px; background: var(--bg); }
.services-inner { max-width: 1160px; margin: 0 auto; }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  position: relative;
  transition: box-shadow 0.2s;
}
.tier:hover { box-shadow: 0 8px 32px rgba(26, 39, 68, 0.08); }
.tier--featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(200, 147, 58, 0.12);
}
.tier--premium { background: var(--fg); color: var(--white); border-color: var(--fg); }
.tier-eyebrow {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}
.tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tier-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.tier--premium .tier-tagline { color: rgba(255,255,255,0.65); }
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
}
.tier--premium .tier-price { color: var(--white); }
.tier-period {
  font-size: 0.9rem;
  font-weight: 400;
  font-family: 'Source Sans 3', sans-serif;
}
.tier-features {
  list-style: none;
  margin-bottom: 28px;
}
.tier-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.tier--premium .tier-features li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.12); }
.tier-features li:last-child { border-bottom: none; }
.tier-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.tier-link:hover { color: var(--accent-dark); }
.tier--premium .tier-link { color: var(--accent); }

/* ── PROCESS ── */
.process { padding: 80px 32px; background: var(--bg-alt); }
.process-inner { max-width: 1160px; margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}
.step {
  padding: 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step:nth-child(3n) { border-right: none; }
.step:nth-child(n+4) { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.5;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── GUARANTEE ── */
.guarantee { padding: 80px 32px; background: var(--fg); }
.guarantee-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.guarantee-icon { margin-bottom: 24px; }
.guarantee-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.guarantee-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 12px;
}
.guarantee-context {
  font-size: 0.9rem !important;
  color: var(--accent) !important;
  font-weight: 500;
}

/* ── CLOSING ── */
.closing { padding: 96px 32px; background: var(--bg); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.25;
}
.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.closing-cta:hover { background: var(--accent-dark); }

/* ── FOOTER ── */
.site-footer {
  background: var(--fg);
  color: var(--white);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-header nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .tiers { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; }
  .step:nth-child(2n) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ── NAV CTA ── */
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; color: var(--white) !important; }

/* ── ARTICLE NAV LINK ── */
.article-nav-link {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--accent) !important;
}

/* ── HERO ARTICLE CALLOUT ── */
.hero-article-callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 24px;
  transition: border-color 0.2s, background 0.2s;
}
.hero-article-callout:hover {
  border-color: var(--accent);
  background: rgba(200,147,58,0.06);
  color: var(--fg);
}
.callout-icon { font-size: 1rem; }

/* ── INTAKE SECTION ── */
.intake-section {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.intake-section--hero { background: var(--bg-alt); }
.intake-section--bottom { background: var(--bg); }
.intake-section-inner {
  max-width: 820px;
  margin: 0 auto;
}
.intake-section-header { margin-bottom: 40px; }
.intake-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.intake-section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 580px;
}

/* ── INTAKE FORM ── */
.intake-form-wrap { width: 100%; }
.intake-form { display: flex; flex-direction: column; gap: 20px; }
.intake-honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.intake-row { display: flex; flex-direction: column; gap: 20px; }
.intake-row--half { flex-direction: row; gap: 20px; }
.intake-row--half .intake-field { flex: 1; min-width: 0; }

.intake-field { display: flex; flex-direction: column; gap: 6px; }
.intake-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.intake-req { color: var(--accent); }
.intake-optional { font-weight: 400; color: var(--fg-muted); font-size: 0.8rem; }

.intake-field input,
.intake-field select,
.intake-field textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--fg);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.intake-field input::placeholder,
.intake-field textarea::placeholder { color: var(--fg-muted); opacity: 0.65; }
.intake-field input:focus,
.intake-field select:focus,
.intake-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,147,58,0.15);
}
.intake-field textarea { resize: vertical; min-height: 100px; }
.intake-field--error input,
.intake-field--error select,
.intake-field--error textarea { border-color: #c0392b; }

.intake-error {
  font-size: 0.8rem;
  color: #c0392b;
  display: none;
}

.intake-submit-row { margin-top: 4px; }
.intake-submit {
  background: var(--fg);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.intake-submit:hover { background: #2a3a5e; }
.intake-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.intake-success { padding: 32px; text-align: center; }
.intake-success-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.intake-success-inner p { font-size: 1.05rem; color: var(--fg); }
.intake-success-sub { font-size: 0.9rem; color: var(--fg-muted); }

@media (max-width: 640px) {
  .intake-row--half { flex-direction: column; }
  .intake-section { padding: 60px 20px; }
}