/* ────────────────────────────────────────────────────────────
   Henry Davis — Grow Adelaide
   Shared design system (Adelaide parklands palette)
   Deep forest green primary, warm sandstone accent, candle-cream
   paper background, charcoal text. Fraunces serif + Inter body
   + Caveat handwritten accent.
   ──────────────────────────────────────────────────────────── */
:root {
  --bg:           #f5f1e8;
  --bg-warm:      #efe9da;
  --paper:        #fbf8f0;
  --surface:      #ffffff;
  --ink:          #1a2238;
  --ink-soft:     #364056;
  --ink-mute:     #6a7388;
  --line:         rgba(26, 34, 56, 0.10);
  --line-strong:  rgba(26, 34, 56, 0.18);

  --green:        #0f3d2e;
  --green-deep:   #0a2a1f;
  --green-soft:   #1f5a44;
  --green-glow:   rgba(15, 61, 46, 0.10);

  --sand:         #b3804a;
  --sand-soft:    #d2a878;
  --sand-warm:    #e8d4b5;

  --red:          #b4493f;
  --leaf:         #5f8a3f;

  --serif:        'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --hand:         'Caveat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --note:         'Patrick Hand', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow-soft:  0 18px 50px rgba(15, 61, 46, 0.12);
  --shadow-card:  0 12px 40px rgba(26, 34, 56, 0.10), 0 0 0 1px rgba(26, 34, 56, 0.04);
  --shadow-hover: 0 22px 60px rgba(15, 61, 46, 0.18), 0 0 0 1px rgba(15, 61, 46, 0.12);
}

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

body {
  min-height: 100vh;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 1200px 600px at 80% -100px, rgba(15, 61, 46, 0.06), transparent 60%),
    radial-gradient(ellipse 800px 500px at 0% 30%, rgba(179, 128, 74, 0.05), transparent 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── Layout ─── */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }

/* ─── Top nav ─── */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 241, 232, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
nav.top .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-weight: 700; font-size: 19px;
  letter-spacing: -0.01em; color: var(--green);
  text-decoration: none;
}
.brand .mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--green); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 800; font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; letter-spacing: 0.01em;
  transition: color .2s ease;
  padding: 4px 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.current {
  color: var(--green); border-bottom-color: var(--sand);
}
.nav-cta {
  padding: 12px 42px !important; border-radius: 999px;
  background: var(--green); color: var(--paper) !important;
  font-weight: 600 !important; font-size: 13.5px !important;
  letter-spacing: 0.01em;
  transition: background .2s, transform .15s;
  border-bottom: none !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.005em;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--green); color: var(--paper);
  box-shadow: 0 8px 24px rgba(15, 61, 46, 0.25);
}
.btn-primary:hover {
  background: var(--green-deep); transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 61, 46, 0.32);
}
.btn-ghost {
  background: transparent; color: var(--green);
  border-color: rgba(15, 61, 46, 0.30);
}
.btn-ghost:hover {
  background: rgba(15, 61, 46, 0.06);
  border-color: var(--green); transform: translateY(-2px);
}
.btn-on-dark.btn-primary {
  background: var(--paper); color: var(--green-deep);
  border-color: var(--paper);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.btn-on-dark.btn-primary:hover { background: var(--sand-warm); color: var(--green-deep); }
.btn-on-dark.btn-ghost {
  background: transparent; color: var(--paper);
  border-color: rgba(245, 241, 232, 0.55);
}
.btn-on-dark.btn-ghost:hover {
  background: rgba(245, 241, 232, 0.10);
  border-color: var(--paper); color: var(--paper);
}
.btn .arrow { width: 18px; height: 18px; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─── Hero (home) ─── full-bleed landscape image w/ right overlay */
section.hero {
  position: relative;
  min-height: clamp(460px, 62vh, 600px);
  overflow: hidden;
  isolation: isolate;
  background: var(--green-deep);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('/henry_hero_v3.webp');   /* mirrored — Henry on the right */
  background-size: cover;
  background-position: 70% 18%;                    /* Henry visible right; head pulled toward top so it lives BELOW the nav with breathing room */
  background-repeat: no-repeat;
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg,
      var(--green-deep)      0%,
      rgba(10, 42, 31, 0.92) 22%,
      rgba(10, 42, 31, 0.62) 42%,
      rgba(10, 42, 31, 0.18) 62%,
      rgba(10, 42, 31, 0.0)  78%,
      transparent            100%),
    linear-gradient(180deg, rgba(10, 42, 31, 0.10), rgba(10, 42, 31, 0.35));
}
.hero-grid {
  position: relative;
  min-height: clamp(460px, 62vh, 600px);
  display: grid; grid-template-columns: 1fr;
  align-items: center;
  padding: 90px 0 88px;
}
.hero-copy {
  max-width: 560px; margin-right: auto; margin-left: 0; text-align: left;
  color: var(--paper);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sand-soft);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(245, 241, 232, 0.22);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sand); box-shadow: 0 0 0 4px rgba(179, 128, 74, 0.20);
}
h1.hero-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(52px, 7.2vw, 92px);
  line-height: 0.98; letter-spacing: -0.025em;
  color: var(--paper); margin: 0 0 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
