/* ==========================================================================
   LOCATION PAGE V3 — CINEMATIC RESTYLE (scoped to body.locations-v3)
   Goal: ogroup.com / home-v3 alignment. Wider canvas, full-bleed dark drama,
   burgundy + gold + black contrast, WikiCommons imagery as section bg.
   ========================================================================== */

/* ── 1. WIDER CANVAS ─────────────────────────────────────────────────────── */
body.locations-v3 {
  --container-loc: 1640px;
  --gutter-loc: clamp(20px, 3vw, 56px);
  --section-pad-loc: clamp(72px, 9vw, 130px);
}
body.locations-v3 .container {
  max-width: var(--container-loc);
  padding: 0 var(--gutter-loc);
}
body.locations-v3 .section { padding: var(--section-pad-loc) 0; }
body.locations-v3 .dd { padding: var(--section-pad-loc) 0; }
@media (min-width: 2200px) {
  body.locations-v3 .container { max-width: 1840px; }
}

/* ── 2. CINEMATIC HERO ───────────────────────────────────────────────────── */
body.locations-v3 .page-header {
  height: clamp(520px, 72vh, 760px);
  align-items: flex-end;
}
body.locations-v3 .page-header-bg {
  animation: locKenBurns 22s ease-in-out infinite alternate;
  transform-origin: 50% 55%;
}
@keyframes locKenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  body.locations-v3 .page-header-bg { animation: none; transform: none; }
}
body.locations-v3 .page-header-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%),
    linear-gradient(110deg, rgba(110,31,71,0.85) 0%, rgba(110,31,71,0.30) 55%, rgba(0,0,0,0.40) 100%);
}
body.locations-v3 .page-header-content {
  max-width: var(--container-loc);
  padding: 0 var(--gutter-loc) clamp(56px, 8vw, 96px);
}
body.locations-v3 .page-header-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.5);
  display: inline-block;
}
body.locations-v3 .page-header h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.015em;
  max-width: none;
  font-weight: 400;
}
body.locations-v3 .page-header p {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.6;
  max-width: 640px;
  color: rgba(255,255,255,0.88);
  margin-top: 22px;
}

