/* ===========================================================
   bel.bm — design tokens
   Palette: black/white/grey + ONE warm-stone accent.
   KW Red is used on the primary CTA button ONLY.
   =========================================================== */

:root {
  /* Colors */
  --bel-ink: #0e0d0c;
  --bel-paper: #f5f3ef;
  --bel-paper-shade: #ece8de;
  --bel-grey: #6a655c;
  --bel-grey-mute: #a39e94;
  --bel-stone: #a08b6f;
  --bel-stone-soft: #c3b59b;
  --bel-stone-text: #75603c; /* darker warm-stone for text on light bg (WCAG AA on paper + card shade); hairlines keep --bel-stone */
  --bel-red: #ce011f;
  --bel-red-deep: #a40118;

  /* Type families */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing — section vertical rhythm */
  --section-pad-y:    96px;
  --section-pad-y-sm: 64px;
  --container-pad-x:  44px;

  /* Container */
  --container-max: 1280px;

  /* Hairlines */
  --hairline: 1px solid rgba(160, 139, 111, 0.45);
}

/* ===========================================================
   Reset + base
   =========================================================== */

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

body {
  background: var(--bel-paper);
  color: var(--bel-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }

/* ===========================================================
   Typography
   =========================================================== */

h1, h2, h3, h4 { margin: 0; font-weight: 500; }

h1 {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--bel-ink);
}

h2 {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--bel-ink);
}

h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  color: var(--bel-ink);
}

p {
  margin: 0 0 16px;
  color: var(--bel-grey);
  font-family: var(--font-body);
}

em { font-style: italic; color: inherit; }
strong { font-weight: 600; color: var(--bel-ink); }

.label-strip {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
}
.label-strip::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--bel-stone);
  margin-top: 14px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-x);
}

.section-rule {
  height: 1px;
  background: var(--bel-stone);
  opacity: 0.45;
}

/* ===========================================================
   Sticky navigation
   =========================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bel-paper);
  transition: box-shadow 0.2s, background 0.2s;
}
.site-nav.is-scrolled {
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  box-shadow: 0 1px 0 rgba(160, 139, 111, 0.3);
}
.site-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

/* Wordmark */
.wordmark { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.wordmark__main {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--bel-ink);
}
.wordmark__rule {
  height: 1px;
  background: var(--bel-stone);
  width: 100%;
}
.wordmark__sub {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
}

/* Nav links */
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav__links a:not(.btn) {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bel-ink);
}
.site-nav__links a:not(.btn):hover { color: var(--bel-stone-text); }

/* ===========================================================
   Button — the ONLY KW Red on the page
   =========================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: transform 0.1s ease-out, box-shadow 0.2s;
}
.btn:focus-visible {
  outline: 2px solid var(--bel-stone);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--bel-red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(206, 1, 31, 0.22);
}
.btn--primary:hover {
  background: var(--bel-red-deep);
  transform: translateY(-1px);
}
.btn--lg { font-size: 11px; padding: 16px 32px; }
.btn--sm { font-size: 10px; padding: 10px 18px; letter-spacing: 0.18em; }

/* ===========================================================
   §01 — Hero
   =========================================================== */

.hero {
  background: var(--bel-paper);
  padding: 64px 0 88px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__copy { max-width: 540px; }
.hero__headline {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--bel-ink);
}
.hero__headline em { font-style: italic; font-weight: 400; }
.hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--bel-grey);
  margin: 0 0 32px;
  max-width: 460px;
}
.hero__name { color: var(--bel-ink); font-weight: 500; }
.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero__proof {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--bel-grey);
  letter-spacing: 0.02em;
}
.hero__proof strong { color: var(--bel-ink); font-weight: 600; }
.hero__reassurance {
  margin: 0;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--bel-grey);
  font-style: italic;
}

/* Photo block */
.hero__photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bel-paper-shade);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
/* Subtle warm-paper overlay — blends photo into the palette without killing natural light */
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bel-paper);
  opacity: 0.09;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ===========================================================
   Section grid (used by §02, §03, §04, §05, §06, §07, §10)
   =========================================================== */

