/* =========================================================
   Buff & Coat Hardwood Floor Refinishing
   Warm, elegant, craftsman-hardwood aesthetic
   ========================================================= */

:root {
  --teal:       #1e6b5e;        /* logo teal */
  --teal-2:     #145048;
  --teal-soft:  #e1efec;
  --gold:       #c47019;        /* logo ampersand orange */
  --gold-2:     #a25a11;
  --gold-soft:  #fbecd8;
  --walnut:     #3d2817;
  --walnut-2:   #2a1c10;
  --ink:        #2a1f16;
  --ink-2:      #3d3128;
  --ink-3:      #5b4d40;
  --muted:      #7a6d5f;
  --line:       #e6dfd3;
  --cream:      #f8f3e9;
  --cream-2:    #f1e9d8;
  --bg:         #fbf7ef;
  --bg-card:    #ffffff;
  --shadow-sm:  0 1px 2px rgba(42,31,22,.06), 0 1px 1px rgba(42,31,22,.04);
  --shadow-md:  0 12px 30px rgba(42,31,22,.10), 0 2px 8px rgba(42,31,22,.06);
  --shadow-lg:  0 24px 60px rgba(42,31,22,.20);
  --radius:     14px;
  --radius-sm:  10px;
  --header-h:   90px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-2); }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: -9999px;
  background: var(--walnut); color: #fff; padding: 8px 14px; border-radius: 6px;
}
.skip:focus { left: 16px; top: 16px; z-index: 9999; }

/* =====================
   Typography
   ===================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 4vw + 0.6rem, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.95rem, 2.6vw + 0.6rem, 3rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--walnut); }

.serif-italic { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--gold);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.eyebrow.no-line::before { display: none; }

.accent { color: var(--teal); }

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 24px rgba(196,112,25,.30);
}
.btn-primary:hover { background: var(--gold-2); color: #fff; box-shadow: 0 12px 30px rgba(196,112,25,.40); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn-block { display: flex; width: 100%; }

/* =====================
   Top bar
   ===================== */
.top-bar {
  background: var(--walnut);
  color: var(--cream);
  padding: 10px 0;
  font-size: 0.82rem;
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
}
.top-item svg { width: 14px; height: 14px; opacity: .8; }
.top-divider { color: rgba(248,243,233,.4); }
.top-phone:hover { color: #fff; }

/* =====================
   Header
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(251,247,239,.96);
  backdrop-filter: saturate(180%) blur(10px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  width: auto;
  height: 60px;
  transition: height .25s ease;
}
.scrolled .brand-logo { height: 52px; }
.brand-logo--light { display: none; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.primary-nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  transition: color .2s;
}
.primary-nav a:hover { color: var(--teal); }
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width .2s ease;
}
.primary-nav a:hover::after { width: 100%; }

/* Services mega-menu dropdown */
.nav-item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  cursor: pointer;
}
.nav-caret { transition: transform .2s ease; }
.nav-item--dropdown:hover .nav-caret,
.nav-item--dropdown:focus-within .nav-caret { transform: rotate(180deg); }

.nav-mega {
  position: absolute;
  top: 100%;
  left: -24px;
  margin-top: 12px;
  min-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 36px;
  padding: 26px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(30, 45, 60, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility 0s linear .18s;
  z-index: 200;
}
.nav-item--dropdown:hover .nav-mega,
.nav-item--dropdown:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .18s, transform .18s, visibility 0s;
}
/* Invisible bridge so hover doesn't drop the menu between trigger and panel */
.nav-mega::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-mega-col { display: flex; flex-direction: column; gap: 8px; }
.nav-mega-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.nav-mega-col a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  padding: 4px 0;
  transition: color .15s;
}
.nav-mega-col a:hover { color: var(--teal); }
.nav-mega-col a::after { display: none; }
.nav-mega-all {
  color: var(--teal) !important;
  font-weight: 600 !important;
  margin-top: 6px;
}

