/* ==========================================================================
   Debi Web Works — V1
   Single stylesheet. Vanilla CSS, no build step, no dependencies.
   Design system: ink / warm paper / honey / spruce. Fraunces + Inter.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ink:      #1C2321;   /* primary text, headers            */
  --paper:    #FAF7F1;   /* page background                  */
  --surface:  #FFFFFF;   /* cards lifted above paper         */
  --honey:    #A25E17;   /* primary accent — AA (4.5:1) as text on white/paper */
  --honey-bright: #C97B29; /* decorative honey — LARGE text/shapes only (3:1) */
  --spruce:   #2E4739;   /* secondary accent, footer, depth  */
  --stone:    #5C6159;   /* muted captions/borders (AA)      */
  --hairline: #E4DED2;   /* soft borders on paper            */
  --hairline-strong: #CFC7B6;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Scale (fluid) */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.45rem, 1.28rem + 0.85vw, 2rem);
  --step-3:  clamp(1.75rem, 1.45rem + 1.5vw, 2.75rem);
  --step-4:  clamp(2.1rem, 1.6rem + 2.5vw, 3.75rem);

  /* Space */
  --space-xs: 0.5rem;
  --space-sm: 0.85rem;
  --space-md: 1.35rem;
  --space-lg: 2.25rem;
  --space-xl: 3.5rem;
  --space-2xl: 5.5rem;

  /* Structure */
  --max: 1150px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(28,35,33,.06), 0 2px 6px rgba(28,35,33,.05);
  --shadow-md: 0 6px 18px rgba(28,35,33,.08), 0 2px 6px rgba(28,35,33,.05);
  --shadow-lg: 0 18px 45px rgba(28,35,33,.13), 0 6px 14px rgba(28,35,33,.07);
  --ring: 3px solid var(--honey);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--honey); text-underline-offset: 3px; }
a:hover { color: var(--spruce); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-sm);
  font-optical-sizing: auto;
}
h1 { font-size: var(--step-4); font-weight: 640; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p  { margin: 0 0 var(--space-md); }
ul { margin: 0; padding: 0; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 0; top: -100%;
  background: var(--ink); color: #fff;
  padding: .7rem 1.1rem; z-index: 200; border-radius: 0 0 8px 0;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 0; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: var(--ring);
  outline-offset: 2px;
  border-radius: 4px;
}
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
/* Anchored jumps must clear the sticky header */
:where(#who, #services, #how, #pricing, #why, #proof, #domain, #faq, #contact) { scroll-margin-top: 84px; }
.section { padding-block: var(--space-2xl); }
.section--tight { padding-block: var(--space-xl); }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--honey);
  margin: 0 0 var(--space-sm);
}
.section-head { max-width: 60ch; margin-bottom: var(--space-lg); }
.section-head p { color: var(--stone); font-size: var(--step-1); margin-bottom: 0; }
.lede { font-size: var(--step-1); color: var(--stone); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: var(--step-0);
  padding: .8rem 1.5rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  line-height: 1.2;
}
.btn--primary { background: var(--honey); color: #fff !important; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #854d12; color: #fff !important; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--ink) !important; }
.btn--light:hover { background: #fff; color: var(--ink) !important; transform: translateY(-2px); }
.btn--lg { padding: .95rem 1.9rem; font-size: var(--step-1); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--hairline); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); min-height: 68px; }

.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 640; font-size: 1.28rem; letter-spacing: -0.015em; }
.brand__mark { width: 30px; height: 30px; flex: 0 0 auto; }
.brand__name b { color: var(--honey); font-weight: 640; }

.nav__links { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.4rem); list-style: none; }
.nav__links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: var(--step-0); padding: .35rem .1rem; position: relative; }
.nav__links a::after { content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px; background: var(--honey); transition: right .22s ease; }
.nav__links a:hover::after, .nav__links a:focus-visible::after { right: 0; }
.nav__cta { margin-left: .3rem; }

.nav__toggle {
  display: none; background: none; border: 2px solid var(--hairline-strong);
  border-radius: 10px; padding: .5rem; cursor: pointer; color: var(--ink);
}
.nav__toggle svg { width: 24px; height: 24px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 8vw, 6rem) clamp(3.5rem, 9vw, 6.5rem); }
.hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(201,123,41,.14), transparent 60%),
    radial-gradient(55% 50% at 8% 92%, rgba(46,71,57,.10), transparent 62%);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__offer-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--surface); border: 1px solid var(--hairline-strong);
  color: var(--ink); font-size: var(--step--1); font-weight: 600;
  padding: .4rem .85rem; border-radius: 999px; margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.hero__offer-chip .dot { width:8px; height:8px; border-radius:50%; background: var(--honey); flex:0 0 auto; }
