/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --forest:     #0F1A0A;
  --green:      #2D5016;
  --sage:       #8BAF6A;
  --pale:       #C9D4B8;
  --warm-white: #F7F5F0;
  --bark:       #3D3128;
  --muted:      #6B6057;
  --border:     #DDD8CF;
  --surface:    #EFF2E8;
  --error:      #9B2C2C;
  --error-bg:   #FFF5F5;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--bark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  background: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  margin-top: 10px;
}

.nav-logo img {
  height: 60px;
}

.nav-logo span { color: var(--sage); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

/* Hide nav links on mobile */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--pale);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--warm-white); }

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  background: var(--sage);
  border: none;
  border-radius: 4px;
  padding: 9px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--pale); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--warm-white);
  margin: 5px 0;
  transition: all 0.2s;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  background: var(--sage);
  border: none;
  border-radius: 4px;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-primary:hover { background: var(--pale); }

.btn-ghost {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--pale);
  background: transparent;
  border: 1px solid rgba(201,212,184,0.35);
  border-radius: 4px;
  padding: 12px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--pale); color: var(--warm-white); }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--forest);
  padding: 56px 48px 60px;
}
.page-header-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.15;
  max-width: 560px;
  margin-bottom: 16px;
}
.page-header p {
  font-size: 15px;
  font-weight: 300;
  color: var(--pale);
  max-width: 480px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--forest);
  padding: 72px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h2,
.cta-strip-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 8px;
}
.cta-strip p,
.cta-strip-text p { font-size: 14px; color: var(--pale); }

/* ── FOOTER ── */
footer {
  background: var(--forest);
  padding: 48px 48px 36px;
  border-top: 1px solid rgba(201,212,184,0.1);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(201,212,184,0.15);
  margin-bottom: 28px;
}

.footer-logo img {
  height: 60px;
}

.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--pale); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--warm-white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: var(--pale); }
.footer-phone { font-size: 13px; color: var(--pale); text-decoration: none; }
.footer-phone:hover { color: var(--warm-white); }
.footer-contact { display: flex; align-items: center; gap: 16px; }
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(247,245,240,0.12);
  color: var(--pale);
  transition: background 0.2s, color 0.2s;
}
.footer-social svg { width: 15px; height: 15px; }
.footer-social:hover { background: var(--pale); color: var(--forest); }
.footer-badges { display: flex; align-items: center; gap: 50px; }
.footer-badges a { display: inline-flex; transition: filter 0.2s; }
.footer-badges a:hover { filter: brightness(1.25); }
.footer-badges img { height: 30px; width: auto; }

@media (max-width: 480px) {
  .footer-badges { gap: 20px; }
}


/* ════════════════════════════════════════
   INDEX PAGE
   ════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  background: var(--forest);
  padding: 80px 48px 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center / cover no-repeat;
  opacity: 0.75;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(45,80,22,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--sage);
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--pale);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 28px 48px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── SECTION ── */
.section { padding: 80px 48px; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ── SERVICES GRID (home page cards) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--warm-white);
  padding: 32px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card:hover { background: #EFF2E8; }
.service-card:hover .service-arrow { transform: translateX(4px); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--pale);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--bark);
  line-height: 1.3;
}
.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.service-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.service-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 48px;
}

