/* ============ Design tokens ============ */
:root {
  --cream: #F7F3EB;
  --white: #FFFFFF;
  --parchment: #EBE2D3;
  --mist: #F0ece6;
  --charcoal: #4A423A;
  --stone: #6E6A63;
  --ink: #1A1510;
  --forest: #2D4A38;
  --forest-light: #3A5C47;
  --on-forest: #FFFFFF;
  --sage: #8AB89A;
  --clay: #F4831F;
  --clay-dark: #D96B0E;
  --clay-lt: #FDE8C8;

  --success-fg: #166534; --success-bg: #DCFCE7;
  --warning-fg: #713F12; --warning-bg: #FEF9C3;
  --danger-fg: #991B1B;  --danger-bg: #FEE2E2;
  --neutral-fg: #6E6A63; --neutral-bg: rgba(110, 106, 99, .12);

  --shadow-sm: 0 1px 4px rgba(42, 37, 32, .08);
  --shadow-md: 0 4px 20px rgba(42, 37, 32, .12);
  --shadow-lg: 0 12px 40px rgba(42, 37, 32, .18);
  --card-border: transparent;
  --header-bg: rgba(247, 245, 240, .94);
  --skeleton: #EFE8DC;
  --skeleton-shine: #F8F4EC;

  /* Hero, sampled from the approved mockup. */
  --hero-bg: #F4F3EC;
  --hero-text: #52655F;
  --hero-line: #DCDDD3;
  --hero-leaf: #CFD8CB;
  --hero-wave: #E5E8DA;
  --logo-leaf: #6E8B64;
  --scrim: rgba(26, 21, 16, .45);

  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;

  /* The nine type sizes. Anything else is a new role, not a new number. */
  --fs-hero: clamp(2.8125rem, 6vw, 4rem); /* 45-64px */
  --fs-page: 2rem;         /* 32 */
  --fs-section: 1.75rem;   /* 28 */
  --fs-card: 1.25rem;      /* 20 */
  --fs-prominent: 1.125rem;/* 18 */
  --fs-body: 1rem;         /* 16 */
  --fs-meta: .875rem;      /* 14 */
  --fs-caption: .75rem;    /* 12 */
  --fs-pill: .6875rem;     /* 11 */

  --radius-sm: 8px;
  --radius-lg: 18px;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --fast: 180ms;
  --max-width: 1380px;
  /* Page gutter and header height scale with the window, like the mockup. */
  --gutter: clamp(16px, 7vw, 112px);
  --header-h: clamp(64px, 4.8vw, 80px);
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--forest); text-underline-offset: 3px; }
a:hover { color: var(--forest-light); }
h1, h2, h3 { color: var(--ink); line-height: 1.2; margin: 0 0 8px; font-weight: 500; }
h1 { font-family: var(--font-display); font-size: var(--fs-page); letter-spacing: -.01em; }
h2 { font-family: var(--font-display); font-size: var(--fs-section); letter-spacing: -.01em; }
h3 { font-size: var(--fs-card); font-weight: 600; color: var(--charcoal); }
p { margin: 0 0 16px; }
[hidden] { display: none !important; }

:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; border-radius: var(--radius-sm); }

.container { width: 100%; max-width: calc(var(--max-width) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: calc(720px + 2 * var(--gutter)); }
@media (max-width: 720px) { :root { --gutter: 16px; } }
.muted { color: var(--stone); }
.num { font-variant-numeric: tabular-nums; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border: 1.5px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--on-forest);
  font: inherit; font-size: var(--fs-body); font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--fast) var(--ease), border-color var(--fast) var(--ease),
              color var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.btn:hover { background: var(--forest-light); border-color: var(--forest-light); color: var(--on-forest); }
.btn:active { transform: scale(.98); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn[aria-busy="true"] { opacity: .75; cursor: progress; }
.btn[aria-busy="true"]::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid currentColor; opacity: .5;
  animation: pulse 1s var(--ease) infinite alternate;
}
.btn-secondary { background: var(--white); color: var(--forest); }
.btn-secondary:hover { background: var(--mist); color: var(--forest); border-color: var(--forest); }
.btn-block { width: 100%; }

@keyframes pulse { from { transform: scale(.7); } to { transform: scale(1); } }

