/* =========================================================
   ESSENTIAL SOLAR — DESIGN SYSTEM
   ========================================================= */

:root {
  /* Palette */
  --brand: #2bad32;
  --brand-dark: #1e8524;
  --brand-darker: #156018;
  --brand-tint: #e8f7ea;
  --brand-tint-2: #d4efd7;
  --forest: #0f2818;
  --ink: #17231a;
  --ink-2: #2c3a2f;
  --muted: #5f6b60;
  --muted-2: #8a948b;
  --line: #e5e2d8;
  --line-2: #efece3;
  --cream: #faf9f4;
  --paper: #ffffff;
  --sun: #f5b942;
  --sun-tint: #fbe9c2;

  /* Type */
  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Space & radius */
  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Container */
  --container: 1180px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

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

a { color: var(--brand-darker); text-decoration: none; }
a:hover { color: var(--brand); }

::selection { background: var(--brand); color: #fff; }

/* Typography ================================================ */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--forest);
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "opsz" 144;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.005em; }

p { margin: 0 0 1em; color: var(--ink-2); }
.lede { font-size: 1.2rem; color: var(--muted); line-height: 1.55; max-width: 640px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--brand-dark);
}

/* Layout ==================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 96px 0; }
@media (max-width: 760px) { section { padding: 64px 0; } }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.center { text-align: center; }
.center .eyebrow, .center .lede { margin-left: auto; margin-right: auto; }

/* Buttons =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(43, 173, 50, 0.55);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; box-shadow: 0 12px 28px -8px rgba(43, 173, 50, 0.7); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--forest);
  padding: 15px 12px;
}
.btn-ghost:hover { color: var(--brand-dark); }

.btn svg { width: 16px; height: 16px; }

/* Header ==================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 244, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-size: 1.35rem;
  color: var(--forest);
  letter-spacing: -0.015em;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--brand);
  display: grid; place-items: center;
  color: #fff;
}
.brand-mark svg { width: 20px; height: 20px; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 14px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 6px;
}
.nav a:hover { color: var(--forest); background: var(--line-2); }
.nav a.active { color: var(--brand-dark); }

.nav-cta { margin-left: 8px; }
.nav-cta .btn { padding: 11px 20px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--forest); }

@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(15, 40, 24, 0.15);
  }
  .nav.open a { padding: 14px 16px; border-radius: 8px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; }
}

/* Hero ====================================================== */
.hero {
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 64px; }
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  color: var(--brand-dark);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero-lede {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-meta::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--line);
}

/* Hero visual ---------------------------------------------- */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1e8524 0%, #2bad32 45%, #63c96b 100%);
  box-shadow: 0 30px 60px -20px rgba(15, 40, 24, 0.35);
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.28), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(15, 40, 24, 0.35), transparent 55%);
}
.hero-visual-inner {
  position: absolute;
  inset: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.hero-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-lg);
  padding: 20px;
}
.hero-stat-row { display: flex; gap: 20px; }
.hero-stat {
  flex: 1;
  color: #fff;
}
.hero-stat-num {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  font-variation-settings: "SOFT" 30, "opsz" 144;
}
.hero-stat-lbl {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-quote {
  font-family: var(--f-display);
  font-size: 1.35rem;
  line-height: 1.35;
  font-variation-settings: "SOFT" 60, "opsz" 144;
  font-style: italic;
}
.hero-quote-by {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-style: normal;
  margin-top: 12px;
  opacity: 0.9;
}
.hero-panel {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 65%;
  aspect-ratio: 1;
  opacity: 0.18;
}

/* Trust bar ================================================= */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  max-width: 220px;
}
.trust-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  background: var(--cream);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* Section header ============================================ */
.section-head { margin-bottom: 56px; max-width: 780px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { color: var(--muted); font-size: 1.1rem; max-width: 640px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* Signature: "vs Lead Gen" comparison ======================== */
.compare {
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.compare h2 { color: #fff; }
.compare .lede { color: rgba(255,255,255,0.72); }
.compare .eyebrow { color: #7ee384; }
.compare .eyebrow::before { background: #7ee384; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-col {
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
}
.compare-col.us {
  background: linear-gradient(155deg, rgba(43, 173, 50, 0.15), rgba(43, 173, 50, 0.05));
  border: 1px solid rgba(126, 227, 132, 0.3);
}
.compare-col.them {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.compare-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.compare-col.us .compare-tag { background: #7ee384; color: var(--forest); }
.compare-col.them .compare-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.compare-col h3 { color: #fff; margin-bottom: 24px; font-size: 1.5rem; }
.compare-col.them h3 { color: rgba(255,255,255,0.75); }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
  line-height: 1.5;
}
.compare-list li:last-child { border-bottom: 0; }
.compare-list li svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; }
.compare-col.us svg { color: #7ee384; }
.compare-col.them svg { color: #f47a7a; }
.compare-col.them .compare-list li { color: rgba(255,255,255,0.6); }

/* Vetting process (signature #2) ============================ */
.vetting { background: var(--paper); }
.vet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .vet-grid { grid-template-columns: 1fr; gap: 40px; } }

.vet-visual {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
}
.vet-checklist { list-style: none; padding: 0; margin: 0; }
.vet-checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--f-body);
  font-weight: 500;
  color: var(--forest);
}
.vet-checklist li:last-child { border-bottom: 0; }
.vet-check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand-dark);
  display: grid; place-items: center;
}
.vet-check svg { width: 16px; height: 16px; }
.vet-num {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--muted-2);
  margin-left: auto;
}

/* Services / cards ========================================== */
.services { background: var(--cream); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-tint-2);
  box-shadow: 0 24px 40px -24px rgba(15, 40, 24, 0.18);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--brand-tint);
  color: var(--brand-dark);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); margin-bottom: 16px; font-size: 0.98rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-dark);
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.card-link:hover svg { transform: translateX(2px); }

