/* ============================================================
   SLC Lawn Care — editorial forest/cream/lime design system
   ============================================================ */
:root {
  --ink:      #0e2419;   /* deepest forest */
  --pine:     #143324;
  --moss:     #35604a;
  --sage:     #7d9a8a;
  --cream:    #f4f1e6;
  --cream-2:  #eae5d4;
  --paper:    #faf8f1;
  --lime:     #c6ec53;
  --lime-deep:#a8d332;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 20px;
  --callbar-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom));
}

img { display: block; max-width: 100%; }

.wrap {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto;
}

section { scroll-margin-top: 5rem; }

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 420;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.6rem, 9.6vw, 6.2rem); }
h2 { font-size: clamp(2.2rem, 7vw, 4rem); }
h1 em, h2 em { font-style: italic; font-weight: 380; }
h2 em { color: var(--lime-deep); font-style: normal; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.1rem;
}
.eyebrow-lime { color: var(--lime); }

.sec-head { margin-bottom: clamp(2rem, 6vw, 3.5rem); }
.sec-note {
  margin-top: 1.1rem;
  max-width: 34ch;
  color: var(--moss);
  font-size: 0.98rem;
}
.on-dark { color: var(--cream); }
.sec-note.on-dark { color: var(--sage); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-deep); }
.btn-glass {
  color: var(--cream);
  border-color: rgba(244, 241, 230, 0.4);
  background: rgba(14, 36, 25, 0.38);
}
.btn-glass:hover { border-color: var(--cream); background: rgba(14, 36, 25, 0.55); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--pine); }
.btn-ink-outline { color: var(--ink); border-color: rgba(14, 36, 25, 0.3); }
.btn-ink-outline:hover { border-color: var(--ink); }
.btn-wide { flex: 1; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  transition: background 0.35s, box-shadow 0.35s;
  --nav-ink: var(--cream);
}
.site-header.scrolled {
  --nav-ink: var(--ink);
  background: rgba(250, 248, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(14, 36, 25, 0.08);
}
.site-header.menu-open { --nav-ink: var(--cream); background: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }

.nav {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--nav-ink);
  transition: color 0.35s;
}
.brand-sigil { width: 26px; height: 26px; color: var(--lime-deep); }
.brand-sigil svg { width: 100%; height: 100%; }
.site-header:not(.scrolled):not(.menu-open) .brand-sigil { color: var(--lime); }
.brand-word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
.nav-phone {
  margin-left: auto;
  color: var(--nav-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  opacity: 0.85;
  transition: color 0.35s, opacity 0.2s;
  display: none;
}
.nav-phone:hover { opacity: 1; }
@media (min-width: 560px) { .nav-phone { display: inline; } }

.nav-toggle {
  display: grid;
  gap: 6px;
  background: none;
  border: 0;
  padding: 12px 4px;
  cursor: pointer;
}
.nav-toggle span {
  width: 30px;
  height: 2px;
  background: var(--nav-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.35s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Full-screen menu ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-overlay-inner {
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto;
}
.nav-links { list-style: none; }
.nav-links a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.45rem 0;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s, color 0.2s;
}
.nav-overlay.open .nav-links a { transform: translateY(0); opacity: 1; }
.nav-overlay.open .nav-links li:nth-child(1) a { transition-delay: 0.08s; }
.nav-overlay.open .nav-links li:nth-child(2) a { transition-delay: 0.14s; }
.nav-overlay.open .nav-links li:nth-child(3) a { transition-delay: 0.20s; }
.nav-overlay.open .nav-links li:nth-child(4) a { transition-delay: 0.26s; }
.nav-overlay.open .nav-links li:nth-child(5) a { transition-delay: 0.32s; }
.nav-links a:hover { color: var(--lime); }
.nav-links small {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--sage);
}
.nav-overlay-foot {
  margin-top: clamp(2rem, 6vh, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 241, 230, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-size: 0.92rem;
  color: var(--sage);
}
.nav-overlay-foot a { color: var(--lime); text-decoration: none; font-weight: 700; }

body.menu-locked { overflow: hidden; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; animation: hero-drift 18s var(--ease) forwards; }
@keyframes hero-drift {
  from { transform: scale(1.12); }
  to   { transform: scale(1.02); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(14,36,25,0.78) 0%, rgba(14,36,25,0.35) 52%, rgba(14,36,25,0.12) 80%),
    linear-gradient(180deg, rgba(14,36,25,0.5) 0%, rgba(14,36,25,0.12) 40%, rgba(14,36,25,0.9) 100%);
}
.hero-content {
  position: relative;
  width: min(100% - 2 * var(--gutter), var(--wrap));
  margin-inline: auto;
  padding-bottom: clamp(3rem, 9vh, 6rem);
}
.hero-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.4rem;
}
.hero h1 { max-width: 12ch; }
.hero-sub {
  max-width: 42ch;
  margin: 1.5rem 0 2.2rem;
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  color: rgba(244, 241, 230, 0.85);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* marquee ticker */
.marquee {
  position: relative;
  border-top: 1px solid rgba(244, 241, 230, 0.18);
  background: rgba(14, 36, 25, 0.62);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: rgba(244, 241, 230, 0.8);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Seasonal spotlight
   ============================================================ */
.spotlight { background: var(--lime); }
.spotlight-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.5rem;
  padding: 1.15rem 0;
}
.spotlight-tag {
  flex-shrink: 0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--lime);
  background: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}
.spotlight-text {
  flex: 1 1 24ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  line-height: 1.35;
  color: var(--ink);
}
.spotlight .btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }

