/* ============== LOCATION PAGE STYLES ==============
   Per-location-page-specific layout. Sits on top of tokens.css.
   Builds on the home page visual language (cream/walnut/grain/serif). */

/* ===== Stub banner (when content not yet gathered) ===== */
.stub-banner {
  background: var(--ff-gold); color: var(--ff-walnut);
  padding: 14px 22px; text-align: center; font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  border-bottom: 2px solid var(--ff-walnut);
}
.stub-banner + .header { top: 44px; }
body.has-stub-banner { padding-top: 44px; }
body.has-stub-banner .hero { padding-top: 184px; }

/* ===== HERO (location-tuned) ===== */
.loc-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 720px);
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
  padding: 140px 0 80px;
  background-color: var(--ff-walnut);
  background-image: linear-gradient(180deg, rgba(20, 14, 8, .65) 0%, rgba(20, 14, 8, .45) 35%, rgba(20, 14, 8, .78) 100%),
    var(--loc-hero-image, url("/images/banner-new-img.jpg"));
  background-size: cover; background-position: center;
  overflow: hidden;
}
/* Brand-tinted overlay — matches /contact/ and /reviews/ hub hero treatment.
   Two soft radial tints (gold top-left, green bottom-right) over a stronger
   dark vertical wash for cream-on-dark text contrast. */
.loc-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(ellipse at 22% 26%, rgba(184, 151, 88, .22) 0%, rgba(184, 151, 88, 0) 55%),
    radial-gradient(ellipse at 80% 78%, rgba(90, 122, 75, .22) 0%, rgba(90, 122, 75, 0) 55%),
    linear-gradient(180deg, rgba(20, 14, 8, .28) 0%, rgba(20, 14, 8, .48) 55%, rgba(20, 14, 8, .72) 100%);
}
.loc-hero-inner { position: relative; z-index: 2; max-width: 1040px; }

/* Ken Burns background layer — slow zoom + drift on the hero image.
   When present, the parent .loc-hero shows only the gradient overlay; the image
   lives on this inner layer so we can transform it without affecting the gradient. */
.loc-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.loc-hero-bg::before {
  content: ""; position: absolute; inset: -3% -4%;
  background: var(--loc-hero-image, url("/images/banner-new-img.jpg")) center/cover no-repeat;
  transform-origin: 50% 50%;
  animation: loc-hero-kenburns 42s ease-in-out infinite alternate;
}
.loc-hero:has(.loc-hero-bg) {
  background-image: linear-gradient(180deg, rgba(20, 14, 8, .55) 0%, rgba(20, 14, 8, .35) 35%, rgba(20, 14, 8, .75) 100%);
}
@keyframes loc-hero-kenburns {
  0%   { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.09) translate3d(-10px, -6px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .loc-hero-bg::before { animation: none; transform: scale(1.04); }
}

/* Portrait hero variant — large founder/team shot on the right, copy on the left.
   Used on /about/. Image is an <img> for precise positioning, masked to blend into walnut. */
.loc-hero--portrait {
  background-image: linear-gradient(180deg, rgba(20, 14, 8, .9) 0%, rgba(20, 14, 8, .78) 100%);
  background-color: var(--ff-walnut);
  min-height: clamp(580px, 78vh, 760px);
  overflow: hidden;
}
.loc-hero-portrait-img {
  position: absolute; top: 0; bottom: 0; right: 0;
  width: 65%; height: 100%;
  object-fit: cover; object-position: 35% center;
  z-index: 1; pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 12%, #000 32%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 12%, #000 32%, #000 100%);
}
.loc-hero.loc-hero--portrait::after {
  background: linear-gradient(90deg, rgba(20,14,8,.78) 0%, rgba(20,14,8,.55) 25%, rgba(20,14,8,.15) 45%, transparent 60%);
}
.loc-hero--portrait .loc-hero-inner { margin-left: 0; max-width: 560px; }
@media (min-width: 761px) and (max-width: 1100px) {
  .loc-hero-portrait-img { width: 50%; object-position: 30% center; }
  .loc-hero--portrait .loc-hero-inner { max-width: 440px; }
  .loc-hero--portrait h1 { font-size: clamp(1.9rem, 4.4vw, 2.6rem); }
}
@media (max-width: 760px) {
  .loc-hero--portrait { min-height: auto; padding: 0 0 60px; }
  .loc-hero-portrait-img {
    width: 100%; height: 52vh; max-height: 460px;
    top: 0; right: 0; bottom: auto;
    object-position: center 25%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, rgba(0,0,0,.45) 82%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, #000 60%, rgba(0,0,0,.45) 82%, transparent 100%);
  }
  .loc-hero.loc-hero--portrait::after {
    background: linear-gradient(180deg, rgba(20,14,8,.15) 0%, rgba(20,14,8,.55) 45%, rgba(20,14,8,.9) 65%);
  }
  .loc-hero--portrait .loc-hero-inner { padding-top: calc(52vh - 40px); }
}
.loc-hero h1 { margin: 14px 0 22px; letter-spacing: -.02em; }
.loc-hero h1 em { font-style: italic; color: var(--ff-cream); font-weight: 400; }
.loc-hero-sub { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: rgba(255, 255, 255, .92); margin-bottom: 14px; }
.loc-hero-coverage { color: rgba(255, 255, 255, .72); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 22px; }
.loc-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 26px; }
@media (max-width: 760px) {
  .loc-hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .loc-hero-cta .btn { width: 100%; justify-content: center; padding-left: 18px; padding-right: 18px; }
}

/* Hero ornament — cream-tinted hairline + diamond */
.loc-hero .ornament { margin: 8px 0 6px; }
.loc-hero .ornament i { box-shadow: 0 0 0 1px rgba(246, 239, 225, .25); }

/* Stat pills inside loc-hero (re-uses .svc-hero-pills) — full-width bar below the buttons */
.loc-hero .svc-hero-pills {
  display: flex;
  width: 100%; box-sizing: border-box;
  justify-content: space-around; align-items: center;
  margin-top: 48px;
}
.loc-breadcrumb { position: relative; z-index: 2; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .7); margin-bottom: 14px; }
.loc-breadcrumb a { color: rgba(255, 255, 255, .85); }
.loc-breadcrumb a:hover { color: #fff; }
.loc-breadcrumb span { color: rgba(255, 255, 255, .35); margin: 0 8px; }

/* ===== INTRO + LOCAL HOOKS ===== */
.loc-intro { background-color: var(--ff-paper); background-image: var(--grain-light), var(--paper-fibre-light); background-repeat: repeat, repeat; }
.loc-intro-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.loc-intro-copy h2 { margin: 16px 0 24px; }
.loc-intro-copy h2 em { font-style: italic; color: var(--ff-green-dark); font-weight: 500; }
.loc-intro-copy p { color: var(--ff-ink); font-size: 1.08rem; margin: 0 0 18px; }
.loc-hooks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.loc-hook {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ff-cream); color: var(--ff-walnut);
  padding: 9px 16px; border-radius: 999px;
  font-size: .82rem; font-weight: 500;
  border: 1px solid var(--ff-line);
}
.loc-hook::before { content: "•"; color: var(--ff-green); font-size: 1.4rem; line-height: 0; }

.loc-intro-aside { display: flex; flex-direction: column; gap: 22px; align-self: start; position: sticky; top: 96px; }

