/* ============================================================
   Map & Mend — shared site styles
   Single source of truth. Linked from every page as /styles.css.
   Hand-coded for clarity. Mobile-first; breakpoint at 880px.
   ============================================================ */

/* --- Self-hosted fonts (latin subsets, /fonts/) -------------
   Replaces Google Fonts: no third-party render-blocking request,
   no Google connection for visitors, only the weights we use.
   Serif and Plex Sans are variable files covering a weight range. */
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/fonts/source-serif-4-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("/fonts/source-serif-4-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-sans-400-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Tokens ------------------------------------------------- */
:root {
  /* Surfaces */
  --bg:           #F4EFE6;   /* cream — default page background */
  --paper-deep:   #E9DDC9;   /* parchment — alternating section background */
  --paper:        #F5EFE2;   /* light foreground (text/icons on dark surfaces) */
  --ink:          #201B17;   /* near-black charcoal */
  --body:         #3E342B;
  --rule:         #C3B59B;
  --mute:         #6B5F4A;

  /* Accents */
  --clay:         #9F4327;   /* rust */
  --clay-soft:    #E8C7B9;

  /* Pricing section */
  --forest:       #24352F;   /* deep green */
  --forest-soft:  #C8D4CB;
  --forest-mute:  #7E8E84;

  /* Type */
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --sans:  "IBM Plex Sans", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Layout */
  --gutter: 24px;
  --section-pad-y: 96px;
  --section-pad-x: 56px;

  /* Content width. Sections stay full-bleed (backgrounds run edge to edge); the
     content inside them is capped at --content-max and centered. When the viewport
     is wider than --content-max, the side gutters grow to center the content; when
     it's narrower, they fall back to the normal --section-pad-x. This is the only
     line to change if you want a wider/narrower page — and now it changes every
     page at once. */
  --content-max: 1200px;
  --gutter-x: max(var(--section-pad-x), calc((100% - var(--content-max)) / 2));
}

/* --- Reset / base ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
/* Links are underlined by default so in-content links are obviously links
   (WCAG 1.4.1 — never color alone). Components that read as interactive on
   their own — the logo, nav, buttons, pricing tiles — opt out below. */
a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
.brand, .site-nav a, .btn, .tier__cta { text-decoration: none; }

/* In-content links: loud on purpose. Clay, bold, and underlined at rest so
   they're unmistakable in prose; a soft highlight on hover confirms the
   target. Scoped to paragraph/list links inside main (excludes buttons),
   so nav, footer, and dark-surface links keep their own treatment. */
main p a:not(.btn), main li a:not(.btn) {
  color: var(--clay);
  font-weight: 600;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
main p a:not(.btn):hover, main li a:not(.btn):hover {
  color: var(--ink);
  background: var(--clay-soft);
  box-shadow: 0 0 0 3px var(--clay-soft);
  text-decoration-thickness: 2px;
}
/* a11y (WCAG 1.4.1): links inside the dark utility bar / footer base need a
   non-color cue. Buttons, nav, and standalone links stay underline-free. */
.utility-bar a, .site-footer__base a { text-decoration: underline; text-underline-offset: 2px; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em, i { font-style: italic; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }

/* a11y (WCAG 2.4.1): skip link — first focusable element on every page.
   Hidden off-screen via transform until keyboard focus brings it in. */
.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: translateY(-250%);
}
.skip-link:focus { transform: none; }

/* --- Typography primitives ---------------------------------- */
.tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}
.tag--soft { color: var(--clay-soft); }

/* --- Buttons ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  text-decoration: none;
}
.btn:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: transparent; color: var(--ink); }
.btn--light { border-color: var(--paper); color: var(--paper); }
.btn--light:hover { background: var(--paper); color: var(--forest); }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row--stacked { flex-direction: column; align-items: flex-start; }

/* --- Utility bar -------------------------------------------- */
.utility-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 10px var(--gutter-x);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.utility-bar__right { color: var(--clay-soft); }
.utility-bar a { color: var(--clay-soft); }

/* --- Site header / nav -------------------------------------- */
.site-header {
  padding: 22px var(--gutter-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--ink);
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__name { font-family: var(--serif); font-size: 26px; font-weight: 500; letter-spacing: -0.01em; }
.site-nav { display: flex; gap: 30px; font-size: 14px; font-weight: 500; }
/* Mobile menu button (shown ≤880px when nav.js is active) */
.nav-toggle { display: none; }
.site-nav a:hover { text-decoration: none; color: var(--clay); }
/* Current page: clay + underline (not color alone, for WCAG 1.4.1).
   Driven by the aria-current="page" attribute each page already sets. */
.site-nav a[aria-current="page"] {
  color: var(--clay);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}

/* --- Grid system -------------------------------------------- */
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }

/* --- Section base ------------------------------------------- */
.section { padding: var(--section-pad-y) var(--gutter-x); border-top: 1px solid var(--rule); }
.section--paper-deep { background: var(--paper-deep); }
.section--forest { background: var(--forest); color: var(--paper); }
.section--closing { padding: 120px var(--gutter-x); }
/* First section sits right under the header's bottom border — drop its top rule so they don't double up. */
main > .section:first-child { border-top: none; }

/* --- Section mark ------------------------------------------- */
.section-mark { margin-bottom: 48px; }
.section-mark__top { display: block; padding-top: 0; }
.section-mark__num { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--ink); }
.section-mark__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 24px 0 0;
}
.section-mark__title em { color: var(--clay); }
.section-mark--light .section-mark__top { border-top-color: var(--forest-soft); }
.section-mark--light .section-mark__num { color: var(--forest-soft); }
.section-mark--light .section-mark__title { color: var(--paper); }
.section-mark--light .tag { color: var(--clay-soft); }

