/* ============================================================
   LocalHowl design system. Brand tokens injected at build time
   from config.py (4 Seasons Landscaping: green #447F3B, forest
   #1C2A1E, sage #E9F1DE, Oswald/Open Sans). Generic token names
   kept for kit compatibility: --red = primary, --blue-deep = dark.
   ============================================================ */

:root {
  --red: #447F3B;
  --red-dark: #35652E;
  --blue: #35652E;
  --blue-deep: #1C2A1E;
  --blue-mid: #2A3F2D;
  --light: #E9F1DE;
  --white: #FFFFFF;
  --ink: #1B241C;
  --ink-soft: #475548;
  --line: #DDE8D8;
  --gold: #F5B324;
  /* Four-leaf signature colors, sampled from the logo pinwheel (the four seasons) */
  --leaf-blue: #12A9C8;
  --leaf-red: #E62128;
  --leaf-orange: #F28D3F;
  --leaf-green: #447F3B;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 2px 8px rgba(22, 40, 24, 0.06), 0 8px 24px rgba(22, 40, 24, 0.06);
  --shadow-hover: 0 8px 16px rgba(22, 40, 24, 0.10), 0 20px 48px rgba(22, 40, 24, 0.18);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Accessibility: skip link + visible keyboard focus (WCAG 2.2 AA) */
.skip-link {
  position: absolute;
  left: 16px;
  top: -200px;
  z-index: 1000;
  background: var(--red);
  color: #fff;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  transition: top 0.18s ease;
}
.skip-link:focus { top: 0; text-decoration: none; outline: 3px solid var(--gold); outline-offset: 2px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
[tabindex="-1"]:focus { outline: none; }

h1, h2, h3, h4 {
  font-family: "Oswald", Georgia, serif;
  color: var(--blue-deep);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(38px, 6.5vw, 78px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 600; }

p { max-width: 65ch; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 18px;
}
.section-head.center h2::after { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); }
.btn-outline { background: rgba(255,255,255,0.06); color: var(--white); border-color: rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.btn-outline:hover { border-color: var(--white); color: var(--white); }
.btn-outline-green { background: var(--white); color: var(--red-dark); border-color: var(--red); }
.btn-outline-green:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-secondary { background: var(--blue-deep); color: var(--white); }
.btn-secondary:hover { background: var(--blue-mid); color: var(--white); }

/* ---------- Thank-you page ---------- */
.thanks-hero {
  background: var(--light);
  padding: 96px 0;
}
.thanks-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 48px;
  text-align: center;
}
.thanks-card h1 {
  margin: 12px 0 18px;
  color: var(--blue-deep);
}
.thanks-card p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 auto 16px;
  max-width: 560px;
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 28px 0 8px;
}
.thanks-note {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 18px;
}
@media (max-width: 600px) {
  .thanks-hero { padding: 64px 0; }
  .thanks-card { padding: 32px 22px; }
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); font-weight: 600; }
.topbar .hours { display: none; }

/* ---------- Header (frosted glass) ---------- */
.site-header {
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221,232,216,0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(22,40,24,0.10); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 112px;
  transition: min-height 0.25s ease;
}
.site-header.scrolled .container { min-height: 88px; }

/* Typographic wordmark */
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark:hover { text-decoration: none; }
.wm-name {
  font-family: "Oswald", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--blue-deep);
  letter-spacing: 0.01em;
}
.wm-name i { font-style: normal; color: var(--red); }
.wm-sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Nav + dropdown */
.nav { display: flex; align-items: center; gap: 28px; }
.nav > a, .nav-item > a {
  position: relative;
  color: var(--blue-deep);
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  display: inline-block;
  white-space: nowrap;
}
/* Elevation: a green underline that wipes in on hover / current page */
.nav > a::before, .nav-item > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.nav > a:hover::before,
.nav-item > a:hover::before,
.nav > a[aria-current="page"]::before,
.nav-item > a[aria-current="page"]::before { transform: scaleX(1); }
.nav > a:hover, .nav-item > a:hover { color: var(--red); text-decoration: none; }
.nav > a[aria-current="page"], .nav-item > a[aria-current="page"] { color: var(--red); }

