/* ==========================================================================
   NORTH EDGE OUTDOOR — Design System
   Palette: Forest Green #2C6B3F / Deep Green #214D31 / Warm Sand #E6D09C
            Work Gold #C9A94D / Charcoal #222222 / White #FFFFFF
   Type: Montserrat (display) + Source Sans 3 (body)
   Signature: the "north edge" — a single diagonal cut (145deg) used as a
   structural device on section transitions, card corners, and image frames.
   It is the one recurring shape in the system; everything else stays quiet.
   ========================================================================== */

:root {
  --green: #2C6B3F;
  --green-deep: #214D31;
  --sand: #E6D09C;
  --gold: #C9A94D;
  --charcoal: #222222;
  --white: #FFFFFF;

  --sand-tint: #FAF6EC;
  --line: #E4E1D8;
  --text-soft: #55574F;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Source Sans 3', Arial, sans-serif;

  --edge: 28px; /* signature diagonal-cut size */
  --radius-s: 4px;
  --container: 1200px;
  --shadow-card: 0 1px 2px rgba(34,34,34,0.06), 0 8px 24px rgba(34,34,34,0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--text-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--sand { background: var(--sand-tint); }
.section--green {
  background: var(--green-deep);
  color: var(--white);
}
.section--green h2, .section--green h3 { color: var(--white); }
.section--green p { color: rgba(255,255,255,0.82); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head {
  max-width: 700px;
  margin: 0 0 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.lede {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius-s);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-deep); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn-outline-dark:hover { background: var(--green); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover { background: #b6963f; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.announce-bar {
  background: var(--gold);
  text-align: center;
  padding: 9px 16px;
}
.announce-bar a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}
.announce-bar a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.brand {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
}
.brand img { height: 68px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.main-nav a.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--charcoal);
  padding: 10px 14px;
  border-radius: var(--radius-s);
}
.main-nav a.nav-link:hover { color: var(--green); background: var(--sand-tint); }
.main-nav a.nav-link.is-active { color: var(--green); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-s);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
}
.dropdown a:hover { background: var(--sand-tint); color: var(--green); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle svg { width: 26px; height: 26px; }

.header-call-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green);
}
.header-call-icon svg { width: 18px; height: 18px; }
.header-call-icon:hover { background: var(--sand-tint); }

/* ---------- Mobile sticky action bar ---------- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--green-deep);
}
.mobile-action-bar .container,
.mobile-action-bar-inner {
  display: flex;
}
.mobile-action-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.mobile-action-bar a {
  flex: 1;
  text-align: center;
  padding: 15px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.mobile-action-bar a:first-child { background: var(--charcoal); }
.mobile-action-bar a:last-child { background: var(--gold); color: var(--charcoal); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--green-deep);
  color: var(--white);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(33,77,49,0.97) 0%,
    rgba(33,77,49,0.93) 30%,
    rgba(33,77,49,0.72) 55%,
    rgba(33,77,49,0.42) 78%,
    rgba(33,77,49,0.22) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 24px;
  width: 100%;
}
.hero-content > * { max-width: 620px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .lede { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 560px; }
.hero-trust {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sand);
  max-width: 620px;
}

.hero-slider { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroSlide 30s infinite;
}
.hero-slider img:nth-child(1) { animation-delay: 0s; }
.hero-slider img:nth-child(2) { animation-delay: -5s; }
.hero-slider img:nth-child(3) { animation-delay: -10s; }
.hero-slider img:nth-child(4) { animation-delay: -15s; }
.hero-slider img:nth-child(5) { animation-delay: -20s; }
.hero-slider img:nth-child(6) { animation-delay: -25s; }
@keyframes heroSlide {
  0%, 100% { opacity: 0; }
  2% { opacity: 1; }
  14.5% { opacity: 1; }
  16.5% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider img { animation: none; opacity: 0; }
  .hero-slider img:first-child { opacity: 1; }
}
.placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 24px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.placeholder svg { width: 40px; height: 40px; opacity: 0.75; }
.placeholder small { font-family: var(--font-body); font-weight: 400; font-size: 0.8rem; letter-spacing: 0; color: rgba(255,255,255,0.55); }

.placeholder-light {
  background: var(--sand-tint);
  border: 1px dashed #C9BE9F;
  color: var(--text-soft);
}
.placeholder-light small { color: #8a8570; }
.placeholder-light svg { opacity: 0.5; }

/* generic edge-cut media box, reused across pages */
.media-box {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--sand-tint);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--edge)), calc(100% - var(--edge)) 100%, 0 100%);
  border: 1px dashed #C9BE9F;
  overflow: hidden;
}
.media-box img { width: 100%; height: 100%; object-fit: cover; }
.media-box img.img-contain {
  object-fit: contain;
  background: var(--charcoal);
}
.illus-frame { width: 100%; height: 100%; overflow: hidden; }
.media-box.square { aspect-ratio: 1/1; }
.media-box.wide { aspect-ratio: 16/9; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--green-deep);
  color: var(--white);
  padding: 72px 0 64px;
}
.page-hero h1 { color: var(--white); }
.page-hero .lede { color: rgba(255,255,255,0.85); }
.page-hero .btn-row { margin-top: 26px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 18px; font-size: 0.97rem; }
.card .card-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card .card-cta:hover { color: var(--green-deep); }
.card-cta svg, .service-card-body .card-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.service-card .media-box { border-radius: 0; border: none; clip-path: none; aspect-ratio: 16/10; }
.service-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.service-card-body p { flex: 1; }
.service-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.icon-tile {
  width: 52px; height: 52px;
  background: var(--sand-tint);
  border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.icon-tile svg { width: 26px; height: 26px; stroke: var(--green); }
.section--green .icon-tile { background: rgba(255,255,255,0.1); }
.section--green .icon-tile svg { stroke: var(--sand); }

/* Numbered process steps */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  min-width: 46px;
}
.steps.grid-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.steps.grid-cards .step { flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-s); padding: 26px 24px; gap: 10px; }

