/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --brown:      #6B3F1F;        /* secondary brown */
  --amber:      #E9C46A;        /* gold accent */
  --green-accent: #2D6A4F;      /* green for borders/structural */
  --cream:      #FFFFFF;        /* white */
  --espresso:   #1B4332;        /* dark green (headers/hero) */
  --terra:      #40916C;        /* medium green */
  --brown-light:#5A8A6A;        /* muted green */
  --cream-dark: #EEF7F1;        /* light green-white */
  --green-soft: #40916C;        /* medium green */
  --shadow:     rgba(27,67,50,0.15);
  --yellow:     #E9C46A;        /* floral yellow */
  --blue:       #4895B4;        /* floral blue */
  --pink:       #D4687A;        /* floral pink */
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  text-shadow: 1px 1px 0 rgba(107,63,31,0.12), 2px 2px 0 rgba(107,63,31,0.06);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}
.btn-primary:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,245,238,0.7);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--brown);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   SVG BOTANICAL DIVIDERS
============================================================ */
.botanical-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0 2rem;
  opacity: 0.55;
}
.botanical-divider svg { flex-shrink: 0; }
.botanical-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--amber), transparent);
  max-width: 180px;
}

/* ============================================================
   STICKY HEADER / NAV
============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--espresso);
  border-bottom: 2px solid var(--green-accent);
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 4px 20px rgba(44,26,14,0.35);
}
#site-header.scrolled .logo-img {
  height: 84px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-img {
  height: 144px;
  width: auto;
  filter: brightness(1.25);
  transition: height 0.3s ease;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--amber);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}

.main-nav { display: flex; gap: 0.25rem; align-items: center; }
.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,245,238,0.75);
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--amber);
  background: rgba(201,123,58,0.1);
}

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown__trigger svg { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown__trigger svg { transform: rotate(180deg); }

.nav-dropdown__menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #0f2d1e;
  border: 1px solid rgba(233,196,106,0.18);
  border-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  padding-top: 14px;
  min-width: 176px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  z-index: 200;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-dropdown__menu li:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-dropdown__menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(250,245,238,0.7);
  transition: color 0.15s, padding-left 0.15s;
}
.nav-dropdown__menu li a:hover {
  color: var(--amber);
  padding-left: 1.55rem;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ============================================================
   PAGES (SPA routing)
============================================================ */
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   ██ HOME PAGE
============================================================ */

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #050e08;
  background-image: none;
}

.hero::before { display: none; }

/* ---- Slideshow ---- */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-slide--active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}

/* Ken Burns runs continuously on every slide — no restart, no snap */
@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.14); }
}

.hero-slide img {
  animation: kenBurns 14s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-slide:nth-child(1) img { transform-origin: 62% 50%; animation-delay:   0s; }
.hero-slide:nth-child(2) img { transform-origin: 38% 62%; animation-delay:  -3s; }
.hero-slide:nth-child(3) img { transform-origin: 50% 28%; animation-delay:  -6s; }
.hero-slide:nth-child(4) img { transform-origin: 30% 52%; animation-delay:  -9s; }
.hero-slide:nth-child(5) img { transform-origin: 70% 56%; animation-delay: -12s; }

/* ---- Overlay — clean, no glare ---- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(3,14,8,0.90) 0%, rgba(3,14,8,0.58) 42%, rgba(3,14,8,0.18) 100%),
    linear-gradient(to top,   rgba(3,14,8,0.95) 0%, rgba(3,14,8,0.42) 20%, transparent 52%);
}

/* ---- Content ---- */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 9rem 1.5rem 13rem 2.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(233,196,106,0.9);
}

.hero-badge-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(233,196,106,0.5);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.9rem, 7.5vw, 5.6rem);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.6rem;
  max-width: 660px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  display: block;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2.6rem;
  max-width: 480px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Stats bar ---- */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3,14,8,0.78);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.3rem 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0 2.8rem;
}

