/* =====================================================================
   Sandhill Lawn & Landscape — Oviedo, FL
   A Citrustack example landing page.

   One visual world: warm sand paper, deep Florida greens, one clay accent.
   Big editorial typography over full-bleed photography. No blue, no purple,
   no gradients that drift cool. Depth comes from ground changes and light,
   never from heavy shadows.
   ===================================================================== */

/* ---------- Tokens ---------------------------------------------------- */
:root {
  /* Greens */
  --pine:      #16301F;   /* deepest ground — near-black green */
  --forest:    #1E3D28;   /* dark ground for inverted sections */
  --moss:      #2F5636;   /* mid green */
  --grass:     #4C7A3A;   /* living green */
  --fern:      #6E9A5B;   /* soft green */
  --sage:      #A7BE94;   /* pale green */

  /* Warm sand + earth */
  --sand:      #EDE4D1;   /* the default ground */
  --sand-2:    #F5EFE2;   /* lighter panel ground */
  --sand-3:    #E3D7BE;   /* deeper sand, image backing */
  --cream:     #FBF8F1;   /* lightest */
  --bark:      #2B2318;   /* warm near-black — text on sand */
  --bark-mute: #5C5140;   /* muted text on sand (7.0:1 on --sand) */

  /* One warm accent — clay / terracotta */
  --clay:      #B15C2E;   /* accent fills, rules */
  --clay-deep: #91471F;   /* pressed accent */
  --clay-text: #964A1F;   /* accent that carries type on sand (4.9:1) */
  --honey:     #C98A2E;   /* secondary warm highlight */

  /* On dark ground */
  --on-dark:      #F3EEE1;
  --on-dark-mute: #B9C3AC;   /* muted text on forest (5.2:1) */

  /* Mechanics */
  --rule:        rgba(43,35,24,.16);
  --rule-strong: rgba(43,35,24,.32);
  --rule-dark:   rgba(243,238,225,.18);

  --wrap: 1360px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-mega:    clamp(3.2rem, 11vw, 10rem);
  --fs-display: clamp(2.6rem, 7vw, 6rem);
  --fs-h2:      clamp(2.1rem, 4.6vw, 4rem);
  --fs-h3:      clamp(1.45rem, 2.4vw, 2.1rem);
  --fs-lead:    clamp(1.2rem, 1.7vw, 1.6rem);
  --fs-body:    clamp(1.02rem, 1.15vw, 1.18rem);
  --fs-label:   .78rem;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset / base --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--sand);
  color: var(--bark);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1.1em; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

/* Typographic roles */
.display {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: .96;
  letter-spacing: -.015em;
}
.mega {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--fs-mega);
  line-height: .9;
  letter-spacing: -.03em;
}
.h2 { font-family: var(--display); font-weight: 600; font-size: var(--fs-h2); line-height: 1; letter-spacing: -.02em; }
.h3 { font-family: var(--display); font-weight: 600; font-size: var(--fs-h3); line-height: 1.08; letter-spacing: -.01em; }
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--bark); }
.serif-italic { font-family: var(--display); font-style: italic; font-weight: 400; }

.label {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--clay-text);
}
.num { font-variant-numeric: tabular-nums; }

/* Grounds */
.on-dark  { background: var(--forest); color: var(--on-dark); --rule: var(--rule-dark); --rule-strong: rgba(243,238,225,.4); }
.on-dark .label { color: var(--honey); }
.on-dark .lead { color: var(--on-dark); }
.on-pine  { background: var(--pine); color: var(--on-dark); --rule: var(--rule-dark); }
.on-sand2 { background: var(--sand-2); }