/* ============ Header / nav ============ */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--parchment);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
/* Logo: traced mark + live wordmark, no background, coloured by the theme. */
.brand {
  --logo-vein: var(--cream);
  display: inline-flex; align-items: center; gap: clamp(10px, 1vw, 14px); min-height: 44px;
  color: var(--forest); text-decoration: none;
}
.brand:hover { color: var(--forest); }
.logo-mark { height: clamp(38px, 3.2vw, 50px); width: auto; aspect-ratio: 294 / 318; flex-shrink: 0; overflow: visible; }
.lm-house { fill: none; stroke: var(--forest); stroke-width: 25; stroke-linecap: round; stroke-linejoin: round; }
.lm-leaf-dark { fill: var(--forest); }
.lm-leaf { fill: var(--logo-leaf); }
.lm-vein { fill: none; stroke: var(--logo-vein); stroke-width: 6; stroke-linecap: round; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; line-height: 1;
  font-size: clamp(1.375rem, 1.9vw, 1.875rem); letter-spacing: -.01em;
}
.brand-tag {
  margin-top: 4px;
  font-size: var(--fs-pill); font-weight: 500; line-height: 1;
  text-transform: uppercase; letter-spacing: .2em;
}
.nav-links .btn { min-height: clamp(44px, 3.3vw, 54px); padding: 0 clamp(16px, 1.6vw, 24px); font-size: clamp(var(--fs-meta), 1.1vw, var(--fs-body)); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a:not(.btn) {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px;
  color: var(--charcoal); text-decoration: none; font-size: clamp(var(--fs-meta), 1.1vw, var(--fs-body));
  border-radius: var(--radius-sm);
  transition: color var(--fast) var(--ease), background-color var(--fast) var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--forest); background: var(--mist); }
.nav-links .btn { margin-left: 8px; }
.nav-end { display: flex; align-items: center; gap: 8px; }
/* Quiet pill for header utilities: the mobile menu button. */
.chip-btn {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  min-height: 44px; padding: 0 16px;
  background: var(--white); border: 1.5px solid var(--parchment); border-radius: 999px;
  color: var(--charcoal); font: inherit; font-size: var(--fs-meta); cursor: pointer;
  transition: border-color var(--fast) var(--ease), background-color var(--fast) var(--ease);
}
.chip-btn:hover { border-color: var(--stone); }
.chip-btn:active { background: var(--mist); }
.chip-btn svg { width: 18px; height: 18px; }
.nav-toggle { display: none; }

/* Collapse to the Menu button before the full nav gets crowded. */
@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .chip-btn { padding: 0 12px; }
  .nav-links {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 16px 16px;
    background: var(--cream);
    border-bottom: 1px solid var(--parchment);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; animation: menu-in 250ms ease-in-out; }
  .nav-links a:not(.btn) { min-height: 48px; font-size: var(--fs-body); }
  .nav-links .btn { margin: 8px 0 0; }
}

/* Mobile menu scrim: dims the page behind the open menu (the header sits above it). */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 9;
  background: var(--scrim);
  opacity: 0; pointer-events: none;
  transition: opacity 250ms ease-in-out;
}
body.menu-open { overflow: hidden; }
/* Solid header while the menu is open, so header and menu read as one panel above the scrim. */
body.menu-open .site-header { background: var(--cream); }
body.menu-open::before { opacity: 1; pointer-events: auto; }
@keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ============ Hero ============ */
/* Text on the left, full-bleed photo on the right with a curved edge,
   faint leaves top-left and a sage wave running into the next section. */
