/* ============================================================
   EAS TREE LOPPING SYDNEY — STYLESHEET
   Design system: deep forest green + charcoal + warm paper,
   with a timber-amber accent and a tree-ring (cross-section)
   motif as the recurring signature element — literally what a
   lopped branch reveals.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Color: forest greens */
  --forest-950: #142b1f;   /* darkest — hero / footer / dark bands */
  --forest-800: #1e3d2a;   /* alternate dark section */
  --forest-700: #2f5a3d;   /* solid button fill (AA vs white text) */
  --forest-600: #3b6b4a;   /* links, icons, mid accents on light bg */
  --forest-100: #dce6dd;   /* faint tint for borders/hovers on dark */

  /* Color: neutrals */
  --charcoal: #24272b;     /* body copy */
  --charcoal-600: #4b4f54; /* muted / secondary text */
  --paper: #faf7f1;        /* main light background (warm, not stark white) */
  --paper-dim: #f0ebe0;    /* alternating card / section background */
  --sage-mist: #e4ebe3;    /* alternating light-green section background */
  --white: #ffffff;

  /* Color: accent */
  --amber: #c8722e;        /* timber / hi-vis accent — used sparingly */
  --amber-dark: #a85f24;
  --amber-tint: #f4e3d3;

  /* Type */
  --font-display: "Bitter", Georgia, "Times New Roman", serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  /* Scale */
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.35rem + 0.7vw, 1.9rem);
  --step-3: clamp(1.9rem, 1.6rem + 1.3vw, 2.6rem);
  --step-4: clamp(2.4rem, 1.9rem + 2.2vw, 3.6rem);

  /* Layout */
  --container: 1180px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --space-section: clamp(4rem, 3.2rem + 3.5vw, 7rem);
  --shadow-card: 0 1px 2px rgba(20, 43, 31, 0.06), 0 8px 24px -12px rgba(20, 43, 31, 0.18);
  --shadow-lift: 0 20px 45px -20px rgba(20, 43, 31, 0.35);
}

/* ---------- Fonts ---------- */
@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@500;600;700;800&family=Karla:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@500&display=swap");

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--charcoal);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest-950);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { max-width: 62ch; }
.lede { font-size: var(--step-1); color: var(--charcoal-600); }

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute; top: -48px; left: 1rem;
  background: var(--forest-950); color: var(--white);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  z-index: 1000; transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.section { padding-block: var(--space-section); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section--dark { background: var(--forest-950); color: var(--paper); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark .lede { color: rgba(250, 247, 241, 0.78); }
.section--sage { background: var(--sage-mist); }
.section--dim { background: var(--paper-dim); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.6rem + 1.5vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--forest-600); font-weight: 500;
  margin-bottom: 0.9rem;
}
.section--dark .eyebrow { color: var(--amber); }
.eyebrow::before {
  content: ""; width: 20px; height: 2px; background: currentColor; display: inline-block;
}

.grid {
  display: grid; gap: clamp(1.25rem, 1rem + 1vw, 2rem);
}
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }

.btn--amber { background: var(--amber); color: var(--forest-950); }
.btn--amber:hover { background: var(--amber-dark); color: var(--white); box-shadow: var(--shadow-lift); }

.btn--dark { background: var(--forest-950); color: var(--white); }
.btn--dark:hover { background: var(--forest-800); box-shadow: var(--shadow-lift); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--ghost-dark { background: transparent; color: var(--forest-950); border-color: var(--forest-950); }
.btn--ghost-dark:hover { background: var(--forest-950); color: var(--white); }

.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ---------- Top bar (desktop only) ---------- */
.topbar { display: none; background: var(--forest-950); color: rgba(250,247,241,0.82); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding-block: 0.5rem; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.02em; }
.topbar__item { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar__item svg { width: 1em; height: 1em; color: var(--amber); flex-shrink: 0; }
.topbar a.topbar__item:hover { color: var(--amber); }
@media (min-width: 900px) { .topbar { display: block; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 43, 31, 0.08);
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.9rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--forest-950); }
.brand > span { white-space: nowrap; }
.brand__mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand__text-sub { display: block; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest-600); font-weight: 500; }