/* ---------- Buttons -------------------------------------------------- */
.btn {
  --bg: var(--bark); --fg: var(--cream);
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 650; font-size: .98rem;
  letter-spacing: .01em;
  padding: 1.05em 1.7em;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .5s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--clay  { --bg: var(--clay); --fg: var(--cream); }
.btn--clay:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
.btn--ghost { --bg: transparent; --fg: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: currentColor; }
.btn--ghost:hover span { color: var(--forest); }
.btn svg { width: 1.05em; height: 1.05em; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* Text links */
.tlink {
  display: inline-flex; align-items: center; gap: .4em;
  text-decoration: none; font-weight: 650; color: var(--clay-text);
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
  transition: gap .3s var(--ease), opacity .3s var(--ease);
}
.tlink:hover { gap: .7em; opacity: .85; }
.tlink svg { width: .8em; height: .8em; }

/* ---------- Header --------------------------------------------------- */
.topbar { position: fixed; inset: 0 0 auto 0; z-index: 60; }
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1rem, 2vw, 1.6rem) var(--gutter);
  color: var(--cream);
  transition: background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.is-stuck {
  background: var(--sand);
  color: var(--bark);
  box-shadow: 0 1px 0 var(--rule);
  padding-block: .9rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; color: inherit;
  font-family: var(--display); font-weight: 600; font-size: 1.35rem; letter-spacing: -.01em;
}
.brand__mark { width: 1.6rem; height: 1.6rem; flex: none; }
.brand small { display:block; font-family: var(--sans); font-weight: 600; font-size: .58rem; letter-spacing:.22em; text-transform: uppercase; opacity:.8; margin-top:-.1em;}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__links { display: flex; gap: clamp(1rem, 1.8vw, 1.9rem); }
.nav__link {
  text-decoration: none; color: inherit; font-weight: 550; font-size: .98rem;
  position: relative; padding-block: .2em;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: currentColor; transition: width .35s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__cta { font-weight: 650; }

.nav__phone { font-weight: 650; text-decoration: none; color: inherit; white-space: nowrap; }

.menu-btn { display: none; }

@media (max-width: 940px) {
  .nav__links, .nav__phone { display: none; }
  .menu-btn {
    display: inline-flex; align-items: center; gap: .5em;
    background: none; border: 1px solid currentColor; color: inherit;
    border-radius: 999px; padding: .55em 1em; font: inherit; font-weight: 650; font-size:.9rem; cursor: pointer;
  }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 70;
  background: var(--forest); color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: center; gap: 1.4rem;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform .5s var(--ease);
  visibility: hidden;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer a { text-decoration: none; color: inherit; font-family: var(--display); font-size: clamp(2rem, 8vw, 3.2rem); font-weight: 600; }
.drawer__close { position: absolute; top: 1.4rem; right: var(--gutter); background:none;border:1px solid currentColor;color:inherit;border-radius:999px;width:2.8rem;height:2.8rem;font-size:1.4rem;cursor:pointer;}
.drawer__foot { position:absolute; bottom: 2rem; left: var(--gutter); font-family: var(--sans); }
.drawer__foot a { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; display:block; }

/* ---------- Hero ----------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--cream); overflow: hidden;
  background: var(--pine);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(12,26,16,.86) 0%, rgba(12,26,16,.34) 40%, rgba(12,26,16,.16) 62%, rgba(12,26,16,.56) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(2.5rem, 6vw, 5rem); padding-top: 8rem; }
.hero__eyebrow { color: var(--sage); margin-bottom: 1.2rem; }
.hero__eyebrow .label { color: var(--honey); }
.hero__title { font-size: var(--fs-mega); margin-bottom: .4em; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero__title em { font-style: italic; color: var(--sage); }
.hero__sub { max-width: 40ch; color: var(--on-dark); font-size: var(--fs-lead); line-height: 1.5; margin-bottom: 2rem; }
.hero__actions { margin-bottom: 2.4rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; align-items: center;
  padding-top: 1.6rem; border-top: 1px solid var(--rule-dark);
  font-size: .95rem; color: var(--on-dark-mute);
}
.hero__meta strong { color: var(--cream); font-weight: 650; }
.scroll-cue { position:absolute; right: var(--gutter); bottom: clamp(2.5rem,6vw,5rem); z-index:2; writing-mode: vertical-rl; font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color: var(--on-dark-mute); }
@media (max-width: 720px){ .scroll-cue{ display:none; } }

/* ---------- Marquee strip ------------------------------------------- */
.strip { background: var(--clay); color: var(--cream); overflow: hidden; }
.strip__track { display: flex; gap: 3rem; white-space: nowrap; padding-block: .9rem; width: max-content; animation: marquee 34s linear infinite; }
.strip__track span { font-family: var(--display); font-weight: 600; font-size: 1.15rem; display: inline-flex; align-items: center; gap: 3rem; }
.strip__track span::after { content: "✦"; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ---------- Section head -------------------------------------------- */
.sechead { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sechead__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--rule); }
.sechead__count { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }
.sechead .h2 { max-width: 18ch; }
.sechead__lead { max-width: 52ch; }

/* ---------- Intro statement ----------------------------------------- */
.statement { }
.statement p { font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem, 3.4vw, 3rem); line-height: 1.16; letter-spacing: -.015em; max-width: 20ch; }
.statement .accent { color: var(--clay-text); }
.statement__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.statement__side p { font-family: var(--sans); font-size: var(--fs-body); font-weight: 400; line-height: 1.7; max-width: 42ch; color: var(--bark-mute); }
@media (max-width: 860px){ .statement__grid { grid-template-columns: 1fr; gap: 2rem; } .statement p{ max-width: 100%; } }

/* ---------- Stats ---------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border-block: 1px solid var(--rule); }
.stat { background: var(--sand); padding: clamp(1.6rem,3vw,2.6rem) 1.2rem; }
.on-dark .stats { background: var(--rule-dark); border-color: var(--rule-dark); }
.on-dark .stat { background: var(--forest); }
.stat__n { font-family: var(--display); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -.02em; }
.stat__l { font-size: .9rem; color: var(--bark-mute); margin-top: .5rem; }
.on-dark .stat__l { color: var(--on-dark-mute); }
@media (max-width: 720px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* ---------- Services (alternating full rows) ------------------------- */
.svc { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.svc + .svc { border-top: 1px solid var(--rule); }
.svc__media { position: relative; min-height: clamp(320px, 46vw, 620px); overflow: hidden; }
.svc__media img { position:absolute; inset:0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.04); }
.svc__media .tag {
  position: absolute; left: 1.2rem; top: 1.2rem; z-index: 2;
  background: var(--sand); color: var(--clay-text); font-size:.72rem; font-weight: 650;
  letter-spacing:.16em; text-transform: uppercase; padding: .5em .9em; border-radius: 999px;
}
.svc__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 5rem); gap: 1.2rem; }
.svc__no { font-family: var(--display); font-size: 1.1rem; color: var(--clay-text); font-weight: 600; }
.svc__title { font-size: clamp(1.9rem, 3.4vw, 3rem); }
.svc__body p { color: var(--bark-mute); max-width: 46ch; margin-bottom: .4em; }
.svc__list { list-style: none; margin: .6rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem .5rem; }
.svc__list li { font-size: .86rem; font-weight: 600; color: var(--moss); background: var(--sand-3); padding: .4em .8em; border-radius: 999px; }
.svc:nth-child(even) .svc__media { order: 2; }
@media (max-width: 900px) {
  .svc, .svc:nth-child(even) { grid-template-columns: 1fr; }
  .svc:nth-child(even) .svc__media { order: 0; }
  .svc__media { min-height: 62vw; }
}

