:root {
  color-scheme: light;

  /* Light theme tokens */
  --bg: #ffffff;
  --surface: #f8f9fa;
  --surface-2: #e9ecef;
  --text: #212529;
  --text-secondary: #495057;
  --muted: #6c757d;
  --border: #dee2e6;

  /* Brand colors (WCAG AA compliant on white) */
  --brand-green: #0d6832;
  --brand-green-light: #e8f5e9;
  --brand-orange: #b85c27;
  --brand-orange-light: #fff3e0;
  --accent: var(--brand-green);

  --ring: rgba(13, 104, 50, 0.3);

  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  --container: 1120px;
  --gutter: 20px;

  --step--1: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  --step-0: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.7vw, 1.5rem);
  --step-2: clamp(1.6rem, 1.35rem + 1.4vw, 2.2rem);
  --step-3: clamp(2.2rem, 1.8rem + 2.2vw, 3.2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--brand-green);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-orange);
  text-decoration-color: var(--brand-orange);
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  border: 2px solid var(--brand-green);
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

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

.muted {
  color: var(--muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
}

.brand-mark {
  width: 120px;
  height: auto;
}

.header-cta {
  display: none;
  gap: 10px;
  align-items: center;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  appearance: none;
  border: none;
  background: transparent;
  color: #15803d;
  border-radius: 8px;
  padding: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.nav-toggle:hover {
  background: #f0fdf4;
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle::before {
  transform: translateY(-6px);
  box-shadow: 0 6px 0 currentColor;
}

.nav-toggle::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
  box-shadow: none;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.nav-menu {
  list-style: none;
  padding: 10px;
  margin: 0;
  display: none;
  position: absolute;
  right: var(--gutter);
  top: 60px;
  width: min(280px, calc(100vw - 2 * var(--gutter)));
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.nav-menu a:hover {
  background: var(--surface);
  color: var(--brand-green);
}

.nav-menu.is-open {
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-weight: 600;
  min-width: 44px;
  min-height: 44px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.btn-primary {
  background: #15803d;
  color: white;
  border-color: #15803d;
}

.btn-primary:hover {
  background: #166534;
  border-color: #166534;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(21, 128, 61, 0.2);
}

.btn-secondary {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}

.btn-secondary:hover {
  background: #dcfce7;
  border-color: #86efac;
  color: #15803d;
}

.btn-lg {
  padding: 10px 22px;
  font-size: var(--step-0);
}

/* Sticky call button (mobile) */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 40;
  box-shadow: 0 4px 16px rgba(21, 128, 61, 0.25);
  background: #15803d;
  border-color: #15803d;
}

.sticky-call:hover {
  box-shadow: 0 6px 20px rgba(21, 128, 61, 0.3);
}

@media (min-width: 720px) {
  .sticky-call {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 50px 0 60px;
  background: linear-gradient(135deg, #f0fdf4 0%, white 100%);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-split > * {
  min-width: 0;
}

.hero-content {
  display: grid;
  gap: 20px;
  max-width: 100%;
  order: 0;
}

@media (max-width: 767px) {
  .hero {
    padding: 40px 0 48px;
  }

  .hero-split {
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .hero-content {
    gap: 24px;
  }
}

.hero-media-split {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  order: 1;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.hero-media-split .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-media-split picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media-split img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero {
    padding: 60px 0 70px;
  }

  .hero-split {
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 48px;
    margin-bottom: 48px;
  }

  .hero-content {
    order: 0;
  }

  .hero-media-split {
    order: 1;
    border-radius: 16px;
    min-height: 0;
  }

  .hero-points {
    gap: 24px 40px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 80px 0 90px;
  }

  .hero-split {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 64px;
    margin-bottom: 56px;
  }

  .hero-points {
    gap: 28px 48px;
  }
}

.eyebrow {
  color: var(--brand-green);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.88rem;
  margin: 0;
}

.hero h1 {
  font-size: var(--step-3);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.lead {
  font-size: var(--step-1);
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  justify-content: center;
}

.hero-points li {
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #15803d;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 50px 0;
}

@media (min-width: 640px) {
  .section {
    padding: 60px 0;
  }
}

.section-muted {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 720px;
}

.section-header h2 {
  font-size: var(--step-2);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 3px solid #15803d;
  display: inline-block;
}

.section-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--step-0);
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #15803d;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.gallery-link:hover {
  color: #166534;
  gap: 10px;
}

/* Featured Video Section */
.featured-video-section {
  background: white;
}

.featured-video-section .container {
  display: grid;
  gap: 32px;
}

.featured-video-wrapper {
  position: relative;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.featured-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.featured-video-wrapper:has(.featured-video[controls]):hover .video-play-overlay,
.featured-video-wrapper .featured-video:not([paused]) ~ .video-play-overlay {
  opacity: 0;
}

.video-play-btn {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
  pointer-events: auto;
  border-radius: 50%;
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-play-btn:focus-visible {
  outline: 3px solid rgba(21, 128, 61, 0.5);
  outline-offset: 4px;
}

.video-play-btn svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  display: block;
}

.video-trust-signals {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #15803d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 20px auto 0;
  max-width: 100%;
  width: fit-content;
}

@media (min-width: 640px) {
  .video-trust-signals {
    gap: 20px;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 0.9rem;
    margin: 24px auto 0;
  }
}

.video-trust-signals span {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 44px;
  min-height: 44px;
}

.video-trust-signals span::before {
  content: "✓";
  color: #15803d;
  font-weight: 900;
}

@media (max-width: 640px) {
  .video-trust-signals {
    font-size: 0.8rem;
    padding: 10px 16px;
    gap: 12px;
  }
}

/* Owner/Trust Section */
.owner-section {
  background: var(--surface);
}

.owner-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.owner-content h2 {
  font-size: var(--step-2);
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.owner-content .lead {
  font-size: var(--step-1);
  color: var(--text-secondary);
  margin: 0 0 24px;
  line-height: 1.5;
}

.owner-credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 16px;
}

.owner-credentials li {
  padding-left: 32px;
  position: relative;
  color: var(--text);
  line-height: 1.6;
}

.owner-credentials li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #15803d;
  font-weight: 900;
  font-size: 1.3rem;
}

.owner-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.owner-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.owner-photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .owner-split {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

/* Services Carousel + Grid */
.services-carousel {
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-carousel {
    gap: 40px;
  }
}

.service-featured {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: white;
}

.service-featured-photo {
  position: relative;
  overflow: hidden;
}

.service-featured-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-featured.transitioning img {
  opacity: 0.7;
}

.service-featured-content {
  padding: 24px 28px;
}

.service-featured-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease;
}

.service-featured-content p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  transition: opacity 0.2s ease;
}

.service-featured.transitioning h3,
.service-featured.transitioning p {
  opacity: 0.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-grid-btn {
  appearance: none;
  border: 2px solid var(--border);
  background: white;
  color: var(--text);
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 44px;
}

.service-grid-btn:hover {
  background: #f0fdf4;
  border-color: #86efac;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.15);
}

.service-grid-btn.active {
  background: #15803d;
  color: white;
  border-color: #15803d;
}

.service-grid-btn:focus-visible {
  outline: 3px solid rgba(21, 128, 61, 0.3);
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-featured-content {
    padding: 32px 36px;
  }
}

/* Work Process Section */
.work-process-section {
  background: white;
}

.work-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.process-item {
  position: relative;
  text-align: center;
}

.process-number {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: #15803d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.3);
  z-index: 10;
}

.process-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.process-item h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
}

.process-item p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .work-process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Service Area Split */
.service-area-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.service-area-content {
  display: grid;
  gap: 16px;
}

.service-area-content h2 {
  font-size: var(--step-2);
  font-weight: 900;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.02em;
}

.service-area-content p {
  font-size: var(--step-0);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.service-area-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.service-area-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-area-media img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .service-area-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .service-area-content {
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .service-area-split {
    gap: 64px;
  }
}

/* Contact Split */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.contact-split-content {
  display: grid;
  gap: 24px;
}

.contact-split-content h2 {
  font-size: var(--step-2);
  font-weight: 900;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.02em;
}

.contact-split-content .lead {
  font-size: var(--step-0);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-info {
  display: grid;
  gap: 32px;
}

.contact-info-item {
  display: grid;
  gap: 12px;
}

.contact-info-item strong {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 800;
}

.contact-info-primary {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.contact-phone-large {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #15803d;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.contact-phone-large:hover {
  color: #166534;
}

.contact-email {
  font-size: 1.1rem;
  font-weight: 700;
  color: #15803d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email:hover {
  color: #166534;
  text-decoration: underline;
}

.contact-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #15803d;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1.5px solid #bbf7d0;
  background: #f0fdf4;
  min-height: 44px;
  transition: all 0.2s ease;
}

.social-link:hover {
  color: white;
  background: #15803d;
  border-color: #15803d;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-split-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.contact-split-media img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .contact-split-content {
    gap: 32px;
  }

  .contact-phone-large {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-split {
    gap: 64px;
  }

  .contact-phone-large {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .contact-phone-large {
    font-size: 1.5rem;
  }
}

.social-link:focus-visible {
  outline: 3px solid rgba(21, 128, 61, 0.3);
  outline-offset: 2px;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social {
  margin: 8px 0 4px;
}

@media (max-width: 640px) {
  .contact-phone {
    font-size: 1.5rem;
  }

  .contact-owner-badge {
    flex-direction: column;
    gap: 12px;
  }
}

/* Feature list (replaces some card grids) */
.feature-list {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.feature-item {
  display: grid;
  gap: 8px;
}

.feature-item h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item h3::before {
  content: "•";
  color: var(--brand-green);
  font-size: 1.8rem;
  line-height: 1;
}

.feature-item p {
  margin: 0;
  color: var(--text-secondary);
  padding-left: 28px;
}

/* Card grid (used sparingly) */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--text-secondary);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.gallery-item--wide img {
  aspect-ratio: 16 / 9;
}

.gallery-item--tall img {
  aspect-ratio: 2 / 3;
}

.gallery-item figcaption {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--surface);
}

/* Legacy phone/email link styles (kept for backwards compat) */
.phone-link {
  font-size: 1.5rem;
  font-weight: 800;
  color: #15803d;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.phone-link:hover {
  color: #166534;
  text-decoration: underline;
}

.email-link {
  font-size: 1rem;
  font-weight: 600;
  color: #15803d;
  text-decoration: none;
}

.email-link:hover {
  color: #166534;
  text-decoration: underline;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.contact-card--primary {
  background: linear-gradient(135deg, var(--brand-green-light) 0%, white 100%);
  border: 2px solid var(--brand-green);
}

.contact-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.1rem;
}

.contact-link {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-green);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  padding: 48px 0;
  background: var(--surface);
  border-top: 3px solid #15803d;
}

.footer-inner {
  display: grid;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.footer-content {
  display: grid;
  gap: 8px;
}

.footer-brand {
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
}

.footer-inner p {
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 180px 1fr;
    gap: 32px;
    align-items: center;
  }
}

/* Responsive */
@media (min-width: 640px) {
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .brand-mark {
    width: 200px;
  }

  .header-cta {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    gap: 4px;
    width: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }

  .nav-menu a {
    padding: 8px 12px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }


  .contact-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

