/* Perfect Turf Lawn Care — design system */
:root {
  /* Palette derived from the existing Perfect Turf logo + Scag equipment */
  --ink: #14241c;
  --ink-soft: #2b3a32;
  --muted: #5b6a61;
  --cream: #f4ead5;
  --cream-soft: #faf3e1;
  --paper: #fffaf0;
  --green: #1f5e4a;
  --green-deep: #14463a;
  --green-leaf: #2e7d5a;
  --orange: #e07a2c;
  --orange-deep: #b85d18;
  --line: #e6dcc4;
  --line-strong: #c8bd9e;

  /* Type */
  --serif: "Fraunces", "Source Serif Pro", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(20, 36, 28, 0.06), 0 1px 1px rgba(20, 36, 28, 0.04);
  --shadow: 0 8px 24px -12px rgba(20, 36, 28, 0.18), 0 2px 6px rgba(20, 36, 28, 0.06);
  --shadow-lg: 0 24px 60px -20px rgba(20, 36, 28, 0.25);

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--sans); font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
section { padding: clamp(56px, 8vw, 112px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--cream);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  line-height: 1;
}
.brand-tag {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}
.nav a:hover { color: var(--green-deep); text-decoration: none; background: var(--cream-soft); }
.nav a.active { color: var(--green-deep); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.phone-link {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.phone-link:hover { color: var(--green-deep); text-decoration: none; }

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.mobile-toggle svg { display: block; }

@media (max-width: 880px) {
  .nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px 24px 20px;
    gap: 4px;
  }
  .nav.open > a { padding: 12px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav.open .nav-cta { display: flex; flex-direction: column; gap: 10px; padding-top: 14px; }
  .nav.open .nav-cta .phone-link { display: inline-block; padding: 10px 4px; font-size: 1rem; color: var(--green-deep); }
  .nav.open .nav-cta .btn { width: 100%; justify-content: center; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(224, 122, 44, 0.55);
}
.btn-primary:hover { background: var(--orange-deep); }
.btn-dark {
  background: var(--green-deep);
  color: #fff;
}
.btn-dark:hover { background: var(--green); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--cream-soft); border-color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 0.88rem; }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Hero */
.hero {
  position: relative;
  background: var(--cream-soft);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy h1 {
  margin-bottom: 0.4em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.06;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 1.75rem;
}
.local-seo-line {
  max-width: 48ch;
  margin-top: -0.75rem;
  margin-bottom: 1.75rem;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.98rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-proof .stat-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1;
}
.hero-proof .stat-label {
  font-size: 0.83rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--cream);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20, 36, 28, 0) 55%, rgba(20, 36, 28, 0.22) 100%);
}
.hero-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
}
.hero-badge strong { font-size: 0.93rem; }
.hero-badge span { display: block; font-size: 0.78rem; color: var(--muted); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 4 / 3; max-height: 560px; }
}

/* Service strip */
.service-strip {
  background: var(--green-deep);
  color: #fff;
}
.service-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.service-strip-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255, 250, 240, 0.95);
  font-size: 0.95rem;
}
.service-strip-items span::before {
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: var(--orange);
  font-weight: 700;
}
.service-strip a {
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
.service-strip a:hover { text-decoration: none; color: var(--orange); }

/* Section heading */
.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}
.section-head p { margin: 0; font-size: 1.05rem; max-width: 56ch; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; }
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.service-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--green-deep);
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.97rem; margin: 0 0 14px; }
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 0.88rem;
  color: var(--muted);
}
.service-card ul li { padding: 4px 0; border-top: 1px dashed var(--line); }
.service-card ul li:first-child { border-top: none; }
.service-card .more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-deep);
}
.service-card .more::after { content: " →"; }

.local-service-copy {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.local-service-copy h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  margin-bottom: 0.45em;
}
.local-service-copy p {
  margin: 0;
  font-size: 0.96rem;
}
@media (max-width: 860px) {
  .local-service-copy { grid-template-columns: 1fr; }
}

/* Showcase: alternating */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse > :first-child { order: 2; }
.showcase-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.showcase-image img { width: 100%; height: 100%; object-fit: cover; }
.showcase-row h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 0.6em; }
@media (max-width: 760px) {
  .showcase-row { grid-template-columns: 1fr; gap: 24px; }
  .showcase-row.reverse > :first-child { order: 0; }
}

/* Sod before / during / after case study */
.sod-case-study {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream-soft) 100%);
}
.sod-timeline {
  display: grid;
  gap: clamp(22px, 3.5vw, 34px);
}
.sod-stage {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 3.5vw, 42px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 244, 0.72);
  box-shadow: var(--shadow);
}
.stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stage-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.stage-copy h3 {
  margin-bottom: 0.55em;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}
.stage-copy p {
  margin: 0;
  color: var(--ink-soft);
}
.stage-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.stage-photos figure {
  position: relative;
  margin: 0;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--cream);
}
.stage-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .sod-stage { grid-template-columns: 1fr; }
  .stage-copy { max-width: 720px; }
}
@media (max-width: 620px) {
  .stage-photos { grid-template-columns: 1fr; }
  .stage-photos figure { min-height: 240px; }
}

/* Benefits */
.benefits {
  background: var(--cream-soft);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.benefit {
  display: flex;
  flex-direction: column;
}
.benefit .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}
.benefit h3 { font-size: 1.15rem; margin-bottom: 6px; }
.benefit p { font-size: 0.95rem; margin: 0; }