/* ===========================================================
   HERO
   =========================================================== */
.hero { padding: 72px var(--gutter-x) 88px; }
.hero__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px; }
.hero__lede { grid-column: span 8; }
.hero__side { grid-column: span 4; padding-top: 8px; display: flex; flex-direction: column; gap: 20px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 96px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 32px 0 0;
}
.hero__title em { color: var(--clay); }
.hero__sub {
  margin: 48px 0 0;
  max-width: 620px;
  border-left: 2px solid var(--clay);
  padding-left: 22px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--body);
}
.hero .cta-row { margin-top: 36px; }

/* Method summary card */
.card { background: var(--paper); border: 1px solid var(--ink); padding: 24px; }
.method-card .tag { display: block; margin-bottom: 16px; }
.method-card__list { display: block; margin: 0; }
.method-card__row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}
.method-card__row--last { border-bottom: 1px solid var(--ink); }
.method-card__row dt { font-family: var(--serif); font-size: 16px; color: var(--clay); font-weight: 500; }
.method-card__row dd { margin: 0; display: flex; flex-direction: column; gap: 5px; }
.method-card__word {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.method-card__line { font-size: 13.5px; color: var(--body); line-height: 1.45; }

/* Metadata strip */
.meta-strip {
  border: 1px solid var(--ink);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.meta-strip > div { display: flex; flex-direction: column; gap: 4px; }
.meta-strip dt { color: var(--mute); }
.meta-strip dd { margin: 0; color: var(--ink); font-weight: 500; }

/* ===========================================================
   Search surfaces band (homepage) — names where people look now
   =========================================================== */
.section--surfaces { padding-top: 52px; padding-bottom: 52px; }
.surfaces {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 32px 48px;
  align-items: center;
}
.surfaces__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 14px 0 0;
}
.surfaces__title em { color: var(--clay); }
.surfaces__list { display: flex; flex-wrap: wrap; gap: 10px; }
.surfaces__list li {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
  border: 1px solid var(--rule);
  padding: 9px 14px;
}
@media (max-width: 880px) {
  .surfaces { grid-template-columns: 1fr; gap: 22px; }
}

/* ===========================================================
   § 01 — merged Why/Different columns
   =========================================================== */
.col--why-body { grid-column: 2 / span 6; font-size: 18px; line-height: 1.65; color: var(--body); }
.col--why-body p { margin: 0 0 18px; }
.col--why-body p:last-child { margin-bottom: 0; }
.col--why-aside { grid-column: 9 / span 4; border-left: 1px solid var(--ink); padding-left: 24px; }
.col--why-aside .tag { display: block; margin-bottom: 12px; }
.pullquote {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}
.callout {
  margin: 28px 0 0;
  padding: 18px 22px;
  background: var(--paper);
  border-left: 3px solid var(--clay);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

/* ===========================================================
   § 02 — Method waypoints
   =========================================================== */
.waypoints { margin: 12px 0 0; display: block; }
.waypoint { display: grid; grid-template-columns: 88px 1fr 1.4fr; gap: 32px; align-items: start; padding: 44px 0; }
.waypoint + .waypoint { border-top: 1px solid var(--rule); }
.waypoint__mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  margin-top: 6px;
}
.waypoint__mark::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; border: 1px solid var(--rule); }
.waypoint__mark span { position: relative; }
/* .waypoint__word renders as an <h3>; the class drives all styling. */
.waypoint__word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.waypoint__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--clay);
  line-height: 1.3;
  font-weight: 400;
  margin: 0;
}
.waypoint__body { font-size: 16.5px; line-height: 1.65; color: var(--body); padding-top: 12px; margin: 0; }