.hero {
  position: relative; overflow: hidden;
  background: var(--hero-bg);
  min-height: clamp(560px, 48vw, 820px);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: clamp(48px, 5.5vw, 96px); padding-bottom: clamp(112px, 9vw, 150px);
}
/* Everything in the text column stays left of the photo, which starts at 52% of the width. */
.hero-content > * { max-width: min(clamp(480px, 42vw, 680px), calc(52vw - var(--gutter) - 24px)); }
.hero h1 {
  max-width: calc(52vw - var(--gutter));
  margin-bottom: clamp(20px, 2vw, 32px);
  font-size: clamp(2.8125rem, 4vw, 4.25rem); line-height: 1.055; letter-spacing: -.035em;
  color: var(--forest);
}
.lead { font-size: clamp(var(--fs-body), 1.16vw, 1.1875rem); line-height: 1.45; color: var(--hero-text); margin: 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: clamp(24px, 1.8vw, 32px); }
.btn-hero { min-height: clamp(50px, 3.6vw, 60px); padding: 0 clamp(24px, 2vw, 32px); gap: 12px; font-size: clamp(var(--fs-body), 1.15vw, 1.125rem); }
.btn-hero .icon { width: 24px; height: 24px; }
.btn-hero .icon-arrow { width: 18px; height: 18px; margin-left: 4px; transition: transform var(--fast) var(--ease); }
.btn-hero:hover .icon-arrow { transform: translateY(2px); }
.hero-alt { margin: clamp(14px, 1.1vw, 18px) 0 0; font-size: clamp(var(--fs-meta), 1.1vw, var(--fs-body)); color: var(--hero-text); }
.hero-alt a { color: var(--forest); }
.icon { width: 20px; height: 20px; flex-shrink: 0; }

/* Stays left of the photo (which starts at 52% of the width) and wraps onto new rows.
   Every item carries a left divider; the list is pulled left by one padding and clips
   its overflow, so the divider on the first item of each row is hidden. */
.assurances {
  --as-pad: clamp(14px, 1.2vw, 20px);
  list-style: none; padding: 0;
  margin: clamp(28px, 2.2vw, 40px) 0 0 calc(-1 * var(--as-pad));
  max-width: calc(52vw - var(--gutter) + var(--as-pad));
  overflow: hidden;
  display: flex; flex-wrap: wrap; row-gap: 16px;
  font-size: clamp(var(--fs-meta), 1vw, var(--fs-body)); line-height: 1.4; color: var(--forest);
}
.assurances li {
  display: flex; align-items: center; gap: 10px;
  padding: 0 var(--as-pad); margin-left: -1px;
  border-left: 1px solid var(--hero-line);
}
.assurances .icon { width: clamp(26px, 2vw, 34px); height: clamp(26px, 2vw, 34px); }

.hero-media {
  position: absolute; z-index: 1;
  top: 0; right: 0; bottom: 0; left: 52%;
  /* Curved left edge: bulges left through the middle, like the mockup. */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M11 0C4 15 0 40 0 68c0 14 2 23 6 32h94V0z'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M11 0C4 15 0 40 0 68c0 14 2 23 6 32h94V0z'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 40%; }

.hero-leaves {
  position: absolute; z-index: 0; top: 0; left: 0;
  width: clamp(100px, 10vw, 160px); aspect-ratio: 120 / 110;
  fill: var(--hero-leaf); opacity: .8;
}
.hero-wave {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: -1px;
  width: 100%; height: clamp(64px, 6.5vw, 110px);
}
.hero-wave .wave-back { fill: var(--hero-wave); opacity: .6; }
.hero-wave .wave-front { fill: var(--hero-wave); }
/* The section after the hero picks up the wave's colour so they read as one. */
.section-wave { background: var(--hero-wave); }

/* Tablet and phone: the photo fills the hero behind the text, under a dark gradient.
   Same breakpoint as the collapsed nav. */