.section {
  background: var(--bel-paper);
  padding: var(--section-pad-y) 0 var(--section-pad-y-sm);
}
.section__grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 56px;
  align-items: start;
}
.section__body-col h2 { margin: 0 0 24px; }
.section__body-col p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 18px;
  max-width: 600px;
}

/* §02 — The Move */
.section--move .downsize-note {
  font-style: italic;
  color: var(--bel-stone-text);
  border-top: 1px solid rgba(160, 139, 111, 0.25);
  padding-top: 18px;
  margin-top: 12px;
  font-size: 14px;
  max-width: 560px;
}
.section--move .downsize-note strong { color: var(--bel-stone-text); }

/* ===========================================================
   CTA reinforcement strip (used after §02 and §04)
   =========================================================== */

.cta-strip {
  background: var(--bel-paper-shade);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
}
.cta-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  gap: 24px;
}
.cta-strip__copy { flex: 1; }
.cta-strip__primary {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--bel-ink);
  font-weight: 500;
}
.cta-strip__secondary {
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--bel-grey);
}

/* ===========================================================
   §03 — About
   =========================================================== */

.section--about .credentials {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
}
.section--about .credentials li::after {
  content: '·';
  margin-left: 18px;
  color: var(--bel-stone-soft);
}
.section--about .credentials li:last-child::after { content: ''; }

.section--about .mantra {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--bel-stone);
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--bel-ink);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ===========================================================
   §04 — The Plan
   =========================================================== */

.plan-cards {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.plan-card {
  border-top: 1px solid var(--bel-stone);
  padding-top: 28px;
}
.plan-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-style: italic;
  color: var(--bel-stone-text);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
}
.plan-card h3 {
  font-size: 26px;
  font-style: italic;
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.1;
}
.plan-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: none;
}
.plan-card p em { color: var(--bel-ink); font-style: italic; }

/* ===========================================================
   §05 — What I take off your plate
   =========================================================== */

.plate-intro {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bel-grey);
  margin: 0;
  max-width: 600px;
}
.plate-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.plate-intro + .plate-list { margin-top: 24px; }
.plate-list li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--bel-grey);
  padding: 18px 0 18px 32px;
  border-bottom: 1px solid rgba(160, 139, 111, 0.18);
  position: relative;
  max-width: 640px;
}
.plate-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 18px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bel-stone-text);
  font-weight: 400;
  line-height: 1;
}
.plate-list li:last-child { border-bottom: 0; }
.plate-list li em { color: var(--bel-ink); font-style: italic; }

/* ===========================================================
   §06 — Three solution cards
   =========================================================== */

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 0;
}
.solution-card {
  position: relative;
  background: var(--bel-paper-shade);
  border-top: 2px solid var(--bel-stone);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.solution-card--muted {
  border-top: 1px solid rgba(160, 139, 111, 0.45);
  background: rgba(236, 232, 222, 0.6);
}
.solution-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
  background: rgba(245, 243, 239, 0.85);
  padding: 5px 9px;
  border: 1px solid rgba(160, 139, 111, 0.5);
}
.solution-card__tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
}
.solution-card h3 {
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}
.solution-card p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 8px;
  flex: 1;
}
.solution-card .btn { align-self: flex-start; }

/* ===========================================================
   §07 — Proof
   =========================================================== */

.proof-rows {
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.proof-row {
  padding-top: 22px;
  border-top: 1px solid rgba(160, 139, 111, 0.3);
}
.proof-row h3 {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
  margin: 0 0 10px;
}
.press-list { list-style: none; margin: 0; padding: 0; }
.press-list li + li { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(160, 139, 111, 0.25); }
.press-item { display: block; text-decoration: none; }
.press-item__headline {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  color: var(--bel-ink);
  transition: color 0.15s ease-out;
}
.press-item:hover .press-item__headline { color: var(--bel-red); }
.press-item:focus-visible { outline: 2px solid var(--bel-stone); outline-offset: 3px; }
.press-item__meta {
  display: block;
  margin-top: 4px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
}
.proof-row p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: var(--bel-grey);
  max-width: 640px;
}
.proof-row p strong { color: var(--bel-ink); }