/* ============================================================
   Statement
   ============================================================ */
.statement {
  background: var(--cream);
  padding: clamp(4.5rem, 12vw, 8rem) 0;
}
.statement-text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5.2vw, 3rem);
  font-weight: 380;
  line-height: 1.25;
  max-width: 26ch;
  letter-spacing: -0.01em;
}
.statement-text em {
  font-style: italic;
  background: linear-gradient(transparent 68%, var(--lime) 68%, var(--lime) 94%, transparent 94%);
}
.statement-sig {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}

/* ============================================================
   Services — editorial rows
   ============================================================ */
.services {
  background: var(--paper);
  padding: clamp(4.5rem, 12vw, 8rem) 0;
}
.service-list { border-top: 1px solid rgba(14, 36, 25, 0.14); }
.service-item {
  border-bottom: 1px solid rgba(14, 36, 25, 0.14);
  transition: background 0.35s var(--ease);
}
.service-item.open { background: var(--cream); }
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.9rem, 3.5vw, 2.2rem);
  width: 100%;
  padding: clamp(1.15rem, 3.5vw, 1.7rem) 0.9rem;
  background: none;
  border: 0;
  font: inherit;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.sr-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--sage);
  align-self: start;
  padding-top: 0.5em;
}
.sr-title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4.5vw, 2.1rem);
  font-weight: 430;
  line-height: 1.15;
  transition: color 0.2s;
}
.sr-desc {
  display: block;
  margin-top: 0.3rem;
  color: var(--moss);
  font-size: 0.94rem;
  max-width: 52ch;
}
.sr-badge {
  display: none;
  vertical-align: 0.35em;
  margin-left: 0.65rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  padding: 0.32rem 0.6rem;
}
.service-item.selected .sr-badge {
  display: inline-block;
  animation: badge-pop 0.3s var(--ease);
}
@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.7); }
}
.sr-season {
  display: inline-block;
  vertical-align: 0.35em;
  margin-left: 0.65rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--moss);
  border: 1.5px solid var(--lime-deep);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  white-space: nowrap;
}
.sr-action {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(14, 36, 25, 0.25);
  color: var(--ink);
  transition: background 0.3s, border-color 0.3s, transform 0.45s var(--ease);
  flex-shrink: 0;
}
.sr-action svg { width: 18px; height: 18px; }
.service-item.open .sr-action {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: rotate(135deg);
}
.service-item.selected .sr-title { color: var(--lime-deep); }
@media (hover: hover) {
  .service-item:not(.open):hover { background: var(--cream); }
  .service-row:hover .sr-action { border-color: var(--ink); }
}

/* expanding panel — height, padding, and fade all share one timing */
.service-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.service-item.open .service-panel { grid-template-rows: 1fr; }
.sp-inner {
  overflow: hidden;
  min-height: 0;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 0 0.9rem;
  opacity: 0;
  transition: padding 0.5s var(--ease), opacity 0.35s;
}
.service-item.open .sp-inner {
  padding: 0.3rem 0.9rem 1.7rem;
  opacity: 1;
  transition: padding 0.5s var(--ease), opacity 0.4s 0.15s;
}
.sp-inner img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}
.sp-text p { color: var(--pine); font-size: 0.98rem; max-width: 46ch; margin-bottom: 1.1rem; }
.sp-add {
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.sp-add:hover { background: var(--pine); }
.sp-add:active { transform: scale(0.97); }
.service-item.selected .sp-add {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
@media (min-width: 760px) {
  .sp-inner { grid-template-columns: minmax(0, 380px) 1fr; gap: 2.5rem; }
}

/* ============================================================
   Stats band
   ============================================================ */
.band {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}
.band-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 760px) { .band-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.band-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 10vw, 5.5rem);
  font-weight: 350;
  line-height: 1;
  color: var(--lime);
}
.band-label {
  display: block;
  margin-top: 0.7rem;
  max-width: 24ch;
  font-size: 0.92rem;
  color: var(--sage);
}

/* ============================================================
   About
   ============================================================ */
.about {
  background: var(--cream);
  padding: clamp(4.5rem, 12vw, 8rem) 0;
}
.about-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 860px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }
.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.about-media:hover img { transform: scale(1.04); }
.about-body p { color: var(--pine); max-width: 52ch; margin-bottom: 1rem; }
.about-body h2 { margin-bottom: 1.4rem; }
.about-body blockquote {
  margin: 1.6rem 0 2rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--lime-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--ink);
  max-width: 40ch;
}

/* ============================================================
   Seasons — horizontal snap scroller
   ============================================================ */