@media (max-width: 1024px) {
  .hero {
    display: flex; flex-direction: column; justify-content: center;
    min-height: calc(100svh - var(--header-h));
    background: #1B211C;
  }
  .hero-content { padding-top: 48px; padding-bottom: 88px; }
  .hero-content > *, .hero h1 { max-width: 620px; }
  .hero h1 {
    font-size: clamp(var(--fs-page), 7vw, 2.8125rem); line-height: 1.1; letter-spacing: -.02em;
    margin-bottom: 16px;
  }
  .hero h1 br { display: none; }
  .lead { line-height: 1.55; }
  .hero-actions { margin-top: 28px; }

  .hero-media {
    position: absolute; inset: 0; z-index: 0;
    -webkit-mask: none; mask: none;
  }
  /* Trim the cream sliver on the photo's left edge. */
  .hero-media img { width: 114%; max-width: none; margin-left: -14%; object-position: 40% 50%; }
  /* Darker at top and bottom where the text and benefits sit. */
  .hero-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(18, 22, 18, .64) 0%, rgba(18, 22, 18, .58) 50%, rgba(18, 22, 18, .8) 100%);
  }
  .hero-leaves { display: none; }
  /* Keep the photo view focused on the headline and the two buttons. */
  .hero-alt, .assurances { display: none; }

  /* Light text and controls on the photo; fixed colours so both themes read the same. */
  .hero h1 { color: #FFFFFF; text-shadow: 0 1px 16px rgba(0, 0, 0, .25); }
  .hero .lead { color: rgba(255, 255, 255, .88); }
  .hero :focus-visible { outline-color: #FFFFFF; }

  /* Same pairing as desktop: forest-filled primary, white-filled secondary. */
  .btn-secondary.btn-hero { background: #FFFFFF; border-color: #FFFFFF; color: var(--forest); }
  .btn-secondary.btn-hero:hover { background: var(--cream); border-color: var(--cream); color: var(--forest); }

  .hero-wave { position: absolute; bottom: -1px; z-index: 1; height: 40px; }
  /* The wave already separates hero and the next section; no extra gap. */
  .hero + .section-wave { padding-top: 16px; }
}
@media (max-width: 480px) {
  .hero-content { padding-top: 40px; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(2.25rem, 10.5vw, 2.75rem); }
  .hero-actions { gap: 12px; margin-top: 58px; }
  .btn-hero { width: 100%; min-height: 52px; font-size: var(--fs-body); }
  .logo-mark { height: 36px; }
  .brand-name { font-size: 1.25rem; }
  .brand-tag { letter-spacing: .14em; }
}

.checklist li::before {
  content: ""; flex-shrink: 0;
  width: 10px; height: 5px;
  border-left: 2px solid var(--forest); border-bottom: 2px solid var(--forest);
}

/* ============ Sections ============ */
.section { padding: clamp(48px, 8vw, 96px) 0; scroll-margin-top: var(--header-h); }
/* Alternate sections share the hero wave's sage, so each wave between them reads clearly. */
.section-alt { background: var(--hero-wave); }

/* Wave dividers: the hero's two-layer wave at the bottom of a section, filled with the
   next section's colour. .wave-flip mirrors it so the swell alternates left and right. */
.wave-next {
  --wave-h: clamp(40px, 6.5vw, 110px);
  position: relative;
  padding-bottom: calc(clamp(48px, 8vw, 96px) + var(--wave-h) * .6);
}
.wave-next::before,
.wave-next::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2;
  height: var(--wave-h);
  background: var(--wave-to);
  pointer-events: none;
}
.wave-next::before {
  opacity: .6;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 34C220 6 420 18 640 52s520 44 800-6V120H0z'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 34C220 6 420 18 640 52s520 44 800-6V120H0z'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
}
.wave-next::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 70C260 50 520 96 820 92s460-40 620-50V120H0z'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 70C260 50 520 96 820 92s460-40 620-50V120H0z'/%3E%3C/svg%3E") 0 0 / 100% 100% no-repeat;
}
.wave-flip::before, .wave-flip::after { transform: scaleX(-1); }
.wave-to-cream { --wave-to: var(--cream); }
.wave-to-sage { --wave-to: var(--hero-wave); }
.section-lead { color: var(--stone); margin-bottom: 32px; max-width: 620px; }
.section-alt .section-lead:last-child { margin-bottom: 0; }

.card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.checklist li { display: flex; align-items: baseline; gap: 12px; }
.checklist li::before { transform: translateY(-3px) rotate(-45deg); margin-top: 0; }

.fine-print { margin: 16px 0 0; font-size: var(--fs-caption); color: var(--stone); }

/* Home Care plans: prices are the one loud thing in this section. */
.plans { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.plan {
  display: flex; flex-direction: column; gap: 16px; padding: 32px 24px 24px;
  position: relative;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), transform 200ms var(--ease);
}
/* Highlighted plan: slightly larger, thin clay border, soft clay glow.
   The featured card has it by default; hovering (or tabbing into) another card
   moves it there, and it returns to the featured card when nothing is hovered. */