h1.hero-title .accent {
  font-style: italic; font-weight: 500; color: var(--sand-soft);
  position: relative; white-space: nowrap;
}
h1.hero-title .accent::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 50 2, 100 6 T 198 6' stroke='%23d2a878' stroke-width='2.5' fill='none' stroke-linecap='round' opacity='0.85'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}
.hero-sub {
  font-size: 19px; line-height: 1.55;
  color: rgba(245, 241, 232, 0.88);
  max-width: 520px; margin: 0 0 34px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Page hero (smaller, for child pages) ─── */
section.page-hero {
  position: relative;
  padding: 88px 0 56px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
section.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 90% 100%, rgba(15, 61, 46, 0.06), transparent 60%),
    radial-gradient(ellipse 600px 320px at 0% 0%, rgba(179, 128, 74, 0.06), transparent 60%);
  pointer-events: none;
}
.page-hero .page-eyebrow {
  font-family: var(--hand); font-size: 30px; color: var(--sand);
  line-height: 1; margin-bottom: 8px;
}
h1.page-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.04; letter-spacing: -0.022em;
  color: var(--green-deep);
  margin: 0 0 18px;
}
.page-lead {
  font-size: 19px; line-height: 1.55; color: var(--ink-soft);
  max-width: 640px; margin: 0;
}

/* ─── Section header (centered) ─── */
.section-head {
  max-width: 760px; margin: 0 auto 56px; text-align: center;
}
.section-eyebrow {
  font-family: var(--hand); font-size: 30px; color: var(--sand);
  line-height: 1; margin-bottom: 4px;
}
h2.section-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05; letter-spacing: -0.018em;
  color: var(--green-deep); margin: 0 0 14px;
}
.section-lead {
  font-size: 17.5px; line-height: 1.6;
  color: var(--ink-soft); max-width: 620px; margin: 0 auto;
}

/* ─── Priorities (home) ─── */
section.priorities {
  padding: 90px 0;
  background:
    linear-gradient(180deg, transparent, rgba(15, 61, 46, 0.025) 30%, rgba(15, 61, 46, 0.025) 70%, transparent),
    var(--bg);
  border-block: 1px solid var(--line);
}
.priority-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.priority {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 44px 28px 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.priority::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--leaf));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.priority:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 61, 46, 0.20);
}
.priority:hover::before { transform: scaleX(1); }
.priority .icon-box {
  width: 72px; height: 72px; border-radius: 16px;
  background: var(--green-glow);
  display: grid; place-items: center;
  margin: 0 auto 24px; color: var(--green);
}
.priority h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: 30px; letter-spacing: -0.01em;
  margin: 0 0 12px; color: var(--green-deep);
}
.priority p {
  font-size: 16px; line-height: 1.6; color: var(--ink-soft);
  margin: 0; max-width: 280px;
}
.priority .pill {
  display: inline-block;
  margin-top: auto; padding-top: 22px; font-size: 12.5px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--sand); font-weight: 600;
}

/* ─── Meet Henry ─── */
section.about-home {
  padding: 100px 0 90px;
}
.about-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 64px; align-items: start;
}
.about-photo {
  position: sticky; top: 100px;
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--paper);
}
.about-photo img {
  width: 100%; height: auto; display: block;
  filter: saturate(1.02);
}
.about-body h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.05; letter-spacing: -0.018em;
  color: var(--green-deep); margin: 0 0 6px;
}
.about-body .role {
  font-family: var(--hand); font-size: 26px;
  color: var(--sand); margin-bottom: 24px; line-height: 1;
}
.about-body p {
  font-size: 16.5px; line-height: 1.7; color: var(--ink-soft);
  margin: 0 0 18px;
}
.about-body p:first-of-type::first-letter {
  font-family: var(--serif); font-weight: 700;
  font-size: 56px; line-height: 1; float: left;
  padding: 6px 12px 0 0; color: var(--green);
}
.experience {
  margin-top: 36px;
  padding: 28px 28px 24px;
  background: var(--paper);
  border-left: 4px solid var(--sand);
  border-radius: 4px 14px 14px 4px;
}
.experience h4 {
  font-family: var(--serif); font-weight: 700;
  font-size: 16px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--green);
  margin: 0 0 14px;
}
.experience ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.experience li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 15.5px; color: var(--ink); line-height: 1.45;
}
.experience li::before {
  content: ''; flex: 0 0 6px; height: 6px; border-radius: 50%;
  background: var(--green); transform: translateY(-2px);
}

