/* ─── Design tokens ─── */
:root { --color-primary: #2D6A2D; --color-secondary: #c4a882; --color-accent: #E8681A; }

/* ─── Skip link ─── */
.skip-link { position: absolute; top: -100%; left: 1rem; padding: .75rem 1.5rem; background: #2c2c2c; color: #fff; font-size: .875rem; font-weight: 500; border-radius: 0 0 4px 4px; z-index: 9999; text-decoration: none; }
.skip-link:focus { top: 0; }

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  color: #2c2c2c;
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: #2c2c2c;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

/* ─── Utilities ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section--alt { background: #f7f4ef; }
.section-header { margin-bottom: 3rem; }
.section-title { margin-bottom: 0.75rem; }
.section-sub { font-size: 1.05rem; color: #5a5a5a; max-width: 60ch; line-height: 1.7; }

/* ─── Focus ─── */
:focus-visible { outline: 2px solid #2D6A2D; outline-offset: 3px; border-radius: 2px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: #2D6A2D; color: #fff; border-color: #2D6A2D; }
.btn-primary:hover { background: #114e11; border-color: #114e11; text-decoration: none; }
.btn-outline { background: transparent; color: #2D6A2D; border-color: #2D6A2D; }
.btn-outline:hover { background: #2D6A2D18; text-decoration: none; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.btn-secondary { background: transparent; color: #2c2c2c; border-color: #2c2c2c; }
.btn-secondary:hover { background: rgba(44,44,44,0.06); text-decoration: none; }
.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ede8e0;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}
.wordmark-leaf {
  font-size: 1rem;
  color: #2D6A2D;
}
.wordmark-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #2c2c2c;
  letter-spacing: 0.01em;
}
.wordmark-logo { height: 36px; width: auto; }
.nav-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a4a4a;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
  display: block;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: #2D6A2D; background: #2D6A2D10; text-decoration: none; }
.nav-cta { margin-left: 1rem; font-size: 0.8rem; padding: 0.55rem 1.25rem; }

/* ─── Hamburger ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2c2c2c;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile nav drawer ─── */
.mobile-nav {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #ede8e0;
  padding: 1.5rem 2rem;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .mobile-nav { display: none !important; }
  .mobile-nav.open { display: block !important; }
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
}
.mobile-nav-list li { border-bottom: 1px solid #ede8e0; }
.mobile-nav-list a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #2c2c2c;
}
.mobile-nav-list a[aria-current="page"] { color: #2D6A2D; }
.mobile-nav-cta { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  align-items: stretch;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 2rem;
  max-width: 580px;
  margin-left: auto;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2D6A2D;
  margin-bottom: 1.25rem;
}
.hero-stars { color: #c4a882; letter-spacing: -0.05em; }
.hero-badge-source { color: #888; font-weight: 400; text-transform: none; letter-spacing: 0; }
.hero-headline { margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.1rem; color: #5a5a5a; margin-bottom: 1rem; max-width: 44ch; line-height: 1.75; }
.hero-areas { font-size: 0.85rem; color: #777; margin-bottom: 1.75rem; font-weight: 500; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.hero-badge-note { font-size: 0.78rem; color: #2D6A2D; font-weight: 600; letter-spacing: 0.03em; }
.hero-image-area { position: relative; overflow: hidden; background: #ede8e0; }
.hero-image-area--empty { background: linear-gradient(135deg, #2D6A2D22, #c4a88222); }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-location-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.93);
  color: #2c2c2c;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  z-index: 1;
}

/* ─── Trust Bar ─── */
.trust-bar { background: #2c2c2c; padding: 2.25rem 0; }
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.trust-item { text-align: center; color: #fff; }
.trust-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #c4a882;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); }

/* ─── Services grid (homepage) ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid #ede8e0;
  border-radius: 4px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(74,124,89,0.12); transform: translateY(-2px); }
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.service-card-name { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card-desc { font-size: 0.9rem; color: #5a5a5a; line-height: 1.65; }
.service-price-range { font-size: 0.8rem; color: #2D6A2D; font-weight: 600; margin-top: 0.75rem; }
.services-cta { text-align: center; }

/* ─── Services list (services page) ─── */
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #ede8e0;
}
.service-list-item:first-child { border-top: 1px solid #ede8e0; }
.service-list-body { display: flex; gap: 1.5rem; flex: 1; align-items: flex-start; }
.service-icon-lg { font-size: 2.5rem; flex-shrink: 0; line-height: 1; }
.service-list-name { font-size: 1.35rem; margin-bottom: 0.5rem; }
.service-list-desc { font-size: 0.95rem; color: #5a5a5a; max-width: 60ch; line-height: 1.7; }
.service-includes {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service-includes li {
  font-size: 0.8rem;
  color: #2D6A2D;
  background: #2D6A2D12;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  font-weight: 500;
}
.service-pricing { text-align: right; flex-shrink: 0; }
.price-starting { display: block; font-size: 0.85rem; color: #777; margin-bottom: 0.25rem; }
.price-range { display: block; font-size: 1rem; font-weight: 600; color: #2D6A2D; }

/* ─── Photo Strip ─── */
.photo-strip-section { overflow: hidden; }
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 340px;
  gap: 4px;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-strip-item--tall { grid-row: span 1; }
.photo-strip-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #2D6A2D;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  gap: 0.5rem;
}
.photo-strip-more:hover { background: #114e11; text-decoration: none; }
.photo-strip-more-cta { font-size: 0.8rem; font-weight: 500; opacity: 0.85; letter-spacing: 0.04em; }

/* ─── About section ─── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
}
.about-body { font-size: 1rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 1rem; }
.about-mission { font-size: 1rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.about-specialties {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.about-specialties li { font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.about-specialties li::before { content: "◆"; color: #2D6A2D; font-size: 0.6rem; }
.about-team-preview { display: flex; flex-direction: column; gap: 1rem; }
.team-preview-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f7f4ef;
  border: 1px solid #ede8e0;
  border-radius: 4px;
  padding: 1rem 1.25rem;
}
.team-preview-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.team-preview-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2D6A2D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.team-preview-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.1rem; }
.team-preview-role { font-size: 0.8rem; color: #777; }

/* ─── Reviews ─── */
.reviews-aggregate { display: flex; align-items: center; gap: 0.75rem; }
.agg-stars { color: #c4a882; letter-spacing: -0.05em; font-size: 1.25rem; }
.agg-rating { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; }
.agg-count { font-size: 0.85rem; color: #777; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border: 1px solid #ede8e0;
  border-radius: 4px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { color: #c4a882; letter-spacing: -0.05em; }
.review-text { font-size: 0.95rem; color: #3a3a3a; line-height: 1.75; flex: 1; font-style: italic; }
.review-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.review-author { font-weight: 600; font-size: 0.875rem; }
.review-date, .review-source { font-size: 0.8rem; color: #888; }
.review-date::before, .review-source::before { content: "·"; margin-right: 0.5rem; }

/* ─── CTA Section ─── */
.cta-section { background: #2D6A2D; padding: 5rem 0; }
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-headline { color: #fff; margin-bottom: 0.5rem; }
.cta-sub { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 50ch; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ─── Page hero (inner pages) ─── */
.page-hero { background: #f7f4ef; padding: 4rem 0 3.5rem; border-bottom: 1px solid #ede8e0; }
.page-hero--sm { padding: 3rem 0 2.5rem; }
.page-title { margin-bottom: 0.5rem; }
.page-sub { font-size: 1.05rem; color: #5a5a5a; max-width: 60ch; }

/* ─── About Full (about page) ─── */
.about-full-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.about-full-text p { font-size: 0.975rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 1.25rem; }
.about-year { font-size: 0.875rem; color: #777; font-style: italic; margin-top: -0.5rem; }
.about-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.about-sidebar-card {
  background: #f7f4ef;
  border: 1px solid #ede8e0;
  border-radius: 4px;
  padding: 1.5rem;
}
.about-sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid #ede8e0; }
.sidebar-stat { text-align: center; padding: 0.75rem 0; border-bottom: 1px solid #ede8e0; }
.sidebar-stat:last-child { border-bottom: none; }
.sidebar-stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: #2D6A2D; font-weight: 500; }
.sidebar-stat-label { font-size: 0.8rem; color: #777; text-transform: uppercase; letter-spacing: 0.06em; }
.certs-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.certs-list li { font-size: 0.875rem; color: #4a4a4a; padding-left: 1rem; position: relative; }
.certs-list li::before { content: "✓"; position: absolute; left: 0; color: #2D6A2D; font-weight: 700; }
.license-note { font-size: 0.875rem; color: #777; margin-bottom: 0.25rem; }

/* ─── Team grid ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border: 1px solid #ede8e0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.team-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.team-img { width: 100%; height: 320px; object-fit: cover; object-position: top center; }
.team-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #2D6A2D20, #c4a88230);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #2D6A2D;
}
.team-card-body { padding: 1.25rem 1.5rem; }
.team-name { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-role { font-size: 0.85rem; color: #2D6A2D; font-weight: 600; margin-bottom: 0.5rem; }
.team-credentials { font-size: 0.8rem; color: #777; margin-bottom: 0.5rem; }
.team-bio { font-size: 0.875rem; color: #4a4a4a; line-height: 1.7; }

/* ─── Contact page ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: #f7f4ef;
  border: 1px solid #ede8e0;
  border-radius: 4px;
  padding: 1.5rem;
}
.contact-info-card h2 { font-size: 1.35rem; margin-bottom: 1.5rem; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { color: #2D6A2D; margin-top: 0.1rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: #999; margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; font-weight: 500; display: block; }
.contact-info-value:hover { color: #2D6A2D; }
.contact-service-areas { font-size: 0.8rem; color: #888; margin-top: 0.25rem; line-height: 1.6; }
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D6A2D;
}
.maps-link:hover { text-decoration: underline; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-row td { padding: 0.5rem 0; font-size: 0.875rem; border-bottom: 1px solid #ede8e0; }
.hours-row:last-child td { border-bottom: none; }
.hours-day { color: #4a4a4a; font-weight: 500; }
.hours-time { color: #777; text-align: right; }
.hours-row--closed .hours-time { color: #bbb; font-style: italic; }
.hours-note { font-size: 0.8rem; color: #888; margin-top: 0.75rem; font-style: italic; }

.contact-form-card {
  background: #fff;
  border: 1px solid #ede8e0;
  border-radius: 4px;
  padding: 2.5rem;
}
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form-intro { font-size: 0.9rem; color: #777; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #2c2c2c; }
.form-group label span { color: #2D6A2D; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d8d3cb;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #2c2c2c;
  background: #fff;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #2D6A2D; outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; }
.form-disclaimer { font-size: 0.75rem; color: #aaa; }

/* ─── Gallery ─── */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 3px;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-img { width: 100%; display: block; transition: transform 0.3s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.02); }

/* ─── FAQ ─── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.faq-group { margin-bottom: 3rem; }
.faq-cat-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2D6A2D;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #2D6A2D25;
}
.faq-item { border-bottom: 1px solid #ede8e0; }
.faq-question {
  cursor: pointer;
  padding: 1.2rem 0;
  font-size: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  color: #2c2c2c;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after { content: "+"; font-family: 'DM Sans', sans-serif; font-size: 1.35rem; color: #2D6A2D; flex-shrink: 0; }
details[open] .faq-question::after { content: "−"; }
.faq-answer { padding: 0 0 1.25rem; font-size: 0.9rem; color: #5a5a5a; line-height: 1.75; }
.faq-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.faq-cta-card {
  background: #f7f4ef;
  border: 1px solid #ede8e0;
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-cta-card h3 { font-size: 1rem; }
.faq-cta-card p { font-size: 0.875rem; color: #777; margin: 0; }
.faq-cta-card a { text-align: center; }

/* ─── Service Area ─── */
.area-layout { max-width: 760px; }
.area-text h2 { margin-bottom: 1rem; }
.area-text p { font-size: 0.975rem; color: #4a4a4a; line-height: 1.8; margin-bottom: 1rem; }
.area-services-list {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.area-services-list li { font-size: 0.9rem; color: #4a4a4a; padding-left: 1rem; position: relative; }
.area-services-list li::before { content: "◆"; position: absolute; left: 0; color: #2D6A2D; font-size: 0.5rem; top: 0.35rem; }
.area-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ─── Newsletter ─── */
.newsletter-section { background: #2D6A2D08; border-top: 1px solid #2D6A2D20; border-bottom: 1px solid #2D6A2D20; }
.newsletter-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.newsletter-text { flex: 1; min-width: 260px; }
.newsletter-sub { color: #6b6b6b; margin-top: 0.5rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter-input { flex: 1; min-width: 220px; padding: 0.75rem 1rem; border: 1.5px solid #2D6A2D40; border-radius: 6px; font-size: 1rem; font-family: inherit; background: #fff; }
.newsletter-input:focus { outline: none; border-color: #2D6A2D; }

/* ─── Blog ─── */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.blog-posts { display: flex; flex-direction: column; gap: 2rem; }
.blog-card { background: #fff; border: 1px solid #e8e8e4; border-radius: 10px; padding: 2rem; }
.blog-cat { display: inline-block; background: #E8681A18; color: #E8681A; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 0.75rem; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: #2c2c2c; margin-bottom: 0.5rem; line-height: 1.3; }
.blog-date { display: block; font-size: 0.85rem; color: #6b6b6b; margin-bottom: 0.75rem; }
.blog-excerpt { color: #6b6b6b; line-height: 1.65; margin-bottom: 1rem; }
.blog-read-more { color: #2D6A2D; font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.blog-read-more:hover { text-decoration: underline; }
.blog-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 2rem; }
.blog-sidebar-card { background: #fff; border: 1px solid #e8e8e4; border-radius: 10px; padding: 1.5rem; }
.blog-sidebar-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; color: #2c2c2c; }
.blog-cats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.blog-cats li { font-size: 0.9rem; color: #6b6b6b; padding: 0.3rem 0; border-bottom: 1px solid #f0f0ec; }
.blog-cats li:last-child { border-bottom: none; }

/* ─── Footer ─── */
.footer { background: #2c2c2c; color: rgba(255,255,255,0.85); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 0.25rem; }
.footer-location { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-col-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.75); display: block; margin-bottom: 0.35rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col p { font-size: 0.875rem; color: rgba(255,255,255,0.75); margin-bottom: 0.35rem; }
.footer-areas { list-style: none; }
.footer-areas li { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 0.3rem; }
.footer-col--cta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.footer-social a:hover { color: #fff; text-decoration: none; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-credit { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.footer-credit a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-credit a:hover { color: #fff; }
.blog-post-lead { font-size: 1.15rem; color: #444; line-height: 1.7; margin-bottom: 2rem; font-style: italic; border-left: 3px solid #2D6A2D; padding-left: 1.25rem; }
.blog-post-content { line-height: 1.8; color: #444; }
.blog-post-content p { margin-bottom: 1.25rem; }
.blog-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #e8e8e4; }
.blog-related h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.blog-related-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-related-list a { color: #2D6A2D; text-decoration: none; font-weight: 500; }
.blog-related-list a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: 70vh; }
  .hero-content { padding: 3rem 2rem; max-width: none; margin: 0; }
  .trust-bar-inner { gap: 2.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-full-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-area { height: 320px; }
  .hero-content { padding: 2.5rem 1.5rem; max-width: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-bar-inner { gap: 1.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .photo-strip-item--tall { grid-row: span 2; }
  .photo-strip-more { grid-column: 2; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .service-list-item { flex-direction: column; gap: 1rem; }
  .service-list-body { flex-direction: column; gap: 1rem; }
  .service-pricing { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { order: -1; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-sidebar .blog-sidebar-card:has(form) { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .area-services-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .photo-strip { grid-template-columns: 1fr; grid-template-rows: auto; height: 280px; overflow: hidden; }
  .photo-strip-item--tall { display: block; }
  .photo-strip-item:not(.photo-strip-item--tall) { display: none; }
  .photo-strip-more { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .trust-bar-inner { gap: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

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