/* ══════════════════════════════════════
    CSS CUSTOM PROPERTIES
══════════════════════════════════════ */
:root {
  --forest:    #0d2410;
  --deep:      #142b14;
  --grass:     #1e5c1e;
  --lime:      #6dbf3e;
  --lime2:     #85d44f;
  --gold:      #c9a84c;
  --cream:     #f7f5f0;
  --parchment: #ede9df;
  --charcoal:  #111411;
  --white:     #ffffff;
  --text:      #1e2219;
  --muted:     #5c6456;
  --border:    rgba(109,191,62,0.18);
}

/* ══════════════════════════════════════
    RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.bg-cream {
  background: var(--cream);
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--forest); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 4px; }

/* ══════════════════════════════════════
    HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13,36,16,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(109,191,62,0.25);
}
.site-header.sticky-header {
  background: var(--forest);
  border-bottom: 1px solid rgba(109,191,62,0.25);
  position: sticky;
  top: 0;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ══════════════════════════════════════
    LOGO ZONE — unified across all pages
══════════════════════════════════════ */
.logo-zone {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-placeholder {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  overflow: visible;
}
.logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-placeholder svg {
  width: 26px;
  height: 26px;
  stroke: rgba(109,191,62,0.6);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.logo-placeholder span {
  display: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  display: block;
}
.logo-name em {
  font-style: italic;
  color: var(--lime);
  font-weight: 400;
}
.logo-sub {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: block;
  margin-top: 2px;
}

/* ══════════════════════════════════════
    NAVIGATION
══════════════════════════════════════ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lime);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--lime) !important;
  color: var(--forest) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  background: var(--lime2) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 0 0 6px rgba(109,191,62,0.15) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}

.header-call {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  transition: opacity 0.2s;
}
.header-call:hover { opacity: 0.75; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(13,36,16,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px 32px;
  border-top: 1px solid rgba(109,191,62,0.2);
  border-bottom: 1px solid rgba(109,191,62,0.1);
  z-index: 199;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  color: var(--lime);
  border-bottom: none;
}
.mobile-nav a:hover { color: var(--white); }

/* ══════════════════════════════════════
    HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(170deg, rgba(8,22,8,0.88) 0%, rgba(15,40,15,0.70) 55%, rgba(10,28,10,0.82) 100%),
    url("../assets/images/lawn.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, var(--lime) 30%, var(--lime2) 70%, transparent 100%);
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--lime);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 9.5vw, 10rem);
  font-weight: 700;
  line-height: 0.88;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  display: block;
  font-size: 0.72em;
}
.hero-title span {
  display: block;
  font-size: 0.28em;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
}
.hero-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 2;
  max-width: 420px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

/* ── SHARED BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--lime);
  color: var(--forest);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 40px;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(109,191,62,0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--lime2);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(109,191,62,0.35);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(109,191,62,0.06);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
  z-index: 2;
}
.scroll-hint span {
  font-size: 8.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ══════════════════════════════════════
    ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
    TICKER
══════════════════════════════════════ */
.ticker-strip {
  background: var(--lime);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--forest);
  padding: 0 36px;
}
.ticker-track span::after {
  content: '◆';
  margin-left: 36px;
  opacity: 0.35;
}

/* ══════════════════════════════════════
    SECTION LABELS
══════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grass);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--lime);
}

/* ══════════════════════════════════════
    ABOUT SECTION
══════════════════════════════════════ */
.about {
  background: var(--cream);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'G';
  position: absolute;
  right: -2%;
  top: -8%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36vw;
  font-weight: 700;
  color: rgba(30,92,30,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--forest);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.about-text h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--grass);
}
.about-rule {
  width: 56px;
  height: 2px;
  background: var(--lime);
  margin-bottom: 28px;
}
.about-lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 40px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--parchment);
  border-radius: 4px;
  overflow: hidden;
  border-left: 3px solid var(--lime);
  gap: 1px;
}
.stat-cell {
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--grass);
  line-height: 1;
  display: block;
  letter-spacing: -1px;
}
.stat-lbl {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  display: block;
}