/* Mobile <details> group inside the mobile-nav */
.mobile-group { border-bottom: 1px solid var(--line); }
.mobile-group summary {
  list-style: none;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.mobile-group summary::-webkit-details-marker { display: none; }
.mobile-group summary::after {
  content: "+";
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .2s;
}
.mobile-group[open] summary::after { content: "−"; }
.mobile-group a {
  display: block;
  padding: 8px 0 8px 14px;
  font-size: 0.95rem;
  color: var(--ink-2);
  border-bottom: 0;
}
.mobile-group a:hover { color: var(--teal); }

.cta-btn {
  padding: 12px 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: background .2s, transform .15s;
}
.cta-btn:hover { background: var(--gold-2); color: #fff; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--walnut);
  transition: transform .25s, opacity .25s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 12px 24px 24px;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink-2);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-phone {
  margin-top: 12px;
  background: var(--gold);
  color: #fff !important;
  text-align: center;
  border-radius: 4px;
  border-bottom: 0 !important;
  padding: 14px !important;
}

/* =====================
   Hero
   ===================== */
.hero {
  position: relative;
  color: #fff;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30,31,22,.85) 0%, rgba(30,31,22,.6) 50%, rgba(30,31,22,.3) 100%),
    linear-gradient(180deg, rgba(20,60,60,.2) 0%, rgba(20,20,20,.6) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--gold); stroke: none; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent { color: #ffb266; }
.hero .lede {
  font-size: clamp(1.05rem, 0.6vw + 0.9rem, 1.25rem);
  color: rgba(255,255,255,.9);
  max-width: 620px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stars-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-stars {
  display: inline-flex;
  gap: 2px;
}
.hero-stars svg {
  width: 18px; height: 18px;
  fill: #fbb91c;
}
.hero-stars-block strong {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.on-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.8);
}
.on-google svg { width: 14px; height: 14px; }
.trust-badge {
  height: 40px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}
.trust-badge:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.25); }
.trust-badge--mono {
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  filter: brightness(0) invert(1) opacity(.85);
}
.trust-badge--mono:hover { transform: none; box-shadow: none; filter: brightness(0) invert(1) opacity(1); }

/* =====================
   Values row
   ===================== */
.values {
  background: var(--cream);
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.values::before {
  content: '';
  position: absolute;
  top: -32px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(196,112,25,.3);
  z-index: 1;
}
.values::after {
  content: '★';
  position: absolute;
  top: -32px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 64px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.4rem;
  z-index: 2;
  pointer-events: none;
}
.values-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.value {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.value::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.value:hover::before { transform: scaleX(1); }
.value-icon {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal-soft), var(--gold-soft));
  border-radius: 50%;
  color: var(--teal);
  margin-bottom: 4px;
}
.value-icon svg { width: 34px; height: 34px; }
.value h3 { margin: 0; color: var(--walnut); font-size: 1.35rem; }
.value p { margin: 0; font-size: 0.95rem; color: var(--ink-3); line-height: 1.6; max-width: 320px; }

/* =====================
   Section base
   ===================== */
.section { padding: 100px 0; }
.section-head {
  max-width: 800px;
  margin: 0 0 60px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.light .eyebrow { color: var(--gold); }
.section-head.light .eyebrow::before { background: var(--gold); }
.section-head h2 { margin-bottom: 18px; }
.section-head h2 .accent { color: var(--teal); }
.section-lede {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.section-head.light .section-lede { color: rgba(255,255,255,.75); }
.section-head.light h2 { color: #fff; }
.section-head.light h2 .accent { color: #ffb266; }

/* =====================
   Services
   ===================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-media img { transform: scale(1.06); }
.service-num {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,.92);
  color: var(--walnut);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.service-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.service-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 8px;
}
.service-card h3 { margin: 0 0 12px; color: var(--walnut); font-size: 1.35rem; }
.service-card p { color: var(--ink-3); font-size: 0.95rem; margin: 0 0 18px; }
.service-perks {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid; gap: 10px;
}
.service-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-2);
  font-weight: 500;
}
.service-perks li span {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
}
.service-link {
  margin-top: auto;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.service-link:hover { color: var(--gold-2); }

/* =====================
   About
   ===================== */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 72px;
  align-items: center;
}
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { font-size: 1.05rem; color: var(--ink-3); margin: 0 0 18px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 1;
}
.stat sup { font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.stat span { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-tag {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.about-tag svg {
  width: 24px; height: 24px;
  fill: var(--gold); stroke: none;
}
.about-tag strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--walnut);
  display: block;
  line-height: 1.2;
}
.about-tag span { font-size: 0.78rem; color: var(--muted); }

/* =====================
   Process
   ===================== */
.process {
  background: var(--walnut);
  color: #fff;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 80% 0%, rgba(196,112,25,.15), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(30,107,94,.15), transparent 50%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 30px;
  transition: background .25s, border-color .25s, transform .25s;
  position: relative;
}
.step:hover { background: rgba(255,255,255,.07); border-color: var(--gold); transform: translateY(-4px); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { color: #fff; margin: 0 0 10px; font-size: 1.2rem; }
.step p { color: rgba(255,255,255,.75); font-size: 0.94rem; margin: 0; line-height: 1.6; }

/* =====================
   Gallery
   ===================== */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,31,22,0);
  z-index: 1;
  transition: background .25s;
  pointer-events: none;
}
.gallery-item:hover::before { background: rgba(30,31,22,.12); }

/* =====================
   Reviews
   ===================== */
.reviews { background: var(--cream); }
.google-mini {
  display: inline-flex; width: 18px; height: 18px; align-items: center; justify-content: center;
}
.google-mini svg { width: 14px; height: 14px; }
.reviews .eyebrow { color: var(--teal); }
.reviews .eyebrow::before { background: var(--teal); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stars { color: #d4a013; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-2);
  margin: 0 0 22px;
  line-height: 1.55;
}
.review blockquote::before {
  content: '"';
  color: var(--gold);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -14px;
  margin-right: 4px;
}
.review figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.avatar {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.review figcaption > span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.review figcaption strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--walnut);
  font-size: 0.96rem;
}
.review figcaption small { color: var(--muted); font-size: 0.78rem; }

/* =====================
   Areas
   ===================== */
.areas {
  background: var(--bg);
  background-image: url('../assets/pattern-wood.jpg');
  background-size: 200px;
  background-repeat: repeat;
  background-blend-mode: multiply;
  background-color: rgba(251,247,239,.97);
  position: relative;
}
.areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(251,247,239,.94) 30%, rgba(251,247,239,.94) 70%, var(--bg) 100%);
  z-index: 0;
}
.areas-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.areas-copy h2 { margin-bottom: 20px; }
.areas-copy p { color: var(--ink-3); font-size: 1.05rem; margin: 0 0 26px; }
.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.areas-col h4 {
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  color: var(--walnut);
  display: inline-block;
}
.areas-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}
.areas-col li {
  color: var(--ink-2);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.areas-col li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.areas-col li a {
  color: inherit;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.areas-col li a:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* =====================
   FAQ
   ===================== */
.faq { background: var(--cream); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s, box-shadow .2s;
}
.faq-list details[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--walnut);
  position: relative;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform .2s;
  line-height: 1;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  padding: 0 26px 22px;
  margin: 0;
  color: var(--ink-3);
  line-height: 1.7;
}

/* =====================
   Contact
   ===================== */
.contact {
  background:
    linear-gradient(135deg, rgba(30,107,94,.94), rgba(20,80,72,.94)),
    url('../assets/hero-varnish.jpg') center / cover no-repeat;
  color: #fff;
}
.contact .eyebrow { color: #ffcf8b; }
.contact .eyebrow::before { background: #ffcf8b; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: #fff; margin-bottom: 18px; }
.contact-info > p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin: 0 0 32px; max-width: 460px; }
.contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 20px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,.92);
}
.ci-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; }
.contact-list div { display: flex; flex-direction: column; gap: 2px; }
.contact-list small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.6);
}
.contact-list a { color: #fff; font-weight: 600; }
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: var(--bg-card);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  margin: 0 0 20px;
  color: var(--walnut);
}
.form-fields { display: grid; gap: 14px; }
.form-fields .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--walnut);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-fields input,
.form-fields select,
.form-fields textarea {
  font: inherit;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  font-weight: 400;
}
.form-fields input:focus,
.form-fields select:focus,
.form-fields textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196,112,25,.15);
}
.form-fields textarea { resize: vertical; min-height: 100px; }
.form-fields .btn { margin-top: 6px; padding: 14px 24px; }
.form-fine {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 6px 0 0;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.5;
}
.form-thanks { text-align: center; padding: 30px 8px; }
.form-thanks h3 { color: var(--teal); margin-bottom: 10px; font-size: 1.6rem; }
.form-thanks a { color: var(--gold); font-weight: 700; }