.hero h1 { margin-bottom: var(--space-md); }
.hero h1 em { font-style: italic; color: var(--honey); font-weight: 600; }
.hero__sub { font-size: var(--step-1); color: var(--stone); max-width: 40ch; margin-bottom: var(--space-lg); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* Hero card — a small "site preview" motif that shows craft */
.hero__card {
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--hairline);
}
.hero__card-bar { display:flex; align-items:center; gap:6px; padding:.7rem .9rem; background: var(--paper); border-bottom:1px solid var(--hairline); }
.hero__card-bar span { width:10px; height:10px; border-radius:50%; background: var(--hairline-strong); }
.hero__card-bar .url { margin-left:.5rem; font-size:.72rem; color: var(--stone); font-family: var(--font-body); }
.hero__card-body { padding: var(--space-md); }
.hero__card-body .ph { border-radius: 8px; background: linear-gradient(100deg, var(--paper), #efe9dd); }
.hero__card-body .ph--img { height: 92px; margin-bottom: .8rem; background: linear-gradient(120deg, rgba(185,108,30,.18), rgba(46,71,57,.16)); }
.hero__card-body .ph--h { height: 16px; width: 72%; margin-bottom: .55rem; }
.hero__card-body .ph--l { height: 10px; margin-bottom: .45rem; }
.hero__card-body .ph--l.short { width: 55%; }
.hero__card-body .ph--btn { height: 30px; width: 120px; margin-top: .9rem; background: var(--honey); border-radius: 999px; }

/* ---------- "Who this is for" ---------- */
.audience { background: var(--surface); border-block: 1px solid var(--hairline); }
.audience__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--space-sm) var(--space-md); margin-top: var(--space-lg); }
.audience__item {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 500; color: var(--ink); padding: .55rem 0;
}
.audience__item svg { width: 20px; height: 20px; color: var(--honey); flex:0 0 auto; }

/* ---------- Feature cards ("What you get") ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: var(--space-md); }
.card {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--hairline-strong); }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: var(--space-sm);
  background: color-mix(in srgb, var(--honey) 14%, var(--surface));
  color: var(--honey);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--stone); margin-bottom: 0; font-size: var(--step-0); }
.card small { display:block; margin-top: .7rem; color: var(--stone); font-size: var(--step--1); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-md); counter-reset: step; margin-top: var(--space-lg); }
.step { position: relative; padding: var(--space-lg) var(--space-md) var(--space-md); }
.step__num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600;
  color: var(--honey); line-height: 1; display: block; margin-bottom: .5rem;
}
.step h3 { font-size: var(--step-1); }
.step p { color: var(--stone); margin-bottom: 0; font-size: var(--step-0); }
.step:not(:last-child)::after {
  content:""; position:absolute; top: 2.6rem; right: -.6rem; width: 1.2rem; height: 2px;
  background: var(--hairline-strong);
}

/* ---------- Pricing — the "written estimate" signature ---------- */
.pricing { background: var(--spruce); color: var(--paper); }
.pricing .eyebrow { color: var(--honey-bright); }
.pricing h2 { color: #fff; }
.pricing .section-head p { color: color-mix(in srgb, var(--paper) 80%, transparent); }

.estimate {
  background: var(--surface); color: var(--ink);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  max-width: 620px; margin: var(--space-lg) auto 0; overflow: hidden;
  border: 1px solid var(--hairline);
}
.estimate__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  border-bottom: 2px solid var(--ink);
}
.estimate__title { font-family: var(--font-display); font-size: var(--step-2); font-weight: 600; line-height: 1.1; }
.estimate__title span { display:block; font-size: var(--step--1); font-family: var(--font-body); font-weight: 600; letter-spacing:.12em; text-transform: uppercase; color: var(--stone); margin-bottom:.3rem; }
.estimate__stamp {
  flex: 0 0 auto; transform: rotate(4deg);
  border: 2px solid var(--honey); color: var(--honey);
  border-radius: 8px; padding: .35rem .6rem; text-align: center;
  font-weight: 700; font-size: var(--step--1); letter-spacing: .06em; line-height: 1.15;
  text-transform: uppercase;
}
.estimate__body { padding: var(--space-md) var(--space-lg) var(--space-lg); }
.line {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px dashed var(--hairline-strong);
}
.line:last-of-type { border-bottom: none; }
.line__label { font-weight: 500; }
.line__label small { display:block; color: var(--stone); font-weight:400; font-size: var(--step--1); }
.line__price { font-variant-numeric: tabular-nums; white-space: nowrap; text-align: right; }
.price-was { color: var(--stone); text-decoration: line-through; text-decoration-color: var(--honey); font-size: var(--step-0); margin-right: .4rem; }
.price-now { font-family: var(--font-display); font-weight: 640; font-size: var(--step-2); color: var(--ink); }
.price-mo { font-family: var(--font-display); font-weight: 640; font-size: var(--step-2); color: var(--ink); }
.price-unit { font-family: var(--font-body); font-size: var(--step--1); color: var(--stone); font-weight: 500; }