.plan-featured,
.plan:hover,
.plan:focus-within {
  z-index: 1;
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(244, 131, 31, .06), 0 10px 32px rgba(244, 131, 31, .16);
}
.plans:has(.plan:hover, .plan:focus-within) .plan-featured:not(:hover, :focus-within) {
  z-index: auto;
  border-color: var(--card-border);
  box-shadow: var(--shadow-sm);
  transform: none;
}
@media (min-width: 900px) {
  .plan-featured, .plan:hover, .plan:focus-within { transform: scale(1.04); }
  .plans:has(.plan:hover, .plan:focus-within) .plan-featured:not(:hover, :focus-within) { transform: none; }
}
/* Touch screens have no hover: keep the highlight on the featured card only. */
@media (hover: none) {
  .plan:hover:not(.plan-featured) { border-color: var(--card-border); box-shadow: var(--shadow-sm); transform: none; }
  .plans:has(.plan:hover) .plan-featured:not(:focus-within) {
    border-color: var(--clay);
    box-shadow: 0 0 0 4px rgba(244, 131, 31, .06), 0 10px 32px rgba(244, 131, 31, .16);
  }
}
@media (hover: none) and (min-width: 900px) {
  .plan:hover:not(.plan-featured, :focus-within) { transform: none; }
  .plans:has(.plan:hover) .plan-featured:not(:focus-within) { transform: scale(1.04); }
}
.plan h3 { margin: 0; }
.plan .checklist { flex: 1; margin-bottom: 8px; }
.plan-for { margin: 0; color: var(--stone); font-size: var(--fs-meta); }
.price { margin: 0; color: var(--stone); font-size: var(--fs-meta); }
.price-amount {
  font-family: var(--font-display); font-size: var(--fs-page); font-weight: 500;
  color: var(--ink); font-variant-numeric: tabular-nums; margin-right: 4px;
}
.plans-note { margin: 32px 0 0; color: var(--stone); }

/* Property Management: intro and price on top, then a guest's stay in four cards. */
.pm-intro {
  display: grid; grid-template-columns: 1.5fr 1fr; align-items: end;
  gap: 24px clamp(32px, 5vw, 80px); margin-bottom: 40px;
}
.pm-intro h2 { max-width: 680px; }
.pm-intro .section-lead { margin-bottom: 0; }
.pm-price { display: grid; gap: 16px; justify-items: start; }
.pm-price .btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.stay { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stay li {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 24px;
}
.stay h3 { font-size: var(--fs-prominent); color: var(--ink); margin: 16px 0 8px; }
.stay p { margin: 0; color: var(--stone); font-size: var(--fs-meta); }
.stay-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--hero-wave); color: var(--forest);
}
.stay-icon svg { width: 24px; height: 24px; }
#rentals .fine-print { margin-top: 24px; }
@media (max-width: 1024px) { .stay { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .pm-intro { grid-template-columns: 1fr; margin-bottom: 32px; }
  .stay { grid-template-columns: 1fr; gap: 12px; }
  /* Icon beside the text, so the four stages stay compact on phones. */
  .stay li { display: grid; grid-template-columns: 48px 1fr; column-gap: 16px; padding: 20px; }
  .stay-icon { grid-row: span 2; }
  .stay h3 { margin: 2px 0 4px; }
}

/* Home guide: text left, the guide on a phone right, tilted. No frame or card behind the phone. */
.guide {
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
/* Team: one card per person, initial (or photo) beside name and role, short bio below. */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; }
.person {
  display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 16px 20px;
  align-content: start;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: clamp(24px, 3vw, 32px);
}
.person-mark {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%;
  background: var(--hero-wave); color: var(--forest);
  font-family: var(--font-display); font-size: var(--fs-section);
}
/* A photo fills the same circle as the initial. */
.person-photo { object-fit: cover; object-position: 50% 30%; }
.person h3 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: var(--fs-card); color: var(--ink); }
.person-bio { grid-column: 1 / -1; margin: 0; color: var(--charcoal); }
.person-facts {
  grid-column: 1 / -1; display: flex; gap: 32px; margin: 4px 0 0; padding-top: 16px;
  border-top: 1px solid var(--parchment);
}
.person-facts div { display: flex; align-items: baseline; gap: 8px; }
.person-facts dt { font-family: var(--font-display); font-size: var(--fs-page); line-height: 1; color: var(--forest); }
.person-facts dd { margin: 0; font-size: var(--fs-meta); color: var(--stone); }
@media (max-width: 760px) {
  .team { grid-template-columns: 1fr; }
  .person-facts { gap: 24px; }
}