/* ---------- Process -------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 2.5vw, 2.4rem); }
.step { border-top: 2px solid var(--rule-strong); padding-top: 1.2rem; }
.step__n { font-family: var(--display); font-weight: 600; font-size: 2.4rem; line-height: 1; color: var(--clay-text); }
.step h3 { margin: .8rem 0 .5rem; font-size: 1.3rem; }
.step p { color: var(--on-dark-mute); font-size: .98rem; margin: 0; }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }

/* ---------- Before / after ------------------------------------------ */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
.ba figure { margin: 0; position: relative; }
.ba img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }
.ba figcaption {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--bark); color: var(--cream); font-size:.72rem; font-weight:650; letter-spacing:.16em;
  text-transform: uppercase; padding:.5em .9em; border-radius: 999px;
}
.ba figure.is-after figcaption { background: var(--clay); }
@media (max-width: 620px){ .ba { grid-template-columns: 1fr; } }

/* ---------- Full-bleed image break ---------------------------------- */
.break {
  position: relative; min-height: clamp(360px, 60vh, 720px);
  display: flex; align-items: center; color: var(--cream); overflow: hidden;
}
.break img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; z-index:0; }
.break__scrim { position:absolute; inset:0; z-index:1; background: linear-gradient(90deg, rgba(12,26,16,.72), rgba(12,26,16,.28) 60%, rgba(12,26,16,.15)); }
.break__inner { position: relative; z-index: 2; }
.break blockquote { margin: 0; max-width: 22ch; }
.break blockquote p { font-family: var(--display); font-weight: 500; font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1.12; letter-spacing: -.015em; }