.estimate__term {
  margin-top: var(--space-md); background: var(--paper);
  border: 1px solid var(--hairline); border-radius: 10px;
  padding: .8rem 1rem; font-size: var(--step--1); color: var(--stone);
  display:flex; gap:.6rem; align-items:flex-start;
}
.estimate__term svg { width:18px; height:18px; color: var(--spruce); flex:0 0 auto; margin-top:2px; }

.included { margin-top: var(--space-md); }
.included h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; letter-spacing:.04em; text-transform: uppercase; color: var(--stone); margin-bottom:.7rem; }
.included ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .45rem 1rem; }
.included li { display:flex; gap:.5rem; align-items:flex-start; font-size: var(--step-0); }
.included li svg { width:18px; height:18px; color: var(--honey); flex:0 0 auto; margin-top:4px; }
.estimate__cta { margin-top: var(--space-lg); }
.estimate__foot { margin-top: var(--space-md); font-size: var(--step--1); color: var(--stone); text-align:center; }
.estimate__foot a { font-weight: 600; }

/* ---------- Why Debi ---------- */
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: var(--space-md); margin-top: var(--space-lg); }
.why__item { padding: var(--space-md); border-left: 3px solid var(--honey); }
.why__item h3 { font-size: var(--step-1); margin-bottom:.4rem; }
.why__item p { color: var(--stone); margin-bottom:0; font-size: var(--step-0); }

/* ---------- Proof ---------- */
.proof { background: var(--surface); border-block: 1px solid var(--hairline); }
.proof__card {
  display:grid; grid-template-columns: auto 1fr; gap: var(--space-lg);
  align-items:center; background: var(--paper);
  border:1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: var(--space-lg); margin-top: var(--space-lg);
}
.proof__badge {
  width: 92px; height: 92px; border-radius: 20px; flex:0 0 auto;
  background: var(--ink); color: var(--paper); display:grid; place-items:center;
  font-family: var(--font-display); font-weight:640; font-size:2rem;
}
.proof__card p { margin-bottom:.6rem; }
.proof__card .who { font-weight:600; color: var(--ink); }
.proof__card .who span { display:block; color: var(--stone); font-weight:400; font-size: var(--step--1); }
.proof__note { margin-top: var(--space-md); color: var(--stone); font-size: var(--step-0); max-width: 62ch; }
.proof__future {
  margin-top: var(--space-lg); border: 1px dashed var(--hairline-strong);
  border-radius: var(--radius); padding: var(--space-md); color: var(--stone);
  font-size: var(--step--1); text-align:center;
}

/* ---------- Domain help ---------- */
.domain__panel {
  display:grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-lg); align-items:center;
  background: var(--surface); border:1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: var(--space-lg); margin-top: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.domain__panel h3 { font-size: var(--step-2); }
.domain__panel p { color: var(--stone); }
.domain__points { list-style:none; margin-top: var(--space-sm); display:grid; gap:.5rem; }
.domain__points li { display:flex; gap:.55rem; align-items:flex-start; font-size: var(--step-0); }
.domain__points li svg { width:18px; height:18px; color: var(--honey); flex:0 0 auto; margin-top:4px; }
.domain__aside {
  background: var(--paper); border:1px solid var(--hairline); border-radius: var(--radius);
  padding: var(--space-md); text-align:center;
}
.domain__aside .yours { font-family: var(--font-display); font-size: var(--step-1); font-weight:600; color: var(--spruce); margin-bottom:.3rem; }

/* ---------- FAQ ---------- */
.faq__list { margin-top: var(--space-lg); border-top: 1px solid var(--hairline); max-width: 800px; }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap: var(--space-md);
  padding: var(--space-md) 0; font-family: var(--font-display); font-weight:600;
  font-size: var(--step-1); color: var(--ink);
}
.faq__q .chev { width:22px; height:22px; flex:0 0 auto; color: var(--honey); transition: transform .25s ease; }
.faq__q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 0 var(--space-md); color: var(--stone); max-width: 68ch; }
.faq__a-inner p:last-child { margin-bottom:0; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--ink); color: var(--paper); text-align:center; }
.final-cta h2 { color:#fff; max-width: 20ch; margin-inline:auto; }
.final-cta p { color: color-mix(in srgb, var(--paper) 78%, transparent); max-width: 52ch; margin-inline:auto; font-size: var(--step-1); }
.final-cta .btn { margin-top: var(--space-md); }

/* ---------- Contact form ---------- */
.contact__grid { display:grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-xl); align-items:start; }
.contact__intro p { color: var(--stone); }
.contact__intro .lede { color: var(--ink); }
.contact__reassure { list-style:none; margin-top: var(--space-md); display:grid; gap:.55rem; }
.contact__reassure li { display:flex; gap:.55rem; align-items:flex-start; color: var(--stone); font-size: var(--step-0); }
.contact__reassure svg { width:18px; height:18px; color: var(--honey); flex:0 0 auto; margin-top:4px; }

