:root {
  /* Core palette — nature-forward, calm, distinct from HCRV */
  --leaf:       #3d5a3e;   /* deep forest green — primary dark */
  --leaf-2:     #4e7050;   /* mid green — hover states */
  --leaf-3:     #2c4230;   /* darker green — footer */
  --stone:      #f7f4ee;   /* warm off-white — page ground */
  --stone-2:    #ede9e1;   /* slightly deeper — alternating sections */
  --stone-3:    #e0dbd0;   /* border/rule weight */
  --moss:       #7a9e7e;   /* mid accent — badges, secondary UI */
  --earth:      #b8722e;   /* warm amber — prices, CTAs only */
  --earth-soft: #c98a4a;
  --earth-deep: #9a5f22;
  --bark:       #5c4033;   /* warm dark brown — footer text */
  --white:      #ffffff;
  --rule:       rgba(61, 90, 62, 0.12);
  --rule-strong: rgba(61, 90, 62, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

::selection { background: var(--earth); color: var(--white); }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--leaf);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.mono {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--leaf);
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ ANIMATED ENTRANCE ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============ NAV ============ */
nav {
  position: sticky;
  top: 0;
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
  padding: 14px 0;
}
:target,
h1[id], h2[id], h3[id], h4[id], section[id] {
  scroll-margin-top: 90px;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--leaf);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; display: block; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links > a {
  color: var(--leaf);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links > a:not(.btn):hover { color: var(--earth); }

/* ============ NAV DROPDOWN ============ */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-trigger {
  color: var(--leaf);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.nav-dropdown > .nav-trigger::after {
  content: '';
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px;
  margin-top: 2px;
  opacity: 0.5;
  transition: transform 0.2s;
}
.nav-dropdown:hover > .nav-trigger { color: var(--earth); }
.nav-dropdown:hover > .nav-trigger::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--stone);
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(61, 90, 62, 0.12);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--stone-2);
  color: var(--earth);
}
@media (max-width: 900px) {
  .nav-dropdown { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--leaf);
  color: var(--stone);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn:hover {
  background: var(--earth);
  transform: translateY(-1px);
}
.btn-earth {
  background: var(--earth);
}
.btn-earth:hover {
  background: var(--earth-deep);
}
.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}
.btn-ghost {
  background: transparent;
  color: var(--leaf);
  border: 1.5px solid var(--leaf);
}
.btn-ghost:hover {
  background: var(--leaf);
  color: var(--stone);
  transform: translateY(-1px);
}
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ SIZE BUTTON ROW ============ */
.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  align-items: stretch;
}
.size-buttons .label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--moss);
  text-transform: uppercase;
  align-self: center;
  margin-right: 4px;
}
.size-buttons a.size-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 18px;
  background: var(--earth);
  border: 1px solid var(--earth);
  border-radius: 8px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.2s;
  min-width: 130px;
}
.size-buttons a.size-btn:hover {
  background: var(--stone-2);
  color: var(--leaf);
  border-color: var(--rule-strong);
  transform: translateY(-1px);
}
.size-buttons a.size-btn .size-label {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  font-weight: 400;
}
.size-buttons a.size-btn .size-price {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  margin-top: 2px;
  opacity: 0.85;
}
.size-buttons a.size-btn:hover .size-price {
  color: var(--earth);
  opacity: 1;
}