/* Intro figure — Arts & Crafts / period vignette above the meta card */
.loc-intro-figure {
  position: relative; margin: 0;
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--ff-line);
  background: var(--ff-cream);
}
.loc-intro-figure img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .9s ease;
}
.loc-intro-figure:hover img { transform: scale(1.02); }
.loc-intro-figure::after {
  /* warm bottom-of-image gradient so the caption pill reads cleanly */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
  background: linear-gradient(180deg, rgba(31, 23, 17, 0) 0%, rgba(31, 23, 17, .68) 100%);
  pointer-events: none;
}
.loc-intro-figure figcaption {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  display: flex; flex-direction: column; gap: 6px;
  color: #fff;
  z-index: 1;
}
.loc-intro-figure-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .92);
  color: var(--ff-walnut);
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(31, 23, 17, .18);
}
.loc-intro-figure-tag::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--ff-gold);
}
.loc-intro-figure-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem; line-height: 1.35;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
  max-width: 28ch;
}

.loc-meta-card {
  background: #fff; border: 1px solid var(--ff-line); border-radius: var(--r-md);
  padding: 28px; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 18px;
}
.loc-meta-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--ff-walnut); }
.loc-meta-row { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 12px; border-bottom: 1px solid var(--ff-line); }
.loc-meta-row:last-child { border-bottom: 0; padding-bottom: 0; }
.loc-meta-row svg { width: 20px; height: 20px; color: var(--ff-green); flex-shrink: 0; margin-top: 2px; }
.loc-meta-row .lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--ff-mute); font-weight: 600; }
.loc-meta-row .val { color: var(--ff-ink); font-size: .98rem; line-height: 1.4; }

/* ===== SERVICE NUANCES ===== */
.loc-nuances { background-color: var(--ff-walnut); color: var(--ff-cream); background-image: var(--grain-dark), var(--paper-fibre-dark); background-repeat: repeat, repeat; position: relative; overflow: hidden; }

/* Subtle per-location background photograph — layered behind the grain texture, dimmed
   and de-saturated so cards + body copy stay legible. Activated when locNuances macro
   is passed a bg_image (sets --loc-nuances-bg + adds .loc-nuances--has-bg). */
.loc-nuances--has-bg .loc-nuances-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--loc-nuances-bg);
  background-size: cover;
  background-position: var(--loc-nuances-bg-pos, center center);
  background-repeat: no-repeat;
  opacity: .14;
  filter: grayscale(.55) contrast(.92) brightness(.78);
  mix-blend-mode: luminosity;
  /* Slow Ken-Burns zoom + drift so the panel breathes. 32s + alternate avoids
     a jarring reset; transform-origin biased low so the drift reveals upper
     detail (rooflines / sky) on the way back. */
  transform-origin: 50% 58%;
  animation: locNuancesKenBurns 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes locNuancesKenBurns {
  from { transform: scale(1.00) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.5%, -1.2%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .loc-nuances--has-bg .loc-nuances-bg { animation: none; }
}
/* Vignette + top/bottom fade so the photo melts into the walnut field instead of
   sitting as a hard rectangle — keeps the section feeling like a unified panel. */
.loc-nuances--has-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 35%, rgba(46, 31, 21, .55) 100%),
    linear-gradient(180deg, rgba(46, 31, 21, .55) 0%, transparent 18%, transparent 82%, rgba(46, 31, 21, .65) 100%);
}
.loc-nuances--has-bg > .wrap { position: relative; z-index: 2; }

.loc-nuances-inner { max-width: var(--maxw-mid); margin: 0 auto; text-align: center; }
.loc-nuances h2 { color: #fff; margin: 14px 0 26px; }
.loc-nuances h2 em { font-style: italic; color: var(--ff-cream); font-weight: 400; }
.loc-nuances p { color: rgba(246, 239, 225, .9); font-size: 1.05rem; max-width: 64ch; margin: 0 auto; }
.loc-nuances .eyebrow.light { display: inline-block; }

/* Grouped variant — lede + property-type cards */
.loc-nuances--grouped .loc-nuances-inner { max-width: 1180px; }
.loc-nuances-lede { max-width: 62ch; margin: 0 auto 48px; font-size: 1.05rem; color: rgba(246, 239, 225, .92); }
.loc-nuance-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; text-align: left; margin-top: 64px; }
.loc-nuance-card {
  background: rgba(246, 239, 225, .06);
  border: 1px solid rgba(246, 239, 225, .14);
  border-radius: var(--r-md);
  padding: 26px 24px 24px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
  transition: background-color .35s ease, border-color .35s ease, transform .35s ease;
}
.loc-nuance-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ff-gold, #b58c41) 0%, rgba(181, 140, 65, .35) 100%);
}
.loc-nuance-card:hover { background: rgba(246, 239, 225, .09); border-color: rgba(246, 239, 225, .22); transform: translateY(-3px); }
/* When a bg photo is present, give cards a touch of frosted glass so they sit
   crisply on top of the imagery without losing the panel's warmth. */
.loc-nuances--has-bg .loc-nuance-card { background: rgba(46, 31, 21, .42); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border-color: rgba(246, 239, 225, .18); }
.loc-nuances--has-bg .loc-nuance-card:hover { background: rgba(46, 31, 21, .55); border-color: rgba(246, 239, 225, .28); }
.loc-nuance-era { font-family: var(--font-display, Georgia, serif); font-size: 1.18rem; color: #fff; font-weight: 500; line-height: 1.2; }
.loc-nuance-era em { font-style: italic; color: var(--ff-cream); font-weight: 400; }
.loc-nuance-area { font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; color: rgba(246, 239, 225, .55); font-weight: 600; margin-bottom: 4px; }
.loc-nuance-card p { color: rgba(246, 239, 225, .85); font-size: .98rem; line-height: 1.65; margin: 0; max-width: none; text-align: left; }

@media (max-width: 1024px) {
  .loc-nuance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .loc-nuance-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .loc-nuances-lede { margin-bottom: 32px; }
  .loc-nuance-card { padding: 22px 20px 20px; }
}

/* ===== FEATURED PROJECTS ===== */
.loc-projects { background-color: var(--ff-paper); background-image: var(--grain-light), var(--paper-fibre-light); background-repeat: repeat, repeat; }
.loc-projects-head { text-align: center; margin-bottom: 54px; }
.loc-projects-head h2 { margin: 14px auto 18px; max-width: 24ch; }
.loc-projects-head h2 em { font-style: italic; color: var(--ff-green-dark); font-weight: 500; }
.loc-projects-head .lede { margin: 0 auto; }
.loc-projects-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 1080px) { .loc-projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; } }
.loc-project {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
  aspect-ratio: 4 / 3;
  background: var(--ff-walnut);
  isolation: isolate;
}
.loc-project:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.loc-project-img { position: absolute; inset: 0; background: var(--ff-cream); overflow: hidden; }
.loc-project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.loc-project:hover .loc-project-img img { transform: scale(1.08); }
.loc-project::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 8, 0) 38%, rgba(20, 14, 8, .55) 70%, rgba(20, 14, 8, .92) 100%);
  pointer-events: none;
  z-index: 1;
}
.loc-project-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px 20px;
  color: #fff;
  z-index: 2;
}
.loc-project-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, .22);
}
.loc-project h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  line-height: 1.25;
}
.loc-project p {
  color: rgba(255, 255, 255, .88);
  font-size: .92rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .5s ease, opacity .35s ease, margin-top .35s ease;
}
@media (hover: hover) {
  .loc-project:hover p { max-height: 6.5em; opacity: 1; margin-top: 8px; }
}
@media (hover: none) {
  .loc-project p { max-height: 6.5em; opacity: 1; margin-top: 8px; }
}

