/* ==========================================================================
   Sunset Shade Solutions — design system v3
   Brand: golden yellow (#F2B70A) + black. Modernized pass: pill buttons,
   layered shadows instead of borders, concentric radii, glass chips,
   cinematic hero overlays, rounded CTA panels.
   Type: Archivo (headings) / Karla (body).
   ========================================================================== */

:root {
  --gold: #f2b70a;
  --gold-deep: #d99e00;
  --gold-pale: #fbf0d2;
  --ink: #141414;
  --ink-soft: #45413a;
  --gray: #6b675f;
  --paper: #ffffff;
  --cream: #f8f5ee;
  --white: #ffffff;
  /* layered shadows, not borders */
  --shadow-sm: 0 1px 2px rgba(20, 16, 8, 0.05), 0 4px 12px -4px rgba(20, 16, 8, 0.08);
  --shadow-md: 0 1px 2px rgba(20, 16, 8, 0.05), 0 12px 32px -12px rgba(20, 16, 8, 0.18);
  --shadow-lg: 0 2px 4px rgba(20, 16, 8, 0.05), 0 24px 56px -20px rgba(20, 16, 8, 0.28);
  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 14px;
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Karla", "Avenir Next", sans-serif;
  --wrap: 1180px;
  --space-5: 64px; --space-6: 108px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.68;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }
p { text-wrap: pretty; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.1vw, 2.55rem); }
h3 { font-size: 1.16rem; line-height: 1.3; letter-spacing: -0.01em; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink);
  color: var(--white); padding: 10px 18px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.sunset-strip { display: none; }

/* --------------------------------------------------------------------------
   Header — brand yellow bar, black logo, pill CTA
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--gold);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 1px 0 rgba(20, 16, 8, 0.08), 0 12px 28px -14px rgba(20, 16, 8, 0.45); }
.header-inner {
  display: flex; align-items: center; gap: 28px;
  padding-top: 13px; padding-bottom: 13px;
}
.brand img { width: 160px; height: auto; }
.site-nav { margin-left: 4px; }
.site-nav > ul { display: flex; gap: 2px; list-style: none; align-items: center; }
.site-nav a, .drop-toggle {
  font: 700 0.95rem var(--font-body);
  color: var(--ink); text-decoration: none;
  padding: 9px 15px; border-radius: 10px;
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background-color 0.2s ease;
}
.site-nav a:hover, .drop-toggle:hover { background: rgba(255, 255, 255, 0.35); }
.site-nav a.active { background: rgba(255, 255, 255, 0.45); }
.chev {
  width: 7px; height: 7px; border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.has-drop { position: relative; }
.has-drop.open .chev { transform: rotate(-135deg) translateY(-2px); }
.drop {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 240px;
  background: #ffffff; border-radius: 18px; z-index: 60;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 6px rgba(20, 16, 8, 0.08), 0 24px 48px -16px rgba(20, 16, 8, 0.35);
  list-style: none; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.drop a { color: var(--ink); }
.has-drop.open .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: none; }
.drop a { display: block; padding: 10px 14px; font-weight: 600; border-radius: 10px; }
.drop a:hover { background: var(--gold-pale); }
.header-cta { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.phone-link {
  font-weight: 700; color: var(--ink); text-decoration: none;
  display: inline-flex; gap: 7px; align-items: center; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.phone-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.nav-burger { display: none; }

/* --------------------------------------------------------------------------
   Buttons — pill shaped, tactile press
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 700 1rem var(--font-body);
  padding: 16px 32px; border-radius: 12px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition-property: transform, box-shadow, background-color, color, border-color;
  transition-duration: 0.18s; transition-timing-function: ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.96); }
.btn-solid {
  background: linear-gradient(180deg, #f7c433 0%, var(--gold) 60%);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 10px 24px -10px rgba(217, 158, 0, 0.7);
}
.btn-solid:hover { background: linear-gradient(180deg, #f2b70a 0%, var(--gold-deep) 100%); }
.btn-ghost { border-color: rgba(20, 16, 8, 0.85); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.btn-gold { background: linear-gradient(180deg, #f7c433 0%, var(--gold) 60%); color: var(--ink); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-sm { padding: 11px 22px; font-size: 0.92rem; background: var(--ink); color: var(--gold); border: none; border-radius: 10px; }
.btn-sm:hover { background: #000; }

/* --------------------------------------------------------------------------
   Hero — dark editorial split: giant type left, floating photo card right
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
/* Homepage: rotating product slideshow behind the hero (cycled by main.js) */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55);
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

