/* ==========================================================================
   Arnold's Outdoor Solutions — Design Tokens
   ========================================================================== */
:root {
  /* Brand colors, pulled from the logo (tree/hills/sun badge) */
  --forest-900: #0f2318;
  --forest-800: #1a3c2e;
  --forest-700: #224b39;
  --forest-600: #2f6b47;
  --sage-500: #7fa25a;
  --sage-300: #b7d191;
  --gold-500: #e3a72e;
  --gold-300: #f3cf7a;
  --brown-600: #6b4226;
  --cream-50: #fbf8f1;
  --cream-100: #f5efe1;
  --ink-900: #1c2420;
  --ink-600: #4b564e;

  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(15, 35, 24, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 35, 24, 0.14);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  --container-w: 1180px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; margin: 0 0 0.6em; color: var(--forest-800); }
p { margin: 0 0 1em; }
button { font-family: inherit; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 var(--space-3); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest-800);
  color: var(--cream-50);
  padding: 0.75em 1.25em;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 1.5em;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold-500); color: var(--forest-900); }
.btn-primary:hover { background: var(--gold-300); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--forest-800); border-color: var(--forest-800); }
.btn-ghost:hover { background: var(--forest-800); color: var(--cream-50); }
.btn-outline-light { background: transparent; color: var(--cream-50); border-color: var(--cream-50); }
.btn-outline-light:hover { background: var(--cream-50); color: var(--forest-800); }
.btn-lg { padding: 0.95em 1.9em; font-size: 1.05rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream-50);
  border-bottom: 1px solid rgba(26, 60, 46, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.brand { display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0; }
.brand-mark { flex-shrink: 0; height: 44px; width: auto; display: block; }
.brand-word { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-heading); font-weight: 900; font-size: 1.2rem; color: var(--forest-800); letter-spacing: 0.01em; }
.brand-sub { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage-500); }

.site-nav ul { display: flex; gap: 1.1rem; }
.site-nav a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-900);
  padding: 0.5em 0.05em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--forest-700); border-color: var(--gold-500); }

.has-dropdown { position: relative; }
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-900);
  cursor: pointer;
  padding: 0.5em 0.05em;
  border-bottom: 2px solid transparent;
}
.dropdown-toggle:hover { color: var(--forest-700); border-color: var(--gold-500); }
.dropdown-toggle .caret { font-size: 0.7em; transition: transform 0.15s ease; }
.has-dropdown.is-open .dropdown-toggle .caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cream-50);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26,60,46,0.1);
  min-width: 230px;
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  z-index: 50;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  display: flex;
}
.dropdown-menu a {
  padding: 0.65em 0.8em;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-900);
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--cream-100); color: var(--forest-700); }

.header-cta { display: flex; align-items: center; gap: 0.6rem; margin-left: auto; flex-shrink: 0; }
.header-cta .btn { font-size: 0.85rem; padding: 0.65em 1.1em; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--forest-800); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; color: var(--cream-50); }
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero { background-image: url('../assets/photos/hero-lawn.jpg'); background-size: cover; background-position: center 30%; }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,35,24,0.88) 0%, rgba(15,35,24,0.72) 42%, rgba(15,35,24,0.35) 75%);
  z-index: 0;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-inner { position: relative; z-index: 1; padding: var(--space-7) var(--space-3) var(--space-6); max-width: 760px; }
.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 0.75em; }
.eyebrow-dark { color: var(--sage-500); }
.hero h1 { color: var(--cream-50); font-size: clamp(2.1rem, 4.5vw, 3.4rem); max-width: 14ch; }
.hero-lead { font-size: 1.15rem; max-width: 55ch; color: var(--cream-100); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: var(--space-3) 0 var(--space-4); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.6rem; font-size: 0.85rem; font-weight: 600; }
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(15, 35, 24, 0.55);
  border: 1px solid rgba(251, 248, 241, 0.25);
  color: var(--cream-50);
  padding: 0.5em 0.9em;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.hero-trust li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); flex-shrink: 0; }

/* ==========================================================================
   Section shared
   ========================================================================== */
section { padding: var(--space-6) 0; }
.section-head { max-width: 640px; margin: 0 auto var(--space-5); text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-lead { color: var(--ink-600); font-size: 1.05rem; }

/* ==========================================================================
   Stats bar
   ========================================================================== */
.stats { background: var(--cream-50); padding: var(--space-4) 0; border-bottom: 1px solid rgba(26,60,46,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-3); text-align: center; }
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num { font-family: var(--font-heading); font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--forest-700); }
.stat-label { font-size: 0.85rem; font-weight: 600; color: var(--ink-600); }

/* ==========================================================================
   Services overview
   ========================================================================== */
.services-overview { background: var(--cream-100); }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.service-card {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(26, 60, 46, 0.08);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-300);
  margin-bottom: var(--space-2);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.35em; }
.service-card p { color: var(--ink-600); font-size: 0.92rem; margin: 0; }