.nav { display: none; }
.nav__list { display: flex; gap: 2rem; font-weight: 600; font-size: 0.96rem; }
.nav__list a { position: relative; padding-block: 0.3rem; }
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--amber); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.nav__list a:hover::after, .nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav__list a[aria-current="page"] { color: var(--forest-700); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-actions .btn--dark { display: none; }
@media (min-width: 900px) { .header-actions .btn--dark { display: inline-flex; } }
.header-call {
  display: none; align-items: center; gap: 0.5rem; font-weight: 700;
  color: var(--forest-950); font-family: var(--font-mono); font-size: 0.98rem;
}
.header-call svg { width: 1.2em; height: 1.2em; color: var(--amber); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: transparent; border: 1px solid rgba(20,43,31,0.18);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="false"] .icon-close { display: none; }

.mobile-nav {
  position: fixed; inset: 0; top: 0; z-index: 600;
  background: var(--forest-950); color: var(--white);
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.28s ease;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 0.25rem; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; }
.mobile-nav__list a { display: block; padding-block: 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-nav__close { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius-sm); background: transparent; color: var(--white); }
.mobile-nav__close svg { width: 20px; height: 20px; }
.mobile-nav__foot { margin-top: auto; }

@media (min-width: 900px) {
  .nav { display: block; }
  .header-call { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--forest-950);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(3rem, 2.4rem + 3vw, 6rem);
}
.hero::before {
  /* Tree-ring signature motif, oversized and off-canvas */
  content: "";
  position: absolute;
  top: 50%; right: -18%;
  width: min(1100px, 90vw); aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      rgba(200, 114, 46, 0.16) 0px, rgba(200, 114, 46, 0.16) 2px,
      transparent 2px, transparent 26px,
      rgba(250, 247, 241, 0.07) 26px, rgba(250, 247, 241, 0.07) 28px,
      transparent 28px, transparent 54px);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; gap: 2.5rem;
  align-items: center;
}
@media (min-width: 980px) { .hero__inner { grid-template-columns: 1.1fr 0.7fr; } }

.hero__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(250, 247, 241, 0.08);
  border: 1px solid rgba(250, 247, 241, 0.22);
  padding: 0.5rem 1rem; border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.hero__badge svg { width: 1em; height: 1em; color: var(--amber); }

.hero h1 { color: var(--white); font-size: var(--step-4); max-width: 26ch; }
.hero .lede { max-width: 42ch; margin-block: 1.25rem 2rem; font-size: var(--step-1); color: rgba(250, 247, 241, 0.82); }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 2.25rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(250, 247, 241, 0.15);
}
.hero__trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: rgba(250,247,241,0.85); }
.hero__trust-item svg { width: 1.3em; height: 1.3em; color: var(--amber); flex-shrink: 0; }

/* Rating medallion — tree-ring cross-section styling */
.medallion {
  width: clamp(150px, 18vw, 200px); aspect-ratio: 1; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; margin-inline: auto;
  background:
    repeating-radial-gradient(circle at center,
      var(--paper) 0, var(--paper) 6px,
      var(--amber-tint) 6px, var(--amber-tint) 11px,
      var(--paper) 11px, var(--paper) 16px,
      #e9d3ba 16px, #e9d3ba 20px);
  border: 3px solid var(--forest-950);
  color: var(--forest-950);
  box-shadow: var(--shadow-lift);
}
.medallion strong { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.medallion span { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.3rem; }
.medallion .stars { color: var(--amber-dark); font-size: 0.95rem; margin-top: 0.15rem; }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  display: flex; gap: 0.6rem;
  padding: 0.7rem 0.8rem;
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid rgba(20,43,31,0.12);
  box-shadow: 0 -8px 24px rgba(20,43,31,0.12);
}
.mobile-cta-bar .btn { flex: 1; padding-block: 0.85rem; font-size: 0.95rem; }
@media (min-width: 900px) { .mobile-cta-bar { display: none; } }
body.has-mobile-cta { padding-bottom: 76px; }
@media (min-width: 900px) { body.has-mobile-cta { padding-bottom: 0; } }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20,43,31,0.06);
}

.service-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--sage-mist); color: var(--forest-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: var(--step-1); margin-bottom: 0.6rem; }
.service-card p { color: var(--charcoal-600); margin-bottom: 1.1rem; }
.service-card__link { font-weight: 700; color: var(--forest-700); display: inline-flex; align-items: center; gap: 0.4rem; }
.service-card__link svg { width: 1.1em; height: 1.1em; transition: transform 0.15s ease; }
.service-card__link:hover svg { transform: translateX(3px); }

/* Why choose us */
.reason { display: flex; gap: 1rem; align-items: flex-start; }
.reason__icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--forest-950); color: var(--amber);
  display: flex; align-items: center; justify-content: center;
}
.reason__icon svg { width: 22px; height: 22px; }
.reason h3 { font-size: 1.08rem; margin-bottom: 0.3rem; }
.reason p { color: var(--charcoal-600); font-size: 0.96rem; }