.about-visual {
  position: relative;
  z-index: 1;
}
.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}
.about-gold-frame {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  border-radius: 2px;
  opacity: 0.35;
  pointer-events: none;
}
.about-lime-block {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  background: var(--lime);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.85;
}
.about-badge {
  position: absolute;
  top: 28px;
  right: -22px;
  background: var(--forest);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  border-left: 3px solid var(--lime);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  min-width: 170px;
}
.about-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.about-badge small {
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-top: 6px;
}

/* ══════════════════════════════════════
    SERVICES SECTION
══════════════════════════════════════ */
.services {
  background: var(--white);
  padding: 120px 40px;
}
.services-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--forest);
  letter-spacing: -0.5px;
}
.section-head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--grass);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--parchment);
}
.service-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  z-index: 2;
  box-shadow: 0 32px 72px rgba(0,0,0,0.14);
}
.svc-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.service-card:hover .svc-img img { transform: scale(1.08); }
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,36,16,0.65) 0%, transparent 50%);
}
.svc-body {
  padding: 28px 30px 34px;
}
.svc-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(109,191,62,0.12);
  line-height: 1;
  position: absolute;
  top: 200px;
  right: 24px;
  transition: color 0.3s;
}
.service-card:hover .svc-number { color: rgba(109,191,62,0.25); }
.svc-tag {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}
.svc-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.svc-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}
.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }
.svc-arrow::after { content: '→'; font-size: 12px; }

/* ══════════════════════════════════════
    BANNER / CTA
══════════════════════════════════════ */
.banner {
  position: relative;
  min-height: 460px;
  background:
    linear-gradient(rgba(8,22,8,0.72), rgba(8,22,8,0.72)),
    url('../assets/images/lawn1.webp') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 40px;
  border-top: 1px solid rgba(109,191,62,0.2);
  border-bottom: 1px solid rgba(109,191,62,0.2);
  overflow: hidden;
}
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(109,191,62,0.08) 0%, transparent 68%);
  pointer-events: none;
}
.banner-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}
.banner-inner .section-label {
  justify-content: center;
  color: var(--lime);
  margin-bottom: 22px;
}
.banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.banner h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.banner p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 2;
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════
    FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  padding: 90px 40px 0;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-zone { margin-bottom: 22px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.95;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}
.footer-col p,
.footer-col address {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 2.1;
  font-style: normal;
}
.footer-col a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.footer-bottom a {
  color: rgba(109,191,62,0.6);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--lime); }

.location-strip {
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime2) 100%);
  padding: 15px 40px;
  text-align: center;
}
.location-strip p {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--forest);
}

/* ══════════════════════════════════════
    QUOTE PAGE — PAGE SHELL
══════════════════════════════════════ */
.page-shell {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: calc(100vh - 72px);
}
.info-panel {
  background: var(--forest);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.info-panel::before {
  content: 'G';
  position: absolute;
  bottom: -8%;
  right: -5%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 40vw;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.info-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(109,191,62,0.3), transparent);
}
.page-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.page-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--lime);
}
.info-panel h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.info-panel h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  display: block;
}
.info-rule {
  width: 44px;
  height: 1px;
  background: rgba(109,191,62,0.4);
  margin-bottom: 24px;
}
.info-panel .lead {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 320px;
}
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 6px;
}
.trust-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── FORM PANEL ── */
.form-panel {
  background: var(--white);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-header { margin-bottom: 38px; }
.form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.form-header h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--grass);
}
.form-header p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
}
.form-rule {
  width: 44px;
  height: 2px;
  background: var(--lime);
  margin: 14px 0 0;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.f-full { grid-column: span 2; }
.f-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest);
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 13px 17px;
  background: var(--cream);
  border: 1px solid #ddd8cf;
  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