/* ─── Pull quote ─── */
section.quote {
  padding: 100px 0; text-align: center;
}
.quote-mark {
  font-family: var(--serif); font-size: 110px;
  line-height: 1; color: var(--sand);
  font-style: italic; margin-bottom: -34px; opacity: 0.85;
}
blockquote {
  margin: 0 auto; max-width: 820px;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px); line-height: 1.25;
  letter-spacing: -0.012em; color: var(--green-deep);
}
.quote-attrib {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-mute);
}
.quote-attrib::before, .quote-attrib::after {
  content: ''; width: 36px; height: 1.5px; background: var(--sand);
}

/* ─── Article content (child pages) ─── */
section.article {
  padding: 80px 0 100px;
}
.article-body {
  max-width: 760px; margin: 0 auto;
  padding: 0 28px;  /* mobile L/R breathing room — matches .wrap-narrow */
  font-size: 17px; line-height: 1.75; color: var(--ink-soft);
}
.article-body h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.12; letter-spacing: -0.015em;
  color: var(--green-deep);
  margin: 56px 0 16px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--green); margin: 36px 0 12px;
}
.article-body p { margin: 0 0 18px; }
.article-body p.lead {
  font-size: 19px; color: var(--ink);
  border-left: 3px solid var(--sand);
  padding-left: 20px; margin-bottom: 28px;
  font-style: italic;
}
.article-body figure.pullout {
  margin: 30px 0; padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 4px 14px 14px 4px;
  font-family: var(--serif); font-style: italic;
  color: var(--green-deep); font-size: 19px; line-height: 1.5;
}

/* Pillars grid (Vision page) */
.pillar-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 1000px; margin: 40px auto 0;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px 28px;
  transition: transform .2s, box-shadow .2s;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.pillar .num {
  font-family: var(--hand); font-size: 36px;
  color: var(--sand); line-height: 1;
  margin-bottom: 8px;
}
.pillar h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: 22px; color: var(--green-deep);
  margin: 0 0 10px; letter-spacing: -0.01em;
}
.pillar p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* Policy stack */
.policy-stack { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.policy {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 32px 30px;
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  align-items: start;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.policy:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(15, 61, 46, 0.18);
}
.policy .pico {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--green-glow); color: var(--green);
  display: grid; place-items: center;
}
.policy h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: 24px; color: var(--green-deep);
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.policy p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 8px; }
.policy p:last-child { margin: 0; }
.policy .tag {
  display: inline-block; margin-top: 8px;
  font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--sand); font-weight: 600;
}

/* ─── Contact ─── */
section.contact {
  padding: 100px 0 110px;
  background: linear-gradient(180deg, var(--bg-warm), var(--bg));
  border-top: 1px solid var(--line);
}
.contact-shell {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 56px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.contact-info h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 3.0vw, 36px);
  line-height: 1.05; letter-spacing: -0.018em;
  color: var(--green-deep);
  margin: 0 0 24px;
  white-space: nowrap;
}
.info-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.info-row:last-child { border-bottom: 1px solid var(--line); }
.info-row .ico {
  flex: 0 0 36px; height: 36px; border-radius: 10px;
  background: var(--green-glow); color: var(--green);
  display: grid; place-items: center; margin-top: 2px;
}
.info-row .label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--ink-mute);
}
.info-row .val {
  font-size: 16px; color: var(--ink); font-weight: 500; margin-top: 1px;
}
.info-row a { text-decoration: none; }
.info-row a:hover { color: var(--green); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 38px 36px 32px;
  box-shadow: var(--shadow-card);
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 18px 18px; margin-bottom: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field textarea {
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #ffffff;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.field input:focus, .field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 61, 46, 0.12);
}
.field input.invalid, .field textarea.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(180, 73, 63, 0.10);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .err { display: none; font-size: 12px; color: var(--red); margin-top: 2px; }
.field.err-shown .err { display: block; }
.honey {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; opacity: 0;
}
.form-foot {
  display: flex; align-items: center; gap: 14px;
  justify-content: space-between; flex-wrap: wrap;
}
.char-count { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em; }
button#submitBtn {
  font-family: inherit; font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  padding: 13px 30px; border-radius: 999px;
  background: var(--green); color: var(--paper);
  border: 1px solid var(--green); cursor: pointer;
  transition: transform .15s, background .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 6px 18px rgba(15, 61, 46, 0.18);
}
button#submitBtn:not(:disabled):hover {
  background: var(--green-deep); transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(15, 61, 46, 0.28);
}
button#submitBtn:disabled { opacity: 0.45; cursor: not-allowed; }
.status {
  flex-basis: 100%;
  font-size: 14px; padding: 10px 0 0; min-height: 18px;
}
.status.ok { color: var(--green); }
.status.bad { color: var(--red); }