/* ==========================================================================
   Service detail sections
   ========================================================================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
.service-detail-grid.reverse .service-detail-media { order: 2; }
.service-detail.alt { background: var(--cream-100); }
.service-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.2;
}
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; }

/* Media slideshow (drop-in replacement for a single service-detail-media image) */
.media-slideshow { position: relative; width: 100%; height: 100%; }
.media-slideshow .slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.media-slideshow .slide.is-active { opacity: 1; pointer-events: auto; }
.media-slideshow .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-slideshow .slide figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(15, 35, 24, 0.72);
  color: var(--cream-50);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.4em 0.85em;
  border-radius: 999px;
}
.media-slideshow .slide-prev,
.media-slideshow .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 35, 24, 0.55);
  color: var(--cream-50);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.15s ease;
}
.media-slideshow .slide-prev:hover,
.media-slideshow .slide-next:hover { background: rgba(15, 35, 24, 0.85); }
.media-slideshow .slide-prev { left: 0.6rem; }
.media-slideshow .slide-next { right: 0.6rem; }
.media-slideshow .slide-dots {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.media-slideshow .slide-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(251, 248, 241, 0.5);
  cursor: pointer;
  padding: 0;
}
.media-slideshow .slide-dots button.is-active { background: var(--gold-500); }
.video-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.video-pair figure { margin: 0; }
.video-pair video {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--forest-900);
  display: block;
}
.video-pair figcaption {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-600);
  margin-top: 0.5em;
}
@media (max-width: 640px) {
  .video-pair { grid-template-columns: 1fr; }
}

.before-after-label {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--forest-700);
  margin: 0 0 0.5em;
}
.service-detail-media.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--forest-900);
}
.service-detail-media.before-after figure { position: relative; margin: 0; height: 100%; }
.service-detail-media.before-after img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-detail-media.before-after figcaption {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  background: rgba(15, 35, 24, 0.75);
  color: var(--cream-50);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35em 0.7em;
  border-radius: 999px;
}
.service-detail-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.check-list { margin: var(--space-2) 0 var(--space-3); display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li { position: relative; padding-left: 1.75em; color: var(--ink-900); }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sage-500);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 0.55em;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--cream-50);
  border-bottom: 2px solid var(--cream-50);
  transform: rotate(-45deg);
}
.badge-emergency {
  display: inline-block;
  background: var(--forest-800);
  color: var(--cream-50);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6em 1em;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold-500);
}

/* ==========================================================================
   Process
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  counter-reset: step;
}
.process-steps li { text-align: center; padding: 0 var(--space-1); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest-800);
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
}
.process-steps h3 { font-size: 1.05rem; }
.process-steps p { color: var(--ink-600); font-size: 0.92rem; }

/* ==========================================================================
   Owner
   ========================================================================== */
.owner-inner { display: flex; align-items: center; gap: var(--space-4); }
.owner-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 4px solid var(--sage-300);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.owner-copy h2 { margin-bottom: 0.15em; }
.owner-copy p { margin: 0; color: var(--ink-600); }

/* ==========================================================================
   Service area
   ========================================================================== */
.service-area { background: var(--forest-800); color: var(--cream-50); text-align: center; }
.service-area .eyebrow-dark { color: var(--gold-300); }
.service-area h2 { color: var(--cream-50); }
.service-area .section-lead { color: var(--sage-300); }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; max-width: 820px; margin: 0 auto; }
.area-chips li {
  background: rgba(251, 248, 241, 0.08);
  border: 1px solid rgba(251, 248, 241, 0.25);
  padding: 0.5em 1.1em;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}
.area-note { margin-top: var(--space-3); color: var(--sage-300); }
.area-note a { color: var(--gold-300); text-decoration: underline; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--cream-100); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); align-items: start; }
.testimonial-card {
  margin: 0;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26, 60, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-stars { color: var(--gold-500); font-size: 1rem; letter-spacing: 0.15em; }
.testimonial-card blockquote { margin: 0; color: var(--ink-900); font-size: 0.92rem; line-height: 1.6; }
.testimonial-card figcaption { font-weight: 700; font-size: 0.82rem; color: var(--forest-700); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.filter-btn {
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55em 1.2em;
  border-radius: 999px;
  border: 1.5px solid rgba(26, 60, 46, 0.25);
  background: var(--cream-50);
  color: var(--forest-800);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.filter-btn:hover { border-color: var(--forest-700); }
.filter-btn.is-active { background: var(--forest-800); color: var(--cream-50); border-color: var(--forest-800); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--tile-color) 18%, var(--cream-50));
  border: 2px dashed var(--tile-color);
  display: flex;
  align-items: flex-end;
  padding: var(--space-2);
  overflow: hidden;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.gallery-tile span {
  font-weight: 700;
  color: var(--tile-color);
  background: var(--cream-50);
  padding: 0.4em 0.8em;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.gallery-tile.has-photo { border: none; padding: 0; align-items: flex-end; }
.gallery-tile.has-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.gallery-tile.has-photo:hover img { transform: scale(1.05); }
.gallery-tile.has-photo span { margin: var(--space-2); position: relative; z-index: 1; }
.gallery-tile.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,35,24,0.55) 0%, transparent 45%);
}
.gallery-tile.is-hidden { display: none; }
.gallery-empty { text-align: center; color: var(--ink-600); margin-top: var(--space-3); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 35, 24, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: min(90vw, 1100px); max-height: 78vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); }
.lightbox-caption { color: var(--cream-100); margin-top: var(--space-2); font-size: 0.95rem; text-align: center; max-width: 60ch; }
.lightbox-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(251, 248, 241, 0.15);
  color: var(--cream-50);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(251, 248, 241, 0.3); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(251, 248, 241, 0.15);
  color: var(--cream-50);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(251, 248, 241, 0.3); }