/* ===== SERVICES IN TOWN ===== */
.loc-services { background-color: var(--ff-cream); background-image: var(--grain-light), var(--paper-fibre-light); background-repeat: repeat, repeat; }
.loc-services-head { text-align: center; margin-bottom: 50px; }
.loc-services-head h2 { margin: 14px auto 16px; max-width: 30ch; }
.loc-services-head h2 em { font-style: italic; color: var(--ff-green-dark); font-weight: 500; }
.loc-services-head .lede { margin: 0 auto; }
.loc-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.loc-service-card {
  position: relative;
  background: #fff; padding: 28px 24px; border-radius: var(--r-md);
  border: 1px solid var(--ff-line); display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.loc-service-card:hover { transform: translateY(-4px); border-color: var(--ff-green); box-shadow: var(--shadow-soft); }
.loc-service-card.is-emphasised { border-color: var(--ff-green); box-shadow: 0 1px 0 var(--ff-green-dark) inset; }
.loc-service-card-flag {
  position: absolute; top: -10px; left: 20px;
  background: var(--ff-green); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; line-height: 1.4;
}
.loc-service-card-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--ff-green); color: #fff; display: grid; place-items: center; margin-bottom: 18px; flex-shrink: 0; }
.loc-service-card-icon svg { width: 22px; height: 22px; }
.loc-service-card h3 { font-size: 1.08rem; line-height: 1.3; margin-bottom: 8px; }
.loc-service-card-where { display: block; font-size: .82rem; font-weight: 500; color: var(--ff-green-dark); font-style: italic; margin-top: 2px; }
.loc-service-card p { color: var(--ff-mute); font-size: .9rem; line-height: 1.55; margin: 0 0 18px; flex: 1; }
.loc-service-card a { color: var(--ff-green); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s ease; margin-top: auto; }
.loc-service-card a svg { width: 14px; height: 14px; }
.loc-service-card:hover a { gap: 14px; }

/* With-image variant: photo hero + icon-badge stamp */
.loc-service-card.has-image { padding-top: 0; overflow: hidden; }
.loc-service-card-img {
  position: relative;
  margin: 0 -24px 34px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ff-cream);
}
.loc-service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .8s ease;
}
.loc-service-card.has-image:hover .loc-service-card-img img { transform: scale(1.04); }
.loc-service-card-img .loc-service-card-flag {
  top: 12px; left: 12px;
}
.loc-service-card-img .loc-service-card-icon {
  position: absolute;
  bottom: 14px; left: 14px;
  margin: 0;
  box-shadow: 0 6px 16px rgba(34, 47, 27, .35);
  border: 2px solid #fff;
}