/* ─── Footer ─── */
footer.site {
  background: var(--green-deep);
  color: rgba(245, 241, 232, 0.72);
  padding: 56px 0 36px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px; margin-bottom: 36px;
}
.foot-brand {
  font-family: var(--serif); font-weight: 700;
  font-size: 22px; color: var(--paper);
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.foot-brand .tag {
  display: block; font-family: var(--hand); font-size: 20px;
  color: var(--sand-soft); font-weight: 500;
  margin-top: 2px; line-height: 1;
}
.foot-blurb { font-size: 14px; line-height: 1.65; max-width: 340px; }
.foot-col h5 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--sand-soft); margin: 4px 0 14px;
}
.foot-col a {
  display: block; color: rgba(245, 241, 232, 0.78);
  text-decoration: none; font-size: 14.5px;
  padding: 4px 0; transition: color .15s;
}
.foot-col a:hover { color: var(--paper); }
.foot-base {
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: rgba(245, 241, 232, 0.55);
}
.ip-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(245, 241, 232, 0.12);
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(245, 241, 232, 0.75); cursor: help;
}
.ip-badge svg { color: var(--sand-soft); }
.foot-base a { color: var(--sand-soft); text-decoration: none; }
.foot-base a:hover { color: var(--paper); }

/* ─── Back-to-top button ─── */
#backToTop {
  position: fixed; right: 24px; bottom: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: var(--paper);
  border: 1px solid rgba(245, 241, 232, 0.15);
  box-shadow: 0 8px 24px rgba(10, 42, 31, 0.30);
  display: grid; place-items: center;
  cursor: pointer; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s, visibility .25s, transform .25s, background .2s;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--green-deep); transform: translateY(-2px); }
#backToTop svg { width: 22px; height: 22px; }

/* ─── Coming-soon (blog) ─── */
section.coming-soon {
  padding: 120px 0 140px;
  min-height: calc(100vh - 68px - 280px);
  display: grid; place-items: center;
  background:
    radial-gradient(ellipse 700px 400px at 50% 30%, rgba(15, 61, 46, 0.08), transparent 70%),
    var(--bg);
}
.cs-card {
  max-width: 580px; text-align: center;
  padding: 56px 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}
.cs-card .cs-mark {
  width: 76px; height: 76px; border-radius: 22px;
  background: var(--green); color: var(--paper);
  display: grid; place-items: center; margin: 0 auto 24px;
}
.cs-card .cs-hand {
  font-family: var(--hand); font-size: 30px;
  color: var(--sand); line-height: 1; margin-bottom: 6px;
}
.cs-card h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.05; letter-spacing: -0.018em;
  color: var(--green-deep); margin: 0 0 16px;
}
.cs-card p {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-soft); margin: 0 0 28px;
}

/* ─── Blog: article meta + figure + lists + source notes ─── */
.article-meta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px; margin-top: 18px;
  font-size: 14px; color: var(--ink-soft);
  font-family: var(--sans);
}
.article-meta .article-date { font-weight: 600; color: var(--green-deep); }
.article-meta .article-dot { color: var(--sand); }
.article-meta .article-cat { color: var(--ink-soft); letter-spacing: 0.02em; }

.article-figure {
  margin: 36px 0;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}
.article-figure img {
  display: block; width: 100%; height: auto;
}
.article-figure figcaption {
  padding: 14px 22px 18px;
  font-size: 14px; line-height: 1.55;
  color: var(--ink-soft);
  font-family: var(--sans);
  border-top: 1px solid var(--line);
  background: var(--bg-warm);
}