/* ============ HERO ============ */
.hero {
  padding: 90px 0 130px;
  position: relative;
  overflow: hidden;
}
/* Signature botanical SVG line — rendered inline in HTML, positioned absolutely */
.hero-botanical {
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 560px;
  pointer-events: none;
  opacity: 0.13;
  overflow: visible;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 36px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--earth);
  flex-shrink: 0;
}
h1 {
  font-size: clamp(54px, 8.5vw, 128px);
  margin-bottom: 0;
  color: var(--leaf);
}
h1 em {
  font-style: italic;
  color: var(--earth);
}
h1 .small {
  display: block;
  font-size: 0.44em;
  margin-top: 0.2em;
  letter-spacing: -0.01em;
  color: var(--leaf-2);
}
.hero-side {
  padding-bottom: 16px;
}
.hero-side p {
  font-size: 18px;
  color: var(--leaf-2);
  max-width: 380px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--rule-strong);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.hero-popular-label {
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  margin-right: 4px;
}
.hero-popular a {
  color: var(--leaf-2);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 1px;
  transition: all 0.2s;
}
.hero-popular a:hover {
  color: var(--earth);
  border-bottom-color: var(--earth);
}
.hero-bottom {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  padding-top: 36px;
}
.hero-stat {
  padding-right: 32px;
  border-right: 1px solid var(--rule-strong);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--leaf);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-stat .num .unit { color: var(--earth); }
.hero-stat .label {
  font-size: 13px;
  color: var(--moss);
  line-height: 1.4;
}

/* ============ MARQUEE STRIP ============ */
.ticker {
  background: var(--leaf);
  color: var(--stone-2);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 50s linear infinite;
}
.ticker-track span {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.ticker-track span::after {
  content: '✦';
  color: var(--earth);
  font-size: 0.35em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION ============ */
section { padding: 120px 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head .meta h2 {
  font-size: clamp(46px, 6vw, 84px);
  color: var(--leaf);
}
.section-head .meta h2 em {
  font-style: italic;
  color: var(--earth);
}
.section-head .desc {
  font-size: 18px;
  color: var(--leaf-2);
  line-height: 1.5;
  max-width: 560px;
}

/* ============ SERVICES ============ */
.services { background: var(--stone); }
.services-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--leaf);
}
.service-row {
  display: grid;
  grid-template-columns: 72px 1fr 180px 200px 110px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-row:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: var(--leaf);
  color: var(--stone);
  border-bottom-color: var(--leaf);
}
.service-row:hover .s-num { color: var(--earth); }
.service-row:hover .s-price .amount { color: var(--earth); }
.service-row:hover .tier-badge { background: var(--stone-2); color: var(--leaf); }
.s-num {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--moss);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.s-main .title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.s-main .sub {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.4;
  max-width: 480px;
}
.s-tier {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tier-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}
.tier-fixed  { background: #c8e6c9; color: var(--leaf-3); }
.tier-tiered { background: #fff3cd; color: #7a5c00; }
.tier-quote  { background: var(--earth); color: var(--white); }
.s-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-align: right;
  transition: color 0.3s;
}
.s-price .prefix {
  font-size: 11px;
  opacity: 0.55;
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 2px;
}
.s-cta {
  text-align: right;
}
.s-cta .arrow-box {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transition: all 0.3s;
  color: var(--moss);
}
.service-row:hover .arrow-box {
  background: var(--earth);
  border-color: var(--earth);
  color: var(--white);
  transform: rotate(-45deg);
}

/* Pricing legend */
.pricing-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--stone-2);
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
}
.legend-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex: 1;
  min-width: 240px;
}
.legend-item .tier-badge { margin-top: 2px; flex-shrink: 0; }
.legend-item .text { font-size: 14px; line-height: 1.4; }
.legend-item .text strong {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
}