@media (min-width: 900px) {
  .loc-services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ===== POSTCODE COVERAGE ===== */
.loc-coverage { background: var(--ff-paper); border-top: 1px solid var(--ff-line); border-bottom: 1px solid var(--ff-line); padding: 46px 0; }
.loc-coverage-inner { display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; }
.loc-coverage-label { font-family: var(--sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; color: var(--ff-mute); font-weight: 600; line-height: 1.5; max-width: 16ch; }
.loc-coverage-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.loc-coverage-chip { background: #fff; color: var(--ff-walnut); padding: 8px 14px; border-radius: 6px; font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .08em; border: 1px solid var(--ff-line); }
@media (max-width: 760px) {
  .loc-coverage-inner { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .loc-coverage-label { max-width: none; }
  .loc-coverage-chips { justify-content: center; }
}

/* Long-form prose variant — wider container, eyebrow+heading span full width, prose splits to 2 cols on desktop. */
.loc-coverage--prose { padding: clamp(56px, 7vw, 96px) 0; }
.loc-coverage--prose .loc-coverage-inner { display: block; max-width: 1100px; margin: 0 auto; text-align: left; }
.loc-coverage--prose .eyebrow { display: block; font-family: var(--sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; color: var(--ff-mute); font-weight: 600; margin-bottom: 14px; }
.loc-coverage-heading { font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.1rem); line-height: 1.2; color: var(--ff-ink); margin: 0 0 22px; font-weight: 500; letter-spacing: -.01em; }
.loc-coverage-heading em { color: var(--ff-walnut); font-style: italic; font-family: var(--serif); font-weight: 500; }
.loc-coverage-prose p { font-family: var(--serif); font-size: clamp(1.125rem, 1.6vw, 1.25rem); line-height: 1.65; color: var(--ff-ink); margin: 0 0 20px; break-inside: avoid; }
.loc-coverage-prose p:last-child { margin-bottom: 0; }
.loc-coverage-prose strong { font-family: var(--sans); font-weight: 600; font-size: .92em; letter-spacing: .04em; color: var(--ff-walnut); background: rgba(184, 151, 88, .12); padding: 1px 6px; border-radius: 3px; white-space: nowrap; }
.loc-coverage-prose a { color: var(--ff-walnut); font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(184, 151, 88, .35); padding-bottom: 1px; transition: border-color .2s ease, color .2s ease; white-space: nowrap; }
.loc-coverage-prose a:hover { color: var(--ff-ink); border-bottom-color: var(--ff-walnut); }
@media (min-width: 960px) {
  .loc-coverage--prose .loc-coverage-prose { column-count: 2; column-gap: 56px; }
}
@media (max-width: 760px) {
  .loc-coverage--prose .loc-coverage-inner { text-align: left; }
}

/* ===== TESTIMONIAL ===== */
.loc-testimonial { background: var(--ff-cream); position: relative; overflow: hidden; padding: clamp(60px, 8vw, 120px) 0; }
.loc-testimonial::before { content: ""; position: absolute; top: -120px; right: -120px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(90, 122, 75, .1), transparent 70%); }
.loc-testimonial::after { content: ""; position: absolute; bottom: -120px; left: -120px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(184, 151, 88, .1), transparent 70%); }
.loc-testimonial blockquote { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.loc-testimonial .stars { display: inline-flex; gap: 4px; color: var(--ff-gold); margin-bottom: 22px; }
.loc-testimonial .stars svg { width: 22px; height: 22px; fill: currentColor; }
.loc-testimonial blockquote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.8rem); color: var(--ff-ink); line-height: 1.4; margin: 0 0 28px; }
.loc-testimonial cite {
  display: inline-flex; gap: 14px; align-items: center; font-style: normal;
  padding-top: 22px; border-top: 1px solid var(--ff-line);
}
.loc-testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--ff-walnut); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; flex-shrink: 0; }
.loc-testimonial-avatar--img { object-fit: cover; padding: 0; background: var(--ff-line); }
.loc-testimonial-meta { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 4px; text-align: left; }
.loc-testimonial-name { font-weight: 600; color: var(--ff-ink); font-size: .98rem; line-height: 1.25; }
.loc-testimonial-area { font-size: .82rem; color: var(--ff-mute); letter-spacing: .04em; }
.loc-testimonial-source { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--ff-mute); letter-spacing: .02em; }
.loc-testimonial-g { width: 14px; height: 14px; flex-shrink: 0; }
.loc-testimonial-link { display: inline-flex; align-items: center; gap: 6px; margin: 22px auto 0; font-size: .85rem; color: var(--ff-green-dark); text-decoration: none; padding: 8px 14px; border: 1px solid var(--ff-line); border-radius: 999px; background: #fff; transition: border-color .25s ease, color .25s ease, transform .25s ease; position: relative; z-index: 1; width: fit-content; }
.loc-testimonial blockquote { display: flex; flex-direction: column; align-items: center; }
.loc-testimonial-link:hover { border-color: var(--ff-green); color: var(--ff-walnut); transform: translateY(-1px); }
.loc-testimonial-link svg { width: 13px; height: 13px; }
.loc-testimonial blockquote.is-gmb { padding: 36px clamp(20px, 4vw, 56px); background: rgba(255,255,255,.55); border-radius: 18px; backdrop-filter: blur(2px); box-shadow: 0 2px 24px rgba(50,60,40,.06); }
.loc-testimonial blockquote.is-gmb::before { content: ""; position: absolute; left: 50%; top: -14px; transform: translateX(-50%); width: 28px; height: 28px; border-radius: 50%; background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'><path fill='%234285f4' d='M45.12 24.5c0-1.56-.14-3.06-.4-4.5H24v8.51h11.84c-.51 2.75-2.06 5.08-4.39 6.64v5.52h7.11c4.16-3.83 6.56-9.47 6.56-16.17z'/><path fill='%2334a853' d='M24 46c5.94 0 10.92-1.97 14.56-5.33l-7.11-5.52c-1.97 1.32-4.49 2.1-7.45 2.1-5.73 0-10.58-3.87-12.31-9.07H4.34v5.7C7.96 41.07 15.4 46 24 46z'/><path fill='%23fbbc04' d='M11.69 28.18C11.25 26.86 11 25.45 11 24s.25-2.86.69-4.18v-5.7H4.34C2.85 17.09 2 20.45 2 24c0 3.55.85 6.91 2.34 9.88l7.35-5.7z'/><path fill='%23ea4335' d='M24 10.75c3.23 0 6.13 1.11 8.41 3.29l6.31-6.31C34.91 4.18 29.93 2 24 2 15.4 2 7.96 6.93 4.34 14.12l7.35 5.7c1.73-5.2 6.58-9.07 12.31-9.07z'/></svg>") center/16px 16px no-repeat; box-shadow: 0 2px 8px rgba(50,60,40,.12); }

/* Carousel variant — slides stack in a single CSS-grid cell so the track
   auto-sizes to the tallest review. Fade + slight rise on transition. */
.loc-testimonial--carousel .loc-testimonial-track {
  display: grid; grid-template-columns: 1fr; position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
}
.loc-testimonial--carousel .loc-testimonial-track > blockquote {
  grid-column: 1 / 2; grid-row: 1 / 2;
  margin: 0; max-width: none;
  opacity: 0; transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.loc-testimonial--carousel .loc-testimonial-track > blockquote.is-active {
  opacity: 1; transform: none; pointer-events: auto;
}
.loc-testimonial-nav {
  display: flex; gap: 10px; justify-content: center; align-items: center;
  margin-top: 36px; position: relative; z-index: 1;
}
.loc-testimonial-dot {
  width: 10px; height: 10px; border-radius: 50%; padding: 0;
  border: 1px solid var(--ff-line); background: #fff;
  cursor: pointer; transition: width .35s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.loc-testimonial-dot:hover { border-color: var(--ff-green); transform: scale(1.1); }
.loc-testimonial-dot.is-active {
  width: 28px; border-radius: 999px;
  background: var(--ff-green-dark); border-color: var(--ff-green-dark);
}
.loc-testimonial-dot:focus-visible {
  outline: 2px solid var(--ff-green); outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .loc-testimonial--carousel .loc-testimonial-track > blockquote { transition: opacity .01s linear; transform: none; }
  .loc-testimonial-dot { transition: none; }
}

/* ===== FAQ ===== */
.loc-faq { background-color: var(--ff-paper); background-image: var(--grain-light), var(--paper-fibre-light); background-repeat: repeat, repeat; }
.loc-faq-inner { max-width: var(--maxw-mid); margin: 0 auto; }
.loc-faq details > div { max-width: 78ch; }
.loc-faq-head { text-align: center; margin-bottom: 42px; }
.loc-faq-head h2 { margin: 14px auto 16px; max-width: 22ch; }
.loc-faq-head h2 em { font-style: italic; color: var(--ff-green-dark); font-weight: 500; }
.loc-faq details { background: #fff; border: 1px solid var(--ff-line); border-radius: var(--r-md); margin-bottom: 14px; transition: border-color .25s ease, box-shadow .25s ease; }
.loc-faq details[open] { border-color: var(--ff-green); box-shadow: var(--shadow-soft); }
.loc-faq summary { padding: 20px 26px; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--ff-walnut); cursor: pointer; list-style: none; display: flex; align-items: center; gap: 18px; }
.loc-faq summary::-webkit-details-marker { display: none; }
.loc-faq summary::before { content: "?"; flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: var(--ff-green); color: #fff; font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.15rem; line-height: 32px; text-align: center; transition: background .25s ease, transform .35s ease; }
.loc-faq details:hover summary::before,
.loc-faq details[open] summary::before { background: var(--ff-green-dark); }
.loc-faq details[open] summary::before { transform: rotate(360deg); }
.loc-faq summary::after { content: "+"; margin-left: auto; font-family: var(--sans); font-size: 1.6rem; color: var(--ff-green); transition: transform .25s ease; line-height: 1; }
.loc-faq details[open] summary::after { content: "−"; }
.loc-faq details > div { padding: 0 26px 22px 76px; color: var(--ff-mute); font-size: 1rem; line-height: 1.6; }

/* ===== CTA BAND ===== */
.loc-cta { background-color: var(--ff-walnut); color: #fff; position: relative; overflow: hidden; background-image: var(--grain-dark), var(--paper-fibre-dark); background-repeat: repeat, repeat; }
.loc-cta::before { content: ""; position: absolute; inset: 0; background: url("/gmb-photos/gmb-031.jpg") center/cover; opacity: .18; }
.loc-cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.loc-cta h2 { color: #fff; margin: 14px 0 16px; }
.loc-cta h2 em { font-style: italic; color: var(--ff-cream); font-weight: 400; }
.loc-cta p { color: rgba(255, 255, 255, .85); font-size: 1.05rem; margin: 0 0 28px; max-width: 56ch; }
.loc-cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.loc-cta-phone {
  background: rgba(90, 122, 75, .26); border: 1px solid rgba(90, 122, 75, .55);
  padding: 18px 22px; border-radius: var(--r-md);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .55), 0 1px 0 rgba(255, 255, 255, .04) inset, 0 0 0 1px rgba(90, 122, 75, .15);
  display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 18px;
  color: #fff; text-decoration: none;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.loc-cta-phone:hover, .loc-cta-phone:focus-visible {
  background: rgba(90, 122, 75, .4); border-color: rgba(122, 158, 102, .8);
  box-shadow: 0 22px 50px -16px rgba(0, 0, 0, .6), 0 0 0 1px rgba(122, 158, 102, .35), 0 0 30px -8px rgba(90, 122, 75, .55);
  transform: translateY(-1px);
}
.loc-cta-phone-icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 999px;
  background: rgba(90, 122, 75, .35); border: 1px solid rgba(122, 158, 102, .5);
  color: var(--ff-cream);
}
.loc-cta-phone-icon svg { width: 24px; height: 24px; }
.loc-cta-phone-body { min-width: 0; display: block; }
.loc-cta-phone .lbl { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; color: rgba(255, 255, 255, .65); margin: 0 0 2px; }
.loc-cta-phone-num { display: block; font-family: var(--serif); font-size: 1.7rem; line-height: 1.15; color: #fff; letter-spacing: .01em; }
.loc-cta-phone-hours { display: block; font-size: .78rem; color: rgba(255, 255, 255, .7); margin-top: 4px; }

/* ===== HUB PAGE ===== */
.hub-hero {
  position: relative; overflow: hidden;
  background: var(--ff-walnut); color: #fff;
  padding: 160px 0 100px;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(20, 14, 8, .55) 0%, rgba(20, 14, 8, .42) 30%, rgba(20, 14, 8, .82) 100%), var(--grain-dark);
}
.hub-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(0, 0, 0, .4) 100%); pointer-events: none; z-index: 1; }
.hub-hero-inner { position: relative; z-index: 2; max-width: var(--maxw-mid); margin: 0 auto; }
.hub-hero .loc-breadcrumb { justify-content: center; display: inline-flex; gap: 4px; }
.hub-hero .ornament { margin: 12px auto 14px; }
.hub-hero h1 { margin: 6px auto 18px; max-width: 22ch; }
.hub-hero h1 em { font-style: italic; color: var(--ff-cream); font-weight: 400; }
.hub-hero-sub { color: rgba(255, 255, 255, .9); font-size: clamp(1.02rem, 1.4vw, 1.18rem); max-width: 62ch; margin: 0 auto 14px; }
.hub-hero .loc-hero-coverage { margin: 0 auto 4px; }
.hub-hero .svc-hero-pills { margin: 26px auto 0; }
@media (max-width: 760px) {
  .hub-hero { padding: 120px 0 70px; }
  .hub-hero h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .hub-hero-sub { font-size: 1rem; }
  .hub-hero .loc-hero-coverage { font-size: .72rem; letter-spacing: .12em; }
  .hub-hero .svc-hero-pills { width: 100%; box-sizing: border-box; }
}
.hub-grid-section { padding-top: clamp(60px, 7vw, 100px); background-color: var(--ff-paper); background-image: var(--grain-light), var(--paper-fibre-light); background-repeat: repeat, repeat; }
.hub-grid-head { text-align: center; max-width: 62ch; margin: 0 auto 50px; }
.hub-grid-head .ornament { margin: 12px auto 14px; }
.hub-grid-head h2 { margin: 6px 0 14px; }
.hub-grid-head h2 em { font-style: italic; color: var(--ff-green); font-weight: 400; }
.hub-grid-head .lede { margin: 0 auto; color: var(--ff-mute); }
@media (max-width: 760px) {
  .hub-grid-head { margin-bottom: 36px; }
}

.hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.hub-card {
  position: relative;
  background: #fff; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  border: 1px solid var(--ff-line);
}
.hub-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--ff-green) 0%, var(--ff-gold) 100%);
  opacity: 0; transition: opacity .4s ease;
  border-radius: var(--r-md) 0 0 var(--r-md);
  z-index: 3;
}
.hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--ff-cream-deep); }
.hub-card:hover::before { opacity: 1; }
.hub-card:focus-visible { outline: 2px solid var(--ff-green); outline-offset: 3px; }
.hub-card-img { position: relative; aspect-ratio: 16/10; background: var(--ff-cream); overflow: hidden; }
.hub-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .8s ease; }
.hub-card:hover .hub-card-img img { transform: scale(1.06); filter: brightness(1.04); }
.hub-card-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 14, 8, .42) 100%);
  opacity: .85; transition: opacity .4s ease; pointer-events: none;
}
.hub-card:hover .hub-card-img::after { opacity: 1; }
.hub-card-postcode {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.5rem; letter-spacing: .04em;
  color: var(--ff-cream);
  padding: 4px 12px 4px 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .5);
  display: inline-flex; align-items: baseline; gap: 10px;
}
.hub-card-postcode::after {
  content: ""; display: block; height: 1px; width: 28px; margin-left: 0;
  background: linear-gradient(90deg, var(--ff-cream) 0%, transparent 100%);
  align-self: center;
}
.hub-card-body { padding: 26px 28px; flex: 1; display: flex; flex-direction: column; }
.hub-card-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--ff-mute); font-weight: 600; margin-bottom: 10px;
}
.hub-card-meta svg { width: 14px; height: 14px; color: var(--ff-green); }
.hub-card h2 { font-size: 1.55rem; margin-bottom: 10px; color: var(--ff-walnut); transition: color .3s ease; }
.hub-card:hover h2 { color: var(--ff-green-dark); }
.hub-card p { color: var(--ff-mute); font-size: .96rem; margin: 0 0 22px; flex: 1; line-height: 1.6; }
.hub-card-link { color: var(--ff-green); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s ease, color .3s ease; margin-top: auto; }
.hub-card-link svg { width: 14px; height: 14px; transition: transform .3s ease; }
.hub-card:hover .hub-card-link { gap: 14px; color: var(--ff-green-dark); }
.hub-card:hover .hub-card-link svg { transform: translateX(2px); }
.hub-card.is-stub .hub-card-img { background: linear-gradient(135deg, var(--ff-cream) 0%, var(--ff-cream-deep) 100%); }
.hub-card.is-stub .hub-card-img::before {
  content: "Local page coming soon";
  position: absolute; top: 12px; right: 12px; z-index: 4;
  background: rgba(255, 255, 255, .92);
  color: var(--ff-walnut);
  font-family: var(--sans); font-size: .66rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(20, 14, 8, .25);
  pointer-events: none;
}
@media (max-width: 460px) {
  .hub-card-body { padding: 22px 22px; }
  .hub-card-postcode { font-size: 1.3rem; left: 12px; bottom: 10px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .loc-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .loc-intro-aside { order: -1; position: static; top: auto; gap: 28px; }
  .loc-intro-figure img { aspect-ratio: 16 / 10; }
  .loc-intro-figure figcaption { left: 16px; right: 16px; bottom: 16px; }
  .loc-intro-figure-caption { font-size: .95rem; }
  .loc-cta-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  :root { --pad-x: 20px; }
  .loc-hero { min-height: auto; padding: 120px 0 60px; }
  .loc-projects-grid, .loc-services-grid, .hub-grid { grid-template-columns: 1fr; }
}

/* ===== SERVICE PAGES ===== */

/* Options grid (species / patterns / sectors) */
.svc-options { background-color: var(--ff-paper); background-image: var(--grain-light), var(--paper-fibre-light); background-repeat: repeat, repeat; }
.svc-options-head { text-align: center; max-width: 60ch; margin: 0 auto 50px; }
.svc-options-head h2 em { font-style: italic; color: var(--ff-green); font-weight: 400; }
.svc-options-head .lede { color: var(--ff-mute); font-size: 1.05rem; margin-top: 14px; }
.svc-options-grid {
  display: flex; flex-wrap: wrap; gap: 22px;
  justify-content: center; align-items: stretch;
}
.svc-option {
  background: #fff; border: 1px solid var(--ff-line); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column;
  flex: 1 1 240px; max-width: 300px;
  transition: transform .35s ease, box-shadow .35s ease;
}
/* Balance an odd trailing row: a 5-option page becomes a tidy 3 + 2 (centred)
   instead of an orphaned 4 + 1. Wider basis caps the row at 3 cards. */
.svc-options-grid:has(> .svc-option:nth-child(5):last-child) > .svc-option {
  flex-basis: 330px; max-width: 380px;
}
.svc-option:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.svc-option-img { aspect-ratio: 4/3; background: var(--ff-cream); overflow: hidden; }
.svc-option-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.svc-option:hover .svc-option-img img { transform: scale(1.06); }
.svc-option-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-option-tag {
  display: inline-block; align-self: flex-start;
  background: var(--ff-cream); color: var(--ff-walnut);
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  padding: 4px 11px; border-radius: 999px; margin-bottom: 10px;
}
.svc-option h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--ff-walnut); }
.svc-option p { color: var(--ff-mute); font-size: .94rem; margin: 0; line-height: 1.55; }