ol.article-list {
  margin: 0 0 22px 0; padding: 0;
  list-style: none;
  counter-reset: ali;
}
ol.article-list li {
  position: relative;
  padding: 4px 0 4px 44px;
  margin: 0 0 6px 0;
  counter-increment: ali;
}
ol.article-list li::before {
  content: counter(ali) ".";
  position: absolute; left: 0; top: 4px;
  width: 32px;
  font-weight: 700; color: var(--green-deep);
  font-family: var(--sans);
}

aside.source-notes {
  margin-top: 64px;
  padding: 28px 30px 24px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-left: 4px solid var(--sand);
  border-radius: 4px 14px 14px 4px;
}
aside.source-notes h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: 18px; letter-spacing: -0.01em;
  color: var(--green-deep); margin: 0 0 12px;
}
aside.source-notes ol {
  margin: 0; padding-left: 22px;
  font-size: 14px; line-height: 1.6;
  color: var(--ink-soft);
}
aside.source-notes ol li { margin: 0 0 8px; }
aside.source-notes ol li a {
  color: var(--green-deep); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(15, 61, 46, 0.32);
  transition: text-decoration-color .2s, color .2s;
}
aside.source-notes ol li a:hover {
  color: var(--green);
  text-decoration-color: var(--green);
}

/* ─── PDF download callout (inside article) ─── */
a.download-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin: 32px 0 36px;
  padding: 22px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 4px 14px 14px 4px;
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
a.download-callout:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-left-color: var(--green-deep);
}
.download-callout .dl-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--green);
  color: var(--paper);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.download-callout .dl-body { min-width: 0; }
.download-callout .dl-eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--green); margin-bottom: 4px;
  font-family: var(--sans);
}
.download-callout .dl-title {
  font-family: var(--serif); font-weight: 700;
  font-size: 18px; line-height: 1.25;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.download-callout .dl-meta {
  font-size: 13px; color: var(--ink-soft);
  font-family: var(--sans);
}
.download-callout .dl-cta {
  display: inline-flex; align-items: center;
  gap: 8px;
  font-weight: 600; color: var(--green-deep);
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 16px;
  border: 1px solid rgba(15, 61, 46, 0.18);
  border-radius: 999px;
  background: var(--bg-warm);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  flex-shrink: 0;
}
a.download-callout:hover .dl-cta {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--paper);
  transform: translateX(2px);
}

@media (max-width: 640px) {
  a.download-callout {
    grid-template-columns: auto 1fr;
    gap: 16px; padding: 18px 20px;
  }
  .download-callout .dl-cta {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 4px;
  }
  .download-callout .dl-icon { width: 48px; height: 48px; }
  .download-callout .dl-icon svg { width: 26px; height: 26px; }
  .download-callout .dl-title { font-size: 17px; }
}

/* ─── Consultation CTA (Google Form) ─── */
.consultation-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; gap: 26px;
  margin: 28px 0 32px;
  padding: 28px 30px;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  border-radius: 18px;
  color: var(--paper);
  box-shadow: 0 12px 32px rgba(10, 42, 31, 0.18);
}
.consultation-cta .cc-eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--sand-soft);
  font-family: var(--sans);
  margin-bottom: 6px;
}
.consultation-cta .cc-title {
  font-family: var(--serif); font-weight: 700;
  font-size: 24px; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0 0 8px;
}
.consultation-cta .cc-text {
  font-size: 15px; line-height: 1.55;
  color: rgba(245, 241, 232, 0.86);
  margin: 0;
}
.consultation-cta .cc-btn {
  flex-shrink: 0;
  background: var(--paper);
  color: var(--green-deep);
  border: 1px solid var(--paper);
  font-weight: 700;
  padding: 14px 22px;
}
.consultation-cta .cc-btn:hover {
  background: var(--sand-warm);
  color: var(--green-deep);
  border-color: var(--sand-warm);
}
.consultation-cta .cc-btn .arrow {
  transition: transform .2s;
}
.consultation-cta .cc-btn:hover .arrow {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .consultation-cta {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    gap: 18px;
  }
  .consultation-cta .cc-title { font-size: 22px; }
  .consultation-cta .cc-btn { justify-content: center; }
}

/* ─── Blog: listing page ─── */
.blog-list {
  max-width: 860px; margin: 0 auto;
  padding: 0 28px;
  display: grid; gap: 28px;
}
a.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .25s, border-color .2s;
  box-shadow: 0 1px 2px rgba(10, 42, 31, 0.04);
}
a.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(15, 61, 46, 0.22);
}
.blog-card-media {
  background: var(--green-deep);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}