/* ===========================================================
   § 03 — Pricing
   =========================================================== */
.pricing { gap: 20px; }
.tier {
  grid-column: span 4;
  padding: 32px;
  border: 1px solid var(--forest-soft);
  background: transparent;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  position: relative;
  color: var(--paper);
}
.tier--featured { background: var(--clay); border-color: var(--clay); }
.tier__badge {
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--forest);
  color: var(--clay-soft);
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 11px; /* a11y: was 10px — off WAVE's very-small-text threshold */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--clay);
}
.tier__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-soft);
  margin: 0 0 8px;
}
.tier--featured .tier__sub { color: #F7E8E0; } /* a11y: 4.5:1+ on clay (was clay-soft, 4.02:1) */
.tier__price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.tier__name { font-family: var(--serif); font-size: 24px; color: var(--paper); margin: 18px 0 18px; font-style: italic; font-weight: 400; line-height: 1.2; }
.tier__body { font-size: 15px; line-height: 1.6; color: var(--forest-soft); margin: 0 0 16px; }
.tier--featured .tier__body { color: #F7E8E0; }
.tier__best { font-family: var(--serif); font-size: 15px; font-style: italic; color: #9FB1A6; line-height: 1.45; margin: 0 0 20px; }
.tier--featured .tier__best { color: #F4D5C6; }
.tier__cta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--forest-mute);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
}
.tier__cta:hover { text-decoration: none; color: var(--clay-soft); }
.tier--featured .tier__cta { border-top-color: rgba(245, 239, 226, 0.3); }
/* Clickable pricing tiles — opt-in via .tier--link. One link per card (the CTA),
   stretched to cover the whole tile, so the entire card is the tap target with no
   dead zones and no nested-interactive a11y issue. */
.tier--link { position: relative; transition: transform .15s ease; cursor: pointer; }
.tier--link:hover { transform: translateY(-2px); }
.tier--link:focus-within { outline: 2px solid var(--clay-soft); outline-offset: 4px; }
.tier--link .tier__cta::after { content: ""; position: absolute; inset: 0; }
.pricing__footer { margin-top: 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.pricing__note { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--forest-soft); max-width: 640px; margin: 0; }

/* ===========================================================
   § 04 — Audience
   =========================================================== */
.col--audience-intro { grid-column: 2 / span 5; }
.col--audience-intro > p:first-child { font-size: 18px; line-height: 1.65; color: var(--body); margin: 0 0 24px; }
.aside-note { margin-top: 28px; font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--ink); line-height: 1.45; }
.col--audience-list { grid-column: 8 / span 5; }
.signal { padding: 22px 0; display: grid; grid-template-columns: 44px 1fr; gap: 20px; }
.signal + .signal { border-top: 1px solid var(--rule); }
.signal__num { font-family: var(--mono); font-size: 12px; color: var(--clay); letter-spacing: 0.14em; padding-top: 6px; font-weight: 500; }
.signal h3 { font-family: var(--serif); font-size: 22px; line-height: 1.3; color: var(--ink); font-weight: 500; margin: 0 0 6px; }
.signal p { font-size: 15.5px; line-height: 1.6; color: var(--body); margin: 0; }

/* ===========================================================
   § 05 — About
   =========================================================== */
.col--about { grid-column: 2 / span 7; font-family: var(--sans); font-size: 18px; line-height: 1.65; color: var(--body); max-width: 640px; }
.col--about p { margin: 0 0 18px; }
.about__pull { margin: 28px 0 0; font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--ink); line-height: 1.4; }
.col--about > p:last-of-type { margin-top: 32px; }

