/* ============================================================
   VAIL WOOD PRODUCTS — style.css
   Mobile-first | Base: 360-430px | md: 768px | lg: 1024px
   ============================================================ */

/* 1. DESIGN TOKENS
-------------------------------------------------------------- */
:root {
  --brown:      #3D1C0B;
  --green:      #2B5F29;
  --brown-mid:  #7B3A14;
  --black:      #111111;
  --cream:      #F5F1EB;
  --white:      #FFFFFF;
  --border:     #D4C4B0;
  --green-dark: #245222;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --touch:   44px;
  --pad:     1rem;
  --max-w:   1200px;
  --radius:  4px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,.15);
  --section-gap: 3rem;
}
@media (min-width: 768px)  { :root { --pad: 1.5rem; --section-gap: 4rem; } }
@media (min-width: 1024px) { :root { --pad: 2rem;   --section-gap: 5rem; } }


/* 2. RESET & BASE
-------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); text-decoration: underline; }
ul, ol { list-style: none; }


/* 3. SKIP LINK
-------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 9999;
  background: var(--green);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; }


/* 4. TYPOGRAPHY
-------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.2;
  color: var(--brown);
}
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-cream  { color: var(--cream) !important; }

.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green);
  margin-bottom: .4rem;
}
.eyebrow-light { color: var(--border); }


/* 5. CONTAINER
-------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}


/* 6. HEADER & NAVIGATION
-------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brown);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.site-logo { height: 52px; width: auto; }

/* Hamburger (default = visible) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  min-height: var(--touch);
  min-width: var(--touch);
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s, opacity .2s;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg)  translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.main-nav {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--brown);
  padding: .5rem 0 1.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  z-index: 99;
}
.main-nav.is-open { display: block; }
.nav-list { display: flex; flex-direction: column; }
.nav-list li a {
  display: flex;
  align-items: center;
  padding: .75rem var(--pad);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 500;
  min-height: var(--touch);
  text-decoration: none;
}
.nav-list li a:hover,
.nav-list li a:focus { color: var(--white); background: rgba(255,255,255,.08); }
.nav-list li a.active { color: var(--white); border-left: 3px solid var(--green); }
.nav-cta {
  background: var(--green) !important;
  margin: .75rem var(--pad) 0 !important;
  border-radius: var(--radius) !important;
  justify-content: center;
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

/* Desktop nav */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .main-nav {
    display: flex !important;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  .nav-list { flex-direction: row; align-items: center; gap: .25rem; }
  .nav-list li a { padding: .5rem .75rem; font-size: .82rem; border-radius: var(--radius); }
  .nav-list li a.active { border-left: none; border-bottom: 2px solid var(--green); }
  .nav-cta { margin: 0 !important; padding: .5rem 1.1rem !important; }
}


/* 7. BUTTONS
-------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: var(--touch);
  padding: .65rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--green);    color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.btn-brown   { background: var(--brown);    color: var(--white); border-color: var(--brown); }
.btn-brown:hover   { background: #2e1508;   border-color: #2e1508; color: var(--white); }
.btn-outline { background: transparent; border-color: var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-outline-light { background: transparent; border-color: var(--cream); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--brown); }
.btn-lg { font-size: 1rem; padding: .85rem 2rem; min-height: 52px; }
.btn-block { width: 100%; text-align: center; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }


/* 8. SECTION SPACING
-------------------------------------------------------------- */
.section    { padding-block: var(--section-gap); }
.section-sm { padding-block: 2rem; }
@media (min-width: 768px) { .section-sm { padding-block: 2.5rem; } }

.section-brown { background: var(--brown); color: var(--cream); }
.section-brown h1, .section-brown h2, .section-brown h3, .section-brown h4 { color: var(--white); }
.section-brown .eyebrow { color: var(--border); }
.section-green { background: var(--green); color: var(--white); }
.section-green h1, .section-green h2, .section-green h3, .section-green h4 { color: var(--white); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

hr.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }


/* 9. HERO (home)
-------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(320px, 55vw, 580px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,28,11,.88) 0%, rgba(43,95,41,.55) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  max-width: 680px;
  padding-block: 3rem;
}
.hero-content h1 { color: var(--white); margin-bottom: .75rem; }
.hero-content p  { color: var(--cream); font-size: clamp(.95rem, 2.5vw, 1.15rem); margin-bottom: 1.5rem; }


/* 10. PAGE HERO (inner pages)
-------------------------------------------------------------- */
.page-hero {
  background: var(--brown);
  padding: 2.5rem var(--pad);
  text-align: center;
}
@media (min-width: 768px) { .page-hero { padding: 3.5rem var(--pad); } }
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero p  { color: var(--cream); max-width: 640px; margin-inline: auto; font-size: 1.05rem; }


/* 11. BREADCRUMB
-------------------------------------------------------------- */
.breadcrumb { background: var(--cream); border-bottom: 1px solid var(--border); padding: .5rem var(--pad); }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem;
  max-width: var(--max-w);
  margin-inline: auto;
  font-size: .8rem;
  color: #777;
}
.breadcrumb a { color: var(--green); }
.breadcrumb .sep { color: #aaa; margin-inline: .1rem; }


/* 12. CARD GRID
-------------------------------------------------------------- */
.grid-2, .grid-3 { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 540px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-family: var(--font-head);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.card-body { padding: 1.25rem; }
.card-body h3 { color: var(--brown); margin-bottom: .5rem; }
.card-body p  { font-size: .9rem; color: #444; margin-bottom: 1rem; }


/* 13. TRUST STRIP
-------------------------------------------------------------- */
.trust-strip { background: var(--brown-mid); padding: 1rem var(--pad); }
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 2rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.trust-icon { font-size: 1rem; }


/* 14. FEATURE LIST
-------------------------------------------------------------- */
.feature-list { margin: .75rem 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .35rem 0;
  font-size: .95rem;
}
.feature-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1em;
}


/* 15. STEPS (How it works)
-------------------------------------------------------------- */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; align-items: flex-start; gap: 1rem; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 { margin-bottom: .25rem; font-size: 1rem; }
.step-content p  { font-size: .9rem; margin: 0; color: #444; }
@media (min-width: 768px) {
  .steps { flex-direction: row; flex-wrap: wrap; }
  .steps .step { flex: 1 1 calc(50% - 1.5rem); }
}
@media (min-width: 1024px) {
  .steps .step { flex: 1 1 0; }
}


/* 16. SPECS TABLE
-------------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.specs-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.specs-table th {
  background: var(--brown);
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .78rem;
  padding: .6rem .85rem;
  text-align: left;
  white-space: nowrap;
}
.specs-table td { padding: .6rem .85rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: rgba(0,0,0,.03); }


/* 17. FAQ ACCORDION
-------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--brown);
  list-style: none;
  min-height: var(--touch);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  line-height: 1;
  color: var(--green);
  flex-shrink: 0;
  font-weight: 300;
  font-family: var(--font-body);
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer {
  padding: 0 1.25rem 1rem;
  font-size: .93rem;
  line-height: 1.7;
  color: #333;
}
.faq-answer p { margin-bottom: .6rem; }
.faq-answer p:last-child { margin-bottom: 0; }


/* 18. CONTACT FORM
-------------------------------------------------------------- */
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-group label {
  font-family: var(--font-head);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--brown);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: var(--touch);
  padding: .65rem .85rem;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: .78rem; color: #666; }
.form-submit { margin-top: .5rem; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #2e7d32;
  font-size: .95rem;
}
.honeypot { display: none !important; visibility: hidden; }


/* 19. GALLERY
-------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
@media (min-width: 768px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: .75rem; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }


/* 20. SERVICE AREA
-------------------------------------------------------------- */
.state-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px)  { .state-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .state-grid { grid-template-columns: repeat(5, 1fr); } }
.state-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.state-abbr {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}
.state-name {
  font-family: var(--font-head);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  display: block;
  margin-bottom: .75rem;
}
.city-list { font-size: .8rem; color: #555; line-height: 1.9; }


/* 21. MAP FACADE
-------------------------------------------------------------- */
.map-wrap { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.map-facade {
  position: absolute;
  inset: 0;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .6rem;
  cursor: pointer;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--brown);
  font-size: .85rem;
  border: none;
  width: 100%;
}
.map-facade-icon { font-size: 2rem; }
.map-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* 22. TURNAROUND LIST
-------------------------------------------------------------- */
.turnaround-list { display: flex; flex-direction: column; gap: .5rem; }
.turnaround-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  gap: 1rem;
}
.turnaround-label { font-family: var(--font-head); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.turnaround-time  { font-family: var(--font-head); font-size: .9rem; color: var(--green); font-weight: 600; white-space: nowrap; }


/* 23. SPECIES COLUMNS
-------------------------------------------------------------- */
.species-group { margin-bottom: 1.5rem; }
.species-group h3 { margin-bottom: .5rem; font-size: 1rem; }
.species-columns { columns: 2; column-gap: 1.5rem; }
@media (min-width: 768px)  { .species-columns { columns: 3; } }
@media (min-width: 1024px) { .species-columns { columns: 4; } }
.species-columns li { break-inside: avoid; padding: .15rem 0; font-size: .9rem; }
.species-columns li::before { content: '— '; color: var(--green); font-weight: 700; }


/* 24. TWO-COLUMN LAYOUT
-------------------------------------------------------------- */
.two-col { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 768px) {
  .two-col          { grid-template-columns: 1fr 1fr; }
  .two-col-60       { grid-template-columns: 3fr 2fr; }
  .two-col-40       { grid-template-columns: 2fr 3fr; }
}


/* 25. CTA BAND
-------------------------------------------------------------- */
.cta-band { background: var(--brown); padding-block: 3rem; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: .5rem; }
.cta-band p  { color: var(--cream); margin-bottom: 1.5rem; max-width: 560px; margin-inline: auto; }


/* 26. PRICING CARD
-------------------------------------------------------------- */
.price-card {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.price-amount {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--brown);
  font-weight: 700;
  line-height: 1;
}
.price-unit { font-size: .85rem; color: #666; margin-top: .25rem; }
.price-includes { margin-top: 1rem; text-align: left; }


/* 27. NAP BLOCK
-------------------------------------------------------------- */
.nap-block { font-size: .95rem; line-height: 2.2; }
.nap-block strong { font-family: var(--font-head); text-transform: uppercase; font-size: .78rem; letter-spacing: .07em; }
.nap-block a { color: var(--green); }
.nap-block a:hover { color: var(--green-dark); }


/* 28. FOOTER
-------------------------------------------------------------- */
.site-footer { background: var(--brown); color: var(--cream); padding-top: 2.5rem; }
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1.5fr 1.5fr; } }
.footer-logo { height: 56px; width: auto; margin-bottom: .75rem; }
.footer-tagline { font-size: .85rem; color: var(--border); line-height: 1.6; margin-bottom: 1rem; }
.footer-heading {
  font-family: var(--font-head);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: .6rem;
}
.footer-links { display: flex; flex-direction: column; gap: .35rem; }
.footer-links a { color: var(--border); font-size: .88rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.footer-contact-block { font-size: .88rem; line-height: 2; }
.footer-contact-block a { color: var(--border); text-decoration: none; }
.footer-contact-block a:hover { color: var(--white); }
.footer-social { display: flex; gap: .6rem; margin-top: .75rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--cream);
  font-size: .85rem;
  text-decoration: none;
  transition: background .2s;
}
.footer-social a:hover { background: var(--green); }
.footer-bottom {
  background: var(--black);
  text-align: center;
  padding: .75rem var(--pad);
  font-size: .78rem;
  color: var(--border);
}
.footer-bottom a { color: var(--border); }


/* 29. UTILITIES
-------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-section { margin-block: var(--section-gap); }

.badge {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}
.badge-green  { background: var(--green);  color: var(--white); }
.badge-brown  { background: var(--brown);  color: var(--white); }
.badge-cream  { background: var(--cream);  color: var(--brown); }


/* 30. PRINT
-------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .cta-band, .map-wrap, .map-facade { display: none; }
  body { font-size: 11pt; color: #000; background: #fff; }
  a { color: #000; }
  h1, h2, h3, h4 { color: #000; }
}