/* Process ==================================================== */
.process .grid { gap: 0; }
.process-step {
  padding: 32px 24px;
  border-left: 1px solid var(--line);
  position: relative;
}
.process-step:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 900px) {
  .process-step { border-left: 0; border-top: 1px solid var(--line); padding: 32px 0; }
  .process-step:first-child { border-top: 0; padding-top: 0; }
}
.process-num {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--brand-dark);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-weight: 600;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* Testimonials =============================================== */
.reviews { background: var(--cream); }
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-stars { display: flex; gap: 3px; color: var(--sun); }
.review-stars svg { width: 18px; height: 18px; }
.review-body {
  font-family: var(--f-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--forest);
  font-variation-settings: "SOFT" 40, "opsz" 144;
  flex-grow: 1;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-family: var(--f-body);
  font-size: 0.98rem;
}
.review-name { font-weight: 600; color: var(--forest); font-size: 0.95rem; }
.review-role { color: var(--muted); font-size: 0.82rem; margin-top: 2px; }

/* CTA band =================================================== */
.cta-band {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #63c96b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-band::before { width: 400px; height: 400px; top: -100px; right: -100px; }
.cta-band::after { width: 300px; height: 300px; bottom: -80px; left: -80px; }
.cta-inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner h2 { color: #fff; margin-bottom: 20px; }
.cta-inner p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 36px; }
.cta-inner .btn-primary { background: #fff; color: var(--brand-dark); box-shadow: 0 12px 30px -8px rgba(0,0,0,0.25); }
.cta-inner .btn-primary:hover { background: var(--forest); color: #fff; }
.cta-inner .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-inner .btn-outline:hover { background: #fff; color: var(--brand-dark); border-color: #fff; }

/* About / Editorial section ================================== */
.about-editorial {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about-side { position: sticky; top: 100px; }
.about-side h2 { margin-bottom: 24px; }
.about-side p { color: var(--muted); }
.about-body { font-size: 1.08rem; line-height: 1.7; }
.about-body p { color: var(--ink-2); }
.about-body p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 3.4rem;
  float: left;
  line-height: 0.9;
  padding: 8px 12px 0 0;
  color: var(--brand-dark);
  font-weight: 500;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.about-body blockquote {
  border-left: 3px solid var(--brand);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "SOFT" 60, "opsz" 144;
  line-height: 1.4;
}

/* FAQ ========================================================= */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 6px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-variation-settings: "SOFT" 40, "opsz" 144;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--f-body);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--brand-dark);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 700px;
}

/* Forms ====================================================== */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper);
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-tint);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field-help { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.form-consent input { width: auto; margin-top: 4px; }
.form-submit .btn { width: 100%; padding: 17px; font-size: 1rem; }

/* Page hero (secondary pages) ================================ */
.page-hero {
  padding: 100px 0 60px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 780px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 20px; }
.page-hero p { font-size: 1.2rem; color: var(--muted); max-width: 640px; }

/* Contact grid =============================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-side h3 { margin-bottom: 12px; font-size: 1.35rem; }
.contact-side p { color: var(--muted); margin-bottom: 32px; }
.contact-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: 1px solid var(--line); }
.contact-item-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-item-value {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--forest);
  font-variation-settings: "SOFT" 40, "opsz" 144;
}
.contact-item-value a { color: inherit; }

/* Footer ===================================================== */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
.footer-brand-wrap { max-width: 320px; }
.footer-brand-wrap .brand { color: #fff; margin-bottom: 16px; }
.footer-brand-wrap p { color: rgba(255,255,255,0.65); font-size: 0.94rem; line-height: 1.55; }
.footer-heading {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: #7ee384; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #7ee384; }

/* Utility ==================================================== */
.hidden { display: none !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* Reduced motion ============================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Focus styles =============================================== */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Print ====================================================== */
@media print {
  .site-header, .site-footer, .cta-band { display: none; }
  body { background: #fff; color: #000; }
}