/* ===========================================================
   Closing CTA
   =========================================================== */
.grid--closing { align-items: start; }
.col--closing-headline { grid-column: span 7; }
.col--closing-headline h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 88px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.col--closing-headline em { color: var(--clay); }
.col--closing-cta { grid-column: 9 / span 4; padding-top: 16px; }
.col--closing-cta p { font-size: 17px; line-height: 1.65; color: var(--body); margin: 0 0 32px; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { padding: 56px var(--gutter-x) 28px; background: var(--ink); color: var(--paper); font-size: 13px; }
.col--foot-brand { grid-column: span 5; }
.col--foot-block { grid-column: span 2; }
.col--foot-block:nth-of-type(2) { grid-column: span 3; }
.site-footer__name { font-family: var(--serif); font-size: 32px; color: var(--paper); letter-spacing: -0.015em; margin: 0 0 10px; font-weight: 500; }
.site-footer__tag { color: var(--clay-soft); max-width: 360px; line-height: 1.55; margin: 0; }
.col--foot-block p { margin: 0 0 6px; }
.site-footer a { color: var(--paper); }
.site-footer a:hover { color: var(--clay-soft); }
.site-footer__base {
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--forest-mute);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-soft);
}

/* ===========================================================
   Services page additions (built on the token set above)
   =========================================================== */
.svc-intro { grid-column: 2 / span 8; font-size: 18px; line-height: 1.65; color: var(--body); }
.svc-intro p { margin: 0 0 16px; }
.svc-intro p:last-child { margin-bottom: 0; }

.packages { margin: 8px 0 0; }
.pkg { display: grid; grid-template-columns: 280px 1fr; gap: 56px; padding: 52px 0; align-items: start; }
.pkg + .pkg { border-top: 1px solid var(--rule); }

.pkg__aside { display: flex; flex-direction: column; gap: 6px; }
.pkg__kicker {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
}
.pkg__price {
  font-family: var(--serif); font-size: 52px; font-weight: 400;
  line-height: 1; letter-spacing: -0.02em; color: var(--ink); margin: 4px 0 0;
}
.pkg__name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 24px; line-height: 1.2; color: var(--clay); margin: 12px 0 20px;
}
.pkg__aside .btn { align-self: flex-start; }

.pkg__lead { font-size: 17px; line-height: 1.6; color: var(--body); margin: 0 0 22px; }
.pkg__list-label {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay);
  display: block; margin: 0 0 12px;
}
.deliverables { margin: 0 0 26px; }
.deliverables li {
  display: grid; grid-template-columns: 22px 1fr; gap: 8px; padding: 7px 0;
  font-size: 15.5px; line-height: 1.5; color: var(--body);
}
.deliverables li::before { content: "\2014"; color: var(--clay); font-weight: 600; }

/* labeled meta blocks: Best for / Format / Available after */
.pkg__meta { margin: 0; }
.pkg__meta + .pkg__meta { margin-top: 18px; }
.pkg__meta-label {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
  display: block; margin: 0 0 6px;
}
.pkg__best { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.45; color: var(--ink); margin: 0; }
.pkg__meta-text { font-family: var(--sans); font-size: 14px; line-height: 1.55; color: var(--body); margin: 0; }
.pkg__note {
  margin: 20px 0 0; padding: 14px 18px; background: var(--paper);
  border-left: 3px solid var(--clay); font-size: 14.5px; line-height: 1.55; color: var(--body);
}

