/* =============================================================
   Ozark Hollows — shared stylesheet
   Used by index.html, construction.html, pest-control.html,
   property-improvement.html
   ============================================================= */

:root {
  --paper:       #f1ebdf;
  --paper-deep:  #e8dfce;
  --ink:         #1e241e;
  --forest:      #2b3a2a;
  --forest-deep: #1a2519;
  --clay:        #b64a29;
  --clay-deep:   #8f3819;
  --rust:        #c0633a;
  --tan:         #a3906c;
  --muted:       #6b6755;

  --display: "Fraunces", "Times New Roman", serif;
  --body:    "Fraunces", "Times New Roman", serif;
  --mono:    "JetBrains Mono", "Menlo", monospace;

  --rule: 1px solid rgba(30, 36, 30, 0.18);

  --wrap-max: 1240px;
  --wrap-pad: 32px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-variation-settings: "opsz" 14, "SOFT" 30;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===== Layout shell ===== */
.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  position: relative;
  z-index: 2;
}

/* ===== Navigation ===== */
nav.top {
  padding: 20px 0 16px;
  border-bottom: var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

nav.top .brand {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

nav.top .brand .mark {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: var(--clay);
}

nav.top ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav.top ul a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 120ms ease, color 120ms ease;
}

nav.top ul a:hover { opacity: 1; color: var(--clay); }

/* Mobile hamburger — pure CSS, no JS */
.menu-toggle { display: none; }

.menu-icon {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--forest-deep);
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}

@media (max-width: 820px) {
  .menu-icon { display: flex; }
  nav.top ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 12px var(--wrap-pad) 18px;
    border-bottom: var(--rule);
    gap: 0;
    z-index: 20;
    align-items: stretch;
  }
  nav.top ul li {
    padding: 0;
    border-bottom: 1px solid rgba(30, 36, 30, 0.1);
  }
  nav.top ul li:last-child { border-bottom: none; }
  nav.top ul a {
    display: block;
    padding: 14px 0;
    opacity: 0.9;
    font-size: 0.78rem;
  }
  .menu-toggle:checked ~ ul {
    display: flex;
  }
  .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* ===== Hero ===== */
.hero {
  padding: 72px 0 80px;
  position: relative;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--muted);
}

.hero .eyebrow .line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  max-width: 180px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--forest-deep);
}

.hero h1 em {
  color: var(--clay);
  font-style: italic;
  font-weight: 500;
}

.hero h1 .amp {
  font-style: italic;
  font-weight: 500;
  color: var(--clay);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  padding: 0 0.05em;
}

.hero h1 .underline {
  position: relative;
  display: inline-block;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 0.04em;
  height: 0.18em;
  background: var(--clay);
  opacity: 0.9;
  z-index: -1;
  transform: skewX(-6deg);
}

.hero h3 {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  color: var(--clay);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 144, "SOFT" 70;
}

.hero .lede {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 32px;
  font-weight: 400;
}

.hero .lede strong { color: var(--forest-deep); font-weight: 600; }

.hero .closer {
  font-style: italic;
  margin: 0 0 28px 0;
  max-width: 620px;
  color: var(--ink);
}

/* Hero side stamp — owner-operator badge */
.stamp {
  position: absolute;
  right: 24px;
  top: 100px;
  width: 160px;
  height: 160px;
  border: 1.5px solid var(--clay);
  border-radius: 50%;
  color: var(--clay);
  display: grid;
  place-items: center;
  transform: rotate(-8deg);
  text-align: center;
  padding: 16px;
  font-family: var(--mono);
  font-size: 0.64rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.95;
}
.stamp strong {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 6px 0;
}
@media (max-width: 1080px) { .stamp { display: none; } }

/* ===== Buttons ===== */
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
}

.btn.primary {
  background: var(--forest-deep);
  color: var(--paper);
  border-color: var(--forest-deep);
}
.btn.primary:hover {
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-1px);
}
.btn.ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn svg { width: 14px; height: 14px; }

/* CTA used on service-pillar pages */
.btn-tick-cta {
  display: inline-block;
  padding: 15px 24px;
  background: var(--clay);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--clay);
  transition: background 0.2s ease, color 0.2s ease;
  margin-bottom: 32px;
  cursor: pointer;
  font-weight: 500;
}
.btn-tick-cta:hover {
  background: transparent;
  color: var(--clay);
}

