/* ===================================================================
   Hunter's House Radon — Shared Stylesheet
   Brand: Hunter's House (Palatino + Forest Green + Sage)
   =================================================================== */

:root {
  --forest:        #173D24;
  --deep-forest:   #2B4931;
  --sage:          #A5A975;
  --linen:         #E4E6DD;
  --white:         #FFFFFF;
  --text:          #333333;
  --near-black:    #222222;
  --footer-black:  #1A1B1F;
  --shadow-soft:   0 2px 12px rgba(0,0,0,0.05);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.06);
  --radius-card:   12px;
  --radius-pill:   999px;
  --transition:    all 0.2s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

a { color: var(--forest); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--deep-forest); }

/* -------- Typography -------- */

h1, h2, h3, h4, h5, h6 {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 { font-size: 56px; font-weight: 400; }
h2 { font-size: 35px; font-weight: 700; }
h3 { font-size: 25px; font-weight: 700; }
h4 { font-size: 20px; font-weight: 700; }

.eyebrow {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.eyebrow.on-dark { color: var(--sage); }

.lede {
  font-size: 19px;
  max-width: 720px;
  margin: 0 0 32px;
  opacity: 0.9;
}

p { margin: 0 0 16px; }

/* -------- Layout -------- */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow { max-width: 900px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.alt { background: var(--linen); }

.section-head { max-width: 720px; margin-bottom: 48px; }

/* -------- Nav (floating glass pill over hero) -------- */

.nav-wrap {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav {
  position: relative;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-pill);
  padding: 10px 10px 10px 26px;
  display: flex;
  align-items: center;
  gap: 36px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  max-width: 100%;
}

/* Faint concentric outer ring, like huntershouse.co */
.nav::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  pointer-events: none;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  line-height: 0;
}

.nav-brand:hover { color: var(--deep-forest); }

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

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--forest);
}

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

/* Frosted CTA button inside the glass nav */
.nav .btn-primary {
  background: rgba(165, 169, 117, 0.9);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 12px 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.nav .btn-primary:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* -------- Buttons -------- */

.btn {
  display: inline-block;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--deep-forest);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-on-dark {
  background: var(--white);
  color: var(--forest);
}
.btn-on-dark:hover {
  background: var(--linen);
  color: var(--forest);
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* -------- Hero -------- */

.hero {
  background: var(--forest);
  color: var(--white);
  padding: 124px 0 96px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 64px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin: 16px 0 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  color: var(--white);
  opacity: 0.92;
  font-size: 19px;
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero .btn-row { justify-content: center; }

.hero-tight { padding: 104px 0 72px; }
.hero-tight h1 { font-size: 48px; }

/* -------- Map placeholder -------- */

.map-placeholder {
  background: linear-gradient(135deg, var(--linen) 0%, #d8dcd0 100%);
  border-radius: var(--radius-card);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.05);
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='480' viewBox='0 0 400 480'><g fill='none' stroke='%23173D24' stroke-width='1' opacity='0.18'><path d='M50 50 L350 50 L370 200 L320 400 L150 430 L60 350 L40 200 Z'/><path d='M120 80 L260 80 L290 200 L250 320 L150 340 L100 250 Z'/><path d='M180 150 L240 150 L250 250 L200 290 L160 250 Z'/></g></svg>") center/contain no-repeat;
  opacity: 0.7;
}

.map-placeholder > * { position: relative; }

.map-placeholder-label {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--deep-forest);
  text-transform: uppercase;
  margin-bottom: 12px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.map-placeholder-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-forest);
  margin: 0;
}

.map-placeholder-sub {
  font-size: 14px;
  color: var(--text);
  opacity: 0.75;
  margin-top: 8px;
}

.map-placeholder.compact { height: 320px; }

/* -------- Step cards -------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.step-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--linen);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  margin: 0;
  opacity: 0.85;
}

/* -------- Scorecard / stat grid -------- */

.scorecard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.stat {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-card);
  border: 1px solid var(--linen);
  text-align: center;
}

.stat-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.stat-label {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sage);
}

.stat-note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 6px;
}

/* -------- City / hub link cards -------- */

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.city-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  transition: var(--transition);
}

.city-card:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.city-card-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.city-card-stat {
  font-size: 13px;
  color: var(--text);
  opacity: 0.75;
}

.city-card-stat strong { color: var(--forest); }

/* -------- Two-column content -------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.two-col.uneven { grid-template-columns: 1.3fr 1fr; }

/* -------- Breadcrumbs -------- */

.breadcrumbs {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sage);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--sage);
}

.breadcrumbs a:hover { color: var(--white); }