/* Monthly support band (dark forest) */
.support { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.support .pkg__lead { color: var(--forest-soft); }
.support .pkg__list-label { color: var(--clay-soft); }
.support .deliverables li { color: var(--forest-soft); }
.support .deliverables li::before { color: var(--clay-soft); }
.support .pkg__kicker { color: var(--forest-soft); }
.support .pkg__price { color: var(--paper); }
.support .pkg__name { color: var(--clay-soft); }
.support .pkg__meta-label { color: var(--forest-soft); }
.support .pkg__meta-text { color: var(--forest-soft); }
.support .pkg__best { color: var(--paper); }

/* FAQ */
.faq-list { grid-column: 2 / span 9; max-width: 860px; }
.faq { border-top: 1px solid var(--rule); }
.faq:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: baseline;
  justify-content: space-between; gap: 24px; padding: 22px 0;
  font-family: var(--serif); font-size: 21px; line-height: 1.3; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus { outline: none; }
.faq summary:focus-visible { outline: 2px solid var(--clay-soft); outline-offset: 4px; }
.faq__marker { font-family: var(--mono); font-size: 20px; color: var(--clay); flex: none; transition: transform .15s ease; }
.faq[open] .faq__marker { transform: rotate(45deg); }
.faq__a { font-size: 16px; line-height: 1.65; color: var(--body); margin: 0; padding: 0 0 24px; max-width: 760px; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1080px) {
  :root { --section-pad-x: 40px; }
  .hero__title { font-size: 80px; }
  .section-mark__title { font-size: 44px; }
  .col--closing-headline h2 { font-size: 64px; }
  .waypoint__word { font-size: 52px; }
}

@media (max-width: 880px) {
  :root { --section-pad-x: 24px; --section-pad-y: 64px; --gutter: 20px; }

  /* Stack header */
  .site-header { padding: 16px var(--gutter-x); gap: 16px; }
  .site-nav { order: 3; flex-basis: 100%; gap: 18px; flex-wrap: wrap; }
  .brand__name { font-size: 22px; }

  /* Mobile menu: with nav.js active (.js-nav on <html>) the nav collapses
     behind a Menu button and opens as a full-width column. Without JS the
     plain row of links above still renders, so nothing is ever unreachable. */
  /* Header CTA duplicates the hero CTA above the fold on phones — drop it;
     Contact is one tap away in the menu. */
  .site-header > .btn { display: none; }
  .js-nav .site-header { justify-content: flex-start; }
  .js-nav .brand { margin-right: auto; }
  .js-nav .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    order: 3;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--ink);
    padding: 10px 14px;
    cursor: pointer;
  }
  .js-nav .site-nav { display: none; }
  .js-nav.nav-open .site-nav {
    display: flex;
    order: 4;
    flex-direction: column;
    gap: 0;
    padding-top: 4px;
  }
  .js-nav.nav-open .site-nav a { padding: 13px 0; border-top: 1px solid var(--rule); font-size: 15px; }

  /* Utility bar — one slim line: drop the left span (duplicates the brand
     directly below it) and keep the "Now booking" status. */
  .utility-bar { font-size: 10px; letter-spacing: 0.12em; justify-content: center; }
  .utility-bar > span:first-child { display: none; }

  /* Hero — drop the side cards. The method card duplicates the method
     section further down the page, and the meta strip is desktop garnish;
     stacked between the CTAs and the first section they read as clutter. */
  .hero__side { display: none; }

  /* Hero stacks */
  .hero { padding: 48px var(--gutter-x) 64px; }
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__lede, .hero__side { grid-column: 1 / -1; }
  .hero__title { font-size: 56px; line-height: 1.0; }
  .hero__sub { font-size: 17px; margin-top: 32px; }
  .meta-strip { grid-template-columns: 1fr 1fr; }

  /* All 12-col grids collapse */
  .grid { grid-template-columns: 1fr; }
  .col--why-body, .col--why-aside, .col--audience-intro, .col--audience-list,
  .col--about, .col--closing-headline, .col--closing-cta,
  .col--foot-brand, .col--foot-block, .tier { grid-column: 1 / -1; }
  .col--why-aside { border-left: 0; padding-left: 0; }

  /* Section marks */
  .section-mark__title { font-size: 36px; }

  /* Pricing tiers stack */
  .pricing { gap: 24px; }
  .tier { min-height: 0; }
  .pricing__footer { flex-direction: column; align-items: flex-start; }

  /* Waypoints reflow */
  .waypoint { grid-template-columns: 64px 1fr; gap: 20px; }
  .waypoint__mark { width: 56px; height: 56px; font-size: 18px; }
  .waypoint__word { font-size: 44px; }
  .waypoint__body { grid-column: 1 / -1; padding-top: 8px; }

  /* Signal items */
  .signal { grid-template-columns: 36px 1fr; gap: 14px; }
  .signal h3 { font-size: 18px; }

  /* Closing */
  .section--closing { padding: 72px var(--gutter-x); }
  .col--closing-headline h2 { font-size: 44px; }

  /* About */
  .about__pull { font-size: 19px; }

  /* Services / FAQ */
  .svc-intro, .faq-list { grid-column: 1 / -1; }
  .pkg, .support { grid-template-columns: 1fr; gap: 24px; }
  .pkg { padding: 40px 0; }
  .pkg__price { font-size: 44px; }
  .faq summary { font-size: 18px; }

  /* Footer */
  .site-footer__base { flex-direction: column; align-items: flex-start; }
}