/* ---------- Property types / who we serve ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--sand-tint);
  color: var(--green-deep);
  border: 1px solid var(--line);
}

/* ---------- Pricing table ---------- */
.price-list { border-top: 1px solid var(--line); }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.price-row .price-name { font-family: var(--font-display); font-weight: 600; color: var(--charcoal); }
.price-row .price-value { font-family: var(--font-display); font-weight: 700; color: var(--green); white-space: nowrap; }
.price-disclaimer { margin-top: 22px; font-size: 0.85rem; color: var(--text-soft); }

/* ---------- Gallery ---------- */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  color: var(--charcoal);
}
.filter-btn.is-active, .filter-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item { display: none; }
.gallery-item.is-visible { display: block; }
.gallery-item .media-box { clip-path: none; border-radius: var(--radius-s); }
.gallery-caption { margin-top: 10px; font-size: 0.88rem; color: var(--text-soft); font-weight: 600; }

.review-card {
  background: var(--sand-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 28px;
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-name { font-family: var(--font-display); font-weight: 700; margin-top: 14px; font-size: 0.9rem; }

.notice-box {
  border: 1px dashed var(--gold);
  background: #FBF6E9;
  border-radius: var(--radius-s);
  padding: 22px 24px;
  font-size: 0.92rem;
  color: var(--text-soft);
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 6px 22px;
  background: var(--white);
}
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--green-deep);
  padding: 16px 26px 16px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding-bottom: 18px; margin: 0; }

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--green);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 26px; }

/* ---------- Forms ---------- */
.form-toggle { display: flex; gap: 12px; margin-bottom: 36px; }
.form-toggle button {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 18px;
  border-radius: var(--radius-s);
  border: 2px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
}
.form-toggle button.is-active { border-color: var(--green); color: var(--green); background: var(--sand-tint); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 7px;
  color: var(--charcoal);
}
.field .hint { font-size: 0.78rem; color: var(--text-soft); font-weight: 400; margin-top: 4px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #CBC7B8;
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 0.97rem;
  background: var(--white);
  color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}
.field textarea { min-height: 110px; resize: vertical; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 9px; font-size: 0.94rem; }
.checkbox-item input { width: auto; }
.file-drop {
  border: 1.5px dashed #C9BE9F;
  border-radius: var(--radius-s);
  padding: 22px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-soft);
  background: var(--sand-tint);
}
.file-drop svg { width: 26px; height: 26px; margin-bottom: 8px; stroke: #8a8570; }
.form-section-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-deep);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 34px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.form-section-label:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.conditional-block { display: none; }
.conditional-block.is-visible { display: block; }
.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