.breadcrumbs .sep { margin: 0 8px; opacity: 0.6; }

/* On light backgrounds */
.breadcrumbs.dark a { color: var(--deep-forest); }
.breadcrumbs.dark { color: var(--deep-forest); opacity: 0.7; }

/* -------- FAQ -------- */

.faq { max-width: 820px; }

.faq-item {
  border-bottom: 1px solid var(--linen);
  padding: 24px 0;
}

.faq-item:first-child { padding-top: 8px; }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

.faq-a {
  font-size: 16px;
  color: var(--text);
  opacity: 0.88;
  margin: 0;
}

/* -------- Pricing card -------- */

.pricing-card {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  max-width: 520px;
  margin: 0 auto;
}

.pricing-card.featured {
  border: 2px solid var(--forest);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.price {
  font-size: 56px;
  font-weight: 400;
  color: var(--forest);
  margin: 8px 0;
  line-height: 1;
}

.price-unit {
  font-size: 16px;
  color: var(--text);
  opacity: 0.7;
  margin-left: 4px;
}

.includes {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.includes li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
}

.includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}

/* -------- Callouts -------- */

.callout {
  background: var(--white);
  border-left: 4px solid var(--sage);
  padding: 24px 28px;
  border-radius: 8px;
  margin: 32px 0;
  box-shadow: var(--shadow-soft);
}

.callout p:last-child { margin-bottom: 0; }

.callout-dark {
  background: var(--deep-forest);
  color: var(--white);
  border-left: 4px solid var(--sage);
}

.callout-dark .eyebrow { color: var(--sage); }

/* -------- Tables -------- */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}

th {
  background: var(--deep-forest);
  color: var(--white);
  text-align: left;
  padding: 14px 18px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--linen);
  vertical-align: top;
}

tr:nth-child(even) td { background: rgba(228, 230, 221, 0.35); }

/* -------- Footer -------- */

footer {
  background: var(--footer-black);
  color: var(--white);
  padding: 64px 0 32px;
  margin-top: 64px;
}

footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

footer h4 {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sage);
  margin-bottom: 16px;
  font-weight: 700;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li { margin-bottom: 8px; }

footer a {
  color: var(--white);
  opacity: 0.75;
  font-size: 14px;
}

footer a:hover { opacity: 1; color: var(--white); }

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 16px;
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

.footer-county-bar {
  background: var(--deep-forest);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-county-bar .container {
  display: block;
  text-align: center;
}

.footer-county-bar h4 {
  margin-bottom: 16px;
}

.county-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 14px;
}

.county-list a {
  color: var(--white);
  opacity: 0.85;
}

/* -------- Tag pills -------- */

.tag-pill {
  display: inline-block;
  background: var(--linen);
  color: var(--deep-forest);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 6px;
}

.tag-pill.green { background: var(--forest); color: var(--white); }
.tag-pill.sage { background: var(--sage); color: var(--white); }

/* -------- Section ribbon (placeholder marker) -------- */

.placeholder-ribbon {
  background: #fef9e7;
  border-left: 4px solid #d4a017;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  color: #6b5b0e;
  margin: 16px 0;
  font-family: Verdana, Geneva, sans-serif;
}

.placeholder-ribbon strong { font-weight: 700; }

/* -------- Calendly placeholder -------- */

.calendly-placeholder {
  background: var(--white);
  border: 2px dashed var(--sage);
  border-radius: var(--radius-card);
  padding: 80px 40px;
  text-align: center;
  margin: 32px 0;
}

.calendly-placeholder .eyebrow { color: var(--sage); }

/* -------- Geological context block -------- */

.context-block {
  background: var(--linen);
  padding: 36px;
  border-radius: var(--radius-card);
  margin: 32px 0;
}

.context-block h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* -------- Mobile -------- */

@media (max-width: 880px) {
  .nav { padding: 8px 8px 8px 18px; gap: 16px; }
  .nav-links { display: none; }
  .nav-logo { height: 26px; }
  .nav .btn-primary { padding: 10px 20px; }

  .hero h1 { font-size: 38px; letter-spacing: 1px; }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }

  section { padding: 64px 0; }

  .container { padding: 0 20px; }

  .two-col, .two-col.uneven { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .scorecard { grid-template-columns: repeat(2, 1fr); }
  footer .container { grid-template-columns: 1fr 1fr; }

  .map-placeholder { height: 320px; }
}

@media (max-width: 480px) {
  footer .container { grid-template-columns: 1fr; }
  .scorecard { grid-template-columns: 1fr 1fr; }
  .stat-value { font-size: 32px; }
}