/* ── ABOUT STRIP ── */
.about-strip {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-strip p:last-of-type { margin-bottom: 0; }
.home-about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.home-about-photo-grid .photo-placeholder {
  background: var(--pale);
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-about-photo-grid .photo-placeholder:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.home-about-photo-grid .photo-placeholder svg {
  width: 28px; height: 28px;
  stroke: var(--sage); fill: none;
  stroke-width: 1.5; opacity: 0.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.home-about-photo-grid .photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.home-about-photo-grid .photo-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.home-about-photo-grid .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-about-photo-grid .photo-item .photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.home-about-photo-grid .photo-item:hover .photo-overlay,
.home-about-photo-grid .photo-item:focus .photo-overlay {
  opacity: 1;
}
.home-about-photo-grid .photo-item .photo-overlay svg {
  width: 30px; height: 30px;
  stroke: var(--warm-white); fill: none;
  stroke-width: 1.5; opacity: 0.9;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── TESTIMONIAL (homepage) ── */
.testimonial {
  background: var(--green);
  padding: 72px 48px;
}
.testimonial-inner { max-width: 680px; }
.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.45;
  margin-bottom: 28px;
}
.testimonial .testimonial-attr {
  font-size: 13px;
  color: var(--pale);
  letter-spacing: 0.04em;
}
.testimonial .testimonial-attr strong {
  color: var(--warm-white);
  font-weight: 500;
}

/* ── AREA SECTION ── */
.area-section {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.area-list li {
  font-size: 15px;
  color: var(--bark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-dot {
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}
.area-cta {
  background: var(--pale);
  border-radius: 4px;
  padding: 32px;
  margin-top: 32px;
}
.area-cta p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bark);
  margin-bottom: 10px;
  text-decoration: none;
}
.contact-detail:hover { color: var(--green); }
.contact-detail svg {
  width: 16px; height: 16px;
  stroke: var(--sage); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}


/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */

/* ── INTRO SPLIT ── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.intro-photo {
  background: var(--pale);
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-photo svg {
  width: 36px; height: 36px;
  stroke: var(--sage); fill: none;
  stroke-width: 1.5; opacity: 0.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.intro-split .photo-item,
.area-section .photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.intro-split .photo-item img,
.area-section .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-split .photo-item .photo-overlay,
.area-section .photo-item .photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.intro-split .photo-item:hover .photo-overlay,
.intro-split .photo-item:focus .photo-overlay,
.area-section .photo-item:hover .photo-overlay,
.area-section .photo-item:focus .photo-overlay {
  opacity: 1;
}
.intro-split .photo-item .photo-overlay svg,
.area-section .photo-item .photo-overlay svg {
  width: 30px; height: 30px;
  stroke: var(--warm-white); fill: none;
  stroke-width: 1.5; opacity: 0.9;
  stroke-linecap: round; stroke-linejoin: round;
}
.intro-text .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.25;
  margin-bottom: 24px;
}
.intro-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.intro-text p:last-of-type { margin-bottom: 0; }

/* ── VALUES ── */
.values-section {
  padding: 80px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.values-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.values-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.25;
  margin-bottom: 52px;
  max-width: 480px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.value-icon {
  width: 40px;
  height: 40px;
  background: var(--pale);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green); fill: none;
  stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 10px;
}
.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PULL QUOTE ── */
.pull-quote {
  background: var(--green);
  padding: 72px 48px;
}
.pull-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.45;
  max-width: 680px;
}

/* ── AREA SECTION (about) ── */
.area-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.area-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.25;
  margin-bottom: 24px;
}
.area-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.map-placeholder {
  background: var(--pale);
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.map-placeholder svg {
  width: 36px; height: 36px;
  stroke: var(--green); fill: none;
  stroke-width: 1.5; opacity: 0.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.map-placeholder p {
  font-size: 13px;
  color: var(--muted);
}

/* ── TESTIMONIALS GRID (about) ── */
.testimonials-section {
  padding: 80px 48px;
  background: var(--surface);
}
.testimonials-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.25;
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars { display: flex; gap: 3px; }
.star {
  width: 14px; height: 14px;
  background: var(--sage);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial-quote {
  font-size: 14px;
  color: var(--bark);
  line-height: 1.75;
  flex: 1;
}
.testimonial-card .testimonial-attr {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.testimonial-card .testimonial-attr strong {
  display: block;
  color: var(--bark);
  font-weight: 500;
  margin-bottom: 2px;
}


/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: 600px;
}
.form-side {
  padding: 64px 56px 80px 48px;
  border-right: 1px solid var(--border);
}
.form-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.25;
  margin-bottom: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}
.field.full { grid-column: span 2; }
label {
  font-size: 13px;
  font-weight: 500;
  color: var(--bark);
  letter-spacing: 0.02em;
}
label .required {
  color: var(--sage);
  margin-left: 2px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--bark);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(139,175,106,0.18);
}
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 0.7; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6057' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field-hint {
  font-size: 12px;
  color: var(--muted);
  margin-top: -4px;
}
.field-error {
  font-size: 12px;
  color: var(--error);
  display: none;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--error); }
.field.invalid .field-error { display: block; }
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--bark);
  cursor: pointer;
  user-select: none;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--warm-white);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
}
.checkbox-label input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}
.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.checkbox-label input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(139,175,106,0.18);
}
.submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.btn-submit {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  background: var(--sage);
  border: none;
  border-radius: 4px;
  padding: 13px 32px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--pale); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.form-success {
  display: none;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--pale);
  border-radius: 4px;
  margin-top: 32px;
}
.form-success.visible { display: block; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--muted); }
.info-side {
  padding: 64px 48px 80px 52px;
  background: var(--surface);
}
.info-block { margin-bottom: 48px; }
.info-block:last-child { margin-bottom: 0; }
.info-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--pale);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-icon svg {
  width: 16px; height: 16px;
  stroke: var(--green); fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.contact-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 2px;
}
.contact-item-text span { font-size: 13px; color: var(--muted); }
a.contact-item .contact-item-text strong { color: var(--green); }
a.contact-item:hover .contact-item-text strong { color: var(--bark); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { font-size: 13px; padding: 9px 0; color: var(--bark); }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  font-size: 12px;
  color: var(--green);
  background: var(--pale);
  border-radius: 20px;
  padding: 5px 14px;
}