.guide-text .section-lead { max-width: 560px; margin-bottom: 24px; }
.guide-text .price { margin-bottom: 8px; }
.guide-note { max-width: 480px; margin: 0 0 24px; color: var(--stone); font-size: var(--fs-meta); }
.guide-text .btn .icon { width: 18px; height: 18px; }
.guide-phone {
  --tilt: 20deg;
  position: relative; aspect-ratio: 10 / 11;
  width: 100%; max-width: 520px; justify-self: center;
}
/* Tilted 20°, the phone stands about 2.24x its width tall; at 46% of the box width it fills a 10:11 box. */
.guide-phone img {
  position: absolute; left: 50%; top: 50%;
  width: 46%; height: auto;
  transform: translate(-50%, -50%) rotate(var(--tilt));
  filter: drop-shadow(0 24px 32px rgba(42, 37, 32, .22));
}
@media (max-width: 900px) {
  .guide { grid-template-columns: 1fr; }
  .guide-phone { max-width: 340px; margin-top: -16px; }
}

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--white); border: 1px solid var(--card-border);
  border-radius: 16px; box-shadow: var(--shadow-sm);
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 56px; padding: 12px 24px;
  font-weight: 600; color: var(--ink); cursor: pointer; list-style: none;
  border-radius: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex-shrink: 0; width: 8px; height: 8px;
  border-right: 2px solid var(--stone); border-bottom: 2px solid var(--stone);
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--fast) var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translateY(-2px); }
.faq details p { margin: 0; padding: 0 24px 24px; color: var(--charcoal); }

/* Final call to action, then the quieter form and waitlist. */
/* Nav "Contact" lands here: just below the sticky header, above the heading. */
.cta { text-align: center; margin-bottom: 48px; scroll-margin-top: calc(var(--header-h) + 24px); }
.cta .section-lead { margin-left: auto; margin-right: auto; }
.cta-note { margin: 16px 0 0; font-size: var(--fs-meta); color: var(--stone); }
.form-card { padding: clamp(24px, 5vw, 40px); }
/* WhatsApp fallback (no number set yet) lands on the form, with "Prefer to write?" in view. */
#contact-form { scroll-margin-top: calc(var(--header-h) + 96px); }
.form-card h3 { margin-bottom: 24px; }
.quiet-block {
  margin-top: 48px; padding: 24px;
  border: 1.5px dashed var(--parchment); border-radius: var(--radius-lg);
}
.quiet-block h3 { font-size: var(--fs-prominent); }
.quiet-block > p { color: var(--stone); font-size: var(--fs-meta); }

.steps { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: step; }
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step);
  display: grid; place-items: center;
  width: 48px; height: 48px; margin-bottom: 16px;
  border-radius: 50%;
  background: var(--white); color: var(--forest);
  border: 1.5px solid var(--clay);
  /* Same soft clay glow as the featured plan card. */
  box-shadow: 0 0 0 4px rgba(244, 131, 31, .06), 0 6px 18px rgba(244, 131, 31, .18);
  font-family: var(--font-display); font-size: var(--fs-prominent);
}
.steps p { color: var(--stone); }

/* ============ Clay accents ============ */
/* Clay means "needs attention": small fills only, never text (it fails contrast as text). */
.attention::before {
  content: ""; display: block;
  width: 40px; height: 3px; margin-bottom: 16px;
  border-radius: 999px; background: var(--clay);
}

/* ============ Botanical touches ============ */
/* Quiet leaves echoing the hero. Decoration only: behind content, never interactive. */
.has-deco { position: relative; overflow: hidden; }
.has-deco > .container, .has-deco > :not(.deco) { position: relative; z-index: 1; }
.deco { position: absolute; z-index: 0; pointer-events: none; fill: var(--hero-leaf); color: var(--hero-leaf); }
.deco-frond { aspect-ratio: 260 / 240; }
/* Clay buds: a warm echo of the flowers in the hero photo. Remove this rule to drop them. */
.bud { fill: var(--clay); opacity: .85; }
.deco-cluster { aspect-ratio: 120 / 110; }