.blog-card-media img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
a.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body {
  padding: 26px 30px 28px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.blog-card-meta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px;
  font-size: 13px; color: var(--ink-soft);
  font-family: var(--sans);
  margin-bottom: 10px;
}
.blog-card-meta .blog-card-date { font-weight: 600; color: var(--green-deep); }
.blog-card-meta .blog-card-dot { color: var(--sand); }
.blog-card-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.18; letter-spacing: -0.012em;
  color: var(--green-deep);
  margin: 0 0 12px;
}
.blog-card-excerpt {
  font-size: 16px; line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.blog-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--green);
  font-size: 15px;
  transition: gap .2s, color .2s;
}
.blog-card-cta .arrow { width: 16px; height: 16px; transition: transform .2s; }
a.blog-card:hover .blog-card-cta { color: var(--green-deep); gap: 12px; }
a.blog-card:hover .blog-card-cta .arrow { transform: translateX(2px); }

.blog-list-more {
  max-width: 580px; margin: 16px auto 0;
  text-align: center; padding: 36px 32px 32px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: var(--bg-warm);
}
.blog-list-more .cs-hand {
  font-family: var(--hand); font-size: 26px;
  color: var(--sand); line-height: 1; margin-bottom: 6px;
}
.blog-list-more p {
  font-size: 15px; line-height: 1.55;
  color: var(--ink-soft); margin: 0;
}

@media (max-width: 720px) {
  a.blog-card {
    grid-template-columns: 1fr;
  }
  .blog-card-media { aspect-ratio: 16 / 9; }
  .blog-card-body { padding: 22px 24px 26px; }
  ol.article-list li { padding-left: 36px; }
  ol.article-list li::before { width: 28px; }
  aside.source-notes { padding: 24px 22px 20px; margin-top: 48px; }
  .article-figure { margin: 28px -12px; border-radius: 10px; }
}

/* ─── Section variants (mainly for /about) ─── */
section.section-light { background: var(--paper); }
section.section-warm { background: var(--bg-warm); }
section.section-sand {
  background: linear-gradient(135deg, var(--sand-warm) 0%, var(--bg-warm) 100%);
  border-block: 1px solid rgba(179, 128, 74, 0.18);
}
section.section-dark {
  background: var(--green-deep);
  color: rgba(245, 241, 232, 0.86);
  border-block: 1px solid rgba(245, 241, 232, 0.06);
}
.section-dark h2.section-title,
.section-dark .article-body h2,
.section-dark .article-body h3 { color: var(--paper); }
.section-dark .article-body { color: rgba(245, 241, 232, 0.86); }
.section-dark .article-body p.lead { color: var(--paper); border-left-color: var(--sand); }
.section-dark .article-body figure.pullout {
  background: rgba(245, 241, 232, 0.06);
  border-color: rgba(245, 241, 232, 0.08);
  border-left-color: var(--sand);
  color: var(--paper);
}
.section-dark .section-eyebrow,
.section-dark .page-eyebrow { color: var(--sand-soft); }
.section-dark .article-body p:first-of-type::first-letter {
  color: var(--sand-soft);
}

/* ─── Inline photos within article body ─── */
.article-body figure.inline-photo {
  margin: 36px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--paper);
}
.article-body figure.inline-photo img {
  width: 100%; height: auto; display: block;
}
.article-body figure.inline-photo figcaption {
  padding: 13px 18px;
  font-family: var(--serif);
  font-size: 14px; font-style: italic;
  color: var(--ink-mute);
  text-align: center;
}
.section-dark .article-body figure.inline-photo {
  background: rgba(245, 241, 232, 0.05);
  box-shadow: 0 12px 36px rgba(0,0,0,0.32);
}
.section-dark .article-body figure.inline-photo figcaption {
  color: var(--sand-soft);
}
.photo-duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin: 38px 0;
}
.photo-duo figure {
  margin: 0; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-card); background: var(--paper);
}
.photo-duo figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.photo-duo figcaption {
  padding: 11px 14px; font-family: var(--serif);
  font-size: 13px; font-style: italic;
  color: var(--ink-mute); text-align: center;
}
.section-dark .photo-duo figure { background: rgba(245, 241, 232, 0.05); }
.section-dark .photo-duo figcaption { color: var(--sand-soft); }

/* ─── Editor's note (sits above Snapshot on About) ─── */
section.editor-note {
  padding: 56px 0 24px;
  background: var(--bg);
}
.editor-note-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 44px 32px;
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  position: relative;
}
.editor-note-card::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--sand), transparent 75%);
  border-radius: 0 0 3px 3px;
}
.editor-note-card .note-headline {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600;
  font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}
