@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@400;500;600&display=swap');

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

:root {
  --green-900: #0f2410;
  --green-800: #1a3a1a;
  --green-700: #254f25;
  --green-600: #316431;
  --green-500: #4a7c3f;
  --green-400: #5f9652;
  --green-300: #8ab87e;
  --green-100: #d4eacd;
  --green-50:  #eef6eb;

  --stone-900: #1c1c18;
  --stone-800: #2c2c26;
  --stone-700: #3f3f38;
  --stone-500: #6b6b60;
  --stone-400: #8c8c80;
  --stone-200: #d4d4c8;
  --stone-100: #e8e8de;
  --stone-50:  #f5f5ee;
  --white:     #ffffff;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15);

  --transition: 220ms cubic-bezier(.4,0,.2,1);
  --container:  1120px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--stone-900);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ── UTILITIES ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: .6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--green-800);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--stone-500);
  line-height: 1.75;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-500);
  color: var(--white);
  border-color: var(--green-500);
}
.btn-primary:hover { background: var(--green-600); border-color: var(--green-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--green-500);
  border-color: var(--green-500);
}
.btn-outline:hover { background: var(--green-50); }

.btn-white {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}
.btn-white:hover { background: var(--stone-50); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: .5px solid var(--stone-100);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green-800);
  flex-shrink: 0;
  line-height: 1.2;
}
.nav-logo span { color: var(--green-500); display: block; font-size: .75rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: .04em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--stone-700);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--green-500);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--green-500); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green-500); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: .3rem; }
.dropdown-toggle svg { transition: transform var(--transition); }
.nav-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: .5px solid var(--stone-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-6px);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--stone-800);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover { background: var(--green-50); color: var(--green-600); }
.dropdown-menu a::after { display: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-phone {
  font-size: .85rem;
  font-weight: 500;
  color: var(--stone-500);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-phone:hover { color: var(--green-500); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--stone-800);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: var(--white);
  z-index: 199;
  overflow-y: auto;
  padding: 1.5rem;
  flex-direction: column;
  gap: .25rem;
  border-top: .5px solid var(--stone-100);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: .85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--stone-800);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--green-50); color: var(--green-600); }
.mobile-nav .mobile-section { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-400); padding: 1rem 1rem .3rem; }
.mobile-nav-cta { margin-top: 1rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-800);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
}

/* Photo placeholder pattern - replace with real photo */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px);
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,36,16,.92) 0%, rgba(15,36,16,.6) 55%, rgba(15,36,16,.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: .5px solid rgba(255,255,255,.2);
  color: var(--green-100);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--green-300);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: .5px solid rgba(255,255,255,.15);
}

.hero-stat-item { color: var(--white); }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--green-300);
  display: block;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .25rem; display: block; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--stone-900);
  padding: 1.25rem 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
}
.trust-item svg { color: var(--green-300); flex-shrink: 0; }

/* ── ABOUT SECTION ── */
.about-section { padding: 6rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--green-200);
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--green-300);
  border: .5px solid var(--green-100);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border: .5px solid var(--stone-100);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--green-800);
  display: block;
}
.about-badge-label { font-size: .75rem; color: var(--stone-500); }

.about-content { display: flex; flex-direction: column; gap: 1.25rem; }
.about-content p { font-size: 1rem; color: var(--stone-600); line-height: 1.8; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: .5rem;
}
.pillar {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .9rem 1rem;
  background: var(--stone-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-400);
}
.pillar-icon { font-size: 1.1rem; margin-top: .05rem; flex-shrink: 0; }
.pillar-text h4 { font-size: .9rem; font-weight: 600; color: var(--green-800); margin-bottom: .2rem; }
.pillar-text p { font-size: .85rem; color: var(--stone-500); line-height: 1.5; }

/* ── SERVICES SECTION ── */
.services-section { padding: 6rem 0; background: var(--stone-50); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-sub { margin: .75rem auto 0; }

.services-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: .55rem 1.25rem;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  border: 1.5px solid var(--stone-200);
  background: var(--white);
  color: var(--stone-600);
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: .5px solid var(--stone-100);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.service-card-img {
  aspect-ratio: 16/9;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }

.service-card-body { padding: 1.25rem; }
.service-card-body h3 { font-size: 1rem; font-weight: 600; color: var(--stone-900); margin-bottom: .4rem; }
.service-card-body p { font-size: .875rem; color: var(--stone-500); line-height: 1.6; margin-bottom: .75rem; }
.service-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--green-600);
  background: var(--green-50);
  padding: .2rem .6rem;
  border-radius: 4px;
}

/* ── PRICING ── */
.pricing-section { padding: 6rem 0; }
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.pricing-header .section-sub { margin: .75rem auto 0; }

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

.pricing-card {
  background: var(--white);
  border: .5px solid var(--stone-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pricing-card.featured {
  background: var(--green-800);
  border-color: var(--green-700);
  color: var(--white);
  position: relative;
}
.pricing-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-400);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: .5rem;
}
.pricing-card.featured .pricing-tier { color: var(--green-300); }

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--green-800);
  margin-bottom: .3rem;
}
.pricing-card.featured h3 { color: var(--white); }

