/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --white: #FFFFFF;
  --platinum: #ECF0EC;
  --linen: #FFF4E8;
  --gold: #EC9D38;
  --molten: #E14F00;
  --fern: #45734E;
  --teal: #173D40;
  --black: #000000;

  --font-display: 'Young Serif', Georgia, serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--teal);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

/* =====================
   IMAGE PLACEHOLDERS
   Replace each with a real <img> tag when photos are ready.
   ===================== */
.img-ph {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.img-ph-aerial {
  background: linear-gradient(155deg, #1e4a2a 0%, #2d5e35 25%, #1a3d28 60%, #173D40 100%);
}

.img-ph-portrait {
  background: linear-gradient(160deg, #1e4a2a 0%, #173D40 55%, #0d2326 100%);
}

.img-ph-drone {
  background: linear-gradient(145deg, #0d2326 0%, #173D40 50%, #1a1a2e 100%);
}

.img-ph-forestry {
  background: linear-gradient(155deg, #2a3d1e 0%, #1e4a2a 50%, #173D40 100%);
}

/* Label bar — shows filename for handoff, hidden in production */
.ph-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.5);
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.4;
}

/* =====================
   NAV
   ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(23, 61, 64, 0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(23, 61, 64, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1000;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

/* White logo hidden by default; swaps in when nav is scrolled (dark teal bg) */
.nav-logo .logo-scrolled { display: none; }
nav.scrolled .nav-logo .logo-default { display: none; }
nav.scrolled .nav-logo .logo-scrolled { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--molten);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-family: var(--font-condensed) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: background 0.2s !important;
}

.btn-nav:hover { background: var(--gold) !important; color: var(--teal) !important; }

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(23, 61, 64, 0.99);
  backdrop-filter: blur(16px);
  z-index: 997;
  flex-direction: column;
  border-bottom: 3px solid var(--molten);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.mobile-menu.open {
  max-height: 600px;
  padding: 8px 24px 32px;
}

.mobile-menu a {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .mobile-cta {
  background: var(--molten);
  color: var(--white) !important;
  text-align: center;
  padding: 16px 24px !important;
  border-radius: 2px;
  margin-top: 12px;
  border-bottom: none !important;
}

.mobile-menu .mobile-cta:hover { background: var(--gold); color: var(--teal) !important; }

/* =====================
   HERO
   ===================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--teal);
}

/* Photo layer */
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('../images/hero-aerial.png') center/cover no-repeat;
}

/* Gradient overlay — left teal to right green at 70% opacity */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(23, 61, 64, 0.7) 0%, rgba(69, 115, 78, 0.7) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Placeholder file label — remove when real photo is in place */
.hero-ph-label {
  position: absolute;
  top: 88px;
  right: 40px;
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  z-index: 3;
  writing-mode: vertical-rl;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 100px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--molten);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  max-width: 860px;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-family: var(--font-condensed);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--molten);
  color: var(--white);
  padding: 18px 40px;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.22s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236, 157, 56, 0.3);
}

.hero-phone {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Wave into black marquee */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* =====================
   MARQUEE STRIP
   ===================== */
#marquee {
  background: var(--black);
  overflow: hidden;
}

.marquee-inner {
  border-top: 3px solid var(--molten);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: scroll-marquee 48s linear infinite;
  width: max-content;
}

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-content {
  display: flex;
  align-items: center;
  padding: 18px 0;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 22px;
}

.marquee-sep {
  color: var(--molten);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

/* =====================
   CREDIBILITY STRIP
   ===================== */
#credentials {
  background: var(--fern);
  padding: 0;
}

.cred-h2 {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  grid-column: 1 / -1;
  padding: 24px 0 0;
  margin-bottom: 20px;
}

.cred-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

/* h2 is first child, so first cred-item is nth-child(2) */
.cred-inner > .cred-item:nth-child(2) { padding-left: 0; }
.cred-inner > .cred-item:last-child   { border-right: none; }

.cred-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cred-text strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.cred-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* =====================
   SHARED SECTION ELEMENTS
   ===================== */
.section-eyebrow {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--molten);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.12;
}

/* =====================
   PROBLEM / STAKES
   ===================== */
#problem {
  background: var(--teal);
  padding: 100px 40px 0;
  position: relative;
  overflow: hidden;
}