/* ============ FLAGSHIP SERVICE BLOCK ============ */
.flagship {
  background: var(--leaf);
  color: var(--stone);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.flagship::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(184, 114, 46, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.flagship-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.flagship h2 {
  font-size: clamp(52px, 7vw, 96px);
  color: var(--stone);
  margin-bottom: 28px;
}
.flagship h2 em { color: var(--earth-soft); }
.flagship p {
  font-size: 18px;
  color: rgba(247, 244, 238, 0.72);
  margin-bottom: 48px;
  max-width: 500px;
  line-height: 1.55;
}
.flagship-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(247, 244, 238, 0.1);
  border: 1px solid rgba(247, 244, 238, 0.1);
  margin-top: 40px;
}
.flagship-check {
  background: var(--leaf);
  padding: 18px 20px;
  font-size: 14px;
  color: rgba(247, 244, 238, 0.85);
  display: flex;
  gap: 12px;
  align-items: center;
}
.flagship-check::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--earth-soft);
  flex-shrink: 0;
}
.pricing-tiers {
  background: var(--stone);
  color: var(--leaf);
  padding: 40px;
  border-radius: 10px;
  position: relative;
}
.pricing-tiers .tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--earth);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.pricing-tiers h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.pricing-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--rule);
}
a.pricing-tier {
  display: flex;
  text-decoration: none;
  color: inherit;
  transition: all 0.18s;
}
a.pricing-tier:hover {
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
  border-radius: 6px;
  background: var(--stone-2);
}
a.pricing-tier:hover .amt { color: var(--earth); }
.pricing-tier:last-child { border-bottom: none; padding-bottom: 0; }
.pricing-tier .lbl { font-size: 15px; font-weight: 500; }
.pricing-tier .lbl .sub {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--moss);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.pricing-tier .amt {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--leaf);
  transition: color 0.2s;
}
.pricing-book {
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  background: var(--leaf);
  color: var(--stone);
  border: none;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.pricing-book:hover { background: var(--earth); }

/* ============ HOW IT WORKS ============ */
.how { background: var(--stone-2); padding: 140px 0; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rule-strong);
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  overflow: hidden;
}
.how-step {
  background: var(--stone);
  padding: 44px 32px 52px;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.how-step:hover { background: var(--stone-2); }
.how-step .num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 0.9;
  color: var(--earth);
  opacity: 0.6;
  letter-spacing: -0.03em;
  margin-bottom: 44px;
}
.how-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
}
.how-step p {
  color: var(--leaf-2);
  font-size: 14px;
  line-height: 1.55;
  flex-grow: 1;
}

/* ============ COVERAGE + FAQ ============ */
.area { background: var(--stone); padding: 140px 0; }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.coverage {
  margin-top: 32px;
  padding: 44px;
  background: var(--stone-2);
  border: 1px solid var(--rule-strong);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(184, 114, 46, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.coverage-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
  position: relative;
}
.coverage-headline em { color: var(--earth); font-style: italic; }
.coverage-desc {
  font-size: 15px;
  color: var(--leaf-2);
  line-height: 1.55;
  margin-bottom: 28px;
  position: relative;
}
.coverage-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  position: relative;
}
.coverage-stat { padding: 22px 22px 0 0; }
.coverage-stat:last-child {
  padding-left: 22px;
  padding-right: 0;
  border-left: 1px solid var(--rule-strong);
}
.coverage-stat .value {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--leaf);
}
.coverage-stat .value .unit { color: var(--earth); }
.coverage-stat .caption {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--moss);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.coverage-suburbs {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule-strong);
  position: relative;
}
.coverage-suburbs .label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--moss);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.coverage-suburbs .list {
  font-size: 14px;
  line-height: 1.9;
  color: var(--leaf-2);
}

/* FAQ */
.faq h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 38px;
  margin-bottom: 24px;
  font-weight: 400;
  color: var(--leaf);
}
.faq details {
  border-top: 1px solid var(--rule-strong);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--rule-strong); }