.pricing-card-desc {
  font-size: .875rem;
  color: var(--stone-500);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pricing-card.featured .pricing-card-desc { color: rgba(255,255,255,.6); }

.pricing-divider {
  border: none;
  border-top: .5px solid var(--stone-100);
  margin: 1.25rem 0;
}
.pricing-card.featured .pricing-divider { border-color: rgba(255,255,255,.15); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.75rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .875rem;
  color: var(--stone-700);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.85); }
.pricing-feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .05rem;
}
.pricing-card.featured .pricing-feature-icon { background: rgba(255,255,255,.12); }
.pricing-feature-icon svg { color: var(--green-500); }
.pricing-card.featured .pricing-feature-icon svg { color: var(--green-300); }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 6rem 0;
  background: var(--stone-50);
}
.testimonials-header { text-align: center; margin-bottom: 3rem; }

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

.testimonial-card {
  background: var(--white);
  border: .5px solid var(--stone-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: .85rem;
  color: #f59e0b;
  font-size: 1rem;
}
.testimonial-text {
  font-size: .9rem;
  color: var(--stone-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .85rem;
  color: var(--green-700);
  flex-shrink: 0;
}
.testimonial-name { font-size: .875rem; font-weight: 600; color: var(--stone-800); }
.testimonial-meta { font-size: .775rem; color: var(--stone-400); }

/* ── SERVICE AREA ── */
.area-section { padding: 6rem 0; }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  background: var(--green-50);
  border: .5px solid var(--green-100);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--green-700);
}
.area-map-placeholder {
  aspect-ratio: 4/3;
  background: var(--stone-50);
  border-radius: var(--radius-lg);
  border: .5px solid var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  color: var(--stone-400);
  font-size: .9rem;
}
.area-map-placeholder svg { color: var(--green-400); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--green-800);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px, transparent 1px, transparent 40px);
}
.cta-inner {
  position: relative;
  text-align: center;
}
.cta-inner .section-title { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.cta-inner .section-sub { color: rgba(255,255,255,.65); margin: 1rem auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background: var(--stone-900);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: .5px solid rgba(255,255,255,.08);
}
.footer-brand-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer-brand-logo span { color: var(--green-400); }
.footer-tagline { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--green-300); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  margin-bottom: .65rem;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--green-400); margin-top: .15rem; }
.footer-contact-item a { transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--green-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: .75rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--green-800);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px, transparent 1px, transparent 40px);
}
.page-hero-content { position: relative; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin: .5rem 0 .75rem; }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 540px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: .75rem; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }

/* ── CONTACT FORM PAGE ── */
.contact-section { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--green-800); margin-bottom: .75rem; }
.contact-info p { font-size: .95rem; color: var(--stone-500); line-height: 1.8; margin-bottom: 1.75rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.1rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--green-500); }
.contact-detail h4 { font-size: .85rem; font-weight: 600; color: var(--stone-800); margin-bottom: .15rem; }
.contact-detail p, .contact-detail a { font-size: .875rem; color: var(--stone-500); }
.contact-detail a:hover { color: var(--green-500); }

.jotform-wrapper {
  background: var(--stone-50);
  border: .5px solid var(--stone-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
}
.jotform-wrapper iframe { width: 100%; border: none; display: block; }
.jotform-placeholder {
  padding: 3rem;
  text-align: center;
  color: var(--stone-400);
}
.jotform-placeholder p { font-size: .9rem; margin-top: .5rem; }

/* ── ABOUT PAGE ── */
.about-story { padding: 5rem 0; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-values { padding: 5rem 0; background: var(--stone-50); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--white);
  border: .5px solid var(--stone-100);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
}
.value-icon {
  width: 52px;
  height: 52px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.value-card h3 { font-size: 1rem; font-weight: 600; color: var(--green-800); margin-bottom: .4rem; }
.value-card p { font-size: .875rem; color: var(--stone-500); line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2.6rem; }
  .hero-stats { gap: 1.5rem; }

  .about-grid,
  .about-story-grid,
  .area-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-badge { right: 0; }

  .services-grid,
  .pricing-grid,
  .testimonials-grid,
  .values-grid { grid-template-columns: 1fr; }

  .trust-strip-inner { gap: 1.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .pricing-card.featured { margin: 0; }

  .hero-content { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── BEFORE/AFTER SLIDER ── */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  user-select: none;
  aspect-ratio: 16/9;
  background: var(--stone-100);
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-before { z-index: 1; }
.ba-after  { z-index: 2; clip-path: inset(0 50% 0 0); }

.ba-after img, .ba-before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before-ph, .ba-after-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
}
.ba-before-ph { background: var(--stone-200); color: var(--stone-500); }
.ba-after-ph  { background: var(--green-100); color: var(--green-700); }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: var(--shadow-md);
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}
.ba-label {
  position: absolute;
  bottom: .85rem;
  padding: .3rem .75rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 4;
}
.ba-label-before { left: .85rem; background: rgba(0,0,0,.5); color: white; }
.ba-label-after  { right: .85rem; background: var(--green-500); color: white; }
