/* ===== Colors & basics ===== */
:root {
  --bg: #fffdf8;          /* snow white */
  --bg-2: #f5efe3;        /* warm cream */
  --panel: #ffffff;
  --line: rgba(23, 61, 42, 0.12);
  --ink: #173d2a;         /* deep evergreen, for headings */
  --text: #26322b;
  --muted: #5d6b63;
  --red: #c8102e;
  --red-dark: #a00c24;
  --green: #1e7a46;
  --green-dark: #14532d;
  --gold: #d4a017;
  --candy: repeating-linear-gradient(-45deg, var(--red) 0 12px, #fff 12px 24px);
  --radius: 18px;
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* decorations poke past the edges; never let them cause sideways scrolling */
main { overflow-x: clip; }

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

h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: 100px 0; }
section.alt { background: var(--bg-2); }

.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 14px;
}
/* a little ornament in front of each section label */
.eyebrow::before {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff8193, var(--red) 55%, var(--red-dark));
  box-shadow: 0 -4px 0 -2px var(--gold);
}
.lead { font-size: 1.12rem; color: var(--muted); margin: 0 0 1.4em; }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }

/* candy-cane stripe along the top edge of a section */
.stripe-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--candy);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font: 700 1rem Inter, sans-serif;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--red);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 10px 26px rgba(200, 16, 46, 0.28);
}
.btn:disabled { opacity: 0.6; cursor: wait; transform: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(23, 61, 42, 0.25); }
.btn-ghost:hover { background: transparent; color: var(--green); border-color: var(--green); box-shadow: none; }
.btn-small { padding: 9px 18px; font-size: 0.92rem; }
.btn-block { width: 100%; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(23, 61, 42, 0.06);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.logo-img { display: block; height: 64px; width: auto; }
.site-footer .logo-img { height: 130px; }

.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a:not(.btn) { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.3rem;
  border-radius: 10px;
  padding: 4px 12px;
  cursor: pointer;
}

/* the string of lights hanging off the header */
.light-string {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 46px;
  overflow: visible;
  pointer-events: none;
}

/* glow adds light to what's behind it, like a real bulb */
.light-string .glow { mix-blend-mode: screen; }

/* ===== Twinkle ===== */
.bulb { animation: twinkle 3s ease-in-out infinite; }
@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* ===== Hero ===== */
.hero {
  padding: 110px 0 170px;
  color: #fff;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(20, 0, 4, 0.6) 100%),
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(170, 20, 45, 0.4), transparent 70%),
    linear-gradient(160deg, #560713 0%, #74091c 45%, #36040b 100%);
  overflow: hidden;
}
/* soft out-of-focus Christmas lights around the edges */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 4% 70%, rgba(255, 210, 120, 0.5) 0 12px, transparent 30px),
    radial-gradient(circle at 9% 86%, rgba(255, 180, 90, 0.4) 0 18px, transparent 42px),
    radial-gradient(circle at 16% 95%, rgba(255, 90, 90, 0.35) 0 14px, transparent 36px),
    radial-gradient(circle at 27% 90%, rgba(255, 220, 150, 0.35) 0 8px, transparent 22px),
    radial-gradient(circle at 38% 97%, rgba(120, 220, 140, 0.25) 0 10px, transparent 28px),
    radial-gradient(circle at 52% 92%, rgba(255, 210, 120, 0.4) 0 12px, transparent 30px),
    radial-gradient(circle at 63% 98%, rgba(255, 120, 120, 0.3) 0 16px, transparent 40px),
    radial-gradient(circle at 76% 90%, rgba(255, 220, 150, 0.45) 0 10px, transparent 26px),
    radial-gradient(circle at 88% 84%, rgba(255, 190, 90, 0.45) 0 16px, transparent 40px),
    radial-gradient(circle at 95% 70%, rgba(255, 210, 120, 0.5) 0 10px, transparent 26px),
    radial-gradient(circle at 97% 40%, rgba(255, 200, 110, 0.35) 0 12px, transparent 30px),
    radial-gradient(circle at 92% 22%, rgba(255, 230, 170, 0.35) 0 6px, transparent 18px),
    radial-gradient(circle at 3% 35%, rgba(255, 200, 110, 0.35) 0 9px, transparent 24px),
    radial-gradient(circle at 7% 15%, rgba(255, 230, 170, 0.3) 0 5px, transparent 16px),
    radial-gradient(circle at 46% 30%, rgba(255, 230, 170, 0.1) 0 30px, transparent 70px),
    radial-gradient(ellipse 100% 45% at 50% 100%, rgba(255, 170, 80, 0.18), transparent 70%);
}
.snow { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); color: #fff; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25); }
.hero h1 em { position: relative; display: inline-block; color: #f7c75a; text-shadow: 0 0 26px rgba(255, 200, 90, 0.45); }
/* hand-drawn gold swash under "You get the glow." */
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: -0.16em;
  height: 0.22em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'%3E%3Cpath d='M4 15C70 6 170 3 296 9' fill='none' stroke='%23f7c75a' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.hero .lead { color: rgba(255, 255, 255, 0.88); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(23, 61, 42, 0.08);
  margin: 0 0 22px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(30, 122, 70, 0.6);
  animation: twinkle 2s ease-in-out infinite;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero-points li { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.92); font-size: 0.95rem; }