.faq summary {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  cursor: pointer;
  font-size: 19px;
  list-style: none;
  position: relative;
  padding-right: 52px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--leaf);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background: var(--leaf);
  border-radius: 50%;
  transition: background 0.25s, transform 0.25s;
}
.faq summary::before {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  color: var(--stone);
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.25s;
}
.faq details[open] summary::before { transform: rotate(45deg); }
.faq details[open] summary::after { background: var(--earth); }
.faq details p {
  margin-top: 14px;
  color: var(--leaf-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 540px;
}

/* ============ CTA FINAL ============ */
.cta-final {
  background: var(--leaf);
  color: var(--stone);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184, 114, 46, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 {
  font-size: clamp(52px, 9.5vw, 136px);
  color: var(--stone);
  margin-bottom: 36px;
  letter-spacing: -0.03em;
}
.cta-final h2 em { font-style: italic; color: var(--earth-soft); }
.cta-final p {
  font-size: 19px;
  color: rgba(247, 244, 238, 0.75);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.55;
}
.cta-final .btn {
  background: var(--earth);
  color: var(--white);
  padding: 22px 44px;
  font-size: 16px;
}
.cta-final .btn:hover {
  background: var(--stone);
  color: var(--leaf);
}
.cta-phone {
  margin-top: 28px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: rgba(247, 244, 238, 0.6);
}
.cta-phone a {
  color: var(--earth-soft);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* ============ FOOTER ============ */
footer {
  background: var(--leaf-3);
  color: rgba(247, 244, 238, 0.55);
  padding: 80px 0 40px;
  font-size: 13px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer-brand {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer-tag {
  font-style: italic;
  color: var(--earth-soft);
  margin-bottom: 28px;
  font-size: 15px;
  font-family: 'DM Serif Display', Georgia, serif;
  max-width: 280px;
}
footer h5 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--earth-soft);
  margin-bottom: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
footer a {
  display: block;
  color: rgba(247, 244, 238, 0.55);
  text-decoration: none;
  padding: 5px 0;
  font-size: 14px;
  transition: color 0.2s;
}
footer a:hover { color: var(--earth-soft); }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(247, 244, 238, 0.18);
  border-radius: 50%;
  transition: all 0.2s;
}
.footer-socials a:hover {
  color: var(--earth-soft);
  border-color: var(--earth-soft);
}
.footer-socials svg { width: 15px; height: 15px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(247, 244, 238, 0.08);
  padding-top: 28px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: rgba(247, 244, 238, 0.35);
}
.footer-giant {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(72px, 16vw, 230px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: rgba(247, 244, 238, 0.06);
  line-height: 0.85;
  margin-bottom: 48px;
  user-select: none;
}
.footer-giant em { color: rgba(184, 114, 46, 0.25); font-style: italic; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  section { padding: 80px 0; }
  .hero { padding: 40px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-botanical { display: none; }
  .hero-bottom { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
  .hero-stat { border-right: none; padding-right: 0; }
  .section-head { grid-template-columns: 1fr; gap: 28px; }
  .service-row { grid-template-columns: 40px 1fr; gap: 14px; padding: 20px 0; }
  .service-row:hover { padding-left: 10px; padding-right: 10px; }
  .s-tier, .s-cta { grid-column: 2; text-align: left; }
  .s-price { grid-column: 2; text-align: left; }
  .flagship { padding: 80px 0; }
  .flagship-grid, .area-grid { grid-template-columns: 1fr; gap: 48px; }
  .flagship-checklist { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-step { padding: 28px 20px; min-height: 240px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links > a:not(.btn) { display: none; }
  .ticker-track span { font-size: 32px; gap: 36px; }
  .coverage { padding: 28px 20px; }
  .coverage-headline { font-size: 28px; }
  .pricing-legend { flex-direction: column; }
}

/* ============ PAGE-SPECIFIC STYLES ============ */

.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 {
  font-size: clamp(40px, 7vw, 90px);
  line-height: 0.97;
  letter-spacing: -0.025em;
  margin: 16px 0 24px;
  max-width: 960px;
}
.page-hero h1 em { font-style: italic; color: var(--earth); }
.page-hero .lead {
  font-size: 19px;
  color: var(--leaf-2);
  line-height: 1.55;
  max-width: 680px;
}

/* Prose */
.prose { max-width: 720px; margin: 0 auto; }
.prose-wide { max-width: 940px; margin: 0 auto; }
.prose p, .prose-wide p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--leaf-2);
  margin-bottom: 20px;
}
.prose h2, .prose-wide h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 60px 0 22px;
  color: var(--leaf);
}
.prose h2 em, .prose-wide h2 em { font-style: italic; color: var(--earth); }
.prose h3, .prose-wide h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 36px 0 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--leaf);
}
.prose ul, .prose-wide ul { padding-left: 22px; margin-bottom: 22px; }
.prose li, .prose-wide li {
  font-size: 17px;
  line-height: 1.65;
  color: var(--leaf-2);
  margin-bottom: 7px;
}
.prose strong, .prose-wide strong { color: var(--leaf); font-weight: 600; }

/* Detail service listing */
.detail-service {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 100px 140px 140px;
  gap: 20px;
  align-items: center;
}
.detail-service h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 5px;
}
.detail-service p {
  font-size: 14px;
  color: var(--leaf-2);
  line-height: 1.5;
  margin: 0;
}
.detail-service .tier {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-align: right;
}
.detail-service .price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: right;
  color: var(--leaf);
}
.detail-service .book-cta { text-align: right; }
.detail-service .book-cta a {
  display: inline-block;
  padding: 9px 16px;
  background: var(--leaf);
  color: var(--stone);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}
.detail-service .book-cta a:hover { background: var(--earth); transform: translateY(-1px); }
@media (max-width: 720px) {
  .detail-service { grid-template-columns: 1fr; gap: 8px; }
  .detail-service .tier, .detail-service .price, .detail-service .book-cta { text-align: left; }
}

/* Category header */
.category-header { padding: 44px 0 14px; margin-top: 12px; }
.category-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.category-header .count {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--moss);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Checklist grid */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  margin: 28px 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.checklist-grid .item {
  background: var(--stone);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--leaf-2);
  display: flex;
  gap: 12px;
  align-items: center;
}
.checklist-grid .item::before {
  content: '✓';
  color: var(--earth);
  font-weight: 600;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .checklist-grid { grid-template-columns: 1fr; }
}