/* ===========================================================
   §08 — Briefing strip (Mailchimp)
   =========================================================== */

.briefing-strip {
  background: var(--bel-paper-shade);
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  padding: 56px 0;
}
.briefing-strip__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.briefing-strip__copy h3 {
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  margin: 0 0 8px;
}
.briefing-strip__copy p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}
.briefing-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.briefing-form__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  background: var(--bel-paper);
  border: 1px solid var(--bel-stone);
  color: var(--bel-ink);
  outline: none;
}
.briefing-form__input::placeholder { color: var(--bel-grey-mute); }
.briefing-form__input:focus { border-color: var(--bel-ink); }
.briefing-form .btn { white-space: nowrap; }

.briefing-form__success {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--bel-ink);
  margin: 0;
  padding: 14px 0;
}

/* ===========================================================
   Utilities
   =========================================================== */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================================================
   §09 — Testimonials
   =========================================================== */

.testimonial-cards {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  margin: 0;
  padding: 28px;
  background: var(--bel-paper-shade);
  border-left: 2px solid var(--bel-stone);
}
.testimonial-card blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.4;
  color: var(--bel-ink);
}
.testimonial-card figcaption {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
}

/* ===========================================================
   §10 — A characterful line (legacy)
   =========================================================== */

.section--legacy {
  padding-top: 112px;
  padding-bottom: 112px;
}
.section--legacy h2 { font-size: 52px; }
.section--legacy p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  color: var(--bel-ink);
  max-width: 640px;
  font-weight: 400;
}

/* ===========================================================
   §11 — Start (Calendly + tabs)
   =========================================================== */

.section--start { padding-bottom: 64px; }
.section--start .section__grid { margin-bottom: 32px; }

.calendly { max-width: 920px; margin: 0 auto; }
.calendly__tabs {
  display: flex;
  border-bottom: 2px solid var(--bel-stone);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.calendly__tab {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 22px;
  color: var(--bel-grey);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}
.calendly__tab:hover { color: var(--bel-ink); }
.calendly__tab.is-active {
  color: var(--bel-ink);
  border-bottom-color: var(--bel-red);
}
.calendly__embed {
  background: var(--bel-paper-shade);
  border: 1px solid rgba(160, 139, 111, 0.3);
}

.start-fallback {
  text-align: center;
  margin: 32px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--bel-grey);
}
.start-fallback a {
  color: var(--bel-ink);
  border-bottom: 1px solid var(--bel-stone);
}
.start-fallback a:hover { color: var(--bel-red); }

/* ===========================================================
   Footer
   =========================================================== */

.site-footer {
  background: var(--bel-ink);
  color: var(--bel-paper);
  padding: 80px 0 32px;
  /* footer sits on dark ink — revert stone-text to the lighter stone so it stays legible */
  --bel-stone-text: var(--bel-stone);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.site-footer__col h3 {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
  margin: 0 0 18px;
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__col li {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 14px;
}
.site-footer__col a {
  color: var(--bel-paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.site-footer__col a:hover { border-bottom-color: var(--bel-stone-text); }

.site-footer__bio strong { color: var(--bel-paper); font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.site-footer__bio .site-footer__roles {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
  margin: 8px 0 24px;
}
.site-footer__bio .site-footer__mantra {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--bel-stone-text);
}

.site-footer__small {
  padding-top: 28px;
  border-top: 1px solid rgba(160, 139, 111, 0.25);
}
.site-footer__small p {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bel-grey-mute);
  margin: 0;
}

/* ===========================================================
   §11 Start — direct contact cards (Call / WhatsApp / Email)
   =========================================================== */

.start-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0 32px;
}
.start-contact__card {
  background: var(--bel-paper-shade);
  border-top: 2px solid var(--bel-stone);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.15s ease-out, border-top-color 0.15s;
}
.start-contact__card:hover {
  transform: translateY(-2px);
  border-top-color: var(--bel-red);
}
.start-contact__card:focus-visible {
  outline: 2px solid var(--bel-stone);
  outline-offset: 3px;
}
.start-contact__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
}
.start-contact__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--bel-ink);
  line-height: 1.2;
  word-break: break-word;
}