/* ---------- Gallery -------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.6rem, 1.2vw, 1rem); }
.gallery figure { margin: 0; overflow: hidden; border-radius: 4px; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.g-a { grid-column: span 4; aspect-ratio: 16/10; }
.g-b { grid-column: span 2; aspect-ratio: 4/5; }
.g-c { grid-column: span 2; aspect-ratio: 1/1; }
.g-d { grid-column: span 2; aspect-ratio: 1/1; }
.g-e { grid-column: span 2; aspect-ratio: 1/1; }
.g-f { grid-column: span 3; aspect-ratio: 16/9; }
.g-g { grid-column: span 3; aspect-ratio: 16/9; }
@media (max-width: 820px){
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g-a,.g-b,.g-c,.g-d,.g-e,.g-f,.g-g { grid-column: span 1; aspect-ratio: 1/1; }
  .g-a { grid-column: span 2; aspect-ratio: 16/10; }
}

/* ---------- Service area -------------------------------------------- */
.area__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.towns { list-style: none; margin: 1.5rem 0 0; padding: 0; columns: 2; column-gap: 2rem; }
.towns li { padding: .55rem 0; border-bottom: 1px solid var(--rule); font-weight: 600; break-inside: avoid; }
.towns li span { color: var(--bark-mute); font-weight: 400; font-size: .85rem; display:block; }
.area__card { background: var(--sand-2); border: 1px solid var(--rule); border-radius: 6px; padding: clamp(1.6rem, 3vw, 2.6rem); }
.area__card .h3 { margin-bottom: .8rem; }
@media (max-width: 800px){ .area__grid { grid-template-columns: 1fr; } }

/* ---------- Plans ---------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-dark); border: 1px solid var(--rule-dark); border-radius: 6px; overflow: hidden; }
.plan { background: var(--forest); padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: 1rem; }
.plan.is-feature { background: var(--moss); }
.plan__name { font-family: var(--display); font-weight: 600; font-size: 1.6rem; }
.plan__price { font-family: var(--display); font-weight: 600; font-size: 2.8rem; line-height: 1; }
.plan__price span { font-family: var(--sans); font-size: .9rem; font-weight: 500; color: var(--on-dark-mute); }
.plan ul { list-style: none; margin: .4rem 0 auto; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.plan li { display: flex; gap: .6rem; align-items: flex-start; font-size: .96rem; color: var(--on-dark); }
.plan li svg { flex: none; width: 1.1em; height: 1.1em; margin-top: .25em; color: var(--honey); }
.plan .badge { align-self: flex-start; background: var(--honey); color: var(--pine); font-size: .68rem; font-weight: 700; letter-spacing:.14em; text-transform: uppercase; padding:.4em .8em; border-radius: 999px; }
@media (max-width: 820px){ .plans { grid-template-columns: 1fr; } }

/* ---------- FAQ ------------------------------------------------------ */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.5rem);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .sign { flex: none; width: 1.4rem; height: 1.4rem; position: relative; transition: transform .4s var(--ease); }
.faq summary .sign::before, .faq summary .sign::after { content:""; position:absolute; background: var(--clay); }
.faq summary .sign::before { left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-50%); }
.faq summary .sign::after { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); transition: opacity .3s var(--ease); }
.faq details[open] summary .sign::after { opacity: 0; }
.faq__a { padding: 0 0 1.6rem; max-width: 68ch; color: var(--bark-mute); }
.faq__a p { margin-bottom: .8em; }