/* Process */
.process-list { counter-reset: step; display: grid; gap: 1.75rem; }
@media (min-width: 760px) { .process-list { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.process-step { position: relative; padding-top: 0.25rem; }
.process-step__ring {
  counter-increment: step;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  color: var(--forest-950); margin-bottom: 1.1rem;
  background:
    repeating-radial-gradient(circle at center,
      var(--sage-mist) 0, var(--sage-mist) 5px,
      var(--white) 5px, var(--white) 9px,
      var(--sage-mist) 9px, var(--sage-mist) 13px);
  border: 2px solid var(--forest-700);
}
.process-step__ring::before { content: counter(step); }
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.process-step p { color: var(--charcoal-600); font-size: 0.94rem; }

/* Testimonials */
.review-card { display: flex; flex-direction: column; gap: 1rem; }
.review-card .stars { color: var(--amber-dark); letter-spacing: 0.1em; }
.review-card blockquote { font-family: var(--font-display); font-size: 1.08rem; color: var(--forest-950); line-height: 1.5; }
.review-card figcaption { font-size: 0.86rem; color: var(--charcoal-600); font-family: var(--font-mono); }

.reviews-summary {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  margin-bottom: 2.5rem; padding: 1.5rem; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow-card);
}
.reviews-summary .stars { font-size: 1.4rem; color: var(--amber-dark); }
.reviews-summary strong { font-family: var(--font-display); font-size: 1.6rem; }

/* Placeholder media block (for real photos to be added later) */
.media-placeholder {
  border: 2px dashed rgba(20,43,31,0.28);
  border-radius: var(--radius-lg);
  background: var(--sage-mist);
  min-height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; text-align: center; padding: 1.5rem;
  color: var(--forest-800);
}
.media-placeholder svg { width: 34px; height: 34px; opacity: 0.7; }
.media-placeholder span { font-size: 0.86rem; font-weight: 600; max-width: 26ch; }

/* Service areas */
.area-chip-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-chip {
  padding: 0.55rem 1.1rem; border-radius: 999px;
  background: var(--white); border: 1px solid rgba(20,43,31,0.14);
  font-weight: 600; font-size: 0.92rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(20,43,31,0.12);
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.35rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--forest-950);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plusminus {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--forest-700); position: relative;
}
.faq-item summary .plusminus::before, .faq-item summary .plusminus::after {
  content: ""; position: absolute; background: var(--forest-700);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-item summary .plusminus::before { width: 11px; height: 2px; }
.faq-item summary .plusminus::after { width: 2px; height: 11px; transition: opacity 0.15s ease; }
.faq-item[open] summary .plusminus::after { opacity: 0; }
.faq-item p { padding-bottom: 1.35rem; color: var(--charcoal-600); max-width: 70ch; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-weight: 700; font-size: 0.92rem; color: var(--forest-950); }
.field .req { color: var(--amber-dark); }
.field input, .field select, .field textarea {
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(20,43,31,0.22); background: var(--white);
  font-size: 1rem; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest-700); }
.field textarea { resize: vertical; min-height: 120px; }
.field small.error {
  display: none; color: #b3261e; font-size: 0.84rem; font-weight: 600;
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b3261e; }
.field.has-error small.error { display: block; }
.field.has-error label { color: #b3261e; }

.form-note { font-size: 0.86rem; color: var(--charcoal-600); margin-top: 1rem; }
.form-success {
  display: none; background: var(--sage-mist); border: 1px solid var(--forest-600);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem; gap: 0.8rem;
  align-items: flex-start; margin-bottom: 1.5rem;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 24px; height: 24px; color: var(--forest-700); flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-950); color: rgba(250,247,241,0.82); }
.footer-grid {
  display: grid; gap: 2.5rem; padding-block: 3.5rem 2.5rem;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.9rem; }
.footer-brand svg { width: 32px; height: 32px; }
.site-footer h3 { color: var(--white); font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer a:hover { color: var(--amber); }
.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; }
.footer-contact-item svg { width: 1.1em; height: 1.1em; color: var(--amber); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(250,247,241,0.15);
  padding-block: 1.5rem; font-size: 0.84rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--forest-950); color: var(--white);
  padding-block: clamp(2.75rem, 2.3rem + 2vw, 4.5rem);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; top: -30%; left: -10%;
  width: 620px; aspect-ratio: 1; border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    rgba(200,114,46,0.14) 0, rgba(200,114,46,0.14) 2px,
    transparent 2px, transparent 22px);
}
.page-hero__inner { position: relative; z-index: 1; }
.breadcrumbs { font-family: var(--font-mono); font-size: 0.82rem; color: rgba(250,247,241,0.65); margin-bottom: 1rem; }
.breadcrumbs a:hover { color: var(--amber); }
.page-hero h1 { color: var(--white); max-width: 26ch; }
.page-hero .lede { max-width: 55ch; margin-top: 1rem; color: rgba(250, 247, 241, 0.82); }

/* ---------- Map embed ---------- */
.map-frame {
  width: 100%; aspect-ratio: 16/10; border: 0; border-radius: var(--radius-lg);
  filter: grayscale(0.15) contrast(1.03);
}
@media (min-width: 760px) { .map-frame { aspect-ratio: 16/9; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Misc ---------- */
.divider-note {
  display: flex; align-items: center; gap: 0.8rem;
  color: var(--charcoal-600); font-size: 0.9rem; font-style: italic;
}
.divider-note svg { width: 1.2em; height: 1.2em; color: var(--forest-600); flex-shrink: 0; }

.tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
  padding: 0.3rem 0.65rem; border-radius: 999px;
  background: var(--amber-tint); color: var(--amber-dark);
}