.seasons {
  background: var(--paper);
  padding: clamp(4.5rem, 12vw, 8rem) 0;
  overflow: hidden;
}
.sec-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.season-scroller {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0.25rem max(var(--gutter), calc((100vw - var(--wrap)) / 2)) 1.5rem;
  scroll-padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2));
  scrollbar-width: none;
}
.season-scroller::-webkit-scrollbar { display: none; }
.season-scroller::after {
  /* right padding on scroll containers is unreliable — force end spacing */
  content: "";
  flex: 0 0 1px;
}
.season-card {
  flex: 0 0 min(76vw, 320px);
  scroll-snap-align: start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 220px;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.season-card:hover { transform: translateY(-6px); background: var(--cream-2); }
.season-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
.season-card h3 { font-size: 1.9rem; }
.season-card p { color: var(--moss); font-size: 0.95rem; margin-top: auto; }
.season-card-hot { background: var(--ink); }
.season-card-hot:hover { background: var(--pine); }
.season-card-hot .season-tag { color: var(--lime); }
.season-card-hot h3 { color: var(--cream); }
.season-card-hot p { color: var(--sage); }
.season-card-hot p strong { color: var(--cream); }
.season-flag {
  align-self: flex-start;
  margin-top: 0.9rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
}
@media (min-width: 1100px) {
  .season-scroller {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    overflow: visible;
    width: min(100% - 2 * var(--gutter), var(--wrap));
    margin-inline: auto;
    padding: 0;
  }
  .season-scroller::after { content: none; }
  .season-card { flex: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--paper);
  padding: clamp(4rem, 11vw, 7.5rem) 0;
  border-top: 1px solid rgba(14, 36, 25, 0.1);
}
.faq-grid { display: grid; gap: 1.5rem; }
@media (min-width: 860px) { .faq-grid { grid-template-columns: 0.8fr 1.2fr; } }
.faq-list { border-top: 1px solid rgba(14, 36, 25, 0.14); }
.faq-item { border-bottom: 1px solid rgba(14, 36, 25, 0.14); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 450;
  padding: 1.2rem 0.25rem;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(14, 36, 25, 0.25);
  transition: transform 0.3s var(--ease), background 0.25s, border-color 0.25s;
}
.faq-x::before, .faq-x::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.8px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}
.faq-x::after { transform: translate(-50%, -50%) rotate(90deg); transition: opacity 0.2s; }
.faq-item[open] .faq-x { background: var(--lime); border-color: var(--lime); transform: rotate(45deg); }
.faq-item p { padding: 0 0.25rem 1.3rem; color: var(--moss); max-width: 58ch; }

/* ============================================================
   Quote
   ============================================================ */
.quote {
  background:
    radial-gradient(90% 70% at 85% -10%, rgba(198, 236, 83, 0.14), transparent),
    var(--ink);
  padding: clamp(4.5rem, 12vw, 8rem) 0;
}
.quote-card {
  background: var(--paper);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.5rem, 5vw, 2.75rem);
  display: grid;
  gap: 1.9rem;
  max-width: 760px;
}
.quote-card fieldset { border: 0; }
.quote-card legend {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 450;
  margin-bottom: 1rem;
}

.chip-group { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.chip span {
  display: inline-block;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid rgba(14, 36, 25, 0.28);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  user-select: none;
}
.chip:hover span { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--lime); }
.chip input:focus-visible + span { outline: 3px solid var(--lime-deep); outline-offset: 2px; }
.chip:active span { transform: scale(0.95); }

.field-row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field > span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
}
.field em { font-style: normal; opacity: 0.6; font-weight: 500; letter-spacing: 0; text-transform: none; }
.field input, .field textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(14, 36, 25, 0.22);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field ::placeholder { color: rgba(14, 36, 25, 0.35); }
.field textarea { resize: vertical; }

.quote-preview {
  background: var(--cream);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
}
.quote-preview > span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.4rem;
}
.quote-preview p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
}

.quote-actions { display: flex; flex-direction: column; gap: 0.7rem; }
@media (min-width: 600px) { .quote-actions { flex-direction: row; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--sage);
  border-top: 1px solid rgba(244, 241, 230, 0.12);
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.footer-word {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 9vw, 4.5rem);
  line-height: 0.95;
  color: var(--cream);
}
.footer-word em { color: var(--lime); font-style: normal; }
.footer-meta { display: grid; gap: 0.35rem; font-size: 0.95rem; }
.footer-meta a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
}
.footer-fine { margin-top: 1rem; font-size: 0.8rem; opacity: 0.65; }

/* ============================================================
   Sticky call bar (mobile)
   ============================================================ */
.callbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(250, 248, 241, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(14, 36, 25, 0.1);
  transition: transform 0.35s var(--ease);
}
.callbar.hidden { transform: translateY(110%); }
.callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.callbar svg { width: 1.1em; height: 1.1em; }
.callbar-call { flex: 0.65; background: var(--cream-2); color: var(--ink); }
.callbar-quote { flex: 1; background: var(--ink); color: var(--lime); }

@media (min-width: 860px) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; transform: none; }
  .marquee-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