.nav-item { position: relative; }
.nav-item > a::after { content: " ▾"; font-size: 11px; color: var(--ink-soft); }
.drop {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 240px;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-item:hover .drop, .nav-item:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.drop a {
  display: block;
  padding: 10px 20px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 500;
}
.drop a:hover { background: var(--light); color: var(--red); text-decoration: none; }
.drop a.drop-all {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-weight: 600;
}

/* Mega menu: wide descriptive panel (extends .drop) */
.drop.mega {
  left: auto;
  width: min(620px, calc(100vw - 48px));
  padding: 0;
  overflow: hidden;
}
.nav-item.mega-right .drop.mega { right: -16px; }
.mega-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: var(--light);
  border-bottom: 1px solid var(--line);
}
.mega-head .mega-title { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 16px; color: var(--blue-deep); margin: 0 0 4px; }
.mega-head .mega-body { font-size: 13px; line-height: 1.5; color: var(--ink-soft); margin: 0; max-width: 42ch; }
.mega-head .mega-cta { flex: none; white-space: nowrap; font-weight: 600; font-size: 13px; color: var(--red); padding-top: 2px; }
.mega-head .mega-cta:hover { text-decoration: underline; }
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 0;
  padding: 8px;
}
.mega-grid a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--blue-deep);
}
.mega-grid a:hover { background: var(--light); text-decoration: none; }
.mega-grid a .mi-title { display: block; font-weight: 600; font-size: 14px; color: var(--blue-deep); }
.mega-grid a:hover .mi-title { color: var(--red); }
.mega-grid a .mi-desc { display: block; font-size: 12px; line-height: 1.45; color: var(--ink-soft); margin-top: 2px; }
.mega-foot {
  display: flex;
  border-top: 1px solid var(--line);
}
.mega-foot a {
  flex: 1;
  text-align: center;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 13px;
  color: var(--red);
}
.mega-foot a:hover { background: var(--light); text-decoration: none; }

.header-cta { white-space: nowrap; padding: 12px 24px; font-size: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--blue-deep);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
  background: var(--blue-deep);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.06) contrast(1.02);
}
/* directional scrim: text-safe left, photo stays the star on the right */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, color-mix(in srgb, var(--blue-deep) 55%, transparent), transparent 32%),
    linear-gradient(100deg,
      color-mix(in srgb, var(--blue-deep) 90%, transparent) 0%,
      color-mix(in srgb, var(--blue-deep) 62%, transparent) 38%,
      color-mix(in srgb, var(--blue-deep) 24%, transparent) 68%,
      color-mix(in srgb, var(--blue-deep) 8%, transparent) 100%);
}
.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.95);
  background: rgba(10,16,11,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  max-width: 52ch;
}
@media (max-width: 760px) { .hero-caption { display: none; } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--grain);
  opacity: 0.05;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); max-width: 15ch; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .sub {
  color: rgba(255,255,255,0.9);
  font-size: clamp(18px, 2.2vw, 21px);
  max-width: 52ch;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-trust { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; }
.hero-trust .item {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }
.hero-trust strong { color: var(--white); }

/* ---------- Trust / stats bar ---------- */
.trust-bar { background: var(--light); padding: 56px 0; border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-grid .stat .num {
  font-family: "Oswald", Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
/* Each stat carries one leaf color (the four seasons) */
.trust-grid .stat:nth-child(1) .num { color: var(--leaf-blue); }
.trust-grid .stat:nth-child(2) .num { color: var(--leaf-red); }
.trust-grid .stat:nth-child(3) .num { color: var(--leaf-orange); }
.trust-grid .stat:nth-child(4) .num { color: var(--leaf-green); }
.trust-grid .stat .label {
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 8px;
  font-weight: 500;
}

/* ---------- Section headers ---------- */
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; color: var(--ink-soft); }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Category cards (line icons) ---------- */
.categories { background: var(--white); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); text-decoration: none; border-color: transparent; }
.cat-card:hover::before { opacity: 1; }
.cat-card .icon {
  width: 56px;
  height: 56px;
  color: var(--red);
  background: var(--light);
  border-radius: 14px;
  padding: 12px;
}
.cat-card h3 { font-size: 22px; }
.cat-card p { font-size: 15px; color: var(--ink-soft); }
.cat-card .link {
  margin-top: auto;
  font-weight: 600;
  font-size: 15px;
  color: var(--red);
}

/* Motor type chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 44px;
}
.chip {
  background: var(--light);
  border: 1px solid var(--line);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.chip:hover { background: var(--blue-deep); color: var(--white); text-decoration: none; transform: translateY(-2px); }

/* ---------- Match section (dark, grain) ---------- */
.match {
  position: relative;
  background: var(--blue-deep);
  color: rgba(255,255,255,0.88);
  overflow: hidden;
}
.match::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 85% 15%, rgba(45,20,166,0.5), transparent 65%),
    radial-gradient(ellipse 500px 400px at 10% 90%, rgba(200,24,11,0.18), transparent 60%);
}
.match::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.05;
  pointer-events: none;
}
.match .container { position: relative; z-index: 1; }
.match .split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.match h2 { color: var(--white); }
.match h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 18px;
}
.match p { margin-top: 18px; color: rgba(255,255,255,0.84); }
.match .eyebrow { color: var(--gold); }
.match ul { list-style: none; margin-top: 24px; }
.match li { padding: 10px 0 10px 34px; position: relative; font-size: 16px; }
.match li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.match .btn { margin-top: 32px; }