/* Compare */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.compare-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
}
.compare-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-top: 1px solid var(--line);
  font-size: 0.97rem;
}
.compare-card ul li:first-child { border-top: none; }
.compare-card ul li::before {
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px; height: 18px;
  border-radius: 50%;
  text-align: center;
  font-size: 0.85rem;
  line-height: 18px;
  font-weight: 700;
}
.compare-card.bad { background: var(--paper); }
.compare-card.bad ul li::before { content: "−"; background: #f0e6d4; color: #7a5a2c; }
.compare-card.good { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.compare-card.good h3, .compare-card.good p { color: #fff; }
.compare-card.good ul li { border-top-color: rgba(255,255,255,0.12); color: #fff; }
.compare-card.good ul li::before { content: "✓"; background: var(--orange); color: #fff; }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--green);
  transition: transform 180ms ease;
  font-weight: 400;
  line-height: 1;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.97rem; }
.faq .answer p { margin: 0 0 0.8em; }
.faq .answer p:last-child { margin-bottom: 0; }

/* CTA banner */
.cta-banner {
  background: var(--green-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/striped-grass.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.9);
}
.cta-banner .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.4em; }
.cta-banner p { color: rgba(255, 250, 240, 0.85); margin: 0; max-width: 56ch; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-banner-actions .phone { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: #fff; }
.cta-banner-actions .phone:hover { color: var(--orange); text-decoration: none; }
.cta-banner-actions small { font-size: 0.83rem; color: rgba(255, 250, 240, 0.7); }
@media (max-width: 760px) { .cta-banner .container { grid-template-columns: 1fr; } }

/* Quote form */
.quote-section {
  background: var(--cream-soft);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
.quote-info h2 { margin-bottom: 0.3em; }
.quote-info .info-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}
.quote-info .info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.97rem;
}
.quote-info .info-list .icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.quote-info .info-list strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 3px; }
.quote-info .info-list a { color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.local-nap {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-soft);
}
.local-nap h2 {
  font-size: 1.25rem;
  margin-bottom: 0.55em;
}
.local-nap p {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}
.local-nap p:last-child { margin-bottom: 0; }

/* Privacy policy */
.policy-updated {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--muted);
}
.policy-section {
  background: var(--cream-soft);
}
.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.policy-summary {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.policy-summary h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75em;
}
.policy-summary ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.policy-content {
  display: grid;
  gap: 18px;
}
.policy-content article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  background: var(--paper);
}
.policy-content h2 {
  margin-bottom: 0.55em;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}
.policy-content p {
  margin-bottom: 0.85em;
  color: var(--ink-soft);
}
.policy-content p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .policy-layout { grid-template-columns: 1fr; }
  .policy-summary { position: static; }
}

.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow);
}
.quote-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .quote-form .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label {
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.field label .req { color: var(--orange-deep); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 94, 74, 0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  background: var(--paper);
  transition: border-color 140ms ease, background 140ms ease;
  margin-bottom: 0;
}
.checkbox-group label:hover { border-color: var(--green); background: var(--cream-soft); }
.checkbox-group input[type="checkbox"] { margin: 0; accent-color: var(--green); }
.form-foot { font-size: 0.83rem; color: var(--muted); margin-top: 12px; }
.success-msg, .error-msg {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.success-msg.show, .error-msg.show { display: block; }
.success-msg { background: #e6f3ec; color: #1a5a3e; border: 1px solid #b8dec9; }
.error-msg { background: #fdecea; color: #8a2a1a; border: 1px solid #f0c8c2; }

@media (max-width: 760px) { .quote-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(0deg, rgba(20,36,28,0.78) 0%, rgba(20,36,28,0) 100%);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.gallery-large { grid-column: span 7; aspect-ratio: 4 / 3; }
.gallery-medium { grid-column: span 5; aspect-ratio: 4 / 5; }
.gallery-third { grid-column: span 4; aspect-ratio: 4 / 3; }
.gallery-half { grid-column: span 6; aspect-ratio: 3 / 2; }
.gallery-wide { grid-column: span 8; aspect-ratio: 16 / 9; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large, .gallery-medium, .gallery-third, .gallery-half, .gallery-wide {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }
}

/* About */
.about-hero {
  background: var(--cream-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.about-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-grid .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-top: 24px;
}
.about-grid .role {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }

/* Page header */
.page-head {
  background: var(--cream-soft);
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}
.page-head .eyebrow { color: var(--green); }
.page-head h1 { max-width: 14ch; margin-bottom: 0.3em; }
.page-head .lede { font-size: 1.15rem; max-width: 56ch; color: var(--ink-soft); margin: 0; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 250, 240, 0.78);
  padding: 64px 0 32px;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a { color: rgba(255, 250, 240, 0.78); }
.site-footer a:hover { color: var(--orange); text-decoration: none; }
.site-footer .footer-brand p { color: rgba(255, 250, 240, 0.65); margin-top: 14px; max-width: 36ch; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-tag { color: rgba(255, 250, 240, 0.55); }
.footer-bottom {
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 250, 240, 0.55);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* Sticky mobile action bar */
.mobile-actions {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px -10px rgba(20, 36, 28, 0.18);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-actions .btn { flex: 1; justify-content: center; padding: 13px 10px; font-size: 0.95rem; }
@media (max-width: 700px) {
  .mobile-actions { display: flex; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
}

/* Utility */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.86rem; }

/* Reveal on scroll — only hide when JS has activated it */
.reveal { transition: opacity 600ms ease, transform 600ms ease; }
.js-ready .reveal:not(.in) { opacity: 0; transform: translateY(16px); }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal:not(.in) { opacity: 1; transform: none; }
}

/* Skip to content */
.skip {
  position: absolute;
  left: -9999px;
  background: var(--green-deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  z-index: 100;
}
.skip:focus { left: 16px; top: 16px; }

/* Focus visible */
*:focus-visible { outline: 3px solid rgba(31, 94, 74, 0.4); outline-offset: 2px; border-radius: 4px; }
