/* Pools & Tools For Birth — Direction B (Bold & Grounded)
   Brand-aligned to the Canva business card. Tokens are sampled directly
   from the printed card; do not change without checking against 1.png. */

/* Blueberry (Canva). Drop the font file at assets/fonts/Blueberry.woff2
   or Blueberry.ttf and it will be picked up automatically. Until then,
   the stack falls back to Caveat (closest Google-Font match for the
   "bubbly handwriting-meets-script" personality). */
@font-face {
  font-family: 'Blueberry';
  src: url('assets/fonts/Blueberry.woff2') format('woff2'),
       url('assets/fonts/Blueberry.woff')  format('woff'),
       url('assets/fonts/Blueberry.ttf')   format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette */
  --terracotta: #CB553D;
  --terracotta-deep: #A8412C;
  --terracotta-soft: #E08A75;
  --cream: #ECDAC7;
  --cream-warm: #F4E5D2;
  --ink: #2A1E18;
  --ink-soft: #5A463C;
  --sage: #8A9A7B;

  /* Typography.
     - --font-nav: ONLY the small wordmark in nav + footer. Blueberry is
       the original Canva brand font (proprietary); Caveat is the closest
       free fallback while the actual file isn't installed.
     - --font-display: Fraunces, used for ALL editorial type (H1, H2, H3,
       step numbers, prices, strip keys). One serif voice, applied
       consistently from the hero down. */
  --font-nav: 'Blueberry', 'Caveat', 'Mansalva', cursive;
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Legacy alias — some elements still reference --font-wordmark.
     Keep it pointing at the display serif so any stragglers fall in line. */
  --font-wordmark: var(--font-display);

  /* Layout */
  --container: 1280px;
  --gutter: 48px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--terracotta);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4, p, ul { margin: 0; }

ul { padding: 0; list-style: none; }

/* ── Utilities ────────────────────────────────────────────── */

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

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.serif {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  letter-spacing: -0.025em;
}

.display {
  font-family: var(--font-wordmark);
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* The hand-lettered wordmark — sized via --wm-size custom property
   so the same component scales from footer (28px) to hero (180px). */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  --wm-size: 56px;
}
.wordmark__name {
  font-family: var(--font-nav);
  font-size: var(--wm-size);
  letter-spacing: -0.005em;
  line-height: 0.95;
}
.wordmark__sub {
  font-family: 'Quicksand', var(--font-body);
  font-weight: 500;
  font-size: calc(var(--wm-size) * 0.32);
  letter-spacing: 0.01em;
  margin-top: calc(var(--wm-size) * 0.08);
  opacity: 0.92;
}
.wordmark--no-sub .wordmark__sub { display: none; }