/* ===========================================================
   §08 FAQ — accordion
   =========================================================== */

.faq-list {
  margin-top: 4px;
  border-top: 1px solid rgba(160, 139, 111, 0.3);
}
.faq-item {
  border-bottom: 1px solid rgba(160, 139, 111, 0.3);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.25;
  color: var(--bel-ink);
  transition: color 0.15s ease-out;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: '+';
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 400;
  color: var(--bel-stone-text);
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.15s;
}
.faq-item[open] > summary::after { content: '\2013'; }
.faq-item > summary:hover,
.faq-item > summary:hover::after { color: var(--bel-red); }
.faq-item > summary:focus-visible {
  outline: 2px solid var(--bel-stone);
  outline-offset: 4px;
}
.faq-item__answer {
  padding: 0 0 26px;
  max-width: 62ch;
}
.faq-item__answer p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--bel-grey);
  margin: 0;
}

/* ===========================================================
   §11b Lead form — the primary capture
   =========================================================== */

.lead-form { margin: 8px 0 44px; max-width: 760px; }
.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.lead-form__field { display: flex; flex-direction: column; gap: 7px; }
.lead-form__field label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
}
.lead-form__field label span { color: var(--bel-stone-soft); letter-spacing: 0.14em; }
.lead-form__field input,
.lead-form__field textarea {
  font-family: var(--font-body);
  font-size: 16px; /* >=16px avoids iOS zoom-on-focus */
  color: var(--bel-ink);
  background: var(--bel-paper);
  border: 1px solid rgba(160, 139, 111, 0.45);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.lead-form__field textarea { resize: vertical; min-height: 54px; line-height: 1.5; }
.lead-form__field input:focus,
.lead-form__field textarea:focus {
  outline: none;
  border-color: var(--bel-stone-text);
  box-shadow: 0 0 0 3px rgba(160, 139, 111, 0.16);
}
.lead-form__hp { position: absolute; left: -5000px; width: 1px; height: 1px; opacity: 0; }
.lead-form__actions { display: flex; align-items: center; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.lead-form__reassure { font-family: var(--font-body); font-size: 13px; color: var(--bel-grey); margin: 0; }
.lead-form__success {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 25px;
  line-height: 1.3;
  color: var(--bel-ink);
  margin: 8px 0 32px;
  max-width: 620px;
}
.lead-form__error { font-family: var(--font-body); font-size: 14px; color: var(--bel-red); margin: 10px 0 0; }

/* "Or reach me directly" — the ready-now path, secondary to the form */
.start-direct__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bel-stone-text);
  margin: 0 0 14px;
}
.btn--ghost {
  background: transparent;
  color: var(--bel-ink);
  border: 1px solid var(--bel-stone);
  box-shadow: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.btn--ghost:hover { border-color: var(--bel-ink); background: rgba(160, 139, 111, 0.09); }
.start-direct__book { display: inline-block; margin-bottom: 28px; }

/* ===========================================================
   §12 Motion — calm reveals, nav condense, micro-interactions
   =========================================================== */

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

/* Scroll reveal: elements settle up into place as they enter view */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Nav quietly condenses once you scroll past the hero */
.site-nav__inner { transition: padding 0.25s ease; }
.site-nav.is-scrolled .site-nav__inner { padding: 13px 0; }

/* Card micro-interactions */
.solution-card {
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out, border-top-color 0.22s ease-out;
}
.solution-card:not(.solution-card--muted):hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(14, 13, 12, 0.07);
  border-top-color: var(--bel-red);
}
.plan-card { transition: transform 0.22s ease-out; }
.plan-card:hover { transform: translateY(-2px); }
.plan-card__num { transition: color 0.22s ease-out; }
.plan-card:hover .plan-card__num { color: var(--bel-red); }