/* ===== Section header ===== */
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding-top: 56px;
  padding-bottom: 28px;
  border-top: var(--rule);
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--forest-deep);
}

.section-head h2 em {
  color: var(--clay);
  font-style: italic;
  font-weight: 500;
}

.section-head .count { color: var(--muted); }

/* ===== Service pillars (homepage stacked links) ===== */
.service-pillars {
  border-top: var(--rule);
}

.service-pillar {
  display: block;
  padding: 32px 0 28px;
  border-bottom: var(--rule);
  text-decoration: none;
  color: inherit;
  transition: padding-left 220ms ease, background 220ms ease;
}

.service-pillar:hover {
  padding-left: 14px;
  background: rgba(30, 36, 30, 0.02);
}

.service-pillar .kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--clay);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.service-pillar h3 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 10px;
  color: var(--forest-deep);
}

.service-pillar p {
  max-width: 60ch;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1rem;
}

.service-pillar .arrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  opacity: 0.78;
  transition: opacity 120ms ease;
}

.service-pillar:hover .arrow { opacity: 1; }

/* ===== Service list (used on sub-pages) ===== */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  padding-top: 24px;
}

@media (max-width: 640px) {
  .service-list { grid-template-columns: 1fr; gap: 0; }
}

.service-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.service-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(30, 36, 30, 0.15);
  font-size: 1.02rem;
}

/* ===== About band ===== */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  padding: 64px 0 72px;
  border-top: var(--rule);
  align-items: start;
}
@media (max-width: 860px) { .about { grid-template-columns: 1fr; gap: 32px; } }

.about h2 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--forest-deep);
}

.about h2 em {
  color: var(--clay);
  font-style: italic;
  font-weight: 500;
}

.about p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

.about .facts {
  background: var(--forest-deep);
  color: var(--paper);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.about .facts::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(192, 99, 58, 0.35), transparent 55%);
  pointer-events: none;
}

.about .facts h3 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 20px;
  font-weight: 500;
  position: relative;
}

.about .facts dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

.about .facts dt {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 235, 223, 0.6);
  margin-bottom: 4px;
}

.about .facts dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* ===== Process steps ===== */
.process {
  padding: 56px 0 64px;
  border-top: var(--rule);
}

.process h2 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--forest-deep);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

.step {
  border-top: 2px solid var(--clay);
  padding-top: 16px;
}
.step .n {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--clay);
  margin-bottom: 8px;
}
.step h4 {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}
.step p { margin: 0; color: var(--ink); }

/* ===== Pricing band ===== */
.pricing-band {
  padding: 56px 0 64px;
  border-top: var(--rule);
}

.pricing-band h2 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--forest-deep);
}

.pricing-band h2 em {
  color: var(--clay);
  font-style: italic;
  font-weight: 500;
}

.pricing-band .intro {
  max-width: 64ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 40px;
}

.pledges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .pledges { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .pledges { grid-template-columns: 1fr; } }

.pledge {
  border-top: 2px solid var(--clay);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pledge .n {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--clay);
}

.pledge h3 {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 4px;
  color: var(--forest-deep);
}

.pledge p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

/* ===== Habitat & Plans bands (legacy — kept for any page that uses them) ===== */
.habitat-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  padding: 64px 0 72px;
  border-top: var(--rule);
  align-items: start;
}
@media (max-width: 860px) { .habitat-band { grid-template-columns: 1fr; gap: 30px; } }
.habitat-band h2 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--forest-deep);
}
.habitat-band h2 em { color: var(--clay); font-style: italic; font-weight: 500; }
.habitat-band p { font-size: 1.05rem; line-height: 1.6; margin: 0 0 14px; }

.plans-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 64px 0 72px;
  border-top: var(--rule);
  align-items: start;
}
@media (max-width: 860px) { .plans-band { grid-template-columns: 1fr; gap: 30px; } }
.plans-band h2 {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--forest-deep);
}
.plans-band h2 em { color: var(--clay); font-style: italic; font-weight: 500; }
.plans-band p { font-size: 1.05rem; line-height: 1.6; margin: 0 0 14px; }

/* ===== Tick / pest control section ===== */
.tick-section {
  padding: 56px 0 72px;
  border-top: var(--rule);
}