/* ---------- Contact / CTA ------------------------------------------- */
.cta { text-align: left; }
.cta .mega { max-width: 14ch; margin-bottom: 1.2rem; }
.cta__lead { max-width: 46ch; color: var(--on-dark-mute); font-size: var(--fs-lead); margin-bottom: 2.2rem; }
.contact__rows { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule-dark); border: 1px solid var(--rule-dark); border-radius: 6px; overflow: hidden; margin-top: 2.4rem; }
.contact__row { background: var(--forest); padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; gap: .5rem; }
.contact__row .label { color: var(--honey); }
.contact__row a { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.3rem); text-decoration: none; letter-spacing: -.01em; word-break: break-word; }
.contact__row a:hover { color: var(--sage); }
.contact__row p { margin: 0; color: var(--on-dark-mute); font-size: .95rem; }
@media (max-width: 640px){ .contact__rows { grid-template-columns: 1fr; } }

/* ---------- Footer --------------------------------------------------- */
.site-footer { background: var(--pine); color: var(--on-dark); padding-block: clamp(3rem, 6vw, 5rem); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid var(--rule-dark); }
.footer__brand { font-family: var(--display); font-weight: 600; font-size: 2rem; display:flex; align-items:center; gap:.5rem; }
.footer__brand svg { width: 2rem; height: 2rem; }
.footer p { color: var(--on-dark-mute); max-width: 34ch; }
.footer h4 { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--honey); margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.footer a { text-decoration: none; color: var(--on-dark); }
.footer a:hover { color: var(--sage); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 2rem; font-size: .85rem; color: var(--on-dark-mute); }
.footer__bottom a { color: var(--on-dark-mute); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px){ .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

/* Demo ribbon (this is an example page) */
.demo-note {
  background: var(--sand-3); color: var(--bark-mute);
  font-size: .82rem; text-align: center; padding: .7rem var(--gutter);
  border-bottom: 1px solid var(--rule);
}
.demo-note a { color: var(--clay-text); font-weight: 650; text-decoration: none; }
.demo-note a:hover { text-decoration: underline; }

/* ---------- Reveal motion ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Focus */
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 2px; }

/* Skip link */
.skip { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--bark); color: var(--cream); padding: .8em 1.2em; border-radius: 0 0 6px 0; }
.skip:focus { left: 0; }

/* ---------- Season guide -------------------------------------------- */
.guide { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.guide__card { background: var(--sand-2); padding: clamp(1.5rem, 2.6vw, 2.2rem); }
.guide__season { font-family: var(--display); font-weight: 600; font-size: 1.5rem; letter-spacing: -.01em; }
.guide__months { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-text); font-weight: 650; margin: .3rem 0 1rem; }
.guide__card p { font-size: .98rem; color: var(--bark-mute); margin: 0; line-height: 1.6; }
@media (max-width: 900px){ .guide { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .guide { grid-template-columns: 1fr; } }

/* ---------- Testimonials -------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.quote { background: var(--forest); border: 1px solid var(--rule-dark); border-radius: 6px; padding: clamp(1.6rem, 3vw, 2.3rem); display: flex; flex-direction: column; gap: 1.1rem; }
.quote__stars { color: var(--honey); letter-spacing: .25em; font-size: .95rem; }
.quote p { font-family: var(--display); font-weight: 500; font-size: 1.22rem; line-height: 1.42; margin: 0; color: var(--on-dark); }
.quote__who { font-size: .85rem; color: var(--on-dark-mute); margin-top: auto; }
.quote__who strong { color: var(--cream); display: block; font-family: var(--sans); font-weight: 650; }
@media (max-width: 820px){ .quotes { grid-template-columns: 1fr; } }

/* ---------- Promise band -------------------------------------------- */
.promise__grid { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.promise__grid h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.08; letter-spacing: -.015em; max-width: 16ch; }
.promise__grid p { margin: 0; max-width: 42ch; color: var(--on-dark); }
@media (max-width: 860px){ .promise__grid { grid-template-columns: 1fr; gap: 1.4rem; } }