/* Full copy of the page's own hero photo, set as --hero-img by main.js,
   shown at the same visibility as the homepage slideshow backdrop */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-img); background-size: cover; background-position: center;
  filter: brightness(0.55);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 85% -10%, rgba(242, 183, 10, 0.22), transparent 65%),
    linear-gradient(100deg, rgba(14, 14, 14, 0.92) 0%, rgba(14, 14, 14, 0.72) 45%, rgba(14, 14, 14, 0.35) 100%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: 72px; align-items: center;
  padding-top: 88px; padding-bottom: 104px;
}
.hero-copy h1 { color: var(--white); }
.hero-copy h1::after {
  content: ""; display: block; width: 78px; height: 6px;
  border-radius: 999px; background: var(--gold); margin-top: 28px;
}
.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 32px 64px -24px rgba(0, 0, 0, 0.6);
  outline: 1px solid rgba(255, 255, 255, 0.1); outline-offset: -1px;
}
/* Foreground photo slider inside the hero card */
.media-slider {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); aspect-ratio: 4 / 3.4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 32px 64px -24px rgba(0, 0, 0, 0.6);
  outline: 1px solid rgba(255, 255, 255, 0.1); outline-offset: -1px;
}
.media-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 0; box-shadow: none; outline: none;
  opacity: 0; transition: opacity 1.4s ease;
}
.media-slider img.active { opacity: 1; }
.media-dots {
  position: absolute; right: 16px; bottom: 14px; z-index: 2;
  display: flex; gap: 8px;
}
.media-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255, 255, 255, 0.5); cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.media-dot::after { content: ""; position: absolute; inset: -8px; }
.media-dot:hover { transform: scale(1.2); }
.media-dot.active { background: var(--gold); }
.hero-media::before {
  content: ""; position: absolute; inset: -14px -14px auto auto;
  width: 45%; height: 45%; border-radius: var(--r-xl);
  background: repeating-linear-gradient(180deg, rgba(242, 183, 10, 0.5) 0 3px, transparent 3px 12px);
  z-index: -1;
}
.hero-stat {
  position: absolute; left: -18px; bottom: -20px;
  background: var(--white); color: var(--ink);
  border-radius: 18px; padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 2px;
}
.hero-stat strong { font: 800 1rem var(--font-display); letter-spacing: -0.01em; }
.hero-stat span { font-size: 0.84rem; color: var(--gray); }
.eyebrow {
  font: 700 0.78rem var(--font-body); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.hero .eyebrow { color: var(--gold); }
.hero p.lede {
  font-size: 1.14rem; color: #b8b3a8;
  margin: 26px 0 38px; max-width: 34em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost {
  border-color: transparent; color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55);
}
.hero .btn-ghost:hover { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--white); }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 38px; }
.hero-chips { gap: 26px; }
.chip {
  font: 700 0.88rem var(--font-body); color: rgba(255, 255, 255, 0.88);
  display: inline-flex; align-items: center; gap: 9px;
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: var(--space-6) 0; }
.section-sand { background: var(--cream); }
.section-dark {
  background:
    radial-gradient(800px 420px at 12% 110%, rgba(242, 183, 10, 0.12), transparent 60%),
    var(--ink);
  color: #b8b3a8;
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .split-body p { color: #b8b3a8; }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .btn-ghost { border-color: rgba(255, 255, 255, 0.8); color: var(--white); }
.section-dark .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.section-dark .split-img img { outline-color: rgba(255, 255, 255, 0.1); }
.section-head { max-width: 680px; margin-bottom: var(--space-5); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); margin-top: 18px; font-size: 1.06rem; }

/* Split feature (text + image) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.flip .split-img { order: 2; }
.split-img { position: relative; }
.split-img img {
  border-radius: var(--r-xl); aspect-ratio: 4 / 3.4; object-fit: cover;
  width: 100%; box-shadow: var(--shadow-lg);
  outline: 1px solid rgba(0, 0, 0, 0.1); outline-offset: -1px;
}
.split-img::before {
  content: ""; position: absolute; inset: auto -16px -16px 40%;
  height: 56%; border-radius: var(--r-xl);
  background: var(--gold); opacity: 0.35; z-index: -1;
  filter: blur(2px);
}
.split-body h2 { margin-bottom: 20px; }
.split-body p { color: var(--ink-soft); margin-bottom: 16px; }
.split-body .btn { margin-top: 16px; }

/* Checklist */
.check-list { list-style: none; margin: 24px 0; display: grid; gap: 15px; }
.check-list li { padding-left: 36px; position: relative; color: var(--ink-soft); }
.check-list li strong { color: var(--ink); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.check-list li::after {
  content: ""; position: absolute; left: 7px; top: 10px;
  width: 8px; height: 5px; border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink); transform: rotate(-45deg);
}

/* Product cards — concentric radii: outer 22 = inner 14 + 8 padding */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 8px;
  text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition-property: transform, box-shadow;
  transition-duration: 0.25s; transition-timing-function: ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card figure { overflow: hidden; aspect-ratio: 16 / 11; border-radius: var(--r-md); position: relative; }
.product-card figure::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--r-md);
  outline: 1px solid rgba(0, 0, 0, 0.1); outline-offset: -1px; pointer-events: none;
}
.product-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover img { transform: scale(1.06); }
.product-card .card-body { padding: 20px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { margin-bottom: 8px; }
.product-card p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.card-link {
  margin-top: 18px; font: 700 0.9rem var(--font-body); color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
}
.card-link::after {
  content: "\2192"; display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-size: 0.95rem;
  transition: transform 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.product-card:hover .card-link::after { transform: translateX(4px); }

/* Install gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  position: relative; display: block; overflow: hidden;
  border-radius: 16px; aspect-ratio: 4 / 3;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
/* Portrait photos in landscape frames: keep the head in view */
img.crop-top { object-position: center top; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 8, 0.75) 100%);
  color: var(--white); font: 700 0.9rem var(--font-body);
}