.hero-points svg { flex: none; width: 24px; height: 24px; color: #f7c75a; }

/* hero badge and buttons, tuned for the red background */
.hero .badge { color: #fff; background: rgba(0, 0, 0, 0.18); border: 1.5px solid #e7b64a; box-shadow: none; }
.badge-icon { width: 18px; height: 18px; flex: none; color: #f7c75a; }
.hero .btn:not(.btn-ghost) {
  background: linear-gradient(180deg, #e0243f, #b50f29);
  border-color: rgba(255, 180, 180, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.3);
}
.hero .btn-ghost { color: #fff; background: rgba(8, 28, 18, 0.55); border-color: rgba(255, 255, 255, 0.35); }
.hero .btn-ghost:hover { color: #f7c75a; border-color: #f7c75a; }

.hero-art { position: relative; }
.hero-photo {
  position: relative;
  margin: 0 auto;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid #e7b64a;
  box-shadow: 0 0 0 1px rgba(255, 215, 120, 0.4), 0 0 44px rgba(255, 190, 80, 0.35), 0 30px 60px rgba(0, 0, 0, 0.45);
  transform: rotate(-1.5deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.hero-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

/* wavy snowbank where the hero meets the next section */
.snowbank { position: absolute; left: 0; bottom: -1px; z-index: 1; width: 100%; height: 70px; fill: var(--bg-2); }

/* ===== Pine sprigs (drawn by script.js) ===== */
.pine { position: absolute; z-index: 3; width: 180px; height: auto; aspect-ratio: 200 / 90; overflow: visible; pointer-events: none; }
.pine-photo { top: -40px; left: -48px; }
.pine-card { top: -34px; right: -30px; width: 140px; transform: scaleX(-1); }
.pine-form { top: -38px; right: -34px; transform: scaleX(-1); }
/* bigger branches framing the hero, behind the text */
.pine-hero { z-index: 0; width: 360px; }
.ph-1 { left: -70px; bottom: 40px; transform: rotate(-12deg); }
.ph-2 { right: -70px; bottom: 60px; transform: scaleX(-1) rotate(-10deg); }
.ph-3 { left: -150px; top: 42%; width: 300px; transform: rotate(78deg); }
.ph-4 { right: -90px; top: 20px; width: 300px; transform: scaleX(-1) rotate(24deg); }

/* ===== Steps ===== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(23, 61, 42, 0.05);
}
.step p { color: var(--muted); margin: 0; font-size: 0.97rem; }
.step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.3);
}

/* ===== Packages ===== */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px 28px;
  box-shadow: 0 10px 30px rgba(23, 61, 42, 0.06);
}
.card.featured {
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: 0 24px 60px rgba(200, 16, 46, 0.14);
}
.card.featured::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 10px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--candy);
}
.ribbon {
  position: absolute;
  top: -13px;
  left: 28px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(200, 16, 46, 0.3);
}
.price { font-family: Fraunces, Georgia, serif; font-weight: 800; font-size: 2.8rem; line-height: 1; color: var(--ink); margin: 0 0 12px; }
.price small { font: 500 0.9rem Inter, sans-serif; color: var(--muted); margin-right: 4px; }
.plan-price { margin: -2px 0 14px; font-size: 0.9rem; font-weight: 600; color: var(--green); }
.card-desc { color: var(--muted); margin: 0 0 22px; }
.checks { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.checks li { position: relative; padding: 7px 0 7px 28px; border-top: 1px solid var(--line); font-size: 0.97rem; }
.checks li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--green);
  font-weight: 700;
}
.fine-print { text-align: center; color: var(--muted); font-size: 0.92rem; max-width: 620px; margin: 36px auto 0; }
.fine-print a { color: var(--red); }

/* 3-year plan banner under the package cards */
.plan-banner {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 122, 70, 0.3);
  background:
    radial-gradient(ellipse 60% 120% at 0% 50%, rgba(30, 122, 70, 0.1), transparent 70%),
    #f1f8f3;
}
.plan-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.plan-banner h3 { font-size: 1.6rem; margin: 0 0 6px; }
.plan-banner p { margin: 0; color: var(--muted); }
.plan-points { list-style: none; margin: 0; padding: 0; }
.plan-points li { position: relative; padding: 4px 0 4px 26px; font-size: 0.95rem; }
.plan-points li::before { content: "✓"; position: absolute; left: 2px; color: var(--green); font-weight: 700; }

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tile {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(23, 61, 42, 0.08);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.tile:hover img { transform: scale(1.04); }
.tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 12px;
  border-radius: 999px;
}

/* "your house could be next" strip at the end of the gallery */
.cta-tile {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  text-decoration: none;
  background: linear-gradient(135deg, #ffffff 0%, #fdeff1 100%);
  transition: border-color 0.2s;
}
.cta-tile:hover { border-color: var(--red); }
.cta-text { flex: 1; }
.cta-tile h3 { font-size: 1.6rem; margin: 0 0 4px; }
.cta-tile p { color: var(--muted); margin: 0; }
.cta-star { font-size: 2.2rem; line-height: 1; color: var(--gold); }

/* ===== Service area ===== */
.towns {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 860px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.towns li {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-head { position: sticky; top: 130px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { margin: 0 0 20px; color: var(--muted); max-width: 60ch; }

/* ===== Quote form (festive red band) ===== */
.quote-section {
  color: #fff;
  background:
    radial-gradient(rgba(255, 255, 255, 0.14) 1.4px, transparent 2px) 0 0 / 26px 26px,
    linear-gradient(160deg, #74091c 0%, #4c0611 100%);
}
.quote-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.quote-grid > * { min-width: 0; }
.quote-info h2 { color: #fff; }
.quote-info .lead { color: rgba(255, 255, 255, 0.86); }
.quote-info .eyebrow { color: #ffd98a; }
.quote-info .eyebrow::before {
  background: radial-gradient(circle at 35% 30%, #fff1b8, var(--gold) 55%, #9c7409);
  box-shadow: 0 -4px 0 -2px #e6e6e6;
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; flex-direction: column; padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, 0.22); }
.contact-list span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.72); }
.contact-list a { text-decoration: none; font-weight: 600; font-size: 1.1rem; color: #fff; overflow-wrap: anywhere; }
.contact-list a:hover { color: #ffd98a; }

.form-card {
  position: relative;
  color: var(--text);
  background: var(--panel);
  border-radius: calc(var(--radius) + 4px);
  padding: 32px;
  box-shadow: 0 30px 80px rgba(60, 0, 10, 0.35);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 7px; margin: 0; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field > span, .field legend { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
fieldset.field { border: 0; padding: 0; }
fieldset.field legend { padding: 0; margin-bottom: 9px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fbf9f4;
  border: 1px solid rgba(23, 61, 42, 0.18);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8a948e; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30, 122, 70, 0.18);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 61, 42, 0.2);
  font-size: 0.92rem;
  color: var(--muted);
  transition: all 0.15s;
  user-select: none;
}
.chip:hover span { border-color: var(--green); color: var(--ink); }
.chip input:checked + span {
  background: rgba(30, 122, 70, 0.1);
  border-color: var(--green);
  color: var(--green-dark);
}
.chip input:focus-visible + span { outline: 2px solid var(--green); outline-offset: 2px; }

.hidden-field { position: absolute; left: -9999px; }
.form-status { margin: 14px 0 0; font-size: 0.95rem; min-height: 1.4em; }
.form-status.error { color: #b00020; }

.form-success { text-align: center; padding: 40px 10px; }
.success-star { font-size: 3rem; color: var(--gold); margin: 0; }
.form-success p { color: var(--muted); }

/* ===== Footer ===== */
.site-footer { position: relative; padding: 58px 0 48px; background: var(--bg-2); }
.footer-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer-grid p { margin: 6px 0 0; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

/* ===== Scroll reveal (only when JS is on) ===== */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid, .faq-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 90px; }
  .hero-art { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-photo { aspect-ratio: 1 / 1; transform: none; }
  .hero-photo img { object-position: 50% 30%; }
  .pine-photo { top: -30px; left: -18px; width: 140px; }
  .ph-3 { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .packages { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan-banner { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .faq-head { position: static; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 24px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(23, 61, 42, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li a:not(.btn) { display: block; padding: 12px 0; font-size: 1.05rem; }
  .nav-links .btn { margin-top: 10px; width: 100%; }
}

@media (max-width: 620px) {
  section { padding: 72px 0; }
  .hero { padding-bottom: 120px; }
  .logo-img { height: 52px; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .cta-tile { flex-direction: column; align-items: flex-start; gap: 14px; }
  .form-card { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .pine { width: 120px; }
  .pine-card, .pine-form { right: -12px; }
  .pine-hero { width: 210px; }
  .ph-1 { left: -60px; bottom: 30px; }
  .ph-2 { right: -60px; bottom: 40px; }
  .ph-4 { display: none; }
  .hero h1 em { display: inline; }
  .hero h1 em::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bulb, .dot { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Town page additions ===== */
.prose {
  max-width: 68ch;
  margin: 0 auto;
}
.prose p {
  margin: 0 0 1.1em;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}
.prose p:last-child { margin-bottom: 0; }
.prose .rec {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  border-left: 4px solid var(--green);
  font-size: 1rem;
}
.prose .rec strong { color: var(--ink); }

/* town pills that are links */
.towns li a {
  display: block;
  margin: -8px -16px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(30, 122, 70, 0.35);
  text-underline-offset: 3px;
}
.towns li a:hover { text-decoration-color: var(--green); }
.towns li:has(a) { padding: 0; transition: border-color .15s ease, background .15s ease; }
.towns li:has(a):hover { border-color: var(--green); background: #fff; }