/* Process list */
.svc-process .loc-nuances-inner { max-width: 1280px; }
.svc-process .svc-process-lede {
  color: rgba(255, 255, 255, .82); font-size: 1.05rem;
  max-width: 60ch; margin: 0 auto 38px;
}
.svc-process-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
  max-width: 1280px; margin: 0 auto;
}
@media (max-width: 1024px) {
  .svc-process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; }
}
.svc-process-list li {
  background: rgba(90, 122, 75, .22);
  border: 1px solid rgba(90, 122, 75, .42);
  border-radius: var(--r-md);
  padding: 26px 26px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.svc-process-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ff-cream); color: var(--ff-walnut);
  font-family: var(--serif); font-weight: 600; font-size: 1.35rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.svc-process-body h3 { color: #fff; font-size: 1.2rem; margin: 0 0 8px; }
.svc-process-body p { color: rgba(255, 255, 255, .8); font-size: .94rem; margin: 0; line-height: 1.55; }

/* Service-coverage chips are links — give them a hover */
.svc-coverage-chip { transition: background .2s ease, color .2s ease, border-color .2s ease; }
.svc-coverage-chip:hover { background: var(--ff-green); color: #fff; border-color: var(--ff-green); }

/* Services dropdown panel is wider — 5 items, full names */
.nav-dropdown-panel--svc { min-width: 540px; }
.nav-dropdown-grid--svc { grid-template-columns: 1fr; }
.nav-dropdown-grid--svc .nav-dropdown-item {
  flex-direction: row; align-items: baseline; justify-content: space-between; gap: 12px;
}
.nav-dropdown-grid--svc .nav-dropdown-item small { white-space: nowrap; }

@media (max-width: 1024px) {
  /* Two per row on tablet; an odd trailing card centres itself. */
  .svc-options-grid > .svc-option,
  .svc-options-grid:has(> .svc-option:nth-child(5):last-child) > .svc-option {
    flex-basis: calc(50% - 11px); max-width: none;
  }
}
@media (max-width: 760px) {
  .svc-process-list { grid-template-columns: 1fr; }
  .svc-options-grid > .svc-option,
  .svc-options-grid:has(> .svc-option:nth-child(5):last-child) > .svc-option {
    flex-basis: 100%; max-width: none;
  }
}

/* ===== ROOM-BY-ROOM GRID ("[flooring type] for kitchens" etc.) ===== */
.room-types { background: var(--ff-paper); }
.room-types-head { text-align: center; max-width: 64ch; margin: 0 auto 40px; }
.room-types-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
}
.room-type-card {
  background: #fff; border: 1px solid var(--ff-line); border-radius: var(--r-md);
  padding: 28px 26px 30px; display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.room-type-card:hover { transform: translateY(-4px); border-color: var(--ff-green); box-shadow: var(--shadow-soft); }
.room-type-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ff-green); color: #fff;
  display: grid; place-items: center; margin-bottom: 18px; flex-shrink: 0;
}
.room-type-icon svg { width: 22px; height: 22px; }
.room-type-card h3 { font-size: 1.12rem; line-height: 1.3; margin: 0 0 10px; color: var(--ff-walnut); }
.room-type-card p { color: var(--ff-mute); font-size: .92rem; line-height: 1.6; margin: 0; }
@media (max-width: 1024px) {
  .room-types-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .room-types-grid { grid-template-columns: 1fr; }
}