/* Duotone photo with offset red frame */
.photo-frame { position: relative; }
.photo-frame img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  filter: saturate(1.08) contrast(1.03);
  transform: rotate(-1.4deg);
  transition: transform 0.35s ease;
}
.photo-frame:hover img { transform: rotate(0deg) scale(1.02); }
.photo-frame .tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 72%, rgba(28,42,30,0.16));
  pointer-events: none;
  transform: rotate(-1.4deg);
  transition: transform 0.35s ease;
}
.photo-frame:hover .tint { transform: rotate(0deg) scale(1.02); }
.photo-frame::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: 0;
  transform: rotate(1deg);
  transition: transform 0.35s ease;
}
.photo-frame:hover::after { transform: rotate(0deg); }

/* ---------- Before / After ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.ba-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ba-figure:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.ba-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.ba-figure figcaption {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.ba-figure.is-before figcaption { background: rgba(28, 42, 30, 0.82); }
.ba-figure.is-after figcaption { background: var(--red); }
.ba-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(28,42,30,0.18) 0%, transparent 28%);
  pointer-events: none;
}
.ba-caption {
  text-align: center;
  margin: 26px auto 0;
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 15px;
}
.ba-caption strong { color: var(--ink); font-weight: 600; }
@media (max-width: 760px) {
  .ba-grid:not(.is-interactive) { grid-template-columns: 1fr; gap: 18px; }
}

/* Interactive compare slider (JS-upgraded; two-up grid above is the no-JS fallback) */
.ba-grid.is-interactive {
  display: block;
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: ew-resize;
  touch-action: pan-y;
}
.ba-grid.is-interactive .ba-figure {
  border-radius: 0;
  box-shadow: none;
}
.ba-grid.is-interactive .ba-figure:hover { transform: none; box-shadow: none; }
.ba-grid.is-interactive .ba-figure.is-after { position: relative; }
.ba-grid.is-interactive .ba-figure.is-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba-grid.is-interactive .ba-figure.is-before figcaption { left: 16px; right: auto; }
.ba-grid.is-interactive .ba-figure.is-after figcaption { left: auto; right: 16px; }
.ba-grid.is-interactive .ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}
.ba-grid.is-interactive .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(28,42,30,0.18);
}
.ba-handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow), 0 0 0 1px rgba(28,42,30,0.12);
  display: grid;
  place-items: center;
}
.ba-handle-grip::before,
.ba-handle-grip::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.ba-handle-grip::before { left: 12px; transform: translateY(-50%); border-right: 8px solid var(--red); }
.ba-handle-grip::after { right: 12px; transform: translateY(-50%); border-left: 8px solid var(--red); }
.ba-range:focus-visible + .ba-handle .ba-handle-grip {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .ba-grid.is-interactive .ba-figure.is-before { will-change: auto; }
}