.lightbox-prev { left: var(--space-3); }
.lightbox-next { right: var(--space-3); }

/* ==========================================================================
   Quote / contact
   ========================================================================== */
.quote { position: relative; overflow: hidden; color: var(--cream-50); }
.quote-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.quote-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center; }
.quote-copy h2 { color: var(--cream-50); font-size: clamp(1.7rem, 3vw, 2.3rem); }
.quote-copy p { color: var(--sage-300); font-size: 1.05rem; }

.quote-form { background: var(--cream-50); color: var(--ink-900); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-md); }
.quote-form-cta { text-align: center; }
.quote-form-cta h3 { font-size: 1.3rem; margin-bottom: 0.4em; }
.quote-form-cta p { color: var(--ink-600); }
.quote-form-cta .form-note { color: var(--ink-600); font-weight: 500; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--space-2); }
.form-row label { font-weight: 600; font-size: 0.88rem; }
.form-row input, .form-row select, .form-row textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75em 0.9em;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(26, 60, 46, 0.25);
  background: var(--cream-50);
  color: var(--ink-900);
  min-height: 44px;
}
.form-row textarea { min-height: 90px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--forest-700);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 107, 71, 0.2);
}
.form-note { min-height: 1.4em; font-size: 0.9rem; font-weight: 600; color: var(--forest-700); margin: 0.75em 0 0; }

/* ==========================================================================
   Sub-page hero / breadcrumb / related services
   ========================================================================== */
.page-hero {
  background: var(--forest-800);
  color: var(--cream-50);
  padding: var(--space-5) 0 var(--space-4);
}
.breadcrumb { font-size: 0.85rem; color: var(--sage-300); margin-bottom: var(--space-2); }
.breadcrumb a { color: var(--sage-300); text-decoration: underline; }
.breadcrumb a:hover { color: var(--gold-300); }
.page-hero h1 { color: var(--cream-50); font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 18ch; margin-bottom: 0.4em; }
.page-hero .page-lead { color: var(--cream-100); font-size: 1.05rem; max-width: 60ch; margin: 0 0 var(--space-3); }
.page-hero .hero-actions { margin: 0; }

.page-section { padding: var(--space-6) 0; }
.page-section.alt { background: var(--cream-100); }
.page-body-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-5); align-items: start; }
.page-body-grid img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.page-body-grid .check-list { margin-top: var(--space-3); }

.related-services { background: var(--cream-100); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.related-card {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,60,46,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
.related-card p { color: var(--ink-600); font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--forest-900); color: var(--cream-100); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 0.8fr 1.1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0 var(--space-4);
}
.footer-brand { display: flex; gap: 0.75rem; align-items: flex-start; }
.footer-mark { height: 40px; background: var(--cream-50); border-radius: 6px; padding: 2px 4px; }
.footer-name { font-family: var(--font-heading); font-weight: 700; color: var(--cream-50); margin: 0; }
.footer-tag { font-size: 0.85rem; color: var(--sage-300); margin: 0.2em 0 0; }
.footer-col h3 { color: var(--cream-50); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75em; }
.footer-col p, .footer-col li { font-size: 0.9rem; color: var(--cream-100); margin-bottom: 0.5em; }
.footer-col a:hover { color: var(--gold-300); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(251, 248, 241, 0.12); padding: var(--space-2) 0; }
.footer-bottom p { margin: 0; font-size: 0.82rem; color: var(--sage-300); text-align: center; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .site-nav, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
  }
  .site-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-50);
    border-bottom: 1px solid rgba(26,60,46,0.1);
    box-shadow: var(--shadow-md);
    padding: var(--space-2) var(--space-3) var(--space-3);
  }
  .site-nav.is-open ul { flex-direction: column; gap: 0.25rem; }
  .site-nav.is-open a { display: block; padding: 0.85em 0.25em; }
  .site-nav.is-open .dropdown-toggle { display: flex; width: 100%; justify-content: space-between; padding: 0.85em 0.25em; }
  .site-nav.is-open .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--cream-100);
    margin: 0.2rem 0 0.4rem;
  }

  .header-cta { margin-left: 0; }
  .header-cta .btn-primary { padding: 0.6em 1em; font-size: 0.85rem; }

  .service-detail-grid, .service-detail-grid.reverse, .quote-inner, .page-body-grid {
    grid-template-columns: 1fr;
  }
  .related-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse .service-detail-media { order: 0; }
  .quote-inner .quote-copy { text-align: center; }
  .hero-actions { justify-content: center; }
  .owner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-inner { padding-top: var(--space-6); }
}