/* ===== SERVICE PAGE POLISH ===== */

/* Hero — Ken Burns bg + stat pills */
.svc-hero { background-image: linear-gradient(180deg, rgba(20, 14, 8, .55) 0%, rgba(20, 14, 8, .40) 35%, rgba(20, 14, 8, .75) 100%); }
.svc-hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.svc-hero-bg::before {
  content: ""; position: absolute; inset: -3% -4%;
  background: var(--loc-hero-image, url("/images/banner-new-img.jpg")) center/cover no-repeat;
  transform-origin: 42% 50%;
  animation: svc-hero-kenburns 36s ease-in-out infinite alternate;
}
@keyframes svc-hero-kenburns {
  0%   { transform: scale(1.02) translateX(0); }
  100% { transform: scale(1.10) translateX(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .svc-hero-bg::before { animation: none; transform: scale(1.04); }
}

.svc-hero-pills {
  display: inline-flex; flex-wrap: wrap; gap: 0;
  margin-top: 28px;
  padding: 16px 24px;
  background: rgba(20, 14, 8, .42);
  border: 1px solid rgba(246, 239, 225, .14);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 999px;
  max-width: 100%;
}
/* svcHero hero pills: full-width bar, more breathing room from buttons above */
.svc-hero .svc-hero-pills {
  display: flex;
  width: 100%; box-sizing: border-box;
  justify-content: space-around; align-items: center;
  margin-top: 48px;
}
.svc-hero-pill { display: inline-flex; align-items: baseline; gap: 8px; padding: 0 22px; position: relative; }
.svc-hero-pill + .svc-hero-pill::before {
  content: ""; position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 1px; background: rgba(246, 239, 225, .22);
}
.svc-hero-pill strong {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.6rem; color: var(--ff-cream); line-height: 1;
  letter-spacing: -.01em;
}
.svc-hero-pill em {
  font-style: normal; font-family: var(--serif); color: var(--ff-cream);
  font-size: 1.1rem; line-height: 1; margin-left: -4px;
}
.svc-hero-pill > span {
  font-family: var(--sans); font-size: .76rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(246, 239, 225, .76);
}
@media (max-width: 760px) {
  .svc-hero-pills { padding: 12px 14px; gap: 6px; border-radius: 22px; flex-direction: column; align-items: flex-start; }
  .svc-hero-pill { padding: 6px 0; }
  .svc-hero-pill + .svc-hero-pill::before { display: none; }
  .svc-hero-pill strong { font-size: 1.4rem; }
}

/* Hero ornament colour (cream-tinted, not the dark-page line) */
.svc-hero .ornament { margin: 6px 0 12px; }
.svc-hero .ornament i { box-shadow: 0 0 0 1px rgba(246, 239, 225, .25); }

/* Service intro — full-width copy block + horizontal spec strip below.
   Replaces the old 2-col loc-intro-grid for service pages only (locations keep
   the figure+aside sidebar because they have an intro image to fill it). */
.svc-intro .svc-intro-inner { max-width: var(--maxw-mid); margin: 0 auto; }
.svc-intro .svc-intro-copy { max-width: none; }
.svc-intro .svc-intro-copy h2 { margin: 16px 0 24px; }
.svc-intro .svc-intro-copy h2 em { font-style: italic; color: var(--ff-green-dark); font-weight: 500; }
.svc-intro .svc-intro-copy p { color: var(--ff-ink); font-size: 1.08rem; margin: 0 0 18px; }
.svc-intro .svc-intro-copy .ornament { margin: 12px 0 16px; }
.svc-intro-hooks { margin-top: 28px; margin-bottom: 0; }

/* Horizontal spec strip — ledger/nameplate feel, hairline separators. */
.svc-intro-specs {
  margin-top: 56px;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--ff-line);
  border: 1px solid var(--ff-line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.svc-intro-spec {
  background: #fff;
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
  transition: background-color .25s ease;
}
.svc-intro-spec::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--ff-green) 0%, var(--ff-gold) 100%);
  opacity: 0; transition: opacity .35s ease;
}
.svc-intro-spec:hover { background: var(--ff-cream); }
.svc-intro-spec:hover::before { opacity: 1; }
.svc-intro-spec-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--ff-green);
  margin-bottom: 10px;
}
.svc-intro-spec-icon svg { width: 24px; height: 24px; }
.svc-intro-spec-lbl {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--ff-mute); font-weight: 600;
}
.svc-intro-spec-val {
  font-family: var(--serif); font-size: 1.15rem; color: var(--ff-walnut);
  font-weight: 500; line-height: 1.45;
}
.svc-intro-spec--rating { background: var(--ff-cream); }
.svc-intro-spec--rating .svc-intro-spec-icon { color: var(--ff-gold); }
.svc-intro-spec--rating .svc-intro-spec-val { color: var(--ff-walnut); font-style: italic; }
.svc-intro-spec--rating:hover { background: #fff; }

@media (max-width: 1080px) {
  .svc-intro-specs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .svc-intro-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 40px; }
  .svc-intro-spec { padding: 20px 18px; }
}
@media (max-width: 460px) {
  .svc-intro-specs { grid-template-columns: 1fr; }
}