/* ════════════════════════════════════════
   GALLERY PAGE
   ════════════════════════════════════════ */

.filter-bar {
  background: var(--green);
  padding: 0 48px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--pale);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 15px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn:hover { color: var(--warm-white); }
.filter-btn.active {
  color: var(--warm-white);
  border-bottom-color: var(--sage);
}
.gallery-section { padding: 64px 48px 80px; }
.gallery-group { margin-bottom: 72px; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-group-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.photo-grid {
  columns: 3;
  column-gap: 12px;
}
.photo-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-grid .photo-placeholder {
  background: var(--pale);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-grid .photo-placeholder svg {
  width: 28px; height: 28px;
  stroke: var(--sage); fill: none;
  stroke-width: 1.5; opacity: 0.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.photo-item:nth-child(3n+1) .photo-placeholder { aspect-ratio: 4/3; }
.photo-item:nth-child(3n+2) .photo-placeholder { aspect-ratio: 3/4; }
.photo-item:nth-child(3n)   .photo-placeholder { aspect-ratio: 1/1; }

#gallery-featured .photo-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
#gallery-featured .photo-item .photo-overlay {
  align-items: center;
  justify-content: center;
  background: rgba(15, 26, 10, 0.4);
  padding: 0;
}
#gallery-featured .photo-item .photo-overlay svg {
  width: 30px; height: 30px;
  stroke: var(--warm-white); fill: none;
  stroke-width: 1.5; opacity: 0.9;
  stroke-linecap: round; stroke-linejoin: round;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 10, 0.55);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s;
}
.photo-caption {
  font-size: 12px;
  color: var(--pale);
  line-height: 1.4;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 8, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: min(92vw, 1400px);
  width: 100%;
  position: relative;
}
.lightbox-img {
  width: 100%;
  border-radius: 4px;
  display: block;
  background: var(--pale);
  aspect-ratio: 16/9;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--pale);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.lightbox-close:hover { color: var(--warm-white); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 15, 8, 0.5);
  border: none;
  color: var(--warm-white);
  font-size: 40px;
  line-height: 1;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.15s;
  z-index: 1;
}
.lightbox-nav:hover { background: rgba(10, 15, 8, 0.8); }
.lightbox-prev { left: 0; border-radius: 0 2px 2px 0; }
.lightbox-next { right: 0; border-radius: 2px 0 0 2px; }