/* ---------- Brands marquee ---------- */
.brands { background: var(--white); padding: 80px 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: scroll-x 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  max-height: 44px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s ease;
}
.marquee-track img:hover { filter: grayscale(0) opacity(1); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; gap: 40px; }
}
.brands .more {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--light); }
.agg-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.agg-rating .big-stars { color: var(--gold); font-size: 32px; letter-spacing: 4px; }
.agg-rating .score {
  font-family: "Oswald", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--blue-deep);
}
.agg-rating .count { color: var(--ink-soft); font-size: 16px; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.review-card blockquote { font-size: 16px; color: var(--ink); flex-grow: 1; }
.review-card cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 15px;
}
.review-card cite span { display: block; font-weight: 400; color: var(--ink-soft); font-size: 14px; }
.reviews .actions { text-align: center; margin-top: 52px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-hover); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  font-family: "Oswald", Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--blue-deep);
  position: relative;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer { padding: 0 26px 24px; color: var(--ink-soft); font-size: 16px; }

/* ---------- Visit ---------- */
.visit {
  position: relative;
  overflow: hidden;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 36px 42px;
}
.visit::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--leaf-blue) 0 25%, var(--leaf-red) 25% 50%,
    var(--leaf-orange) 50% 75%, var(--leaf-green) 75% 100%);
}
@media (max-width: 560px) { .visit { padding: 26px 22px 32px; } }
.visit .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.visit .info-block { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(28, 42, 30, 0.12); }
.visit h2 + .info-block, .visit .info-block:first-child { margin-top: 24px; padding-top: 0; border-top: 0; }
.visit .info-block h3 { margin-bottom: 8px; font-size: 18px; }
.visit .info-block p, .visit .info-block li { color: var(--ink-soft); font-size: 16px; }
.visit table { border-collapse: collapse; width: 100%; max-width: 360px; }
.visit td { padding: 6px 0; font-size: 16px; color: var(--ink-soft); }
.visit td:last-child { text-align: right; font-weight: 500; color: var(--ink); }
.visit .map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  margin-top: 12px;
}
.area-list li { padding-left: 22px; position: relative; }
.area-list li::before { content: "›"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(100deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.06;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); max-width: 22ch; margin: 0 auto 14px; }
.cta-band p { color: rgba(255,255,255,0.92); margin: 0 auto 32px; }
.cta-band .btn { background: var(--white); color: var(--red-dark); }
.cta-band .btn:hover { background: var(--light); }
.cta-band .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .cta-actions .btn-outline { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.55); }
.cta-band .cta-actions .btn-outline:hover { background: rgba(255,255,255,0.16); color: var(--white); border-color: var(--white); }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-deep); color: rgba(255,255,255,0.78); padding: 80px 0 32px; font-size: 15px; position: relative; overflow: hidden; }
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.04;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.site-footer h4 { color: var(--white); font-size: 17px; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer .logo-wrap {
  background: var(--white);
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.site-footer .logo-wrap img { height: 40px; width: auto; }
.footer-logo {
  background: var(--white);
  display: inline-block;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
  line-height: 0;
}
.footer-logo img { height: 64px; width: auto; }
.payments { display: flex; gap: 10px; margin-top: 20px; }
.payments img { height: 26px; width: auto; border-radius: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Local Howl credit ---------- */
.footer-credit { text-align: center; padding-top: 14px; font-size: 12px; }
.howl {
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.25s ease;
}
.howl:hover { color: var(--white); text-decoration: underline; }

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(22,40,24,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 12px;
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  min-height: 44px;
}
.sticky-cta .call { background: var(--red); color: var(--white); }
.sticky-cta .find { background: var(--white); color: var(--blue-deep); }
.sticky-cta a:hover { text-decoration: none; }

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .skip-link { transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .topbar .hours { display: inline; }
}

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  section { padding: 72px 0; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-hover);
    padding: 8px 0 16px;
  }
  .nav.open { display: flex; }
  .nav > a, .nav-item > a { padding: 14px 24px; min-height: 44px; display: block; }
  .nav-item > a::after { content: ""; }
  .drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--line);
    border-radius: 0;
    margin-left: 24px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .drop a { padding: 11px 20px; min-height: 44px; }
  /* Mega menu collapses to a simple stacked list on mobile */
  .drop.mega { width: auto; }
  .drop.mega .mega-head { display: none; }
  .drop.mega .mega-grid { display: block; padding: 0; }
  .drop.mega .mega-grid a { padding: 11px 20px; min-height: 44px; border-radius: 0; }
  .drop.mega .mega-grid a .mi-desc { display: none; }
  .drop.mega .mega-foot { display: block; }
  .drop.mega .mega-foot a { text-align: left; padding: 11px 20px; min-height: 44px; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .match .split, .visit .split { grid-template-columns: 1fr; gap: 48px; }
  .photo-frame::after { right: -12px; bottom: -12px; top: 12px; left: 12px; }
  .review-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; padding: 96px 0 80px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
  .wm-name { font-size: 26px; }
}

@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .area-list { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .wm-sub { display: none; }
}

/* ---------- Open Sansior pages (v4 site build) ---------- */
.hero-interior { min-height: 58vh; padding: 110px 0 88px; }
.hero-interior h1 { font-size: clamp(32px, 4.6vw, 56px); max-width: 20ch; }
.hero-interior .sub { margin-bottom: 32px; }
.hero-interior .hero-ctas { margin-bottom: 0; }
.info-block h3 { margin-bottom: 8px; font-size: 18px; }
.info-block p, .info-block li { color: var(--ink-soft); font-size: 16px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); }
.prose p strong { color: var(--ink); }
.prose a { font-weight: 600; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; margin-top: 28px; }
.contact-form label { display: block; font-weight: 600; font-size: 14px; color: var(--ink); }
.contact-form label:has(textarea), .contact-form label:has(select), .contact-form button, .contact-form p { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea, .contact-form select {
  display: block; width: 100%; margin-top: 8px; padding: 13px 14px;
  font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23447F3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.contact-form select:has(option:checked[value=""]) { color: #93A395; }
.contact-form textarea { resize: vertical; min-height: 132px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #93A395; }
.contact-form button { justify-self: start; margin-top: 6px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.contact-form input[aria-invalid="true"], .contact-form textarea[aria-invalid="true"] { border-color: #B0463A; box-shadow: 0 0 0 2px rgba(176,70,58,0.18); }
.contact-form button[disabled] { opacity: 0.7; cursor: progress; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr !important; gap: 44px !important; }
  .hero-interior { padding: 80px 0 64px; }
}
@media (max-width: 560px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease; color: var(--ink);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); text-decoration: none; }
.post-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.post-date { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.post-card h3 { font-size: 20px; line-height: 1.25; }
.post-card p { font-size: 15px; color: var(--ink-soft); }
.post-card .link { margin-top: auto; font-weight: 600; font-size: 15px; color: var(--red); }
.post-body { max-width: 760px; margin: 0 auto; }
.post-body h2 { margin: 36px 0 14px; }
.post-body p { margin-bottom: 16px; color: var(--ink-soft); }
.post-body ul, .post-body ol { margin: 0 0 16px 24px; color: var(--ink-soft); }
.post-body li { margin-bottom: 8px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-link {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 10px; color: var(--ink);
  box-shadow: var(--shadow); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.related-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); text-decoration: none; }
.related-link h3 { font-size: 19px; line-height: 1.3; }
.related-link .link { margin-top: auto; font-weight: 600; font-size: 15px; color: var(--red); }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ---------- Gallery grid (sourced: Flowbite free gallery block pattern, MIT; Tailwind converted to kit tokens) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.65), transparent);
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Blog post-card thumbnails (Phase 2 visual upgrade) ---------- */
.post-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ==================== DESIGN POP PASS (greenthumb-inspired, token-driven) ==================== */

/* Organic torn-edge dividers */
.tear { line-height: 0; position: relative; z-index: 3; }
.tear svg { display: block; width: 100%; height: 44px; }
.tear-hero { margin-top: -1px; }
.tear-hero svg path { fill: var(--blue-deep); }
.tear-band { margin-bottom: -1px; }
.tear-band svg path { fill: var(--red); }

/* Bigger, bolder type scale */
h2 { font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -0.01em; }
.hero-interior h1 { font-size: clamp(36px, 5vw, 62px); }
.section-head { margin-bottom: 48px; }

/* Eyebrow accent rule: four-leaf signature (blue, red, orange, green = the four seasons) */
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--leaf-blue) 0 25%,
    var(--leaf-red) 25% 50%,
    var(--leaf-orange) 50% 75%,
    var(--leaf-green) 75% 100%
  );
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}