/* ---------- Residential Quote Wizard ---------- */
.wizard-progress {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.wizard-progress-step {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #B9B6A6;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--line);
  flex: 1;
  min-width: 110px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.wizard-progress-step.is-active { color: var(--green); border-color: var(--gold); }
.wizard-progress-step.is-complete { color: var(--green-deep); border-color: var(--green); }

.wizard-step { display: none; }
.wizard-step.is-active { display: block; }

.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.wizard-actions .btn:only-child { margin-left: auto; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.wizard-actions [data-auto-advance] { display: none; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.option-grid-3 { grid-template-columns: repeat(3, 1fr); }
.option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 22px 24px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.option-card:hover { border-color: var(--green); transform: translateY(-1px); }
.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
}
.option-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-s);
  background: var(--sand-tint);
  display: flex; align-items: center; justify-content: center;
}
.option-card-icon svg { width: 24px; height: 24px; stroke: var(--green); }
.option-card-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.02rem;
}
.option-card-sub { font-size: 0.85rem; color: var(--text-soft); }
.option-card.is-selected {
  border-color: var(--gold);
  background: var(--sand-tint);
  box-shadow: 0 0 0 1px var(--gold);
}
.option-card.is-selected .option-card-icon { background: var(--white); }
.option-card.is-selected .option-card-label { color: var(--green-deep); }

.note-reveal { margin-top: 22px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-grid-related { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.blog-card .media-box { border-radius: 0; border: none; clip-path: none; aspect-ratio: 16/10; }
.blog-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--sand-tint);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.blog-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.blog-card p { font-size: 0.94rem; flex: 1; }
.blog-meta { font-size: 0.8rem; color: var(--text-soft); margin-top: 10px; }

.blog-banner {
  width: 100%; height: 100%;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
}
.blog-banner svg { width: 44px; height: 44px; stroke: var(--sand); }
.blog-banner-lg svg { width: 60px; height: 60px; }

.post-hero { background: var(--green-deep); color: var(--white); padding: 60px 0 50px; }
.post-hero .eyebrow { margin-bottom: 16px; }
.post-hero h1 { color: var(--white); max-width: 780px; }
.post-hero .post-meta { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 14px; }

.post-body { max-width: 740px; margin: 0 auto; }
.post-body h2 { margin-top: 44px; font-size: 1.5rem; }
.post-body h3 { margin-top: 30px; color: var(--green-deep); }
.post-body p, .post-body li { color: var(--text-soft); font-size: 1.03rem; line-height: 1.75; }
.post-body ul { padding-left: 22px; margin-bottom: 1.2em; }
.post-body ul li { margin-bottom: 8px; }

.post-cta {
  margin: 46px 0;
  padding: 32px;
  background: var(--sand-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  text-align: center;
}
.post-cta h3 { margin-bottom: 10px; }
.post-cta p { max-width: 480px; margin: 0 auto 20px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 20px;
}
.back-link:hover { color: var(--green-deep); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 58px; }
.footer-brand-word { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.05rem; }
.footer-tagline { color: var(--sand); font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
}
.footer-social a:hover { border-color: var(--sand); color: var(--sand); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a:hover { color: var(--sand); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.badge-list { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.badge-list .badge-item { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--green-deep); display: flex; align-items: center; gap: 8px; }
.badge-list svg { width: 18px; height: 18px; stroke: var(--gold); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.value-strip { display: flex; flex-wrap: wrap; gap: 44px; padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-strip .value-item { flex: 1; min-width: 160px; }
.value-strip .value-num { font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 0.8rem; margin-bottom: 6px; letter-spacing: 0.04em; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .steps.grid-cards { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .header-phone { display: none; }
  .header-inner { height: 68px; }
  .brand img { height: 42px; }
  .header-actions { gap: 10px; }
  .header-actions .btn-primary { display: none; }
  .header-call-icon { display: flex; }
  .announce-bar { padding: 7px 12px; }
  .announce-bar a { font-size: 0.72rem; }
  body { padding-bottom: 58px; }
  .mobile-action-bar { display: block; }
  .field-grid, .checkbox-grid, .option-grid, .option-grid-3 { grid-template-columns: 1fr; }
  .wizard-progress-step { min-width: 90px; font-size: 0.68rem; }
  .grid-3, .grid-4, .grid-5, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .steps.grid-cards { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { min-height: 480px; }
  .hero-content { padding: 56px 24px; }
  .hero-scrim {
    background: linear-gradient(180deg,
      rgba(33,77,49,0.97) 0%,
      rgba(33,77,49,0.93) 40%,
      rgba(33,77,49,0.75) 65%,
      rgba(33,77,49,0.5) 100%);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-wrap { padding: 26px; }
  .form-toggle { flex-direction: column; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-close { background: none; border: none; cursor: pointer; padding: 6px; }
.mobile-nav-close svg { width: 24px; height: 24px; }
.mobile-nav ul { list-style: none; margin: 0; padding: 12px 24px; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 16px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--charcoal); }
.mobile-nav .sub-list { padding-left: 14px; }
.mobile-nav .sub-list a { font-size: 0.95rem; font-weight: 500; padding: 12px 4px; color: var(--text-soft); }
.mobile-nav-cta { padding: 20px 24px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