.tick-section .eyebrow-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--clay);
}

.tick-section h2 {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--forest-deep);
}

.tick-section h2 em {
  color: var(--clay);
  font-style: italic;
  font-weight: 500;
}

.tick-section .lede {
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 620px;
  margin: 0 0 28px;
}

.tick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
@media (max-width: 860px) {
  .tick-cards { grid-template-columns: 1fr; gap: 18px; }
}

.tick-card {
  background: var(--paper-deep);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tick-card .label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--clay);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tick-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
}

.assess-block {
  border-left: 3px solid var(--clay);
  padding-left: 24px;
  margin-bottom: 24px;
}

.assess-block p {
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.6;
}

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

.license-line {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.65;
}

/* ===== Contact ===== */
.contact {
  background: var(--forest-deep);
  color: var(--paper);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 10% 0%, rgba(192, 99, 58, 0.25), transparent 60%),
    radial-gradient(45% 70% at 95% 100%, rgba(163, 144, 108, 0.18), transparent 55%);
  pointer-events: none;
}

.contact .wrap { position: relative; }

.contact .eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}

.contact h2 {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 90;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 14ch;
}

.contact h2 em { color: var(--rust); font-style: italic; font-weight: 500; }

.contact .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .contact .grid { grid-template-columns: 1fr; gap: 28px; } }

.contact p.blurb {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 44ch;
  color: rgba(241, 235, 223, 0.85);
  margin: 0 0 26px;
}

.contact .channels {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(241, 235, 223, 0.2);
  transition: border-color 160ms ease, background 160ms ease;
}
.channel:hover { border-color: var(--rust); background: rgba(192, 99, 58, 0.08); }
.channel .label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 235, 223, 0.55);
  margin-bottom: 3px;
}
.channel .val {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: 1.25rem;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.channel svg { width: 24px; color: var(--rust); flex-shrink: 0; }

/* Estimate form */
form.estimate {
  background: rgba(241, 235, 223, 0.04);
  border: 1px solid rgba(241, 235, 223, 0.15);
  padding: 24px;
  display: grid;
  gap: 12px;
}

form.estimate label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 235, 223, 0.6);
  display: block;
  margin-bottom: 5px;
}

form.estimate input,
form.estimate select,
form.estimate textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(241, 235, 223, 0.25);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  padding: 8px 0 10px;
  outline: none;
  transition: border-color 160ms ease;
}

form.estimate input:focus,
form.estimate select:focus,
form.estimate textarea:focus { border-color: var(--rust); }

form.estimate textarea { min-height: 90px; resize: vertical; }

form.estimate select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M1 1l4 4 4-4' stroke='%23f1ebdf' stroke-width='1.4' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
}
form.estimate option { color: var(--ink); background: var(--paper); }

form.estimate .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { form.estimate .row { grid-template-columns: 1fr; } }

form.estimate button {
  margin-top: 8px;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--clay);
  color: var(--paper);
  border: none;
  cursor: pointer;
  transition: background 160ms ease;
}
form.estimate button:hover { background: var(--rust); }

/* ===== Footer ===== */
footer {
  background: var(--paper);
  padding: 32px 0 40px;
  border-top: var(--rule);
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer .brand-sm {
  font-family: var(--display);
  font-weight: 800;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 1.05rem;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}
footer .meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
footer a:hover { color: var(--clay); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 700ms cubic-bezier(0.16, 0.85, 0.35, 1) forwards;
}
.reveal.d1 { animation-delay: 80ms; }
.reveal.d2 { animation-delay: 180ms; }
.reveal.d3 { animation-delay: 280ms; }
.reveal.d4 { animation-delay: 380ms; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
}

/* ===== Responsive — wrap padding shrinks on smaller screens ===== */
@media (max-width: 640px) {
  :root { --wrap-pad: 22px; }
  .hero { padding: 56px 0 64px; }
  .contact { padding: 56px 0 64px; }
  .section-head { padding-top: 44px; padding-bottom: 22px; }
  .about, .habitat-band, .plans-band { padding: 48px 0 56px; }
  .process, .pricing-band { padding: 44px 0 52px; }
  .tick-section { padding: 44px 0 56px; }
  .about .facts { padding: 26px; }
  form.estimate { padding: 20px; }
}