/* Four-leaf section divider (the logo pinwheel: blue, red, orange, green) */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 8px auto 44px;
  max-width: 320px;
}
.leaf-divider::before,
.leaf-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line));
}
.leaf-divider::after { background: linear-gradient(to left, transparent, var(--line)); }
.leaf-divider img { width: 30px; height: 30px; display: block; flex: none; }
section[style*="--blue-deep"] .leaf-divider::before { background: linear-gradient(to right, transparent, rgba(255,255,255,0.22)); }
section[style*="--blue-deep"] .leaf-divider::after { background: linear-gradient(to left, transparent, rgba(255,255,255,0.22)); }

/* Giant decorative quote on review bands */
.reviews .container { position: relative; }
.reviews .container::before {
  content: "\201C";
  display: block;
  text-align: center;
  font-family: "Oswald", Georgia, serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 0.55;
  color: var(--red);
  opacity: 0.3;
  margin-bottom: 4px;
}

/* Stat numbers bigger */
.trust-grid .stat .num { font-size: 64px; }

/* Card icons: green circle chips */
.cat-card .icon {
  border-radius: 50%;
  background: var(--light);
  color: var(--red);
}
.cat-card:hover .icon { background: var(--red); color: #fff; transition: background 0.25s ease, color 0.25s ease; }

/* Buttons: lift + arrow nudge */
.btn { transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px color-mix(in srgb, var(--red) 35%, transparent); }

/* Checkmark bullets in prose */
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { padding: 8px 0 8px 32px; position: relative; }
.prose ul li::before { content: "\2713"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* FAQ items: tinted cards */
.faq-item {
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--red) 14%, transparent);
  margin-bottom: 12px;
  padding: 4px 20px;
}
.faq-item[open] { border-color: var(--red); background: #fff; box-shadow: var(--shadow); }

/* Chips: sage pills that respond */
.chip {
  background: var(--light);
  border: 1px solid color-mix(in srgb, var(--red) 18%, transparent);
  transition: background 0.2s ease, transform 0.2s ease;
}
.chip:hover { background: color-mix(in srgb, var(--red) 14%, #fff); transform: translateY(-2px); }

/* Gallery + strip tiles: deeper hover */
.gallery-grid figure { transition: box-shadow 0.3s ease, transform 0.3s ease; }
.gallery-grid figure:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

/* Map frames get the same rounded treatment */
.map-frame { border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 0; width: 100%; }

@media (max-width: 760px) {
  .tear svg { height: 26px; }
  .reviews .container::before { font-size: 84px; }
  .trust-grid .stat .num { font-size: 44px; }
}

/* ---------- Scrolling word marquee (trendy band) ---------- */
/* ---------- Static services band (replaces the scrolling marquee) ---------- */
.service-band {
  background: var(--light);
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 16px;
}
.service-pills li { display: inline-flex; }
.service-pills a {
  display: inline-block;
  font-family: "Oswald", Georgia, serif;
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red-dark);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.service-pills a:hover,
.service-pills a:focus-visible {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .service-band { padding: 22px 0; }
  .service-pills { gap: 10px; }
  .service-pills a { padding: 8px 16px; }
}

/* ---------- Photo service cards ---------- */
.cat-card.photo-card { padding: 0; overflow: hidden; }
.cat-card.photo-card .card-img { position: relative; overflow: hidden; }
.cat-card.photo-card .card-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.cat-card.photo-card:hover .card-img img { transform: scale(1.06); }
.cat-card.photo-card .card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.cat-card.photo-card .card-img .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,16,11,0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Promo video section ---------- */
.promo-video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  display: block;
  background: var(--blue-deep);
}

/* ---------- Real logo in header (standalone, no text wordmark) ----------
   Client loves the large logo. Show it at 100px tall; the header bar is
   centered and tall enough that the logo gets ~6px clearance top and bottom
   without any padding on the image itself (flex centering + min-height). */
.wordmark { display: flex; flex-direction: row; align-items: center; }
.logo-img { height: 100px; width: auto; display: block; transition: height 0.25s ease; }
.site-header.scrolled .logo-img { height: 76px; }
@media (max-width: 760px) { .logo-img { height: 62px; } }

/* ---------- Footer social links ---------- */
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.socials a:hover { background: var(--red); transform: translateY(-2px); text-decoration: none; }

/* ---------- Split section typography spacing (was inheriting zero margins) ---------- */
.split h2 { margin: 12px 0 22px; }
.split p { margin-bottom: 16px; color: var(--ink-soft); }
.split p:last-child { margin-bottom: 0; }
.split p strong { color: var(--ink); }
.split ul { margin: 4px 0 16px; }
.section-head p { margin-top: 14px; color: var(--ink-soft); }

/* ---------- Audit polish pass ---------- */
/* Hero eyebrow was washing out against photos: frosted pill, white text */
.hero .eyebrow {
  color: #fff;
  background: rgba(10,16,11,0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: 0.12em;
}
.hero .eyebrow::before { background: var(--gold); }

/* Eyebrows on dark sections: brighter green for contrast */
section[style*="--blue-deep"] .eyebrow { color: #9CCB8B; }
section[style*="--blue-deep"] .eyebrow::before { background: #9CCB8B; }

/* From the Blog cards: accent edge + hover nudge */
.related-link {
  border-left: 4px solid var(--red);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.related-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); text-decoration: none; }
.related-link .link { color: var(--red); font-weight: 600; }

/* Chips: slightly larger tap targets */
.chip { padding: 10px 18px; font-size: 15px; }

/* ---------- Home only: big brand morph ----------
   The header logo IS the hero logo. At the top of the home page the header
   is a transparent overlay on the hero photo with the logo rendered large;
   past the scroll threshold (set in index.html) the .scrolled state morphs
   it into the standard compact white sticky bar. One element, no duplication. */
.home-brand .site-header {
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.home-brand .site-header:not(.scrolled):not(.solid) {
  background: transparent;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.home-brand .site-header .container {
  min-height: 0;
  height: 112px;
  align-items: flex-start;
  transition: height 0.35s ease;
}
.home-brand .site-header.scrolled .container { height: 88px; }
.home-brand .site-header .nav,
.home-brand .site-header .header-cta,
.home-brand .site-header .nav-toggle { align-self: center; }
.home-brand .logo-img {
  height: 300px;
  margin-top: 12px;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.45));
  transition: height 0.35s ease, margin-top 0.35s ease, filter 0.35s ease;
}
.home-brand .site-header.scrolled .logo-img { height: 76px; margin-top: 6px; filter: none; }
.home-brand .site-header:not(.scrolled):not(.solid) .nav-toggle { color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.home-brand .hero { margin-top: -112px; }
.home-brand .hero .container { padding-left: 330px; }
.home-brand .hero .eyebrow { margin-left: 50px; }
@media (min-width: 901px) {
  .home-brand .wordmark { width: 248px; flex: 0 0 auto; }
  .home-brand .site-header:not(.scrolled):not(.solid) .nav > a,
  .home-brand .site-header:not(.scrolled):not(.solid) .nav-item > a { color: var(--white); text-shadow: 0 1px 10px rgba(0,0,0,0.45); }
  .home-brand .site-header:not(.scrolled):not(.solid) .nav > a::before,
  .home-brand .site-header:not(.scrolled):not(.solid) .nav-item > a::before { background: var(--gold); }
}
@media (min-width: 901px) and (max-width: 1040px) {
  .home-brand .nav-item:not(.mega-right) .drop.mega { left: -130px; }
  .home-brand .nav { gap: 22px; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .home-brand .wordmark { width: 190px; }
}
@media (max-width: 1180px) {
  .home-brand .logo-img { height: 230px; }
  .home-brand .hero .container { padding-left: 260px; }
}
@media (max-width: 900px) {
  .home-brand .logo-img { height: 180px; }
  .home-brand .site-header.scrolled .logo-img { height: 62px; margin-top: 13px; }
  .home-brand .hero .container { padding-left: 24px; }
  .home-brand .hero .eyebrow { margin-left: 0; }
  .home-brand .hero { padding-top: 250px; }
}
@media (max-width: 520px) {
  .home-brand .logo-img { height: 150px; }
}

/* ===== Homepage hero — 4 Seasons refined (Aida) ===== */
.home-brand .logo-img { height: 300px; margin-top: 12px; }
.home-brand .site-header.scrolled .logo-img { height: 64px; margin-top: 4px; }
.home-brand .site-header .container { max-width: 1800px; margin-left: auto; margin-right: auto; padding-left: clamp(20px, 4vw, 52px); padding-right: clamp(20px, 4vw, 52px); }
.home-brand .hero { align-items: flex-start; }
.home-brand .hero-interior { min-height: 74vh; padding-top: 24px; padding-bottom: 40px; }
.home-brand .hero .container { margin-left: auto; margin-right: auto; max-width: clamp(700px, 62vw, 1400px); width: 100%; text-align: left; padding-top: clamp(170px, 20vh, 250px); padding-bottom: 40px; padding-left: clamp(20px, 4vw, 52px); padding-right: clamp(20px, 4vw, 52px); }
.home-brand .hero .eyebrow { display: inline-flex; align-items: center; gap: 12px; padding: 7px 16px 7px 14px; border-radius: 999px; background: rgba(10,16,11,0.45); border: 1px solid rgba(201,162,75,0.55); color: #efe9da; font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 500; margin-bottom: 14px; }
.home-brand .hero .eyebrow::before { content: ""; display: inline-block; width: 22px; height: 2px; background: #c9a24b; border-radius: 2px; }
.home-brand .hero h1 { font-size: clamp(44px, 5.2vw, 108px); line-height: 1.03; margin: 6px 0 0; letter-spacing: 0.5px; max-width: none; text-shadow: 0 2px 26px rgba(0,0,0,0.35); }
.home-brand .hero .sub { max-width: 640px; margin: 30px 0 42px; font-size: clamp(18px, 1.3vw, 22px); }
.home-brand .hero-ctas { justify-content: flex-start; gap: 18px; }
.home-brand .hero-ctas .btn-outline { background: rgba(255,255,255,0.06); color: #ffffff; border: 2px solid rgba(201,162,75,0.55); }
.home-brand .hero-ctas .btn-outline:hover { border-color: #c9a24b; color: #ffffff; }
@media (max-width: 1180px) { .home-brand .logo-img { height: 150px; } }
@media (max-width: 900px) {
  .home-brand .logo-img { height: 104px; }
  .home-brand .site-header.scrolled .logo-img { height: 44px; }
  .home-brand .hero { align-items: center; }
  .home-brand .hero-interior { min-height: 76vh; }
  .home-brand .hero .container { max-width: 100%; text-align: center; padding-top: 40px; padding-bottom: 40px; }
  .home-brand .hero h1 { font-size: clamp(30px, 7.4vw, 48px); margin-top: 8px; }
  .home-brand .hero .sub { font-size: 17px; margin: 20px auto 28px; max-width: 440px; }
  .home-brand .hero-ctas { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 520px) { .home-brand .logo-img { height: 96px; } }

/* ---------- Photo Lightbox ---------- */
.photo-frame .tint { pointer-events: none; }
.lb-zoomable { cursor: zoom-in; }
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 24, 19, 0.93);
  padding: 24px;
}
.lb-overlay.open { display: flex; }
.lb-stage { margin: 0; max-width: min(1200px, 92vw); text-align: center; }
.lb-img {
  max-width: 92vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}
.lb-caption { color: #dfe7df; font-size: 14px; margin-top: 14px; }
.lb-count { color: #93a293; font-size: 12px; margin-top: 4px; letter-spacing: 0.08em; }
.lb-btn {
  position: fixed;
  z-index: 2001;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lb-btn:hover, .lb-btn:focus-visible { background: rgba(255, 255, 255, 0.22); }
.lb-close { top: 18px; right: 18px; font-size: 30px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb-btn { width: 42px; height: 42px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-img { max-height: 70vh; }
}
body.lb-open .sticky-cta { display: none !important; }

/* ---------- Service-area CTA row ---------- */
.svc-cta {
  position: relative;
  background: linear-gradient(115deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.svc-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.06;
  pointer-events: none;
}
.svc-cta .container { position: relative; z-index: 1; }
.svc-cta .eyebrow { color: var(--gold); }
.svc-cta h2 { color: var(--white); max-width: 24ch; margin: 0 auto 14px; }
.svc-cta p { color: rgba(255,255,255,0.9); max-width: 62ch; margin: 0 auto 28px; }
.svc-cta-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 32px;
  max-width: 720px;
}
.svc-cta-links a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  background: rgba(255,255,255,0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.svc-cta-links a:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--white);
  text-decoration: none;
}
.svc-cta .btn-outline-green { border-color: var(--white); }
@media (max-width: 640px) {
  .svc-cta { padding: 64px 0; }
  .svc-cta-links a { padding: 9px 18px; font-size: 14px; }
}