/* Outbound Forms embed — brand it to match the site CTA buttons (full-width submit) */
.lead-embed .ob-form { --ob-accent: var(--gold); --ob-accent-contrast: #fff; }
.lead-embed .ob-form button { width: 100%; }

/* =====================
   Footer
   ===================== */
.site-footer {
  background: var(--walnut);
  color: rgba(248,243,233,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img {
  height: auto;
  width: 240px;
  margin-bottom: 18px;
}
.footer-brand .footer-tag {
  color: rgba(248,243,233,.6);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 360px;
  margin: 0;
}
.site-footer h4 {
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.site-footer ul li, .site-footer ul li a {
  color: rgba(248,243,233,.7);
  font-size: 0.94rem;
}
.site-footer ul li a:hover { color: var(--gold); }
.contact-stack { line-height: 1.5; }

.footer-base { padding: 22px 0; font-size: 0.85rem; background: var(--walnut-2); }
.footer-base .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-base p { margin: 0; color: rgba(248,243,233,.5); }
.footer-credit {
  font-size: 0.78rem;
  color: rgba(248,243,233,.4) !important;
  letter-spacing: 0.02em;
}
.footer-credit a {
  color: rgba(248,243,233,.7);
  text-decoration: none;
  font-weight: 600;
  transition: color .15s ease;
}
.footer-credit a:hover { color: var(--gold); }
.footer-legal {
  font-size: 0.82rem;
  color: rgba(248,243,233,.55) !important;
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-legal a { color: rgba(248,243,233,.75); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }
.footer-legal span[aria-hidden] { opacity: 0.4; }

/* Legal pages — Privacy Policy, Terms & Conditions */
.legal-page {
  background: var(--paper);
  padding: 70px 0 90px;
}
.legal-measure {
  max-width: 780px;
  margin: 0 auto;
}
.legal-page .crumbs { margin-bottom: 22px; }
.legal-page h1 {
  font-size: clamp(2rem, 1.4vw + 1.4rem, 2.8rem);
  color: var(--ink);
  margin: 0 0 30px;
  line-height: 1.1;
}
.legal-body h2 { font-size: 1.5rem; margin-top: 2.2em; }
.legal-body h3 { font-size: 1.15rem; margin-top: 1.6em; }

/* =====================
   Reveal animations
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,.7,.3,1), transform .7s cubic-bezier(.16,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.16,.7,.3,1), transform .6s cubic-bezier(.16,.7,.3,1);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s;    opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s;  opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s;  opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s;  opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s;  opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s;  opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(n+7) { transition-delay: .48s; opacity: 1; transform: none; }

/* =====================
   Responsive
   ===================== */
@media (max-width: 1100px) {
  .top-bar { display: none; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-grid > *:last-child { grid-column: 1 / -1; max-width: 560px; margin-inline: auto; width: 100%; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; max-width: 720px; margin: 0 auto; }
  .about-media { max-width: 480px; }
  .areas-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item--tall { grid-row: span 2; }
}

@media (max-width: 768px) {
  :root { --header-h: 74px; }
  .primary-nav { display: none; }
  .cta-btn { display: none; }
  .nav-toggle { display: block; margin-left: auto; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }

  .hero { min-height: 640px; padding: 80px 0 60px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { justify-content: center; }

  .service-grid { grid-template-columns: 1fr; }
  .service-grid > *:last-child { max-width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .values-inner { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .values { padding: 60px 0 48px; }
  .review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: 1 / -1; }
  .gallery-item--tall { grid-row: span 2; }
  .areas-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base .container { flex-direction: column; text-align: center; }
  .form-fields .row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .stat strong { font-size: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .areas-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; animation-delay: 0s !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   City / Service Area pages
   ===================================================================== */

/* Breadcrumbs */
.crumbs {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-3);
  margin: 0 0 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs a { color: var(--teal); font-weight: 600; }
.crumbs a:hover { color: var(--teal-2); }
.crumbs span[aria-hidden] { color: var(--ink-3); opacity: 0.5; }

/* City hero — cream background with teal top rule */
.city-hero {
  background: var(--cream);
  padding: 28px 0 56px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
/* Ghost button reads dark on the cream hero (default ghost is white-on-dark) */
.city-hero .btn-ghost,
.area-hero .btn-ghost {
  color: var(--ink);
  border-color: rgba(0,0,0,0.18);
  background: #fff;
}
.city-hero .btn-ghost:hover,
.area-hero .btn-ghost:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.city-hero-inner { max-width: 900px; margin: 0 auto; }
.city-hero .eyebrow { color: var(--gold); }
.city-hero h1 {
  font-size: clamp(2rem, 1.2vw + 1.75rem, 3.2rem);
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--ink);
}
.city-hero .lede {
  font-size: 1.15rem;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 0 32px;
}
.city-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
  margin: 0 0 32px;
}
.city-meta > div { display: flex; flex-direction: column; gap: 6px; }
.city-meta small {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 700;
}
.city-meta strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}
.city-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* City context — copy + sidebar */
.city-context { background: #fff; }
.city-context-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 60px;
  align-items: start;
}
.city-context-copy .eyebrow { color: var(--gold); }
.city-context-copy h2 {
  font-size: clamp(1.7rem, 1vw + 1.4rem, 2.4rem);
  margin: 0 0 22px;
  line-height: 1.15;
  color: var(--ink);
}
.city-context-copy p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.city-context-side {
  background: var(--cream);
  padding: 32px 30px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: calc(var(--header-h, 88px) + 20px);
}
.city-context-side h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
}
.city-context-side ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.city-context-side li {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.city-context-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Service tiles on city page */
.city-services { background: var(--cream); }
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.city-service-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 26px 24px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.city-service-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  border-color: var(--teal);
  color: var(--ink);
}
.city-service-tile strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--teal);
}
.city-service-tile span { font-size: 0.95rem; line-height: 1.55; color: var(--ink-2); }
.city-service-tile .arrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 6px;
}

/* Other cities chips */
.city-others { background: #fff; }
.city-others-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.city-chip {
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.city-chip:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.city-chip--region {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.city-chip--region:hover { background: var(--teal-2); border-color: var(--teal-2); color: #fff; }

/* City CTA */
.city-cta {
  background: var(--walnut);
  color: #fff;
}
.city-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.city-cta .eyebrow {
  color: var(--gold);
}
.city-cta h2 {
  font-size: clamp(1.7rem, 1vw + 1.4rem, 2.5rem);
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.15;
}
.city-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 0 26px;
}
.city-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.city-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.city-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Service-areas index / hub */
.area-hero {
  background: var(--cream);
  padding: 32px 0 56px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.area-hero-inner { max-width: 780px; margin: 0 auto; }
.area-hero .eyebrow { color: var(--gold); }
.area-hero h1 {
  font-size: clamp(2.1rem, 1.8vw + 1.6rem, 3.6rem);
  line-height: 1.08;
  margin: 0 0 22px;
  color: var(--ink);
}
.area-hero .lede {
  font-size: 1.15rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 auto 32px;
}
.area-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.area-hub { background: #fff; }
.area-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.city-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 26px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  border-color: var(--teal);
  color: var(--ink);
}
.city-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
}
.city-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}
.city-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.city-card .city-arrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 4px;
}

.counties { background: var(--cream); }
.county-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.county-item {
  background: #fff;
  padding: 26px 28px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.county-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
}
.county-item span { font-size: 0.94rem; line-height: 1.5; color: var(--ink-2); }

/* Responsive */
@media (max-width: 900px) {
  .city-context-grid { grid-template-columns: 1fr; gap: 40px; }
  .city-context-side { position: static; }
  .city-services-grid { grid-template-columns: 1fr; }
  .city-meta { grid-template-columns: repeat(2, 1fr); gap: 18px 24px; padding: 20px 22px; }
  .area-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .county-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .city-meta { grid-template-columns: 1fr; }
  .area-hub-grid { grid-template-columns: 1fr; }
  .city-context-side ul { grid-template-columns: 1fr; }
}

/* =====================================================================
   Service pages
   ===================================================================== */

.service-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 40px 0 60px;
  overflow: hidden;
  color: #fff;
}
.service-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,26,20,.55) 0%, rgba(30,26,20,.82) 100%);
}
.service-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.service-hero .crumbs {
  color: rgba(255,255,255,.75);
  margin-bottom: 22px;
}
.service-hero .crumbs a { color: #fff; font-weight: 600; }
.service-hero .crumbs a:hover { color: var(--gold-soft, #fbecd8); }
.service-hero .crumbs span[aria-hidden] { color: rgba(255,255,255,.4); }
.service-hero .eyebrow { color: var(--gold); margin-bottom: 12px; }
.service-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 1.3vw + 1.6rem, 3.4rem);
  margin: 0 0 18px;
  line-height: 1.08;
  font-weight: 400;
}
.service-hero .lede {
  color: rgba(255,255,255,.9);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 0 32px;
  line-height: 1.55;
}
.service-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.service-hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.service-hero .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* Body layout — main content + sticky sidebar */
.service-body { background: #fff; }
.service-body-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-body-copy h2 {
  color: var(--ink);
  font-size: clamp(1.5rem, 0.8vw + 1.2rem, 2rem);
  margin: 0 0 18px;
  line-height: 1.2;
}
.service-body-copy h2:not(:first-child) { margin-top: 40px; }
.service-body-copy p {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}
.service-body-side {
  background: var(--cream);
  padding: 32px 30px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: calc(var(--header-h, 88px) + 20px);
}
.service-body-side h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.service-features svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--gold);
  margin-top: 2px;
}
.service-body-side .btn { width: 100%; }
.service-side-phone {
  text-align: center;
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: var(--ink-3);
}
.service-side-phone a {
  color: var(--teal);
  font-weight: 700;
}

/* Service FAQ (uses shared .faq-list styles) */
.service-faq { background: var(--paper); }

/* Other services chip strip */
.service-others { background: #fff; }
.service-others-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.service-chip {
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.service-chip:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.service-chip--all { background: var(--teal); color: #fff; border-color: var(--teal); }
.service-chip--all:hover { background: var(--teal-2); border-color: var(--teal-2); color: #fff; }

/* CTA — reuse .city-cta pattern for consistency */
.service-cta {
  background: var(--walnut);
  color: #fff;
}
.service-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.service-cta .eyebrow { color: var(--gold); }
.service-cta h2 {
  font-size: clamp(1.7rem, 1vw + 1.4rem, 2.5rem);
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.15;
  font-weight: 400;
}
.service-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 0 26px;
}
.service-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.service-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.service-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Services hub */
.services-hub { background: #fff; }
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.services-hub-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.services-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  border-color: var(--teal);
  color: var(--ink);
}
.services-hub-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 700;
}
.services-hub-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}
.services-hub-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.services-hub-arrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 4px;
}
/* Group accent tints */
.services-hub-card--refinishing { border-left: 4px solid var(--teal); }
.services-hub-card--installation { border-left: 4px solid var(--gold); }
.services-hub-card--info { border-left: 4px solid rgba(0,0,0,0.15); }

@media (max-width: 1000px) {
  .service-body-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-body-side { position: static; }
  .services-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-mega { min-width: min(90vw, 620px); grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-hub-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   Blog — hub, cards, post pages
   ===================================================================== */

.blog-hero {
  background: var(--cream);
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.blog-hero .crumbs { margin-bottom: 20px; }
.blog-hero .eyebrow { color: var(--gold); margin-bottom: 10px; }
.blog-hero h1 {
  font-size: clamp(2.2rem, 1.6vw + 1.5rem, 3.6rem);
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.1;
}
.blog-hero .lede { max-width: 720px; color: var(--ink-2); }

.blog-list { background: var(--paper); }
.blog-empty {
  text-align: center;
  color: var(--ink-3);
  padding: 40px 20px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 26px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  border-color: var(--teal);
}
.post-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.post-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.post-card:hover .post-card-media img { transform: scale(1.04); }
.post-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.post-card-body .post-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.post-card-body .post-meta > span[aria-hidden] { opacity: 0.4; }
.post-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}
.post-card-body h3 a { color: inherit; }
.post-card-body h3 a:hover { color: var(--teal); }
.post-card-excerpt {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-body .arrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.86rem;
  margin-top: auto;
}
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .post-grid { grid-template-columns: 1fr; } }

/* Post page — hero + measure column + prose body */
.post-measure {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.post-hero {
  background: var(--cream);
  padding: 60px 0 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.post-hero .crumbs { margin-bottom: 24px; }
.post-hero h1 {
  font-size: clamp(1.9rem, 1.2vw + 1.6rem, 2.8rem);
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.15;
}
.post-hero .post-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin: 0 0 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.post-hero .post-meta > span[aria-hidden] { opacity: 0.4; }
.post-hero-media {
  margin-bottom: -80px;
  position: relative;
  z-index: 1;
}
.post-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-md, 0 12px 32px rgba(0,0,0,.15));
  display: block;
}
.post-body { padding-top: 120px; padding-bottom: 80px; background: #fff; }

/* Article prose — for scraped WP content */
.prose {
  font-family: 'Inter', sans-serif;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink);
}
.prose > * + * { margin-top: 1.2em; }
.prose h2, .prose h3, .prose h4 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  line-height: 1.25;
  margin-top: 2em;
  margin-bottom: 0.6em;
}
.prose h2 { font-size: 1.75rem; font-weight: 700; }
.prose h3 { font-size: 1.35rem; font-weight: 700; }
.prose h4 { font-size: 1.1rem; font-weight: 700; }
.prose p { color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { font-style: italic; }
.prose a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--teal-2); }
.prose ul, .prose ol { padding-left: 1.5em; }
.prose li { margin-top: 0.5em; color: var(--ink-2); }
.prose li > p { margin: 0; }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 8px 20px;
  margin: 1.6em 0;
  font-style: italic;
  color: var(--ink);
  background: var(--cream);
  border-radius: 0 8px 8px 0;
}
.prose img {
  border-radius: 10px;
  margin: 1.5em auto;
}
.prose figure { margin: 1.5em 0; }
.prose figcaption {
  font-size: 0.86rem;
  color: var(--ink-3);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
.prose hr {
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1);
  margin: 2.5em 0;
}
.prose code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.92em;
  background: var(--cream);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}
.prose pre {
  background: var(--cream);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 0.9rem;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.prose th, .prose td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.prose th { font-weight: 700; color: var(--ink); }

.post-more { background: var(--paper); }