/* Subtle oversized city-name watermark behind text */
body.locations-v3 .page-header-watermark {
  position: absolute;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 300;
  color: rgba(212,175,55,0.07);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

/* ── 3. STATS BAND — FULL-BLEED BURGUNDY → BLACK ─────────────────────────── */
body.locations-v3 .stats-band-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background:
    linear-gradient(135deg, var(--burgundy) 0%, #3a0f25 60%, #0c0a0e 100%);
  color: var(--white);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
body.locations-v3 .stats-band-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 35%, var(--gold) 65%, transparent 100%);
}
body.locations-v3 .stats-band-wrap::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 35%, var(--gold) 65%, transparent 100%);
}
body.locations-v3 .stats-band {
  max-width: var(--container-loc);
  margin: 0 auto;
  padding: 0 var(--gutter-loc);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
body.locations-v3 .stats-band-item { text-align: center; position: relative; }
body.locations-v3 .stats-band-item + .stats-band-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * (clamp(20px, 3vw, 48px) / 2));
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.35) 50%, transparent 100%);
}
body.locations-v3 .stats-band-value {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
body.locations-v3 .stats-band-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
body.locations-v3 .stats-band-footnote {
  max-width: var(--container-loc);
  margin: 18px auto 0;
  padding: 0 var(--gutter-loc);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
@media (max-width: 1024px) {
  body.locations-v3 .stats-band { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  body.locations-v3 .stats-band-item + .stats-band-item::before,
  body.locations-v3 .stats-band-item:nth-child(4)::before { display: none; }
}
@media (max-width: 540px) {
  body.locations-v3 .stats-band { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ── 4. INTRO — TIGHTER, BIGGER IMAGE ────────────────────────────────────── */
body.locations-v3 .location-intro {
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
body.locations-v3 .location-image-wrap {
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px -28px rgba(0,0,0,0.4);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
body.locations-v3 .location-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  transition: transform 8s ease-out;
  will-change: transform;
}
body.locations-v3 .location-image-wrap:hover img { transform: scale(1.05) translateY(-2%); }
body.locations-v3 .location-content h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 400;
}
@media (max-width: 900px) {
  body.locations-v3 .location-intro { grid-template-columns: 1fr; }
  body.locations-v3 .location-image-wrap { aspect-ratio: 16/11; max-width: 620px; margin: 0 auto; }
}

/* ── 5. NEIGHBORHOOD GALLERY STRIP — FULL-BLEED ──────────────────────────── */
body.locations-v3 .nbhd-strip {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: clamp(64px, 8vw, 120px) 0;
  background: linear-gradient(180deg, #0c0a0e 0%, #1a0f17 100%);
  color: var(--white);
  overflow: hidden;
}
body.locations-v3 .nbhd-strip__inner {
  max-width: var(--container-loc);
  margin: 0 auto;
  padding: 0 var(--gutter-loc);
}
body.locations-v3 .nbhd-strip__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(36px, 4vw, 56px);
}
body.locations-v3 .nbhd-strip__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.5);
  margin-bottom: 22px;
}
body.locations-v3 .nbhd-strip__title {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--white);
}
body.locations-v3 .nbhd-strip__title em { font-style: italic; color: var(--gold); }
body.locations-v3 .nbhd-strip__body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 380px;
}
body.locations-v3 .nbhd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
body.locations-v3 .nbhd-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.6);
  background: #1a0f17;
}
body.locations-v3 .nbhd-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
  filter: saturate(1.05);
}
body.locations-v3 .nbhd-card:hover img { transform: scale(1.07); }
body.locations-v3 .nbhd-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12,8,14,0.30) 60%, rgba(12,8,14,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  transition: background 0.45s ease;
}
body.locations-v3 .nbhd-card:hover .nbhd-card__overlay {
  background: linear-gradient(180deg, transparent 10%, rgba(107,33,75,0.50) 50%, rgba(107,33,75,0.95) 100%);
}
body.locations-v3 .nbhd-card__eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
body.locations-v3 .nbhd-card__title {
  font-family: var(--font-editorial);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
body.locations-v3 .nbhd-card__attr {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.4);
  padding: 4px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
}
@media (max-width: 1024px) {
  body.locations-v3 .nbhd-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  body.locations-v3 .nbhd-strip__head { grid-template-columns: 1fr; }
  body.locations-v3 .nbhd-grid { grid-template-columns: 1fr; }
}

/* ── 6. DD BLEED-DARK VARIANT — full-bleed cinematic with bg image ───────── */
body.locations-v3 .dd--bleed-dark {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #0c0a0e;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
body.locations-v3 .dd--bleed-dark .dd__bleed-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: saturate(1.05);
  animation: locKenBurnsSlow 28s ease-in-out infinite alternate;
}
@keyframes locKenBurnsSlow {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}
body.locations-v3 .dd--bleed-dark .dd__bleed-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.7) 100%),
    linear-gradient(110deg, rgba(110,31,71,0.78) 0%, rgba(110,31,71,0.30) 55%, rgba(0,0,0,0.55) 100%);
}
body.locations-v3 .dd--bleed-dark.dd--burgundy .dd__bleed-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.55) 100%),
    linear-gradient(110deg, rgba(110,31,71,0.92) 0%, rgba(110,31,71,0.55) 60%, rgba(58,15,37,0.85) 100%);
}
body.locations-v3 .dd--bleed-dark.dd--jet .dd__bleed-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 35%, rgba(0,0,0,0.85) 100%),
    linear-gradient(110deg, rgba(20,12,18,0.88) 0%, rgba(40,20,32,0.55) 50%, rgba(0,0,0,0.7) 100%);
}
body.locations-v3 .dd--bleed-dark .container {
  max-width: var(--container-loc);
  padding: 0 var(--gutter-loc);
}
body.locations-v3 .dd--bleed-dark h2,
body.locations-v3 .dd--bleed-dark .dd__subhead {
  color: var(--white);
}
body.locations-v3 .dd--bleed-dark h2 em {
  color: var(--gold);
  font-style: italic;
}
body.locations-v3 .dd--bleed-dark .dd__eyebrow {
  color: var(--gold);
  border-bottom: 1px solid rgba(212,175,55,0.5);
  padding-bottom: 12px;
  display: inline-block;
}
body.locations-v3 .dd--bleed-dark .gold-divider { background: var(--gold); }
body.locations-v3 .dd--bleed-dark p,
body.locations-v3 .dd--bleed-dark li {
  color: rgba(255,255,255,0.86);
}
body.locations-v3 .dd--bleed-dark p strong { color: var(--gold); }
body.locations-v3 .dd--bleed-dark .dd__subhead::before { background: var(--gold); }
body.locations-v3 .dd--bleed-dark .dd .reveal > p:first-of-type::first-letter,
body.locations-v3 .dd--bleed-dark .reveal > p:first-of-type::first-letter {
  color: var(--gold);
}
body.locations-v3 .dd--bleed-dark h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -0.012em;
}