.form {
  background: var(--surface); border:1px solid var(--hairline);
  border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-md);
}
.field { margin-bottom: var(--space-md); }
.field:last-of-type { margin-bottom: 0; }
.field label { display:block; font-weight:600; font-size: var(--step-0); margin-bottom:.4rem; }
.field .req { color: var(--honey); }
.field .opt { color: var(--stone); font-weight:400; font-size: var(--step--1); }
.field input, .field select, .field textarea {
  width:100%; font-family: var(--font-body); font-size: var(--step-0); color: var(--ink);
  background: var(--paper); border:1px solid var(--hairline-strong); border-radius:10px;
  padding: .75rem .85rem; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--stone); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  border-color: var(--honey); box-shadow: 0 0 0 3px rgba(162,94,23,.22); outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.form__row { display:grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form__actions { margin-top: var(--space-lg); }
.form__demo-note { margin-top: var(--space-sm); font-size: var(--step--1); color: var(--stone); text-align:center; }

/* Honeypot — hidden from humans, present for future spam guard */
.hp-field { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* Demo success state */
.form__success {
  display:none; text-align:center; padding: var(--space-md) 0;
}
.form__success.is-visible { display:block; }
.form__success .check {
  width:56px; height:56px; margin: 0 auto var(--space-sm);
  border-radius:50%; background: color-mix(in srgb, var(--spruce) 14%, var(--surface));
  color: var(--spruce); display:grid; place-items:center;
}
.form__success .check svg { width:30px; height:30px; }
.form__success h3 { font-size: var(--step-1); }
.form__success p { color: var(--stone); margin-bottom: var(--space-md); }
.form__demo-flag {
  display:inline-block; margin-top:.4rem; font-size: var(--step--1); font-weight:600;
  color: var(--honey); background: color-mix(in srgb, var(--honey) 12%, var(--surface));
  border:1px solid color-mix(in srgb, var(--honey) 35%, transparent);
  padding:.3rem .7rem; border-radius:999px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--spruce); color: color-mix(in srgb, var(--paper) 85%, transparent); padding-block: var(--space-xl) var(--space-lg); }
.site-footer a { color: var(--paper); }
.footer__top { display:grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-lg); padding-bottom: var(--space-lg); border-bottom: 1px solid rgba(250,247,241,.16); }
.footer__brand .brand { color: var(--paper); }
.footer__brand .brand b { color: #EDB068; }
.footer__brand p { color: color-mix(in srgb, var(--paper) 72%, transparent); max-width: 40ch; margin-top:.6rem; font-size: var(--step-0); }
.footer__nav { display:flex; flex-direction:column; gap:.5rem; }
.footer__nav h4 { color: var(--paper); font-family: var(--font-body); font-size: var(--step--1); letter-spacing:.1em; text-transform:uppercase; margin:0 0 .4rem; }
.footer__nav a { text-decoration:none; font-size: var(--step-0); opacity:.9; }
.footer__nav a:hover { opacity:1; text-decoration: underline; }
.footer__bottom { display:flex; flex-wrap:wrap; gap: var(--space-sm) var(--space-lg); justify-content:space-between; align-items:center; padding-top: var(--space-md); font-size: var(--step--1); }
.footer__bottom .placeholder { color: #EDB068; font-weight:600; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { max-width: 440px; }
  .contact__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .domain__panel { grid-template-columns: 1fr; }
  .proof__card { grid-template-columns: 1fr; text-align: left; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-lg); padding: var(--space-sm) 0;
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .28s ease, visibility .28s;
  }
  .nav__links.is-open { max-height: 80vh; visibility: visible; }
  .nav__links li { border-bottom: 1px solid var(--hairline); }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links a { display:block; padding: .9rem clamp(1.1rem,4vw,2rem); font-size: var(--step-1); }
  .nav__links a::after { display:none; }
  .nav__cta { margin: var(--space-sm) clamp(1.1rem,4vw,2rem) 0; }
  .nav__cta .btn { width:100%; justify-content:center; }
  .nav__toggle { display: inline-flex; }
  .included ul { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display:none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .nav__toggle, .final-cta, .form { display:none; }
  body { background:#fff; }
}