/* Section heads — ornament breathing room */
.svc-options-head .ornament,
.loc-projects-head .ornament,
.loc-faq-head .ornament,
.loc-nuances-inner .ornament,
.loc-cta-inner .ornament { margin: 10px 0 14px; }

/* Options — italic serif numeral above title + gold rail hover */
.svc-option { position: relative; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.svc-option::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--ff-green) 0%, var(--ff-gold) 100%);
  opacity: 0; transition: opacity .35s ease;
  border-radius: var(--r-md) 0 0 var(--r-md);
  z-index: 1;
}
.svc-option:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--ff-cream-deep); }
.svc-option:hover::before { opacity: 1; }
.svc-option-num {
  display: block;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.35rem; color: var(--ff-green-dark);
  letter-spacing: .01em;
  padding-bottom: 8px; margin-bottom: 12px;
  border-bottom: 1px solid var(--ff-line);
  width: 38px;
}
.svc-option-tag {
  display: inline-block; align-self: flex-start;
  background: var(--ff-cream); color: var(--ff-walnut);
  font-family: var(--sans); font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}

/* Process — icon badge + italic serif numeral */
.svc-process-list li {
  position: relative;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.svc-process-list li::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--ff-cream) 0%, var(--ff-gold) 100%);
  opacity: 0; transition: opacity .35s ease;
  border-radius: var(--r-md) 0 0 var(--r-md);
}
.svc-process-list li:hover { transform: translateY(-3px); border-color: rgba(90, 122, 75, .65); background: rgba(90, 122, 75, .32); }
.svc-process-list li:hover::before { opacity: 1; }
.svc-process-list li:hover .svc-process-icon {
  border-color: var(--ff-gold);
  background: rgba(246, 239, 225, .14);
  transform: rotate(-3deg) scale(1.04);
}

.svc-process-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(246, 239, 225, .18);
  margin-bottom: 4px;
}
.svc-process-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(246, 239, 225, .08);
  border: 1px solid rgba(246, 239, 225, .28);
  color: var(--ff-cream);
  flex-shrink: 0;
  transition: transform .4s ease, background .35s ease, border-color .35s ease;
}
.svc-process-icon svg { width: 28px; height: 28px; display: block; }
.svc-process-num {
  width: auto; height: auto; border-radius: 0;
  background: transparent; box-shadow: none;
  color: rgba(246, 239, 225, .55);
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.9rem; line-height: 1;
  display: inline-block; place-items: initial;
  padding: 0; border: 0;
  letter-spacing: .02em;
}
.svc-process-list li:hover .svc-process-num { color: var(--ff-gold); }

/* Projects — gold rail hover, refined */
.svc-project { position: relative; border: 1px solid transparent; transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease; }
.svc-project::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--ff-green) 0%, var(--ff-gold) 100%);
  opacity: 0; transition: opacity .4s ease;
  border-radius: var(--r-md) 0 0 var(--r-md);
  z-index: 2;
}
.svc-project:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--ff-cream-deep); }
.svc-project:hover::before { opacity: 1; }
.svc-project-img,
.svc-project .loc-project-img { position: absolute; inset: 0; }

/* Service projects — 4-col desktop grid (steps down 4 → 3 → 2 → 1) */
.svc-projects-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.svc-projects-grid .loc-project-body { padding: 18px 20px 18px; }
.svc-projects-grid .loc-project h3 { font-size: 1.08rem; }
.svc-projects-grid .loc-project p { font-size: .88rem; }
@media (max-width: 1180px) {
  .svc-projects-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
}
@media (max-width: 860px) {
  .svc-projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .svc-projects-grid .loc-project-body { padding: 16px 18px; }
}
@media (max-width: 480px) {
  .svc-projects-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* FAQ — animate open caret a touch */
.loc-faq summary { transition: color .25s ease; }
.loc-faq details:hover summary { color: var(--ff-green-dark); }
@media (max-width: 560px) {
  .loc-faq summary { padding: 16px 18px; font-size: 1.05rem; gap: 14px; }
  .loc-faq summary::before { width: 28px; height: 28px; font-size: 1rem; line-height: 28px; }
  .loc-faq details > div { padding: 0 18px 18px 60px; }
}

/* Section heading spacing — slightly tighter under ornament */
.svc-options-head h2,
.loc-projects-head h2,
.loc-faq-head h2,
.loc-nuances h2,
.loc-cta h2 { margin-top: 6px; }

/* Mobile breakpoint — pills + process numerals */
@media (max-width: 760px) {
  .svc-process-num { font-size: 1.55rem; }
  .svc-process-icon { width: 48px; height: 48px; }
  .svc-process-icon svg { width: 24px; height: 24px; }
  .svc-process-head { padding-bottom: 12px; }
  .svc-option-num { font-size: 1.2rem; width: 34px; padding-bottom: 6px; margin-bottom: 10px; }
  .svc-meta-card { padding-top: 28px; }
  .svc-meta-card h3::before { width: 28px; height: 28px; background-size: 14px 14px; }
}

/* ===== WOOD MOSAIC ===== */
.wood-mosaic-section { padding-bottom: 0; }
.wood-mosaic-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.wood-mosaic-head .eyebrow { display: inline-block; }
.wood-mosaic-head h2 { margin: 8px 0 10px; }
.wood-mosaic-head p { color: var(--ff-ink-soft, #555); margin: 0; }

.wood-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0;
  width: 100%;
}
.wood-mosaic-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #1a1a1a;
  isolation: isolate;
}
.wood-mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .4s ease;
  filter: saturate(.95);
}
.wood-mosaic-tile:hover img,
.wood-mosaic-tile:focus-within img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.wood-mosaic-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 16px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  pointer-events: none;
}
.wood-mosaic-cat {
  font: 600 .66rem/1 var(--font-body, 'Inter', system-ui, sans-serif);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ff-gold, #c8a464);
}
.wood-mosaic-name {
  font: 600 1.05rem/1.25 var(--font-display, 'Playfair Display', Georgia, serif);
  color: #fff;
}
.wood-mosaic-meta {
  font: 400 .78rem/1.3 var(--font-body, 'Inter', system-ui, sans-serif);
  color: rgba(255,255,255,.8);
  font-style: italic;
}

/* Feature tile — 2x2 desktop */
.wood-mosaic-tile--feature {
  grid-column: span 2;
  grid-row: span 2;
}
.wood-mosaic-tile--feature .wood-mosaic-name { font-size: 1.45rem; }
.wood-mosaic-tile--feature .wood-mosaic-cat { font-size: .74rem; }
.wood-mosaic-tile--feature figcaption { padding: 26px 26px 22px; }

/* Last tile spans full width so the grid always closes flush regardless of count */
.wood-mosaic > :last-child { grid-column: 1 / -1; }

