:root {
  --green-dark: #0d3d24;
  --green-main: #1a5c38;
  --green-mid: #2a7a4f;
  --green-light: #e8f5ee;
  --green-border: #c5e8d4;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #faf8f3;
  --dark: #0e1f14;
  --text-main: #1c2e22;
  --text-sub: #4a6357;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text-main);
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: .92; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; }
h3 { font-size: 1.45rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.section { padding: clamp(70px, 9vw, 120px) 0; }
.muted-section { background: white; }
.dark-section {
  background: var(--dark);
  color: white;
  position: relative;
}
.dark-section .info-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.13); color: white; }
.section-kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  margin-bottom: 14px;
}
.text-link { color: var(--green-main); font-weight: 700; }
.narrow { max-width: 760px; }

.site-nav {
  background: var(--dark);
  border-bottom: 1px solid rgba(201,168,76,.25);
  padding: 12px 0;
}
.navbar-toggler { border-color: rgba(255,255,255,.25); }
.navbar-toggler-icon { filter: invert(1); }
.site-nav .nav-link { color: rgba(255,255,255,.78); font-weight: 600; }
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--gold-light); }
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}
.brand-lockup strong { color: var(--gold); }
.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green-main);
  color: var(--gold-light);
  overflow: hidden;
}
.brand-image-mark {
  width: 70px;
  height: 56px;
  background:
    linear-gradient(145deg, rgba(13,61,36,.96), rgba(14,31,20,.88)),
    radial-gradient(circle at 18% 12%, rgba(232,201,106,.16), transparent 46%);
  border: 1.5px solid rgba(232,201,106,.95);
  border-radius: 12px;
  padding: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 -10px 22px rgba(0,0,0,.18),
    0 12px 28px rgba(0,0,0,.30),
    0 0 0 4px rgba(201,168,76,.10);
  backdrop-filter: blur(10px);
}
.brand-image-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

.hero-section {
  min-height: calc(100vh - 74px);
  background-color: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 46px 46px;
}
.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: 8%;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,122,79,.8), transparent 65%);
  animation: pulseGlow 5s ease-in-out infinite;
}
.hero-grid {
  min-height: calc(100vh - 74px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr);
  align-items: center;
  gap: 48px;
}
.hero-copy p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.stats-row { display: flex; flex-wrap: wrap; gap: 18px; color: rgba(255,255,255,.78); }
.stats-row span { border-left: 2px solid var(--gold); padding-left: 12px; }
.stats-row strong { color: white; display: block; font-size: 1.35rem; }
.hero-cards { display: grid; gap: 18px; }
.floating-card {
  padding: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}
.floating-card i { color: var(--gold); font-size: 1.6rem; }
.floating-card strong, .floating-card span { display: block; }
.floating-card span { color: rgba(255,255,255,.7); }

.ticker { overflow: hidden; background: var(--green-dark); color: white; border-block: 1px solid rgba(201,168,76,.35); }
.ticker div { display: flex; gap: 42px; width: max-content; padding: 16px 0; animation: ticker 22s linear infinite; }
.ticker span { color: var(--gold-light); font-weight: 700; white-space: nowrap; }

.two-col, .detail-grid, .contact-grid, .warranty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 76px); align-items: center; }
.image-panel, .map-panel {
  min-height: 420px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--gold-light);
  display: grid;
  place-items: center;
  position: relative;
}
.image-panel i, .map-panel i { font-size: 7rem; opacity: .86; }
.about-image-panel { overflow: hidden; }
.about-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.years-badge, .map-panel span {
  position: absolute;
  left: 22px;
  top: 22px;
  background: white;
  color: var(--green-dark);
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
}
.feature-grid, .card-grid { display: grid; gap: 18px; }
.feature-grid { grid-template-columns: repeat(2, 1fr); margin: 24px 0; }
.feature-grid div { background: white; border: 1px solid var(--green-border); border-radius: 8px; padding: 18px; }
.feature-grid span { display: block; color: var(--text-sub); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.section-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 22px; }