/* TopoBlob wrapper — currentColor lets each section retint via `color:` */
.topo {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.topo svg { width: 100%; height: 100%; display: block; }
/* The trace from the business card has line-ends along every edge of its
   bitmap. To hide them we mask the wrapper as a soft circular blob with the
   centre shifted slightly inside the wrapper — every edge of the wrapper,
   including the corner-adjacent ones, fades to transparent so no line-end
   ever shows on the page edge. */
.topo--tl {
  top: 0; left: 0;
  -webkit-mask-image: radial-gradient(ellipse at 35% 35%, #000 15%, transparent 38%);
          mask-image: radial-gradient(ellipse at 35% 35%, #000 15%, transparent 38%);
}
.topo--br {
  bottom: 0; right: 0;
  /* Two-mask intersection: a radial blob anchored bottom-right, AND a linear
     top-fade. The linear fade kills the visible arc of horizontal line-ends
     across the blob's top — those lines are nearly horizontal in the trace,
     so a vertical fade makes them dissolve instead of being chopped. */
  -webkit-mask-image:
    radial-gradient(ellipse at 75% 75%, #000 10%, transparent 42%),
    linear-gradient(to top, #000 35%, transparent 75%);
          mask-image:
    radial-gradient(ellipse at 75% 75%, #000 10%, transparent 42%),
    linear-gradient(to top, #000 35%, transparent 75%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}

/* Topo artwork now uses path data traced from the printed business card
   (1.png) via potrace. Stroke is fill-based (filled paths represent the
   cream contour lines), so currentColor inheritance works as before. */

/* Striped photo placeholder — matches the JSX Placeholder component */
.placeholder {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(135deg, #E8D9C2 0 14px, #DEC9AC 14px 28px);
}
.placeholder--terracotta { background: repeating-linear-gradient(135deg, #D89377 0 14px, #C97D5E 14px 28px); }
.placeholder--cream      { background: repeating-linear-gradient(135deg, #EFE5D2 0 14px, #E5D8C0 14px 28px); }
.placeholder--ink        { background: repeating-linear-gradient(135deg, #3A3530 0 14px, #2E2925 14px 28px); }
.placeholder--deep       { background: repeating-linear-gradient(135deg, #A8412C 0 14px, #8E371F 14px 28px); }
.placeholder--sage       { background: repeating-linear-gradient(135deg, #C7CFB9 0 14px, #B5BEA3 14px 28px); }

.placeholder__label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3A3530;
  background: rgba(244, 235, 221, 0.55);
  padding: 4px 8px;
  border-radius: 2px;
}
.placeholder--ink .placeholder__label,
.placeholder--terracotta .placeholder__label,
.placeholder--deep .placeholder__label { color: #F4EBDD; }

/* ── Pill CTA buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 120ms ease;
}
.btn:active { transform: translateY(1px); }
.btn__arrow {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}
.btn--filled {
  background: var(--ink);
  color: var(--cream);
}
.btn--filled:hover { background: #1a120e; }
.btn--outline {
  color: var(--cream);
  border: 1.5px solid currentColor;
  padding: 18px 24px;
}
.btn--outline:hover { background: rgba(236, 218, 199, 0.08); }
.btn--cream-pill {
  background: var(--cream);
  color: var(--ink);
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.btn--cream-pill:hover { background: var(--cream-warm); }

/* ── 1. Nav ────────────────────────────────────────────────── */

.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--gutter);
  color: var(--cream);
}
.nav__links {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links a {
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 180ms ease;
}
.nav__links a:hover { opacity: 1; }

/* ── 2. Hero (centered) ────────────────────────────────────── */

.hero {
  position: relative;
  background: var(--terracotta);
  color: var(--cream);
  overflow: hidden;
  padding-bottom: 60px;
  min-height: 780px;
}
/* Artwork sized to frame the wordmark like the printed business card —
   wave-cloud anchored top-left, U-bend curl anchored bottom-right. The
   wordmark sits in the clear terracotta zone between them. */
.hero__topo {
  width: min(900px, 64vw);
  height: 380px;
  color: var(--cream);
  opacity: 0.5;
}
.hero__topo--br {
  width: min(760px, 56vw);
  height: 500px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px var(--gutter) 180px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero__eyebrow {
  margin-bottom: 32px;
  opacity: 0.9;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 180px;
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(168, 65, 44, 0.35);
  margin: 0;
}
.hero__sub {
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  margin-top: 8px;
  opacity: 0.95;
}
.hero__lede {
  font-size: 20px;
  max-width: 620px;
  margin: 32px auto 0;
  line-height: 1.5;
  opacity: 0.92;
}
.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
/* Limited-stock note positioned BELOW the CTAs. Phrased to set timing
   expectations ("from around 32 weeks") rather than urge urgency —
   booking too early just locks gear away from another mum closer to baby. */
.hero__stock {
  margin: 22px 0 0;
  text-align: center;
  color: var(--cream);
  opacity: 0.7;
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* ── 3. Strip ──────────────────────────────────────────────── */

.strip {
  background: var(--cream);
  color: var(--ink);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 32px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.strip__item {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.strip__item + .strip__item { border-left: 1px solid rgba(42, 30, 24, 0.2); }
.strip__key {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--terracotta);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  letter-spacing: -0.02em;
}
.strip__val { font-size: 14px; opacity: 0.75; }

/* ── 4. Tools ──────────────────────────────────────────────── */

.tools {
  background: var(--cream);
  color: var(--ink);
  padding: 120px 0;
}
.tools__header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.tools__eyebrow {
  color: var(--terracotta);
  margin-bottom: 16px;
}
/* Section H2s: Fraunces editorial serif — refined, less playful than the
   Gochi Hand wordmark. Reserves the chunky brush voice for the hero alone. */
.section-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  text-wrap: balance;
}
.section-h2 .accent {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}

.tools__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  text-wrap: balance;
}
.tools__title .accent {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}
/* Sub-line beneath the H2 — concrete inventory ("two pools, three tools…")
   demoted from headline to a quieter messaging line. Italic for warmth. */
.tools__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  margin: 16px 0 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.tools__sub em {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
}
.tools__lede {
  margin: 0;
  font-size: 17px;
  color: var(--ink-soft);
}
/* Cluster: groups items under a labelled, rule-spanning header.
   Pools (3 items) and Tools (3 items) each get their own cluster. */
.cluster + .cluster { margin-top: 80px; }
.cluster__head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.cluster__label {
  color: var(--terracotta);
  flex-shrink: 0;
}
.cluster__rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
  opacity: 0.18;
  min-width: 32px;
}
.cluster__count {
  color: var(--ink-soft);
  flex-shrink: 0;
}
.cluster__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Tool card: tile (the "image" — coloured block with price + decoration)
   and body (name + tagline + description) sit BELOW the tile, on the cream
   section background. Mirrors a magazine spread where the photo is its own
   thing and the caption lives outside the frame. */
.tool {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tool__tile {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}
.tool__tile--terracotta { background: var(--terracotta);      color: var(--cream); }
.tool__tile--ink        { background: var(--ink);             color: var(--cream); }
.tool__tile--deep       { background: var(--terracotta-deep); color: var(--cream); }
.tool__tile--cream      {
  background: var(--cream-warm);
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

/* Photo tiles unify a mix of indoor shots under one terracotta cast.
   Layer order (z-index): img (0) → terracotta multiply (1) → top/bottom
   shading for text legibility (2) → number & price (3). */
.tool__tile--photo {
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
}
.tool__tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.7) contrast(0.95);
}
.tool__tile--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--terracotta);
  mix-blend-mode: multiply;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}
.tool__tile--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(20, 12, 8, 0.35) 0%,
      rgba(20, 12, 8, 0) 32%,
      rgba(20, 12, 8, 0) 68%,
      rgba(20, 12, 8, 0.40) 100%);
  z-index: 2;
  pointer-events: none;
}
.tool__tile--photo .tool__no,
.tool__tile--photo .tool__price {
  position: relative;
  z-index: 3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.tool__tile--photo .tool__topo { display: none; }

/* Awaiting-photo tiles share the photo-tile tonal world (warm terracotta
   ground, soft top/bottom shading, cream lettering) so the row reads as
   unified. Two subtle variants — base + alt — give visual variety without
   breaking the pair. */
.tool__tile--awaiting {
  background: var(--terracotta-deep);
  color: var(--cream);
  isolation: isolate;
}
.tool__tile--awaiting-alt {
  background: var(--terracotta);
}
.tool__tile--awaiting::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(20, 12, 8, 0.18) 0%,
      rgba(20, 12, 8, 0) 30%,
      rgba(20, 12, 8, 0) 70%,
      rgba(20, 12, 8, 0.28) 100%);
  pointer-events: none;
  z-index: 1;
}
.tool__tile--awaiting .tool__no,
.tool__tile--awaiting .tool__price,
.tool__tile--awaiting .tool__tile__note {
  position: relative;
  z-index: 3;
}
.tool__tile--awaiting .tool__tile__note {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.tool__topo {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 280px;
  opacity: 0.28;
  color: currentColor;
  pointer-events: none;
}
/* Cleaned-up wave for placeholder tiles — same dual mask as the section
   topos so horizontal line-ends dissolve at the top instead of looking
   chopped. Tucked deeper into the corner and with a slightly brighter
   opacity now that the mask trims the visible area. */
.tool__topo--clean {
  bottom: -40px;
  right: -40px;
  width: 280px;
  height: 240px;
  opacity: 0.38;
  z-index: 2;
  -webkit-mask-image:
    radial-gradient(ellipse at 75% 75%, #000 10%, transparent 42%),
    linear-gradient(to top, #000 35%, transparent 75%);
          mask-image:
    radial-gradient(ellipse at 75% 75%, #000 10%, transparent 42%),
    linear-gradient(to top, #000 35%, transparent 75%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
}
.tool__topo--clean svg { width: 100%; height: 100%; display: block; }
.tool__no { opacity: 0.8; position: relative; }
.tool__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  letter-spacing: -0.02em;
}
.tool__unit {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.tool__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 4px;
}
.tool__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  color: var(--ink);
}
.tool__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--terracotta);
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  letter-spacing: -0.02em;
}
.tool__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ── 5. How it works ──────────────────────────────────────── */

.how {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: 120px 0;
  overflow: hidden;
}
.how__topo {
  width: 680px;
  height: 400px;
  color: var(--terracotta);
  opacity: 0.55;
}
.how__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.how__eyebrow { color: var(--terracotta-soft); margin-bottom: 16px; }
.how__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 64px;
  max-width: 880px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  text-wrap: balance;
}
.how__title .accent {
  color: var(--terracotta-soft);
  font-style: italic;
  font-weight: 400;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(236, 218, 199, 0.25);
}
.how__step { padding: 32px 32px 32px 32px; }
.how__step:first-child { padding-left: 0; }
.how__step + .how__step { border-left: 1px solid rgba(236, 218, 199, 0.25); }
.how__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 100px;
  line-height: 0.9;
  color: var(--terracotta);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  letter-spacing: -0.04em;
}
.how__step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  margin: 20px 0 12px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  letter-spacing: -0.025em;
}
.how__step p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ── 6. Area ──────────────────────────────────────────────── */

.area {
  position: relative;
  background: var(--terracotta);
  color: var(--cream);
  padding: 120px 0;
  overflow: hidden;
}
.area__topo {
  width: 680px;
  height: 400px;
  color: var(--cream);
  opacity: 0.55;
}
.area__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area__eyebrow { opacity: 0.85; margin-bottom: 16px; }
.area__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  text-wrap: balance;
}
.area__lede {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 480px;
}
.area__suburbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.95;
}
.area__suburbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.area__suburbs li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--cream);
  border-radius: 999px;
  flex-shrink: 0;
}
/* Right column of the area section — typographic "yes, probably you too"
   panel. Replaces a literal map: a fixed boundary would over-promise
   and contradict the section's actual stance ("we often go a little beyond").
   Type doing the work of geography. */
.area__yes {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 16px 0;
  align-self: center;
}
.area__yes-eyebrow {
  opacity: 0.85;
}
.area__yes-answer {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  text-wrap: balance;
}
.area__yes-answer em {
  font-style: italic;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.area__yes-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 14px 0 12px;
  border-bottom: 1.5px solid currentColor;
  transition: gap 200ms ease, border-bottom-width 200ms ease, opacity 200ms ease;
}
.area__yes-cta span {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
  font-style: italic;
  line-height: 1;
}
.area__yes-cta:hover {
  gap: 20px;
  border-bottom-width: 3px;
}

/* ── 7. FAQ ───────────────────────────────────────────────── */

/* FAQ: positioned BELOW Contact, styled as a quiet reference panel rather
   than a stage-set section. cream-warm bg clusters it visually with the
   disclaimer that follows. Smaller H2, smaller Q/A type. */
.faq {
  background: var(--cream-warm);
  color: var(--ink);
  padding: 72px 0;
  border-top: 1px solid rgba(42, 30, 24, 0.08);
}
.faq__inner { max-width: 1080px; }
.faq__eyebrow {
  color: var(--terracotta);
  opacity: 0.85;
  margin-bottom: 12px;
}
.faq__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  color: var(--ink-soft);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
}
.faq__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: 'opsz' 36, 'SOFT' 30;
}
.faq__a {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ── 8. Contact ───────────────────────────────────────────── */

.contact {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  padding: 140px 0;
  overflow: hidden;
}
.contact__topo {
  width: 600px;
  height: 360px;
  color: var(--terracotta);
  opacity: 0.4;
}
.contact__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.contact__eyebrow { color: var(--terracotta); margin-bottom: 24px; }
.contact__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 80px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  max-width: 920px;
}
.contact__title .accent {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-top: 56px;
}
.contact__links { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.contact__email,
.contact__ig {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  line-height: 1.1;
  word-break: break-word;
  transition: gap 200ms ease, color 200ms ease;
}
.contact__email,
.contact__ig {
  font-size: 38px;
}
.contact__email { color: var(--terracotta); }
.contact__email:hover { gap: 24px; }
.contact__ig { color: var(--ink); }
.contact__ig:hover { color: var(--terracotta); gap: 24px; }
.contact__email span,
.contact__ig span {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1.5px;
  transition: text-decoration-thickness 200ms ease;
}
.contact__email:hover span,
.contact__ig:hover span {
  text-decoration-thickness: 3px;
}
.contact__icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  display: block;
}
.contact__email .contact__icon { width: 0.85em; height: 0.85em; }
.contact__ig    .contact__icon { width: 0.95em; height: 0.95em; }
.contact__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 2;
  text-align: right;
}

/* ── 9. Disclaimer ────────────────────────────────────────── */

.disclaimer {
  background: var(--cream-warm);
  color: var(--ink);
  padding: 28px 0;
  border-top: 1px solid rgba(42, 30, 24, 0.12);
}
.disclaimer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.disclaimer__label {
  color: var(--terracotta);
  opacity: 0.75;
  white-space: nowrap;
  padding-top: 2px;
}
.disclaimer__text {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  max-width: 920px;
}

/* ── 10. Footer ───────────────────────────────────────────── */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 40px 0;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 900px) {
  :root { --gutter: 32px; }
  .hero__title { font-size: 120px; }
  .hero__sub { font-size: 32px; }
  .tools__title, .how__title, .area__title { font-size: 56px; }
  .contact__title { font-size: 60px; }
  .faq__title { font-size: 24px; margin-bottom: 28px; }
  .faq__grid { grid-template-columns: 1fr; gap: 28px; max-width: 640px; }
  .tools__header, .area__grid, .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .area__yes-answer { font-size: 44px; }
  .hero { min-height: 620px; }
  .hero__topo { width: min(800px, 90vw); height: 460px; }
  .hero__topo--br { height: 480px; }
  .how__topo, .area__topo { width: 480px; height: 260px; }
  .contact__topo { width: 420px; height: 230px; }
  .tool__name { font-size: 30px; }
  .tool__price { font-size: 32px; }
  .cluster__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cluster__count { display: none; }
  .contact__email,
  .contact__ig { font-size: 32px; }
}

@media (max-width: 600px) {
  :root { --gutter: 24px; }

  .nav {
    padding: 20px var(--gutter);
    flex-wrap: wrap;
    gap: 16px;
  }
  .nav__links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 20px;
    scrollbar-width: none;
  }
  .nav__links::-webkit-scrollbar { display: none; }

  .hero { padding-bottom: 60px; min-height: 540px; }
  .hero__inner { padding: 32px var(--gutter); }
  .hero__title { font-size: 72px; }
  .hero__sub { font-size: 24px; }
  .hero__lede { font-size: 17px; }

  .hero__topo { width: 95vw; height: 320px; }
  .hero__topo--br { height: 340px; }
  .how__topo, .area__topo, .contact__topo {
    width: 320px;
    height: 180px;
  }

  .strip__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .strip__item { padding: 0 12px; }
  .strip__item:nth-child(3) { border-left: none; }
  .strip__key { font-size: 30px; }

  .tools, .how, .area { padding: 80px 0; }
  .contact { padding: 100px 0; }

  .tools__title, .how__title, .area__title { font-size: 40px; }
  .contact__title { font-size: 44px; }
  .faq__title { font-size: 22px; }
  .faq__q { font-size: 16px; }
  .faq { padding: 56px 0; }
  .disclaimer__inner { grid-template-columns: 1fr; gap: 12px; }
  .area__yes-answer { font-size: 32px; }
  .tool__name { font-size: 26px; }
  .tool__price { font-size: 28px; }
  .contact__email,
  .contact__ig { font-size: 22px; word-break: break-word; }

  .cluster + .cluster { margin-top: 56px; }
  .cluster__grid { grid-template-columns: 1fr; gap: 28px; }
  .cluster__head { gap: 12px; margin-bottom: 24px; }
  .tool__tagline { font-size: 17px; }
  .tool__tile { padding: 24px; }

  .how__grid { grid-template-columns: 1fr; }
  .how__step { padding: 24px 0; border-top: 1px solid rgba(236, 218, 199, 0.25); }
  .how__step + .how__step { border-left: none; }
  .how__step:first-child { padding-top: 24px; border-top: 1px solid rgba(236, 218, 199, 0.25); }
  .how__num { font-size: 80px; }

  .area__suburbs { grid-template-columns: 1fr 1fr; }

  .contact__meta { text-align: left; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .btn { padding: 16px 22px; font-size: 15px; }
  .btn--outline { padding: 16px 20px; }
}