.hero-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #E9C46A;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.hero-stat-sep {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ---- Slide dots ---- */
.hero-dots {
  position: absolute;
  bottom: 9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot--active {
  background: #E9C46A;
  transform: scale(1.4);
}

.hero-dot:hover:not(.hero-dot--active) {
  background: rgba(255,255,255,0.65);
}

/* ---- Scroll indicator ---- */
.hero-scroll {
  position: absolute;
  bottom: 6.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}
.hero-scroll svg { opacity: 0.45; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* --- INTRO CARD --- */
.intro-section {
  background: var(--cream);
  padding: 5rem 0 3rem;
}

.intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 30px var(--shadow);
  overflow: hidden;
}

.intro-photo-slot {
  background: var(--cream-dark);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--brown-light);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border: 2px dashed var(--green-accent);
  border-radius: 6px 0 0 6px;
  padding: 2rem;
}
.intro-photo-slot svg { opacity: 0.45; }

.intro-text {
  padding: 2.5rem 2.5rem 2.5rem 1rem;
}
.intro-text h2 {
  font-size: 1.9rem;
  color: var(--brown);
  margin-bottom: 1rem;
}
.intro-text p {
  color: var(--espresso);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.intro-sig {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--amber);
}

/* --- SERVICES TEASER --- */
.services-teaser {
  padding: 5rem 0;
  background: var(--cream-dark);
}
.services-teaser h2 {
  font-size: 2.2rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
  text-align: center;
}
.services-teaser .botanical-divider { max-width: 400px; margin: 0 auto 3rem; }

.teaser-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.teaser-card {
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(107,63,31,0.12);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
  min-width: 0;
}
.teaser-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow);
  border-color: var(--green-accent);
}

.teaser-photo {
  height: 165px;
  overflow: hidden;
}
.teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.teaser-body {
  padding: 1.1rem 1.2rem 1.4rem;
}
.teaser-card h3 {
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
}
.teaser-card p {
  font-size: 0.82rem;
  color: rgba(44,26,14,0.68);
  line-height: 1.5;
}