/* Callouts adapted for dark sections */
body.locations-v3 .dd--bleed-dark .dd-callout {
  background: rgba(20, 12, 18, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.25);
  border-left: 4px solid var(--gold);
  box-shadow: 0 28px 60px -28px rgba(0,0,0,0.6);
}
body.locations-v3 .dd--bleed-dark .dd-callout--burgundy {
  border-left-color: var(--gold);
  background: rgba(58, 15, 37, 0.55);
}
body.locations-v3 .dd--bleed-dark .dd-callout__eyebrow,
body.locations-v3 .dd--bleed-dark .dd-callout__title {
  color: var(--gold);
}
body.locations-v3 .dd--bleed-dark .dd-callout__body p,
body.locations-v3 .dd--bleed-dark .dd-callout__body li {
  color: rgba(255,255,255,0.86);
}
body.locations-v3 .dd--bleed-dark .dd-callout__body strong { color: var(--gold); }

/* Fact card adapted */
body.locations-v3 .dd--bleed-dark .dd-fact {
  background: linear-gradient(135deg, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.06) 100%);
  border-left: 4px solid var(--gold);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}
body.locations-v3 .dd--bleed-dark .dd-fact__label,
body.locations-v3 .dd--bleed-dark .dd-fact__body { color: var(--gold); }
body.locations-v3 .dd--bleed-dark .dd-fact__body { color: rgba(255,240,210,0.95); }

body.locations-v3 .dd--bleed-dark .dd-finance {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.locations-v3 .dd--bleed-dark .dd-finance__title {
  background: linear-gradient(135deg, var(--burgundy) 0%, #3a0f25 100%);
  border-bottom: 3px solid var(--gold);
}
body.locations-v3 .dd--bleed-dark .dd-finance__row {
  border-bottom: 1px solid rgba(212,175,55,0.10);
}
body.locations-v3 .dd--bleed-dark .dd-finance__row:hover { background: rgba(212,175,55,0.05); }
body.locations-v3 .dd--bleed-dark .dd-finance__icon {
  background: rgba(212,175,55,0.12);
}
body.locations-v3 .dd--bleed-dark .dd-finance__content h4 { color: var(--gold); }
body.locations-v3 .dd--bleed-dark .dd-finance__content p { color: rgba(255,255,255,0.78); }

/* ── 7. LIGHT DD ENHANCEMENTS — bolder cards ─────────────────────────────── */
body.locations-v3 .dd:not(.dd--bleed-dark) h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
}
body.locations-v3 .dd-callout {
  border-radius: 4px;
  box-shadow: 0 24px 60px -24px rgba(107,33,75,0.18);
}
body.locations-v3 .dd-fact {
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(107,33,75,0.14);
}
body.locations-v3 .dd-finance {
  border-radius: 4px;
  box-shadow: 0 24px 60px -24px rgba(107,33,75,0.16);
}

/* ── 8. INDUSTRY/HISTORY GRID (DD1 split into 2 cols when bleed-dark) ────── */
body.locations-v3 .dd-history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
body.locations-v3 .dd-history-grid__media {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -28px rgba(0,0,0,0.6);
  border: 1px solid rgba(212,175,55,0.18);
}
body.locations-v3 .dd-history-grid__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}
body.locations-v3 .dd-history-grid__caption {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  body.locations-v3 .dd-history-grid { grid-template-columns: 1fr; }
}