/* Tablet */
@media (max-width: 1024px) {
  .wood-mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
  .wood-mosaic-tile--feature { grid-column: span 2; grid-row: span 2; }
  /* Tablet: penultimate tile spans full row so the close-out row pairs cleanly with the last */
  .wood-mosaic > :nth-last-child(2) { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 640px) {
  .wood-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .wood-mosaic-tile--feature { grid-column: span 2; grid-row: span 2; }
  .wood-mosaic > :nth-last-child(2) { grid-column: auto; }
  .wood-mosaic-tile figcaption { padding: 12px 12px 11px; gap: 2px; }
  .wood-mosaic-name { font-size: .95rem; }
  .wood-mosaic-tile--feature .wood-mosaic-name { font-size: 1.2rem; }
  .wood-mosaic-cat { font-size: .6rem; letter-spacing: .14em; }
  .wood-mosaic-meta { font-size: .72rem; }
}

/* ============ AWARDS & ACCOLADES STRIP (s.awardsStrip) ============ */
.awards-strip {
  position: relative;
  padding: clamp(48px, 6vw, 88px) 0;
  background-color: var(--ff-cream);
  background-image: var(--grain-light), var(--paper-fibre-light);
  background-repeat: repeat, repeat;
}
.awards-strip-head { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.awards-strip-head .eyebrow { display: inline-block; }
.awards-strip-head h2 { margin: 8px 0 10px; }
.awards-strip-head p { color: var(--ff-ink-soft, #555); margin: 0; }

.awards-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.awards-track {
  display: flex;
  width: max-content;
  animation: awards-scroll 54s linear infinite;
  will-change: transform;
}
.awards-marquee:hover .awards-track,
.awards-marquee:focus-within .awards-track { animation-play-state: paused; }

.awards-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 clamp(38px, 5vw, 64px) 0 0;
  list-style: none;
  gap: clamp(38px, 5vw, 64px);
}
.awards-badge { flex: 0 0 auto; display: flex; align-items: center; }
.awards-badge img {
  display: block;
  height: clamp(56px, 6.2vw, 72px);
  width: auto;
  opacity: .92;
}
.awards-badge a { display: block; }
.awards-badge a:hover img,
.awards-badge a:focus-visible img { opacity: 1; }

@keyframes awards-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Reduced motion -> no scroll, static centred wrap-flex grid */
@media (prefers-reduced-motion: reduce) {
  .awards-marquee { overflow: visible; -webkit-mask-image: none; mask-image: none; }
  .awards-track { animation: none; width: 100%; }
  .awards-group[aria-hidden="true"] { display: none; }
  .awards-group {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0;
    gap: clamp(26px, 4vw, 48px) clamp(34px, 5vw, 56px);
  }
  .awards-badge img { opacity: 1; }
}

@media (max-width: 600px) {
  .awards-badge img { height: clamp(50px, 13vw, 62px); }
  .awards-group { gap: clamp(30px, 8vw, 44px); padding-right: clamp(30px, 8vw, 44px); }
}

/* ============== QUALITY COMPARISON ============== */
/* Two-column "pros of premium spec vs cons of cheap alternative" table.
   Rendered by s.qualityComparison — opt-in per page via quality_comparison
   frontmatter. Used on wood-type service pages. */

.quality-cmp { background-color: var(--ff-paper); }
.quality-cmp-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.quality-cmp-head .lede { margin: 14px auto 0; }

.quality-cmp-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  background: #fff;
  border: 1px solid var(--ff-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.quality-cmp-col {
  display: flex; flex-direction: column;
  padding: 32px 30px 34px;
  position: relative;
}
.quality-cmp-col--premium {
  background: linear-gradient(180deg, rgba(90, 122, 75, .07) 0%, rgba(90, 122, 75, .015) 100%);
}
.quality-cmp-col--premium::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--ff-green) 0%, var(--ff-gold) 100%);
}
.quality-cmp-col--alt {
  background: linear-gradient(180deg, rgba(58, 46, 30, .05) 0%, rgba(58, 46, 30, .01) 100%);
}
.quality-cmp-col--alt::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, rgba(58, 46, 30, .35) 0%, rgba(124, 111, 94, .35) 100%);
}

.quality-cmp-col-head {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--ff-line);
}
.quality-cmp-col-sublabel {
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ff-mute);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.quality-cmp-col-head h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  color: var(--ff-walnut);
  margin: 0 0 14px;
  line-height: 1.15;
}
.quality-cmp-col--alt .quality-cmp-col-head h3 {
  color: var(--ff-mute);
  text-decoration: line-through;
  text-decoration-color: rgba(124, 111, 94, .35);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.quality-cmp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.quality-cmp-badge--good {
  background: var(--ff-green);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(90, 122, 75, .5);
}
.quality-cmp-badge--bad {
  background: rgba(58, 46, 30, .08);
  color: var(--ff-walnut);
  border: 1px solid rgba(58, 46, 30, .14);
}

.quality-cmp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.quality-cmp-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.quality-cmp-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.quality-cmp-mark svg { width: 16px; height: 16px; }
.quality-cmp-mark--good {
  background: var(--ff-green);
  color: #fff;
  box-shadow: 0 4px 10px -4px rgba(90, 122, 75, .55);
}
.quality-cmp-mark--bad {
  background: rgba(58, 46, 30, .08);
  color: var(--ff-walnut);
  border: 1px solid rgba(58, 46, 30, .15);
}
.quality-cmp-text strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ff-walnut);
  line-height: 1.3;
  margin-bottom: 4px;
}
.quality-cmp-col--alt .quality-cmp-text strong { color: var(--ff-mute); }
.quality-cmp-text p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ff-mute);
}

.quality-cmp-vs {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  width: 64px;
}
.quality-cmp-vs span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ff-walnut);
  color: var(--ff-cream);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  box-shadow: 0 8px 22px -8px rgba(58, 46, 30, .55), inset 0 1px 0 rgba(255, 255, 255, .12);
  z-index: 2;
  position: relative;
}
.quality-cmp-vs::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: var(--ff-line);
  transform: translateX(-50%);
}

.quality-cmp-footnote {
  text-align: center;
  margin: 28px auto 0;
  max-width: 64ch;
  font-size: .92rem;
  color: var(--ff-mute);
  font-style: italic;
}

@media (max-width: 880px) {
  .quality-cmp-grid {
    grid-template-columns: 1fr;
  }
  .quality-cmp-vs {
    width: auto;
    padding: 8px 0;
  }
  .quality-cmp-vs::before {
    top: 50%; bottom: auto; left: 0; right: 0;
    width: auto; height: 1px;
    transform: none;
  }
  .quality-cmp-vs span {
    width: 46px; height: 46px;
    font-size: 1rem;
  }
  .quality-cmp-col { padding: 28px 22px 30px; }
  .quality-cmp-col-head h3 { font-size: 1.45rem; }
}
@media (max-width: 480px) {
  .quality-cmp-head { margin-bottom: 32px; }
  .quality-cmp-col { padding: 24px 18px 26px; }
  .quality-cmp-col-head { padding-bottom: 18px; margin-bottom: 18px; }
  .quality-cmp-row { gap: 12px; grid-template-columns: 26px 1fr; }
  .quality-cmp-mark { width: 26px; height: 26px; }
  .quality-cmp-mark svg { width: 14px; height: 14px; }
  .quality-cmp-text strong { font-size: 1rem; }
  .quality-cmp-text p { font-size: .88rem; }
}

/* ============ MAP EMBED — full-bleed Google Maps + floating info card ============ */
.map-embed { padding-bottom: 0; }
.map-embed-head { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: clamp(28px, 4vw, 48px); }
.map-embed-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.map-embed-head .lede { margin-top: 12px; }

/* full-bleed: break out of the page gutter to span the viewport edge-to-edge */
.map-embed-frame {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.map-embed-canvas {
  position: relative;
  height: clamp(360px, 52vh, 560px);
  background: var(--ff-cream-deep);
}
.map-embed-canvas iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(.28) contrast(1.02);
}