.editor-note-card .note-headline svg {
  width: 14px; height: 14px;
  flex: 0 0 14px;
}
.editor-note-card .note-body {
  font-family: var(--note);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.48;
  color: var(--ink);
  letter-spacing: 0.005em;
  margin: 0;
}
.editor-note-card .note-body em {
  font-style: normal;                /* Patrick Hand has no italic — emphasise via colour + underline */
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--sand);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}
.editor-note-card .note-sig {
  display: block;
  margin-top: 14px;
  font-family: var(--hand);       /* Caveat for signature flourish */
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  color: var(--sand);
  text-align: right;
  letter-spacing: 0.005em;
}
@media (max-width: 640px) {
  section.editor-note { padding: 40px 0 16px; }
  .editor-note-card { padding: 28px 24px 24px; margin: 0 16px; }
  .editor-note-card .note-body { font-size: 18px; }
}

/* ─── Photo row (3 equal cards, used in About chronology) ─── */
.photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 36px auto 0;
}
.photo-row figure {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--paper);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.photo-row figure:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.photo-row figure img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.photo-row figure img.align-top { object-position: center top; }
.photo-row figure img.align-bottom { object-position: center 88%; }
.photo-row figure figcaption {
  padding: 12px 16px 14px;
  font-family: var(--serif);
  font-size: 13.5px;
  font-style: italic;
  color: var(--ink-mute);
  text-align: center;
  line-height: 1.35;
}
.photo-row figure figcaption .small {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  font-style: normal;
  margin-bottom: 4px;
}
.section-dark .photo-row figure {
  background: rgba(245, 241, 232, 0.05);
}
.section-dark .photo-row figure figcaption {
  color: rgba(245, 241, 232, 0.78);
}
.section-dark .photo-row figure figcaption .small {
  color: var(--sand-soft);
}
@media (max-width: 720px) {
  .photo-row { grid-template-columns: 1fr; gap: 14px; }
}

/* ─── Snapshot gallery (legacy — keep for compatibility) ─── */
section.snapshot-gallery {
  padding: 86px 0 90px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 560px;
}
.gallery-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--paper);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.gallery-card.big { grid-row: span 2; }
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 50px 22px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,42,31,0.88) 90%);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 16px; font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.gallery-card figcaption .small {
  display: block;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--sand-soft);
  margin-bottom: 5px; font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* ─── Page nav (prev / next CTA pair at bottom of each page) ─── */