/* --- Print -------------------------------------------------- */
@media print {
  :root { --section-pad-y: 48px; }
  .utility-bar, .site-header, .cta-row, .btn { display: none; }
  body { background: white; color: black; }
  .section { border-top: 1px solid #999; page-break-inside: avoid; }
  .section--forest { background: white !important; color: black !important; }
  .tier { color: black !important; border-color: #999 !important; }
  .tier__price, .tier__name, .tier__body, .tier__best, .tier__sub, .tier__cta { color: black !important; }
}

/* ===========================================================
   Consent banner (injected by /consent.js; gates Microsoft Clarity)
   =========================================================== */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--forest-mute);
  padding: 18px var(--gutter-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  font-size: 14px;
  line-height: 1.55;
}
.consent-banner p { margin: 0; flex: 1 1 420px; max-width: 760px; }
.consent-banner a { color: var(--clay-soft); text-decoration: underline; text-underline-offset: 2px; }
.consent-banner__actions { display: flex; gap: 10px; flex: none; }
/* On the dark banner the default .btn (ink on transparent) is invisible —
   Accept is solid paper, Decline uses the existing light outline variant. */
.consent-banner__accept { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.consent-banner__accept:hover { background: transparent; color: var(--paper); }
.consent-banner :focus-visible { outline-color: var(--clay-soft); }
/* Container takes programmatic focus when reopened; no ring on the box itself. */
.consent-banner:focus { outline: none; }

/* ===========================================================
   Contact form (used on /contact)
   =========================================================== */
.col--form { grid-column: 2 / span 7; max-width: 640px; }
.contact-form { margin: 0; }
.form-field { margin: 0 0 22px; }
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 8px;
}
.form-field .req { color: var(--clay); }
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 13px 14px;
}
.form-field textarea { min-height: 160px; resize: vertical; }
.contact-form button[type="submit"] { margin-top: 4px; }
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
  border-color: var(--clay);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--mute); }
.contact-form button[type="submit"]:disabled { opacity: 0.55; cursor: default; }
.form-status { margin: 18px 0 0; font-size: 15.5px; line-height: 1.55; color: var(--body); }
.form-status:empty { display: none; }
.form-status--ok  { color: var(--forest); }
.form-status--err { color: var(--clay); }
.form-note { margin: 20px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--mute); }
@media (max-width: 880px) { .col--form { grid-column: 1 / -1; } }