/* ── 9. LOCAL COLOR — WELCOME-BOOK PICKS (2 col x 4 row, larger, editorial) ─ */
body.locations-v3 .lc-picks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 2vw, 36px);
}
body.locations-v3 .lc-pick {
  position: relative;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid rgba(107,33,75,0.10);
  box-shadow: 0 24px 60px -24px rgba(107,33,75,0.20);
  padding: clamp(36px, 3.6vw, 56px) clamp(36px, 3.6vw, 56px) clamp(40px, 3.8vw, 60px);
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), box-shadow 0.45s ease, border-color 0.3s ease;
  isolation: isolate;
  overflow: hidden;
}
body.locations-v3 .lc-pick::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  opacity: 0.55;
  transition: opacity 0.4s ease, width 0.4s ease;
}
body.locations-v3 .lc-pick:hover::before { opacity: 1; width: 6px; }
body.locations-v3 .lc-pick:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 80px -28px rgba(107,33,75,0.34);
  border-color: var(--gold);
}
body.locations-v3 .lc-pick__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,0.4);
  display: inline-block;
}
body.locations-v3 .lc-pick__title {
  font-family: var(--font-editorial);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--burgundy);
  margin-bottom: 16px;
}
body.locations-v3 .lc-pick__body {
  font-size: 1.04rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.78);
  margin: 0;
}
@media (max-width: 900px) {
  body.locations-v3 .lc-picks { grid-template-columns: 1fr; }
}

/* CASE STUDIES — 3-up on desktop */
body.locations-v3 .lc-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
body.locations-v3 .lc-case {
  background: var(--white);
  border-radius: 4px;
  padding: clamp(28px, 2.4vw, 40px);
  box-shadow: 0 24px 60px -24px rgba(107,33,75,0.20);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(107,33,75,0.08);
  display: flex;
  flex-direction: column;
}
body.locations-v3 .lc-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 80px -28px rgba(107,33,75,0.32);
  border-color: rgba(212,175,55,0.45);
}
@media (max-width: 1100px) {
  body.locations-v3 .lc-cases { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body.locations-v3 .lc-cases { grid-template-columns: 1fr; }
}

/* Stack the tag above the body in every v3 card. Cards are too narrow at the
   3-up and 2-up breakpoints to fit the inherited 130px tag column + paragraph
   (text wraps to 1–2 words per line). Stacking is also the cleaner pattern on
   mobile. */
body.locations-v3 .lc-case__row {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px 0;
}
body.locations-v3 .lc-case__row + .lc-case__row { padding-top: 16px; }
body.locations-v3 .lc-case__tag { padding-top: 0; }

/* ── 10. CTA — BIGGER ────────────────────────────────────────────────────── */
body.locations-v3 .cta-section h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
}

/* ── 11. SERVICES GRID — 4-up on desktop, city-named cards ───────────────── */
body.locations-v3 .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
body.locations-v3 .service-card {
  aspect-ratio: 4/4.4;
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.32);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  body.locations-v3 .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  body.locations-v3 .services-grid { grid-template-columns: 1fr; }
}

/* ── 12. PARALLAX QUOTE BAND (between LC sections) ───────────────────────── */
body.locations-v3 .quote-band {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  isolation: isolate;
  text-align: center;
}
@media (hover: none) { body.locations-v3 .quote-band { background-attachment: scroll; } }
body.locations-v3 .quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.20) 50%, rgba(0,0,0,0.65) 100%),
    linear-gradient(110deg, rgba(110,31,71,0.55) 0%, rgba(0,0,0,0.30) 70%);
}
body.locations-v3 .quote-band__inner {
  max-width: 920px;
  padding: clamp(80px, 8vw, 130px) var(--gutter-loc);
}
body.locations-v3 .quote-band__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 22px;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,0.5);
}
body.locations-v3 .quote-band__text {
  font-family: var(--font-editorial);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.25;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.005em;
}
body.locations-v3 .quote-band__text em { color: var(--gold); }

/* ── 13. RESPONSIVE GUARDS ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  body.locations-v3 { --section-pad-loc: clamp(56px, 12vw, 96px); }
  body.locations-v3 .page-header { height: clamp(440px, 70vh, 600px); }
  body.locations-v3 .page-header h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
}