.deco-problem { width: clamp(180px, 20vw, 300px); right: -40px; bottom: -60px; transform: rotate(8deg); }
.deco-homecare { width: clamp(100px, 10vw, 160px); top: 0; right: 0; transform: scaleX(-1); }
.deco-pm { width: clamp(160px, 16vw, 260px); right: -48px; top: -40px; transform: rotate(150deg); }
.deco-concierge { width: clamp(140px, 13vw, 200px); left: -56px; bottom: -84px; transform: scaleX(-1) rotate(6deg); }
.deco-why { width: clamp(200px, 22vw, 340px); right: -60px; top: 50%; transform: translateY(-50%) rotate(-30deg); }
.deco-faq { width: clamp(90px, 9vw, 140px); top: 0; left: 0; }
.deco-sprig { position: static; display: block; width: 64px; aspect-ratio: 2 / 1; margin: 0 auto 16px; fill: var(--sage); opacity: .8; }
.with-seedling { display: flex; align-items: center; gap: 8px; }
.deco-seedling { position: static; width: 24px; height: 24px; flex-shrink: 0; fill: var(--sage); color: var(--sage); }

/* How it works: a dashed vine linking the step circles when they sit in a row. */
@media (min-width: 900px) {
  .steps-vine { position: relative; }
  .steps-vine::before {
    content: ""; position: absolute; z-index: 0; top: 24px;
    left: 56px; right: calc((100% - 48px) / 3 + 8px);
    border-top: 1.5px dashed var(--sage); opacity: .55;
  }
  .steps-vine li { position: relative; z-index: 1; }
}

/* Keep phones calm: smaller, fainter, and nothing large crowding the text. */
@media (max-width: 720px) {
  .deco { opacity: .7; }
  .deco-why { width: 160px; right: -70px; }
  .deco-problem { width: 150px; }
}

/* ============ Forms ============ */
.form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.form label { display: grid; gap: 8px; font-size: var(--fs-meta); font-weight: 600; color: var(--charcoal); }
.form input, .form textarea, .form select {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1.5px solid var(--parchment);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit; font-size: var(--fs-body); font-weight: 400;
  transition: border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}
.form textarea { resize: vertical; line-height: 1.6; }
.form input::placeholder, .form textarea::placeholder { color: var(--stone); opacity: .8; }
.form input:hover, .form textarea:hover, .form select:hover { border-color: var(--stone); }
.form input:focus-visible, .form textarea:focus-visible, .form select:focus-visible {
  outline: 2px solid var(--forest); outline-offset: 1px; border-color: var(--forest); border-radius: 12px;
}
.form input:disabled, .form textarea:disabled, .form select:disabled { background: var(--mist); cursor: not-allowed; }
/* Contact form: two ways to send, side by side (stacked on small phones). */
.send-choice { display: flex; flex-wrap: wrap; gap: 12px; }
.send-choice .btn .icon { width: 20px; height: 20px; }
@media (max-width: 480px) { .send-choice .btn { flex: 1 1 100%; } }

/* Spam trap: off-screen rather than display:none, which some bots skip. */
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.human-check input { max-width: 160px; }
.form .btn { justify-self: start; }
.form .btn-block { justify-self: stretch; }
.form-status { min-height: 1.6em; margin: 0; font-size: var(--fs-meta); }
.form-status.success { color: var(--success-fg); }
.form-status.error { color: var(--danger-fg); }

/* ============ Footer ============ */
.site-footer { border-top: 1px solid var(--parchment); padding: 32px 0; color: var(--stone); font-size: var(--fs-meta); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-inner p { margin: 0; }
.footer-inner a { display: inline-flex; align-items: center; min-height: 44px; }
/* Legal disclaimer: full text, kept quiet under the footer row. */
.footer-disclaimer {
  max-width: 880px; margin: 20px 0 0; padding-top: 20px;
  border-top: 1px solid var(--parchment);
  font-size: var(--fs-caption); line-height: 1.6; color: var(--stone);
}
.footer-disclaimer strong { color: var(--charcoal); font-weight: 600; }

/* ============ Motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