.page-hero {
  background: var(--dark);
  color: white;
  padding: clamp(76px, 10vw, 130px) 0;
  position: relative;
}
.page-hero p { max-width: 700px; color: rgba(255,255,255,.72); font-size: 1.15rem; }

.supply-section { background: var(--green-light); }
.district-list { display: flex; flex-wrap: wrap; gap: 10px; }
.district-list span { background: white; border: 1px solid var(--green-border); border-radius: 999px; padding: 8px 14px; color: var(--green-dark); font-weight: 600; }
.supply-map-card {
  min-height: 420px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(232,201,106,.2), transparent 18%),
    linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: white;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,168,76,.32);
  box-shadow: 0 24px 55px rgba(13,61,36,.18);
}
.map-panel-badge {
  position: absolute;
  left: 22px;
  top: 22px;
  background: white;
  color: var(--green-dark);
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
  z-index: 3;
}
.map-rings {
  position: absolute;
  inset: 40px;
  display: grid;
  place-items: center;
}
.map-rings span {
  position: absolute;
  border: 1px solid rgba(232,201,106,.35);
  border-radius: 50%;
}
.map-rings span:nth-child(1) { width: 32%; aspect-ratio: 1; }
.map-rings span:nth-child(2) { width: 58%; aspect-ratio: 1; }
.map-rings span:nth-child(3) { width: 84%; aspect-ratio: 1; }
.map-center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--gold-light);
}
.map-center i { font-size: 4rem; filter: drop-shadow(0 14px 24px rgba(0,0,0,.28)); }
.map-center strong { color: white; font-size: 1.05rem; }
.map-districts {
  position: absolute;
  inset: 80px 54px 42px;
  pointer-events: none;
}
.map-districts span {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 800;
  color: rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
}
.map-districts span:nth-child(1) { left: 7%; top: 18%; }
.map-districts span:nth-child(2) { right: 10%; top: 16%; }
.map-districts span:nth-child(3) { left: 12%; bottom: 24%; }
.map-districts span:nth-child(4) { right: 8%; bottom: 26%; }
.map-districts span:nth-child(5) { left: 42%; top: 4%; }
.map-districts span:nth-child(6) { left: 40%; bottom: 2%; }
.map-districts span:nth-child(7) { left: 2%; top: 48%; }
.map-districts span:nth-child(8) { right: 1%; top: 50%; }

.cta-band { background: var(--dark); color: white; padding: 56px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band .btn { margin-right: 10px; }

.site-footer { background: var(--dark); color: rgba(255,255,255,.72); padding: 70px 0 24px; }
.site-footer h3 { color: white; font-size: 1.2rem; }
.site-footer a { display: block; color: rgba(255,255,255,.72); margin-bottom: 8px; }
.site-footer a:hover { color: var(--gold-light); }
.footer-brand {
  color: white !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px;
  font-size: 1.42rem;
  line-height: 1;
  margin-bottom: 0;
}
.social-row { display: flex; gap: 12px; }
.social-row a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 20px; font-size: .9rem; }

@media (max-width: 991px) {
  .hero-grid, .two-col, .detail-grid, .contact-grid, .warranty-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 80px 12px; }
  .card-grid.three, .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .navbar-collapse { padding-top: 18px; min-height: calc(100vh - 72px); }
}
@media (max-width: 640px) {
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .container {
    max-width: 100%;
  }
  .section { padding: 64px 0; }
  .card-grid.three, .card-grid.four, .feature-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 56px 0 72px; }
  .page-hero h1 { font-size: 3rem; }
  .detail-grid,
  .detail-grid > *,
  .gallery-panel,
  .detail-copy {
    min-width: 0;
    width: 100%;
  }
  .detail-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    line-height: .95;
    overflow-wrap: anywhere;
  }
  .detail-copy .lead {
    font-size: 1rem;
    line-height: 1.45;
  }
  .product-hero-actions {
    align-items: start;
  }
  .product-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-actions .btn, .cta-band .btn { width: 100%; margin-right: 0; }
  .image-panel, .map-panel { min-height: 300px; }
}