/* Steps — oversized gold numerals, clean cards */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative; background: var(--white); border-radius: var(--r-lg);
  padding: 30px 32px 32px; box-shadow: var(--shadow-sm);
}
.section-sand .step { box-shadow: var(--shadow-md); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; margin-bottom: 14px;
  font: 800 3rem/1 var(--font-display); letter-spacing: -0.03em;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.97rem; }

/* Benefit tiles — photo header + text body */
.tile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tile {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition-property: transform, box-shadow;
  transition-duration: 0.2s; transition-timing-function: ease;
  display: flex; flex-direction: column;
}
.section-sand .tile { box-shadow: var(--shadow-md); }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile-photo { aspect-ratio: 16 / 8.5; overflow: hidden; margin: 0; }
.tile-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.tile:hover .tile-photo img { transform: scale(1.05); }
.tile-body { padding: 26px 32px 30px; flex: 1; }
.tile h3 { margin-bottom: 10px; padding-top: 16px; position: relative; }
.tile h3::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 34px; height: 4px; border-radius: 999px; background: var(--gold);
}
.tile p { color: var(--ink-soft); font-size: 0.97rem; }
.tile p a { color: var(--ink); text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--cream); border-radius: 16px;
  padding: 0 28px; overflow: hidden;
  transition: background-color 0.2s ease;
}
.faq details[open] { background: var(--gold-pale); }
.faq summary {
  font: 700 1.03rem var(--font-body); padding: 21px 34px 21px 0;
  cursor: pointer; list-style: none; position: relative; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; display: grid; place-items: center;
  background: var(--white); border-radius: 50%; box-shadow: var(--shadow-sm);
  font: 700 1.15rem var(--font-display); color: var(--ink);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding-bottom: 24px; color: var(--ink-soft); }