input:focus,
textarea:focus {
  border-color: var(--lime);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(109,191,62,0.12);
}
textarea {
  resize: vertical;
  min-height: 110px;
}
.svc-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest);
  display: block;
  margin-bottom: 14px;
}
.checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.check-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid #ddd8cf;
  border-radius: 2px;
  background: var(--cream);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 13px;
  color: var(--text);
  user-select: none;
}
.check-card:hover {
  border-color: var(--lime);
  background: #f0f8e6;
}
.check-card input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--grass);
  cursor: pointer;
  flex-shrink: 0;
}
.check-card:has(input:checked) {
  border-color: var(--lime);
  background: #edf7e0;
  font-weight: 600;
}
.submit-btn {
  width: 100%;
  background: var(--lime);
  color: var(--forest);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  padding: 19px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 8px 28px rgba(109,191,62,0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.3s;
}
.submit-btn:hover {
  background: var(--lime2);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(109,191,62,0.35);
}
.submit-btn:active { transform: translateY(0); }

/* ── SUCCESS STATE ── */
.success-msg {
  display: none;
  text-align: center;
  padding: 60px 20px;
  flex-direction: column;
  align-items: center;
}
.success-msg.show { display: flex; }
.success-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 0 12px rgba(109,191,62,0.12);
}
.success-circle svg {
  width: 34px;
  height: 34px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-msg h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.success-msg p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}
.back-btn {
  display: inline-block;
  background: var(--lime);
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.back-btn:hover {
  background: var(--lime2);
  transform: translateY(-1px);
}

/* ── FOOTER STRIP (quote page) ── */
.footer-strip {
  background: var(--charcoal);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-strip p {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.footer-strip a {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(109,191,62,0.6);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-strip a:hover { color: var(--lime); }

/* ══════════════════════════════════════
    RESPONSIVE — TABLET 1080px
══════════════════════════════════════ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 540px; margin: 0 auto; }
}

/* ══════════════════════════════════════
    RESPONSIVE — TABLET 960px
══════════════════════════════════════ */
@media (max-width: 960px) {
  .page-shell { grid-template-columns: 1fr; }
  .info-panel { padding: 60px 40px; }
  .form-panel { padding: 60px 40px; }
}

/* ══════════════════════════════════════
    RESPONSIVE — MOBILE 768px
══════════════════════════════════════ */
@media (max-width: 768px) {
  .header-inner { padding: 0 20px; height: 64px; }
  .mobile-nav { top: 64px; }

  /* Logo scales down cleanly on mobile */
  .logo-placeholder { width: 44px; height: 44px; }
  .logo-name { font-size: 1.25rem; }
  .logo-sub { font-size: 7.5px; letter-spacing: 2px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }

  /* Services button: centered on mobile */
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section-head .btn-primary {
    align-self: center;
    width: auto;
    min-width: 220px;
    text-align: center;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .hero-title { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .hero { padding: 120px 24px 90px; }
  .about, .services { padding: 80px 24px; }

  .stats-row { grid-template-columns: 1fr; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    text-align: center;
    width: 100%;
    max-width: 300px;
  }
  .about-visual { display: none; }
  .banner h2 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .banner { background-attachment: scroll; }
}

/* ══════════════════════════════════════
    RESPONSIVE — SMALL MOBILE 600px
══════════════════════════════════════ */
@media (max-width: 600px) {
  .f-row { grid-template-columns: 1fr; }
  .f-full { grid-column: span 1; }
  .checks-grid { grid-template-columns: 1fr; }
  .info-panel, .form-panel { padding: 48px 24px; }
  .footer-strip { flex-direction: column; text-align: center; gap: 8px; }
  .location-strip { padding: 14px 24px; }
}

/* ══════════════════════════════════════
   FORM VALIDATION STYLES
══════════════════════════════════════ */
.input-error {
  border-color: #e05252 !important;
  background: #fff8f8 !important;
  box-shadow: 0 0 0 3px rgba(224,82,82,0.1) !important;
}
.field-error {
  display: block;
  font-size: 11px;
  color: #c0392b;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════════
   ADDRESS FIELDSET
══════════════════════════════════════ */
.address-section {
  margin-bottom: 18px;
}
.address-section > .svc-label {
  margin-bottom: 10px;
}
.address-inner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.address-city-row {
  display: grid;
  grid-template-columns: 1fr 80px 120px;
  gap: 10px;
}
@media (max-width: 600px) {
  .address-city-row { grid-template-columns: 1fr; }
}