/* ===========================================================
   Responsive — tablet (max-width: 1023px)
   =========================================================== */

@media (max-width: 1023px) {
  :root {
    --section-pad-y: 72px;
    --section-pad-y-sm: 48px;
    --container-pad-x: 32px;
  }

  /* Sticky nav: hide non-essential links, keep wordmark + CTA */
  .site-nav__links a:not(.btn) { display: none; }

  /* Hero: text above photo */
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__headline { font-size: 56px; }
  .hero__copy { max-width: 100%; }
  .hero__photo { max-height: 520px; aspect-ratio: 4 / 3; }

  /* Section grid: stack */
  .section__grid { grid-template-columns: 1fr; gap: 32px; }

  /* §02 large headline shrinks */
  .section--move h2,
  .section--about h2,
  .section--plan h2,
  .section--plate h2,
  .section--solutions h2,
  .section--proof h2,
  .section--testimonials h2,
  .section--start h2 { font-size: 38px; }
  .section--legacy h2 { font-size: 42px; }

  /* Plan, solutions, testimonials, contact: 3-up becomes 1-up stack */
  .plan-cards,
  .solution-cards,
  .testimonial-cards,
  .start-contact { grid-template-columns: 1fr; gap: 16px; }

  /* CTA strip stacks copy above button */
  .cta-strip__inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 28px 0; }

  /* Briefing strip stacks */
  .briefing-strip__inner { grid-template-columns: 1fr; gap: 24px; }

  /* Footer columns stack */
  .site-footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ===========================================================
   Responsive — mobile (max-width: 767px)
   =========================================================== */

@media (max-width: 767px) {
  :root {
    --section-pad-y: 56px;
    --section-pad-y-sm: 40px;
    --container-pad-x: 22px;
  }

  body { font-size: 15px; }

  /* Smaller hero headline */
  .hero { padding: 40px 0 64px; }
  .hero__headline { font-size: 42px; }
  .hero__sub { font-size: 15px; }

  /* Mobile: square crop centered on Bel's face */
  .hero__photo { aspect-ratio: 1 / 1; max-height: none; }
  .hero__photo img { object-position: center 22%; }

  /* Smaller section headings */
  .section--move h2,
  .section--about h2,
  .section--plan h2,
  .section--plate h2,
  .section--solutions h2,
  .section--proof h2,
  .section--testimonials h2,
  .section--start h2 { font-size: 30px; }
  .faq-item > summary { font-size: 19px; gap: 20px; }
  .lead-form__grid { grid-template-columns: 1fr; gap: 16px; }
  .lead-form__actions { gap: 14px; }
  .section--legacy h2 { font-size: 32px; }
  .section--legacy p { font-size: 18px; }

  /* Sticky nav: shrink wordmark sub */
  .wordmark__sub { display: none; }
  .site-nav__inner { padding: 14px 0; }

  /* Plate list slightly tighter */
  .plate-list li { font-size: 15px; padding-left: 28px; }

  /* Footer must clear the fixed CTA bar (the footer sits outside <main>) */
  .site-footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}

/* ===========================================================
   Mobile sticky CTA bar (mobile only)
   =========================================================== */

.mobile-cta {
  display: none;
}

@media (max-width: 767px) {
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bel-red);
    color: #fff;
    text-align: center;
    padding: 18px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
  }
  .mobile-cta:active { background: var(--bel-red-deep); }
}

/* ===========================================================
   Accessibility
   =========================================================== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--bel-ink);
  color: var(--bel-paper);
  padding: 12px 18px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 200;
  transition: top 0.15s;
}
.skip-link:focus { top: 16px; outline: 2px solid var(--bel-stone); outline-offset: 2px; }

/* Visible focus rings on all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--bel-stone);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* never leave reveal elements hidden for reduced-motion users */
  .reveal { opacity: 1 !important; transform: none !important; }
}