/* ════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════ */

.service-nav {
  background: var(--green);
  padding: 0 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
.service-nav-list { display: flex; list-style: none; gap: 0; }
.service-nav-list a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--pale);
  text-decoration: none;
  padding: 16px 20px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.service-nav-list a:hover {
  color: var(--warm-white);
  border-bottom-color: var(--sage);
}
.service-section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.service-section:last-of-type { border-bottom: none; }
.service-section:nth-child(even) { background: var(--surface); }
.service-meta { position: sticky; top: 88px; }
.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 400;
  color: var(--pale);
  line-height: 1;
  margin-bottom: 8px;
}
.service-section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.service-section-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.service-body { display: flex; flex-direction: column; gap: 32px; }
.service-body p { font-size: 15px; color: var(--muted); line-height: 1.8; }
.service-body strong { color: var(--bark); font-weight: 500; }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 14px;
  color: var(--bark);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--warm-white);
  border-radius: 4px;
  border: 1px solid var(--border);
}
.list-dot {
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.service-callout {
  background: var(--green);
  border-radius: 4px;
  padding: 24px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.45;
  font-style: italic;
}
.service-body p.service-callout {
  color: var(--warm-white);
}
.service-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-photo {
  background: var(--pale);
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-photo:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.service-photo svg {
  width: 28px; height: 28px;
  stroke: var(--sage); fill: none;
  stroke-width: 1.5; opacity: 0.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.service-photos .photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-photos .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-photos .photo-item .photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.service-photos .photo-item:hover .photo-overlay,
.service-photos .photo-item:focus .photo-overlay {
  opacity: 1;
}
.service-photos .photo-item .photo-overlay svg {
  width: 30px; height: 30px;
  stroke: var(--warm-white); fill: none;
  stroke-width: 1.5; opacity: 0.9;
  stroke-linecap: round; stroke-linejoin: round;
}


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-side { padding: 48px 24px 56px; border-right: none; border-bottom: 1px solid var(--border); }
  .info-side { padding: 48px 24px 56px; }
  .form-row { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
}

@media (max-width: 900px) {
  /* Nav */
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }

  /* Footer */
  footer { padding: 40px 24px 28px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* Page header */
  .page-header { padding: 40px 24px 48px; }

  /* CTA strip */
  .cta-strip { padding: 56px 24px; flex-direction: column; align-items: flex-start; }

  /* Index */
  .hero { padding: 56px 24px 64px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { padding: 20px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .section { padding: 56px 24px; }
  .divider { margin: 0 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .area-section { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .area-list { grid-template-columns: 1fr; }
  .testimonial { padding: 56px 24px; }

  /* About */
  .intro-split { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .values-section { padding: 56px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .pull-quote { padding: 56px 24px; }
  .testimonials-section { padding: 56px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .filter-bar { padding: 0 24px; }
  .gallery-section { padding: 48px 24px 64px; }
  .photo-grid { columns: 2; }

  /* Services */
  .service-nav { padding: 0 24px; }
  .service-section { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .service-meta { position: static; }
  .service-number { font-size: 48px; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .home-about-photo-grid { grid-template-columns: 1fr; }
  .home-about-photo-grid .photo-placeholder:first-child { grid-column: span 1; }
  .home-about-photo-grid .photo-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .footer-links { flex-direction: column; gap: 12px; }
  .values-grid { grid-template-columns: 1fr; }
  .service-photos { grid-template-columns: 1fr; }
  .service-photo:first-child { grid-column: span 1; }
  .checkbox-group { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .photo-grid { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