/* CTA — dark rounded panel with gold glow, yellow action button */
.cta-band { padding: 0 24px var(--space-6); background: var(--paper); }
.cta-inner {
  position: relative; overflow: hidden;
  max-width: var(--wrap); margin: 0 auto;
  background:
    radial-gradient(640px 320px at 82% -20%, rgba(242, 183, 10, 0.28), transparent 65%),
    radial-gradient(500px 300px at 8% 120%, rgba(242, 183, 10, 0.14), transparent 60%),
    var(--ink);
  border-radius: var(--r-xl);
  padding: 88px 48px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg, rgba(242, 183, 10, 0.045) 0 2px, transparent 2px 16px);
  pointer-events: none;
}
.cta-inner > * { position: relative; }
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: #b8b3a8; margin-bottom: 34px; font-size: 1.08rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { border-color: rgba(255, 255, 255, 0.75); color: var(--white); }
.cta-band .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* Service area strip */
.area-strip { background: var(--cream); }
.area-inner { display: flex; align-items: baseline; gap: 22px; padding: 30px 0; flex-wrap: wrap; }
.area-inner strong { font-family: var(--font-display); font-size: 1rem; white-space: nowrap; }
.area-inner span { color: var(--gray); font-size: 0.95rem; max-width: 62em; }
.area-inner a { color: var(--ink-soft); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(242, 183, 10, 0.55); text-underline-offset: 3px; }
.area-inner a:hover { color: var(--ink); text-decoration-color: var(--gold); }

/* --------------------------------------------------------------------------
   Reviews page
   -------------------------------------------------------------------------- */