/* Callout box */
.callout {
  padding: 24px 28px;
  background: var(--stone-2);
  border-left: 3px solid var(--earth);
  margin: 28px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--leaf-2);
  border-radius: 0 8px 8px 0;
}
.callout strong { color: var(--leaf); font-weight: 600; }

/* Package cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.package-card {
  padding: 28px;
  background: var(--stone-2);
  border-radius: 10px;
  border: 1px solid var(--rule);
}
.package-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.package-card .price-tag {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--earth);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.package-card p {
  font-size: 14px;
  color: var(--leaf-2);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; }
}

/* Pre-booking checklist */
.pre-book {
  background: var(--stone-2);
  padding: 28px;
  border-radius: 10px;
  margin: 28px 0;
  border: 1px solid var(--rule);
}
.pre-book h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 14px;
}
.pre-book .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 18px;
}
.pre-book .item h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--earth);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 400;
}
.pre-book .item p {
  font-size: 14px;
  color: var(--leaf-2);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 720px) {
  .pre-book .items { grid-template-columns: 1fr; gap: 14px; }
}

/* Acuity embed */
.acuity-embed {
  margin: 28px 0 56px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--rule-strong);
  min-height: 700px;
  background: var(--stone);
}
.acuity-embed iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

/* Info strip */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 28px 0;
}
.info-strip .block h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--earth);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 400;
}
.info-strip .block p {
  font-size: 14px;
  color: var(--leaf-2);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 720px) {
  .info-strip { grid-template-columns: 1fr; gap: 18px; }
}

/* Owner block */
.owner-block {
  background: var(--leaf);
  color: var(--stone);
  padding: 52px;
  border-radius: 10px;
  margin: 44px 0;
  position: relative;
  overflow: hidden;
}
.owner-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(184, 114, 46, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.owner-block h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--stone);
  position: relative;
}
.owner-block p {
  color: rgba(247, 244, 238, 0.78);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
  position: relative;
  max-width: 660px;
}
.owner-block p:last-child { margin-bottom: 0; }
.owner-block strong { color: var(--earth-soft); font-weight: 500; }
@media (max-width: 720px) { .owner-block { padding: 28px; } }

/* Breadcrumb */
.crumb {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss);
}
.crumb a { color: var(--moss); text-decoration: none; }
.crumb a:hover { color: var(--earth); }
.crumb .sep { margin: 0 8px; opacity: 0.4; }