/* Ghosted aerial photo behind the stat cards */
.problem-bg-photo {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background: linear-gradient(135deg, #2d5e35 0%, #1e4a2a 60%, #173D40 100%);
  /* REPLACE: background: url('../images/aerial-field.jpg') center/cover no-repeat; opacity: 0.07; */
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.problem-body {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 20px;
}

.problem-stat-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 4px solid var(--molten);
  padding: 24px 28px;
  border-radius: 2px;
  transition: background 0.2s;
}

.problem-stat:hover { background: rgba(255, 255, 255, 0.07); }

.problem-stat .number {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 900;
  color: var(--molten);
  line-height: 1;
  margin-bottom: 6px;
}

.problem-stat .label {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}

.problem-stat .sublabel {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

/* Wave: teal → linen (services)
   Background is linen so the CSS bg is the lower section color — zero rendering gap.
   The SVG path fills teal from the top DOWN to the wave edge (inverse approach). */
.problem-wave {
  line-height: 0;
  margin-bottom: -2px;
  margin-left: -40px;
  margin-right: -40px;
  background: var(--linen);
}

.problem-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* =====================
   SERVICES
   ===================== */
#services {
  background: var(--linen);
  padding: 100px 40px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
}

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

.service-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(23, 61, 64, 0.06);
  transition: transform 0.22s, box-shadow 0.22s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(23, 61, 64, 0.12);
}

.service-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-body-wrap {
  padding: 28px 32px 36px;
}

.service-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(69, 115, 78, 0.09);
  line-height: 1;
  margin-bottom: -4px;
}

.service-title {
  font-family: var(--font-condensed);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.service-body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(23, 61, 64, 0.68);
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(69, 115, 78, 0.09);
  color: var(--fern);
  padding: 4px 10px;
  border-radius: 2px;
}

.services-coming-soon {
  margin-top: 28px;
  padding: 16px 24px;
  background: rgba(23, 61, 64, 0.04);
  border: 1px dashed rgba(23, 61, 64, 0.14);
  border-radius: 2px;
  font-size: 14px;
  color: rgba(23, 61, 64, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cs-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(23, 61, 64, 0.07);
  color: rgba(23, 61, 64, 0.4);
  padding: 4px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.cs-link {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fern);
  margin-left: auto;
  transition: color 0.2s;
}

.cs-link:hover { color: var(--molten); }

/* =====================
   STATS / WHY AGRIFLYER
   ===================== */
#why {
  background: var(--white);
  padding: 100px 40px 0;
  position: relative;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 64px;
  border: 1px solid rgba(23, 61, 64, 0.08);
}

.stat-box {
  padding: 52px 24px;
  text-align: center;
  border-right: 1px solid rgba(23, 61, 64, 0.08);
  transition: background 0.25s;
  cursor: default;
}

.stat-box:last-child { border-right: none; }
.stat-box:hover { background: var(--teal); }
.stat-box:hover .stat-number { color: var(--gold); }
.stat-box:hover .stat-label  { color: rgba(255, 255, 255, 0.65); }

.stat-number {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.25s;
  letter-spacing: -0.02em;
}

.stat-unit {
  font-family: var(--font-condensed);
  font-size: 28px;
  font-weight: 700;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23, 61, 64, 0.5);
  line-height: 1.45;
  transition: color 0.25s;
}

/* Wave: white → teal (about) */
.why-wave {
  line-height: 0;
  margin-top: 64px;
  margin-bottom: -2px;
  margin-left: -40px;
  margin-right: -40px;
}

.why-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* =====================
   ABOUT AMBER — FULL-BLEED SPLIT
   ===================== */
#about {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: 700px;
  position: relative;
}

/* Photo column bleeds to the left edge — no max-width constraint */
.about-photo-col {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #1e4a2a 0%, #173D40 55%, #0d2326 100%);
  /* REPLACE: once Amber's photo is ready, add:
     <img src="images/amber-portrait.jpg" alt="..." style="position:absolute;inset:0;width:100%;height:100%;object-fit:cover;">
     and remove the background gradient above */
}

/* Only Amber's direct photo fills the column — not nested images */
.about-photo-col > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Grandfather inset photo — positioned over the bottom-right of the main photo */
.about-grandfather-inset {
  position: absolute;
  bottom: 76px;
  right: 32px;
  width: 300px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.about-grandfather-inset img {
  width: 100%;
  height: auto;
  display: block;
}

.about-grandfather-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.5);
  font-family: var(--font-condensed);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* Content column */