.stars { display: inline-flex; gap: 2px; color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.review-hero-score { display: flex; align-items: center; gap: 18px; margin-top: 26px; }
.review-hero-score .score { font: 800 3.2rem var(--font-display); color: var(--white); line-height: 1; }
.review-hero-score .score-meta { display: flex; flex-direction: column; gap: 4px; color: #b8b3a8; font-size: 0.95rem; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
.review-card {
  background: var(--white); border-radius: var(--r-xl); padding: 34px 36px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px;
}
.review-card.featured { grid-column: 1 / -1; padding: 42px 46px; }
.review-head { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--ink); color: var(--gold);
  font: 700 1.1rem var(--font-display);
}
.review-head .who { display: flex; flex-direction: column; gap: 2px; }
.review-head .who strong { font-family: var(--font-display); font-size: 1.02rem; }
.review-head .who span { color: var(--gray); font-size: 0.82rem; }
.review-card blockquote { margin: 0; color: var(--ink-soft); }
.review-card blockquote p { margin-bottom: 12px; }
.review-card blockquote p:last-child { margin-bottom: 0; }
.owner-reply {
  border-left: 3px solid var(--gold); background: var(--cream);
  border-radius: 0 12px 12px 0; padding: 14px 18px; font-size: 0.92rem; color: var(--ink-soft);
}
.owner-reply strong { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 5px; }
.review-source { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray); }
.review-source a { color: var(--ink-soft); font-weight: 700; }
@media (max-width: 860px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card, .review-card.featured { padding: 28px 24px; }
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-hero {
  background:
    radial-gradient(900px 500px at 88% -15%, rgba(242, 183, 10, 0.28), transparent 65%),
    radial-gradient(700px 420px at 0% 115%, rgba(242, 183, 10, 0.14), transparent 60%),
    linear-gradient(160deg, #1d1c19 0%, var(--ink) 55%, #0d0d0c 100%);
  color: #b8b3a8;
}
.contact-hero h1 { color: var(--white); }
.contact-hero .lede { color: #b8b3a8; }
.contact-hero .eyebrow { color: var(--gold); }
.contact-hero .btn-ghost { border-color: rgba(255, 255, 255, 0.8); color: var(--white); }
.contact-hero .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 32px; }
.contact-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92); border-radius: 18px;
  padding: 20px 26px; display: flex; flex-direction: column; gap: 3px;
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.contact-card .label { font: 700 0.75rem var(--font-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }
.contact-card a { font: 700 1.12rem var(--font-body); color: var(--ink); text-decoration: none; font-variant-numeric: tabular-nums; }
.contact-card a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-card a.contact-alt { font: 500 0.88rem var(--font-body); color: var(--ink-soft); margin-top: 4px; }
.form-panel {
  color: var(--ink);
  background: var(--white); border-radius: var(--r-xl);
  padding: 44px 46px; box-shadow: var(--shadow-lg);
}
.form-panel h2 { font-size: 1.5rem; margin-bottom: 8px; }
.form-panel > p { color: var(--ink-soft); margin-bottom: 28px; font-size: 0.97rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font: 700 0.88rem var(--font-body); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid transparent; border-radius: 12px;
  font: 400 1rem var(--font-body); color: var(--ink); background: var(--cream);
  transition-property: border-color, box-shadow, background-color;
  transition-duration: 0.2s; transition-timing-function: ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(242, 183, 10, 0.25);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--gray); margin-top: 14px; }
/* Honeypot: off screen rather than display:none, which some bots skip */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status {
  margin-top: 16px; padding: 13px 16px; border-radius: 12px;
  font: 700 0.92rem var(--font-body); line-height: 1.5;
}
.form-status.is-ok { background: rgba(242, 183, 10, 0.16); color: var(--ink); border: 1.5px solid var(--gold); }
.form-status.is-error { background: rgba(178, 42, 32, 0.08); color: #8f2019; border: 1.5px solid rgba(178, 42, 32, 0.35); }

/* --------------------------------------------------------------------------
   Footer — black, rounded shoulders
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #cfcabe; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 48px; padding: var(--space-6) 24px var(--space-5);
}
.footer-brand img:first-child { width: 190px; }
.footer-brand p { font-size: 0.95rem; margin: 18px 0 22px; color: #a8a294; }
.footer-badge { width: 92px; border-radius: 10px; }
.footer-col h3 {
  color: var(--gold); font: 700 0.88rem var(--font-display);
  margin-bottom: 18px; letter-spacing: 0.09em; text-transform: uppercase;
}
.footer-col h3.mt { margin-top: 28px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: #cfcabe; text-decoration: none; font-size: 0.95rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; color: #a8a294; }
.footer-cta-col p { margin-bottom: 20px; }
.footer-bottom { border-top: 1px solid rgba(207, 202, 190, 0.14); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 22px; padding-bottom: 22px; font-size: 0.85rem; color: #8c877b;
}

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .split.flip .split-img { order: 0; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; padding-top: 64px; padding-bottom: 72px; }
  .hero-media { margin-bottom: 20px; }
  .hero-stat { left: 14px; bottom: -18px; }
  .cta-inner { padding: 64px 32px; }
}
@media (max-width: 760px) {
  .site-nav {
    position: fixed; inset: 0; top: 64px; background: var(--gold);
    padding: 24px; transform: translateX(100%); transition: transform 0.3s ease;
    overflow-y: auto; z-index: 90; margin-left: 0;
  }
  .site-nav.open { transform: none; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a, .drop-toggle { width: 100%; padding: 14px 16px; font-size: 1.05rem; justify-content: space-between; border-radius: 14px; }
  .drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: rgba(255, 255, 255, 0.5);
    display: none; margin: 4px 0 8px; border-radius: 14px;
  }
  .has-drop.open .drop { display: block; }
  .header-cta .btn { display: none; }
  .phone-link { font-size: 0.95rem; }
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer;
    width: 44px; height: 44px; padding: 10px;
  }
  .nav-burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .product-grid, .tile-grid, .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: var(--space-5) 0; }
  .form-panel { padding: 32px 26px; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: auto; flex: 1; min-width: 200px; }
  .cta-band { padding: 0 16px var(--space-5); }
  .site-footer { border-radius: 20px 20px 0 0; }
}

/* Generated cross-link rows (build.py): town <-> product pages, service area */
.section-links .section-head { margin-bottom: 8px; }
.link-row-title { font: 700 0.8rem var(--font-body); letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin: 22px 0 10px; }
.link-row { display: flex; flex-wrap: wrap; gap: 10px; }
.link-row a { display: inline-block; padding: 9px 16px; border: 1.5px solid rgba(28, 26, 23, 0.14); border-radius: 999px; background: var(--white); color: var(--ink); font-weight: 700; font-size: 0.92rem; text-decoration: none; transition: border-color 0.15s ease, transform 0.15s ease; }
.link-row a:hover { border-color: var(--gold); transform: translateY(-1px); }
.town-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; }
.town-entry h3 { margin-bottom: 4px; }
@media (max-width: 760px) { .town-list { grid-template-columns: 1fr; } }