/* --- STORY BLURB --- */
.story-section {
  padding: 5rem 0;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 3%;
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.story-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.story-inner .section-label { color: var(--amber); }
.story-inner h2 {
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.story-inner p {
  color: rgba(250,245,238,0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- TRUST SECTION --- */
.trust-section {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '35';
  position: absolute;
  right: -2%;
  top: -20%;
  font-family: 'Playfair Display', serif;
  font-size: 28rem;
  font-weight: 900;
  color: rgba(107,63,31,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.trust-section .section-label { color: var(--amber); }

.trust-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
  font-style: italic;
}
.trust-section .botanical-divider {
  max-width: 400px;
  margin: 0 auto 3rem;
}
.trust-section .botanical-divider .line {
  background: linear-gradient(to right, transparent, var(--amber), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.trust-badge {
  text-align: center;
  padding: 3rem 2.5rem;
  background: transparent;
  border-radius: 0;
  border: none;
  border-right: 1px solid rgba(107,63,31,0.1);
}
.trust-badge:last-child { border-right: none; }

.trust-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 0.6rem;
  text-shadow: none;
  letter-spacing: -0.03em;
}
.trust-badge h3 {
  font-size: 0.95rem;
  color: var(--espresso);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.trust-badge p {
  font-size: 0.82rem;
  color: rgba(44,26,14,0.55);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .trust-badge { border-right: none; border-bottom: 1px solid rgba(107,63,31,0.1); }
  .trust-badge:last-child { border-bottom: none; }
  .trust-badge .number { font-size: 4rem; }
  .trust-section::before { display: none; }
}

/* ============================================================
   HOME — TESTIMONIALS  (light section — sits between dark story + dark trust)
============================================================ */
.testimonials-section {
  padding: 5rem 0;
  background: var(--cream);
}

.testimonials-section h2 {
  font-size: 2.2rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
  text-align: center;
  font-style: italic;
}

.testimonials-section .botanical-divider {
  max-width: 400px;
  margin: 0 auto 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--cream-dark);
  border: 1px solid rgba(107,63,31,0.12);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  border-color: var(--green-accent);
  box-shadow: 0 8px 30px var(--shadow);
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--amber);
  opacity: 0.18;
  position: absolute;
  top: 0.25rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: #E9A020;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--espresso);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-card cite {
  font-size: 0.72rem;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============================================================
   ██ ABOUT PAGE
============================================================ */
.about-hero {
  background: var(--espresso);
  padding: 6rem 0 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.about-hero .section-label { color: var(--yellow); }
.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1rem;
}
.about-hero p {
  color: rgba(250,245,238,0.75);
  max-width: 520px;
  margin: 0 auto;
}

.about-content { padding: 5rem 0 5rem; background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.about-photo-col { position: sticky; top: 100px; }

.about-photo-slot {
  background: var(--cream-dark);
  border: 2px dashed var(--green-accent);
  border-radius: 6px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--brown-light);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 2rem;
  text-align: center;
}
.about-photo-slot svg { opacity: 0.45; }

.about-team-photo {
  margin-top: 1.25rem;
  background: var(--cream-dark);
  border: 2px dashed rgba(107,63,31,0.35);
  border-radius: 6px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(107,63,31,0.6);
  font-size: 0.75rem;
  text-align: center;
  padding: 1.5rem;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 1.2rem;
}
.about-text p {
  margin-bottom: 1.2rem;
  color: var(--espresso);
  line-height: 1.8;
}
.about-text h3 {
  font-size: 1.4rem;
  color: var(--brown);
  margin: 2rem 0 0.8rem;
}

.pull-quote {
  margin: 2.5rem 0;
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 4px solid var(--green-accent);
  background: var(--cream-dark);
  border-radius: 0 6px 6px 0;
  position: relative;
}
.pull-quote::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--amber);
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: 1rem;
  line-height: 1;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brown);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem !important;
}
.pull-quote cite {
  font-size: 0.8rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--cream-dark);
  border-radius: 6px;
}
.value-item svg { flex-shrink: 0; margin-top: 2px; }
.value-item strong {
  display: block;
  color: var(--brown);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.value-item span {
  font-size: 0.82rem;
  color: rgba(44,26,14,0.7);
}

/* ============================================================
   ██ SERVICES PAGE
============================================================ */
.services-hero {
  background: var(--espresso);
  padding: 6rem 0 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.services-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.services-hero .section-label { color: var(--amber); }
.services-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1rem;
}
.services-hero p {
  color: rgba(250,245,238,0.8);
  max-width: 520px;
  margin: 0 auto;
}

.services-content { padding: 5rem 0; background: var(--cream); }

/* Featured landscaping card */
.service-featured {
  background: var(--espresso);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  margin-bottom: 2rem;
  box-shadow: 0 8px 40px var(--shadow);
}
.service-featured-photo {
  background: rgba(107,63,31,0.35);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(250,245,238,0.5);
  font-size: 0.8rem;
  padding: 2rem;
  text-align: center;
  border: 2px dashed rgba(45,106,79,0.35);
  border-radius: 8px;
  margin: 1.5rem;
}
.service-featured-text {
  padding: 2.5rem 2.5rem 2.5rem 1rem;
}
.service-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--espresso);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.service-featured-text h2 {
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 1rem;
  font-style: italic;
}
.service-featured-text p {
  color: rgba(250,245,238,0.78);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

/* Regular service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(107,63,31,0.12);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px var(--shadow);
  border-color: var(--green-accent);
}
.service-card-photo {
  background: var(--cream-dark);
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(107,63,31,0.55);
  font-size: 0.72rem;
  text-align: center;
  padding: 1rem;
  border-bottom: 1px dashed rgba(107,63,31,0.2);
}
.service-card-body { padding: 1.5rem; }
.service-card-body h3 {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.6rem;
}
.service-card-body p {
  font-size: 0.88rem;
  color: rgba(44,26,14,0.72);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.btn-sm {
  font-size: 0.72rem;
  padding: 0.55rem 1.2rem;
  background: var(--brown);
  color: var(--cream);
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
  border: 2px solid var(--brown);
}
.btn-sm:hover {
  background: var(--espresso);
  border-color: var(--espresso);
}

/* ============================================================
   ██ CONTACT PAGE
============================================================ */
.contact-hero {
  background: var(--espresso);
  padding: 6rem 0 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1rem;
}
.contact-hero p {
  color: rgba(250,245,238,0.75);
  max-width: 480px;
  margin: 0 auto;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.contact-content { padding: 5rem 0; background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Form */
.contact-form-wrap h2 {
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
}
.contact-form-wrap > p {
  color: rgba(44,26,14,0.65);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(107,63,31,0.25);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--espresso);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  margin-top: 1.5rem;
}
.form-submit .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
}

/* Contact info sidebar */
.contact-info h2 {
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.john-note {
  background: var(--espresso);
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 2rem;
}
.john-note p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.6;
}
.john-note cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(107,63,31,0.12);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 40px;
  height: 40px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(107,63,31,0.15);
}
.info-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.2rem;
}
.info-text span {
  color: rgba(44,26,14,0.7);
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: var(--espresso);
  padding: 4rem 0 2rem;
  border-top: 2px solid rgba(45,106,79,0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-img {
  height: 216px;
  width: auto;
  filter: brightness(1.25);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  margin-top: 0.5rem;
  color: rgba(250,245,238,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a,
.footer-col ul li span {
  color: rgba(250,245,238,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(250,245,238,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  color: rgba(250,245,238,0.35);
  font-size: 0.78rem;
}
.footer-leaf { opacity: 0.25; }

/* ============================================================
   BOTANICAL DIVIDER SVG INLINE
============================================================ */
.section-divider {
  text-align: center;
  margin: 1rem 0 2rem;
}
.section-divider svg {
  width: 200px;
  height: auto;
  opacity: 0.45;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .teaser-card { flex: 0 0 calc((100% - 1.25rem) / 2); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 2.5rem 2rem; }
  .trust-badge:last-child { border-bottom: none; }
  .trust-badge .number { font-size: 4.5rem; }
  .intro-card { grid-template-columns: 1fr; gap: 0; }
  .intro-photos { display: none; }
  .intro-text { padding: 1.75rem; }
  .intro-text h2 { font-size: 1.5rem; }
  .intro-section { padding: 3rem 0 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { position: static; }
  .service-featured { grid-template-columns: 1fr; }
  .service-featured-text { padding: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--espresso);
    border-top: 1px solid rgba(45,106,79,0.2);
    padding: 1rem;
    gap: 0;
  }
  .main-nav.open a {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(250,245,238,0.06);
  }
  .main-nav.open .nav-dropdown__menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    background: rgba(0,0,0,0.15);
    /* collapsed by default on mobile */
    opacity: 1;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.28s ease, padding 0.28s ease;
  }
  .main-nav.open .nav-dropdown.expanded .nav-dropdown__menu {
    pointer-events: auto;
    max-height: 400px;
  }
  .main-nav.open .nav-dropdown.expanded .nav-dropdown__trigger svg {
    transform: rotate(180deg);
  }
  .main-nav.open .nav-dropdown__menu::before { display: none; }
  .main-nav.open .nav-dropdown__menu li a {
    padding: 0.6rem 1rem 0.6rem 2rem;
    border-bottom: 1px solid rgba(250,245,238,0.04);
    font-size: 0.73rem;
  }
  .nav-toggle { display: block; }
  #site-header { position: relative; }
  #site-header .header-inner { position: relative; }
  .teaser-card { flex: 0 0 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-logo-img { height: 110px; }
  #site-footer { padding: 2.5rem 0 1.5rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .hero-stat { padding: 0 1rem; }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-stat-sep { height: 28px; }
  .hero-dots { bottom: 5.5rem; left: 50%; transform: translateX(-50%); }
  .hero-scroll { display: none; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .hero-content { padding: 6rem 1.5rem 12rem; }
}

@media (max-width: 600px) {
  .hero-stats { padding: 1rem 0.5rem; }
  .hero-stat { padding: 0 0.9rem; }
  .hero-stat strong { font-size: 1.2rem; }
  .hero-stat span { font-size: 0.54rem; letter-spacing: 0.12em; }
  .hero-stat-sep { height: 24px; }
  .hero-dots { bottom: 5.5rem; }
}

@media (max-width: 480px) {
  .hero-badge { flex-wrap: wrap; gap: 0.5rem; }
  .trust-badge .number { font-size: 3rem; }
  .trust-badge { padding: 1.5rem 1rem; }
}

/* ============================================================
   MISC POLISH
============================================================ */
::selection {
  background: var(--amber);
  color: var(--espresso);
}

.text-amber { color: var(--amber); }
.text-center { text-align: center; }
.mb-sm { margin-bottom: 0.5rem; }
.mb-md { margin-bottom: 1.5rem; }

/* ---- Hero responsive ---- */

/* ============================================================
   HOME — INTRO TWO-PHOTO LAYOUT
============================================================ */
.intro-photos {
  display: flex;
  flex-direction: column;
  background: var(--cream-dark);
  border-radius: 6px 0 0 6px;
}

.intro-photo-slot--secondary {
  border-radius: 0 0 0 6px;
  min-height: 200px;
  border-top: 1px dashed rgba(107,63,31,0.2);
}

/* ============================================================
   HOME — RECENT WORK PREVIEW
============================================================ */
.recent-work {
  padding: 5rem 0;
  background: var(--cream);
}

.recent-work h2 {
  font-size: 2.2rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
  text-align: center;
}

.work-carousel-wrap {
  position: relative;
}

.work-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.work-carousel::-webkit-scrollbar { display: none; }

.work-slide {
  flex: 0 0 calc(33.333% - 0.67rem);
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.work-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-slide:hover img { transform: scale(1.04); }

.work-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(10,20,12,0.65));
  color: #fff;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.04em;
}

.work-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(27,67,50,0.75);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.work-carousel-btn:hover { background: var(--espresso); }
.work-carousel-prev { left: -1.25rem; }
.work-carousel-next { right: -1.25rem; }

/* ============================================================
   GALLERY PAGE
============================================================ */
.gallery-hero {
  background: var(--espresso);
  padding: 6rem 0 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.gallery-hero .section-label { color: var(--amber); }

.gallery-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1rem;
}

.gallery-hero p {
  color: rgba(250,245,238,0.75);
  max-width: 520px;
  margin: 0 auto;
}

.gallery-content {
  padding: 5rem 0;
  background: var(--cream);
}

.gallery-category {
  margin-bottom: 4rem;
}

.gallery-cat-title {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(107,63,31,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gallery-cat-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.3em;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(107,63,31,0.12);
  background: white;
  transition: all 0.3s;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px var(--shadow);
  border-color: var(--green-accent);
}

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

.gallery-placeholder {
  height: 220px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed rgba(107,63,31,0.2);
}

.gallery-item--wide .gallery-placeholder {
  height: 220px;
}

/* When a real image is inside .gallery-item */
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-item--wide img {
  height: 220px;
}

.gallery-caption {
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: rgba(44,26,14,0.65);
  font-style: italic;
  line-height: 1.4;
}

.gallery-cta {
  text-align: center;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(107,63,31,0.1);
  margin-top: 1rem;
}

.gallery-cta p {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* ============================================================
   RESPONSIVE — new sections
============================================================ */
@media (max-width: 900px) {
  .work-slide { flex: 0 0 calc(50% - 0.5rem); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .work-slide { flex: 0 0 80%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }

}

/* ============================================================
   SERVICE DETAIL PAGES
============================================================ */
.svc-hero {
  position: relative;
  height: 58vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.svc-hero--no-img {
  background: var(--espresso);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(107,63,31,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,123,58,0.15) 0%, transparent 50%);
}

.svc-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(27,67,50,0.95) 0%,
    rgba(27,67,50,0.55) 50%,
    rgba(27,67,50,0.2) 100%
  );
}

.svc-hero-overlay--solid {
  background: transparent;
}

.svc-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
}

.svc-hero-content .section-label { color: var(--amber); }

.svc-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  text-shadow: 2px 2px 0 rgba(27,67,50,0.5);
}

.svc-hero-content p {
  color: rgba(250,245,238,0.8);
  font-size: 1.05rem;
  max-width: 560px;
}

/* Body layout */
.svc-body {
  padding: 5rem 0;
  background: var(--cream);
}

.svc-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.svc-text p {
  color: var(--espresso);
  line-height: 1.85;
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.svc-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid rgba(107,63,31,0.3);
  background: transparent;
  color: var(--brown);
}

.btn-ghost:hover {
  border-color: var(--brown);
  background: rgba(107,63,31,0.06);
  transform: translateY(-1px);
}

/* Sidebar */
.svc-sidebar {
  position: sticky;
  top: 100px;
}

.svc-img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 35px var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.svc-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-dark);
  border: 2px dashed var(--green-accent);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--brown-light);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.svc-callout {
  margin-top: 1.5rem;
  background: var(--espresso);
  border-radius: 8px;
  padding: 1.75rem;
}

.svc-callout p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.svc-callout cite {
  font-size: 0.72rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
}

/* Service card photo images */
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .svc-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .svc-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .svc-hero {
    height: 70vw;
    min-height: 320px;
  }
  .svc-hero-content h1 {
    font-size: 2rem;
  }
}

/* ============================================================
   PHOTO SLOTS — filled with real images
   Uses :has() (supported in all modern browsers as of 2024)
============================================================ */
.intro-photo-slot:has(img),
.about-photo-slot:has(img),
.about-team-photo:has(img) {
  padding: 0;
  border: none;
  overflow: hidden;
  position: relative;
  align-items: stretch;
  justify-content: stretch;
}
.intro-photo-slot:has(img) img,
.about-photo-slot:has(img) img,
.about-team-photo:has(img) img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   TYPOGRAPHY — improved scale + tighter letter-spacing
============================================================ */

/* Interior page hero — widen container so titles have room before wrapping */
.about-hero .container,
.services-hero .container,
.contact-hero .container,
.gallery-hero .container {
  max-width: none;
  padding: 0 clamp(2rem, 8vw, 9rem);
}

/* Interior page hero headings — bigger and bolder */
.about-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.services-hero h1,
.contact-hero h1,
.gallery-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -0.02em;
}

/* Pull quotes — bigger, more impact */
.pull-quote p {
  font-size: 1.4rem;
  line-height: 1.55;
}

/* Story section heading — more dramatic */
.story-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Hero stat labels — slightly larger for readability */
.hero-stat strong { font-size: 2rem; }
.hero-stat span   { font-size: 0.68rem; letter-spacing: 0.18em; }

/* Section h2 headings — tighter letter-spacing for premium feel */
.recent-work h2,
.services-teaser h2,
.trust-section h2,
.testimonials-section h2 {
  letter-spacing: -0.015em;
}

/* ============================================================
   GALLERY — cursor affordance for lightbox
============================================================ */
#page-gallery .gallery-item { cursor: zoom-in; }
#page-gallery .gallery-item img { pointer-events: none; }

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }

.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(4, 11, 6, 0.96);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lightbox-img-wrap {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1100px);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lb-in 0.22s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-img-wrap img {
  max-width: min(90vw, 1100px);
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.8);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 2rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  line-height: 1;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }

.lightbox-caption {
  position: relative;
  z-index: 2;
  margin-top: 1.1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 600px;
  padding: 0 3rem;
}

@media (max-width: 640px) {
  .lightbox-prev { left: 0.5rem; width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-next { right: 0.5rem; width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
}