.about-content-col {
  background: var(--teal);
  padding: 100px 72px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 28px;
  margin-top: 16px;
}

.about-headline em { color: var(--gold); font-style: italic; }

.about-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.about-body p + p { margin-top: 18px; }

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cred-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.about-cred-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--fern);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}

/* =====================
   SERVICE AREA
   ===================== */
#service-area {
  background: var(--platinum);
  padding: 80px 40px;
}

.area-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.area-map {
  border-radius: 2px;
  overflow: hidden;
}

.area-map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.area-headline {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 20px;
  line-height: 1.2;
}

.area-body {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(23, 61, 64, 0.68);
  margin-bottom: 24px;
}

.area-note {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fern);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =====================
   GET A QUOTE
   ===================== */
#contact {
  background: var(--white);
  padding: 100px 40px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left .section-title { color: var(--teal); margin-bottom: 20px; }

.contact-body {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(23, 61, 64, 0.62);
  margin-bottom: 40px;
}

.contact-phone-block {
  background: var(--teal);
  padding: 28px 32px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.contact-phone-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-phone-number {
  font-family: var(--font-condensed);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.contact-phone-number:hover { color: var(--gold); }

.contact-phone-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
}

.contact-hours {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  color: rgba(23, 61, 64, 0.48);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Form */
.quote-form {
  background: var(--linen);
  padding: 40px;
  border-radius: 2px;
  border-top: 4px solid var(--molten);
}

.form-title {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 61, 64, 0.58);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(23, 61, 64, 0.14);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--teal);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--fern);
  box-shadow: 0 0 0 3px rgba(69, 115, 78, 0.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  background: var(--molten);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 2px;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--fern); }
.btn-submit:disabled { background: rgba(23, 61, 64, 0.25); cursor: not-allowed; }

/* Form success */
.form-success {
  display: none;
  background: var(--fern);
  padding: 48px 40px;
  border-radius: 2px;
  text-align: center;
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 20px;
}

.form-success-title {
  font-family: var(--font-condensed);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.form-success-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--black);
  padding: 64px 40px 40px;
  color: rgba(255, 255, 255, 0.48);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  display: block;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--molten);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  max-width: 280px;
  line-height: 1.55;
}

.footer-col-title {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-links li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-license-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.license-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 5px 10px;
  border-radius: 2px;
}

.license-badge::before {
  content: '✓';
  color: var(--fern);
  font-weight: 700;
}

/* =====================
   SCROLL REVEALS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s 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; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
  .about-content-col { padding: 80px 48px; }
}

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .mobile-menu { display: flex; }

  .hero-content { padding: 100px 20px 80px; }
  .hero-photo { background-position: right center; }
  .hero-phone { border-left: none; padding-left: 0; }

  .cred-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px 20px 36px;
  }
  .cred-item { border-right: none; padding: 0; }
  .cred-inner > .cred-item:nth-child(2) { padding-left: 0; }

  #problem { padding: 80px 20px 0; }
  .problem-wave { margin-left: -20px; margin-right: -20px; }
  .why-wave { margin-left: -20px; margin-right: -20px; }
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }

  #services { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; }

  #why { padding: 80px 20px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-box { border-right: 1px solid rgba(23, 61, 64, 0.08); border-bottom: 1px solid rgba(23, 61, 64, 0.08); }
  .stat-box:nth-child(even) { border-right: none; }
  .stat-box:nth-last-child(-n+2) { border-bottom: none; }

  #about { grid-template-columns: 1fr; min-height: auto; }
  .about-photo-col { min-height: 440px; }
  .about-grandfather-inset { width: 195px; bottom: 64px; right: 24px; }
  .about-content-col { padding: 60px 24px; }

  #service-area { padding: 60px 20px; }
  .area-inner { grid-template-columns: 1fr; }

  #contact { padding: 80px 20px; }
  .contact-inner { grid-template-columns: 1fr; }

  footer { padding: 48px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-box { border-right: none !important; border-bottom: 1px solid rgba(23, 61, 64, 0.08) !important; }
  .stat-box:last-child { border-bottom: none !important; }
  .stat-number { font-size: 56px; }
  .form-grid { grid-template-columns: 1fr; }
  .cred-inner { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(42px, 12vw, 64px); }
  .footer-license-strip { display: none; }
}