.page-nav {
  max-width: 760px;
  margin: 68px auto 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.page-nav.page-nav-end { justify-content: flex-end; }
.page-nav .nav-prev,
.page-nav .nav-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn .arrow-left {
  width: 18px; height: 18px;
  transition: transform .25s ease;
}
.btn:hover .arrow-left { transform: translateX(-4px); }
.section-dark .page-nav .btn-ghost {
  color: var(--paper);
  border-color: rgba(245, 241, 232, 0.40);
}
.section-dark .page-nav .btn-ghost:hover {
  background: rgba(245, 241, 232, 0.08);
  border-color: var(--paper);
}
@media (max-width: 640px) {
  .page-nav { gap: 12px; }
  .page-nav .btn { padding: 12px 20px; font-size: 14px; }
}

/* ─── Page-load "construct" animation ─── */
@keyframes constructIn {
  from {
    opacity: 0;
    transform: translateY(30px);
    clip-path: inset(0 64% 0 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}
main > section {
  animation: constructIn .80s cubic-bezier(.20, .80, .20, 1) backwards;
}
main > section:nth-of-type(1) { animation-delay: .04s; }
main > section:nth-of-type(2) { animation-delay: .18s; }
main > section:nth-of-type(3) { animation-delay: .32s; }
main > section:nth-of-type(4) { animation-delay: .46s; }
main > section:nth-of-type(5) { animation-delay: .60s; }
main > section:nth-of-type(6) { animation-delay: .74s; }
main > section:nth-of-type(7) { animation-delay: .88s; }
main > section:nth-of-type(8) { animation-delay: 1.02s; }

/* ─── Page-leave transition (when clicking internal nav) ─── */
main { transition: opacity .25s ease, transform .25s ease; }
body.is-leaving main {
  opacity: 0;
  transform: translateY(-14px);
}

@media (prefers-reduced-motion: reduce) {
  main > section { animation: none !important; }
  main, body.is-leaving main { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .hero-copy { margin-left: 0; max-width: 100%; }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(10, 42, 31, 0.30), rgba(10, 42, 31, 0.85)),
      var(--green-deep);
  }
  .priority-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { position: static; max-width: 460px; margin: 0 auto; }
  .contact-shell { grid-template-columns: 1fr; gap: 38px; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .policy { grid-template-columns: 1fr; gap: 16px; }
  .policy .pico { width: 48px; height: 48px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; }
  .gallery-card.big { grid-row: span 1; }
  .gallery-card { aspect-ratio: 4/3; }
}
@media (max-width: 640px) {
  .photo-duo { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { font-size: 13px; }
  section.hero { min-height: 580px; }
  section.priorities, section.about-home, section.quote, section.contact, section.article { padding: 64px 0; }
  .form-card { padding: 28px 22px; }
  .foot-base { flex-direction: column; align-items: flex-start; }
  #backToTop { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ─── Mobile nav drawer + mobile hero (2026-05-16) ─── */
.nav-hamburger {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 0;
  margin-left: 4px;
  flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: 10px;
  transition: background .15s;
}
.nav-hamburger:hover { background: rgba(15, 61, 46, 0.08); }
.nav-hamburger .bar {
  display: block; width: 22px; height: 2px;
  background: var(--green); border-radius: 2px;
  margin: 3px 0;
  transition: transform .25s, opacity .15s;
}
/* Open state — bars morph into an 'H': top→left leg, mid→crossbar, bottom→right leg */
.nav-hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translate(-6px, 8px) rotate(90deg);
}
.nav-hamburger[aria-expanded="true"] .bar:nth-child(2) {
  transform: scaleX(0.55);
}
.nav-hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translate(6px, -8px) rotate(90deg);
}
.nav-drawer {
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(15, 61, 46, 0.10);
}
.nav-drawer a {
  display: block;
  padding: 16px 28px;
  font-size: 16px; font-weight: 500;
  color: var(--green-deep); text-decoration: none;
  border-top: 1px solid var(--line);
  letter-spacing: 0.01em;
}
.nav-drawer a:first-child { border-top: 0; }
.nav-drawer a:hover { background: rgba(15, 61, 46, 0.05); color: var(--green); }
.nav-drawer.is-open { display: block; }

/* Mobile hero image (hidden on desktop; visible only below 640px) */
.hero-mobile-img {
  display: none;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 70% 18%;
}

@media (max-width: 640px) {
  /* Show hamburger, hide regular nav text links (keep CTA visible) */
  .nav-hamburger { display: inline-flex; }
  .nav-links a:not(.nav-cta) { display: none; }

  /* Slim down the 'Get in touch' button so the hamburger fits comfortably */
  .nav-cta {
    padding: 9px 18px !important;
    font-size: 12.5px !important;
  }

  /* Mobile hero: show banner image at top of hero, slim down the dark text section */
  .hero-mobile-img { display: block; }
  section.hero { min-height: auto; }
  .hero-bg { display: none; }
  .hero-grid { padding: 56px 0 64px; min-height: auto; }
  .hero-veil {
    background:
      linear-gradient(180deg, var(--green-deep) 0%, rgba(10, 42, 31, 0.95) 100%);
  }
}

/* ─── A11y focus ─── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* ─── Round 2 mobile refinements (2026-05-16) ─── */
/* FB icon link — flush, vertically centered, same colour as siblings */
.foot-col a.fb-link {
  display: inline-flex; align-items: center; gap: 8px;
}
.foot-col a.fb-link svg { flex-shrink: 0; }

@media (max-width: 640px) {
  /* Fit "Grow Adelaide." on a single line — hide the <br>, tighten clamp */
  .hero-title br { display: none; }
  h1.hero-title { font-size: clamp(40px, 11vw, 56px); letter-spacing: -0.03em; }
  /* Subtitle one size down */
  .hero-sub { font-size: 17px; }
}

/* ─── Mobile: hide brand mark, enlarge 'Henry Davis' (2026-05-16) ─── */
@media (max-width: 640px) {
  .brand .mark { display: none; }
  .brand { font-size: 22px; }
}

/* .article-sig — closing handwritten signature (2026-05-16) */
.article-sig {
  display: block;
  margin-top: 32px;
  font-family: var(--hand);   /* Caveat */
  font-weight: 600;
  font-size: clamp(30px, 4.2vw, 42px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--sand);
  text-align: right;
}
.section-dark .article-sig { color: var(--sand-soft); }
