/* ═══════════════════════════════════════════════════════════════
   THE LUXURY CONTRACTOR PAINTING (TLCP): Brand Design System
   Hard-luxury: charcoal + cream + gold accent.
   Original PPM variable names are kept (--ppm-*) for backward
   compatibility with the section partials; an --lcp-* alias set
   is also exposed for new code.
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── CSS CUSTOM PROPERTIES (Brand Tokens) ── */
:root {
  /* ── LCP Brand Tokens (canonical) ── */
  --lcp-charcoal: #0a0a0a;
  --lcp-charcoal-2: #1a1a1a;
  --lcp-charcoal-3: #242424;
  --lcp-warm-black: #2a2116;
  --lcp-warm-black-2: #1a1410;
  --lcp-cream: #f5f1ea;
  --lcp-cream-2: #faf6ed;
  --lcp-cream-3: #efe3cc;
  --lcp-cream-muted: rgba(245,241,234,0.72);
  --lcp-cream-quiet: rgba(245,241,234,0.55);
  --lcp-gold: #b89968;
  --lcp-gold-dark: #9a7e54;
  --lcp-gold-light: #d4b988;
  --lcp-gold-glow: rgba(212,185,136,0.35);
  --lcp-ink: #1a1a1a;

  /* Primary Brand Colors (aliased to LCP for back-compat) */
  --ppm-green: #b89968;
  --ppm-green-dark: #9a7e54;
  --ppm-green-light: #c4a47a;
  --ppm-green-50: #faf6ed;
  --ppm-green-100: #efe3cc;

  /* Neutrals */
  --ppm-white: #FFFFFF;
  --ppm-off-white: #f5f1ea;
  --ppm-gray-50: #FAFAFA;
  --ppm-gray-100: #F5F5F5;
  --ppm-gray-200: #EEEEEE;
  --ppm-gray-300: #E0E0E0;
  --ppm-gray-400: #BDBDBD;
  --ppm-gray-500: #9E9E9E;
  --ppm-gray-600: #757575;
  --ppm-gray-700: #616161;
  --ppm-gray-800: #424242;
  --ppm-gray-900: #212121;

  /* Accent / Dark */
  --ppm-dark: #0a0a0a;
  --ppm-dark-mid: #1a1a1a;
  --ppm-dark-surface: #242424;

  /* Functional */
  --ppm-success: #b89968;
  --ppm-warning: #F57C00;
  --ppm-error: #C62828;
  --ppm-info: #1565C0;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 72px;
  --space-5xl: 80px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-hero-img: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(184,153,104,0.18);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.3s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --page-gutter: clamp(20px, 5vw, 80px);
  --nav-height: 68px;
}

/* ── BASE STYLES ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ppm-gray-900);
  background: var(--ppm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ppm-gray-900);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ppm-green); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--ppm-green-dark); }

/* ── CONTAINER ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.container--narrow { max-width: var(--container-narrow); }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — DARK / GLASS (over hero, on-brand)
   Overrides the older white-nav rules that came in from
   main.css / .ppm-nav--hero.
   ═══════════════════════════════════════════════════════════════ */

.ppm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px var(--page-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.60);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(184,153,104,0.16);
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  min-height: var(--nav-height);
}

/* Kill the white-nav override from main.css so our dark glass wins */
.ppm-nav--hero {
  background: rgba(10, 10, 10, 0.60);
  border-bottom: 1px solid rgba(184,153,104,0.16);
  box-shadow: none;
}
.ppm-nav.scrolled,
.ppm-nav--hero.scrolled {
  background: rgba(10, 10, 10, 0.82);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.lcp-nav { gap: 16px; }
.lcp-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 0;
}
.lcp-nav__logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}

.lcp-nav__right { display: flex; align-items: center; gap: 18px; }

.lcp-nav__license {
  display: none;
  color: var(--lcp-cream-quiet);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 900px) { .lcp-nav__license { display: inline-flex; } }

.lcp-nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lcp-cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.92;
  white-space: nowrap;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}
.lcp-nav__phone:hover { color: var(--lcp-gold-light); opacity: 1; }

/* Header gold pill CTA */
.lcp-nav__cta.lcp-nav__cta--gold {
  background: linear-gradient(135deg, var(--lcp-gold) 0%, var(--lcp-gold-light) 100%);
  color: var(--lcp-charcoal);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: none;
  box-shadow: 0 6px 20px rgba(184,153,104,0.28), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}
.lcp-nav__cta.lcp-nav__cta--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(184,153,104,0.45), inset 0 1px 0 rgba(255,255,255,0.5);
  filter: brightness(1.05);
  color: var(--lcp-charcoal);
}
.lcp-nav__cta-short { display: none; }

@media (max-width: 900px) {
  .lcp-nav__logo-img { height: 48px; }
}
@media (max-width: 720px) {
  .lcp-nav { padding-top: 10px; padding-bottom: 10px; gap: 10px; }
  .lcp-nav__logo-img { height: 40px; }
  .lcp-nav__phone { display: none; }
  .lcp-nav__cta.lcp-nav__cta--gold { padding: 9px 16px; font-size: 0.74rem; }
  .lcp-nav__cta-full { display: none; }
  .lcp-nav__cta-short { display: inline; }
}
@media (max-width: 420px) {
  .lcp-nav__logo-img { height: 34px; }
}
@media (max-width: 360px) {
  .lcp-nav__logo-img { height: 30px; }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--ppm-green);
  color: var(--ppm-white);
}
.btn--primary:hover {
  background: var(--ppm-green-dark);
  color: var(--ppm-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,153,104,0.3);
}

.btn--primary-lg {
  padding: 18px 44px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn--outline {
  background: transparent;
  color: var(--ppm-green);
  border: 2px solid var(--ppm-green);
}
.btn--outline:hover {
  background: var(--ppm-green);
  color: var(--ppm-white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--ppm-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: var(--ppm-white);
  color: var(--ppm-green);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--ppm-white);
  color: var(--ppm-green);
}
.btn--white:hover {
  background: var(--ppm-gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--dark {
  background: var(--ppm-dark);
  color: var(--ppm-white);
}
.btn--dark:hover {
  background: var(--ppm-gray-900);
  transform: translateY(-2px);
}

.btn--icon-right svg,
.btn--icon-right::after { transition: transform var(--transition-fast); }
.btn--icon-right:hover svg,
.btn--icon-right:hover::after { transform: translateX(3px); }

/* ── New: gold-filled + ghost-gold pill CTAs for the alive hero ── */
.btn--gold {
  position: relative;
  background: linear-gradient(135deg, var(--lcp-gold) 0%, var(--lcp-gold-light) 100%);
  color: var(--lcp-charcoal);
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 12px 30px rgba(184,153,104,0.35),
    inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 44px rgba(184,153,104,0.55),
    inset 0 1px 0 rgba(255,255,255,0.55);
  filter: brightness(1.05);
  color: var(--lcp-charcoal);
}
/* Shimmer sweep on hover */
.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg,
    transparent 20%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0) 70%);
  transform: translateX(-120%);
  pointer-events: none;
  z-index: 1;
}
.btn--gold:hover::after {
  animation: lcpBtnShimmer 900ms var(--ease-out) 1;
}
.btn--gold > * { position: relative; z-index: 2; }

.btn--ghost-gold {
  background: transparent;
  color: var(--lcp-gold-light);
  border: 1.5px solid rgba(184,153,104,0.55);
  border-radius: 999px;
  padding: 16px 30px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast);
}
.btn--ghost-gold:hover {
  background: linear-gradient(135deg, var(--lcp-gold) 0%, var(--lcp-gold-light) 100%);
  color: var(--lcp-charcoal);
  border-color: var(--lcp-gold);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO — ALIVE (dark charcoal → warm-black, glow orbs,
                 animated text, gold pulse, mouse-tilt image)
   Overrides the tan-hero rules from main.css.
   ═══════════════════════════════════════════════════════════════ */

html { overflow-x: clip; }
body { overflow-x: clip; }

.hero.hero--alive {
  position: relative;
  min-height: 100vh;
  color: var(--lcp-cream);
  padding: calc(var(--nav-height) + 60px) var(--page-gutter) 90px;
  overflow: hidden;
  isolation: isolate;
  max-width: 100vw;
  background:
    linear-gradient(135deg,
      #0a0a0a 0%,
      #1a1a1a 40%,
      #2a2116 80%,
      #1a1410 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  animation: lcpHeroDrift 25s ease-in-out infinite alternate;
}

/* Subtle warm glow wash overlay */
.hero.hero--alive::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(184,153,104,0.14), transparent 70%),
    radial-gradient(ellipse 50% 45% at 15% 85%, rgba(212,185,136,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Fine gold hairline at bottom for section handoff */
.hero.hero--alive::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,153,104,0.35), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero--alive .hero__layout {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-3xl);
  align-items: center;
}
.hero--alive .hero__content,
.hero--alive .hero__visual { min-width: 0; }

/* ── Drifting orbs (decorative) ── */
.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  will-change: transform;
}
.hero__orb--1 {
  width: 520px; height: 520px;
  top: -140px; right: -100px;
  background: radial-gradient(circle, var(--lcp-gold-light) 0%, rgba(212,185,136,0) 65%);
  animation: lcpOrbFloat1 18s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 460px; height: 460px;
  bottom: -160px; left: -120px;
  background: radial-gradient(circle, var(--lcp-cream-3) 0%, rgba(239,227,204,0) 65%);
  opacity: 0.10;
  animation: lcpOrbFloat2 22s ease-in-out infinite alternate;
}
.hero__orb--3 {
  width: 360px; height: 360px;
  top: 45%; left: 40%;
  background: radial-gradient(circle, var(--lcp-gold) 0%, rgba(184,153,104,0) 65%);
  opacity: 0.12;
  animation: lcpOrbFloat3 26s ease-in-out infinite alternate;
}

/* ── Eyebrow badge on dark ── */
.hero--alive .badge.badge--eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(184,153,104,0.10);
  border: 1px solid rgba(184,153,104,0.35);
  border-radius: 999px;
  padding: 7px 16px 7px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lcp-gold-light);
  margin-bottom: var(--space-lg);
  animation: lcpFadeUp 0.7s var(--ease-out) both;
}
.hero--alive .badge.badge--eyebrow .badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lcp-gold-light);
  box-shadow: 0 0 10px var(--lcp-gold-light);
  animation: lcpDotPulse 2s ease-in-out infinite;
}

/* ── Headline: staggered fade-up + gold pulse on "Flawless" ── */
.hero--alive .hero__headline {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--lcp-cream);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-lg);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero--alive .hero__headline-line {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: lcpFadeUp 0.7s var(--ease-out) forwards;
}
.hero--alive .hero__headline-line--1 { animation-delay: 0.15s; }
.hero--alive .hero__headline-line--2 { animation-delay: 0.28s; }

.hero--alive .hero__glow {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, var(--lcp-gold-light) 0%, #e6cb99 45%, var(--lcp-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 12px var(--lcp-gold-glow));
  animation: lcpGoldPulse 3.5s ease-in-out infinite;
}

/* ── Sub-headline ── */
.hero--alive .hero__sub {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  max-width: 560px;
  color: var(--lcp-cream-muted);
  margin: 0 0 var(--space-lg);
  opacity: 0;
  animation: lcpFadeUp 0.7s var(--ease-out) 0.42s forwards;
}

/* ── Availability pill (pre-CTA) ── */
.hero--alive .hero__availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(184,153,104,0.08);
  border: 1px solid rgba(184,153,104,0.28);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--lcp-gold-light);
  margin: 0 0 var(--space-lg);
  opacity: 0;
  animation: lcpFadeUp 0.7s var(--ease-out) 0.48s forwards;
}
.hero--alive .hero__availability-dot {
  width: 7px; height: 7px;
  background: var(--lcp-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--lcp-gold-light);
  animation: lcpDotPulse 2s ease-in-out infinite;
}

/* ── CTA row ── */
.hero--alive .hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: lcpFadeUp 0.7s var(--ease-out) 0.56s forwards;
}

/* ── Trust stack (cream numbers, muted labels) ── */
.hero--alive .hero__trust.hero__trust--stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  margin-top: 0;
  border-top: 1px solid rgba(184,153,104,0.22);
  opacity: 0;
  animation: lcpFadeUp 0.7s var(--ease-out) 0.66s forwards;
}
.hero--alive .hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  color: var(--lcp-cream);
  font-size: initial;
}
.hero--alive .hero__trust-number {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  color: var(--lcp-cream);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero--alive .hero__trust-number--text {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--lcp-gold-light);
}
.hero--alive .hero__trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lcp-cream-quiet);
  line-height: 1.4;
}
.hero--alive .hero__trust-label em {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--lcp-cream-muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

/* ── Featured image + tilt frame ── */
.hero--alive .hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: lcpVisualIn 0.9s var(--ease-out) 0.35s forwards;
}
.hero--alive .hero__img-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateY(2deg) rotateX(-1.2deg) translateY(0);
  transition: transform 400ms var(--ease-out);
  will-change: transform;
}
.hero--alive .hero__img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hero-img);
  position: relative;
}
.hero--alive .hero__img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.35) 100%);
  pointer-events: none;
}
.hero--alive .hero__img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.hero--alive .hero__img-accent {
  position: absolute;
  bottom: -28px;
  left: -32px;
  width: 170px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0,0,0,0.55), 0 0 0 1px rgba(184,153,104,0.28);
  border: 3px solid rgba(245,241,234,0.9);
  background: var(--lcp-charcoal);
}
.hero--alive .hero__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero--alive .hero__img-plate {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(10,10,10,0.72);
  border: 1px solid rgba(184,153,104,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.hero--alive .hero__img-plate-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--lcp-gold-light);
}
.hero--alive .hero__img-plate-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--lcp-cream);
  margin-top: 2px;
}

/* ── Hero responsive ── */
@media (max-width: 960px) {
  .hero.hero--alive { padding: calc(var(--nav-height) + 40px) var(--page-gutter) 60px; }
  .hero--alive .hero__layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: left;
  }
  .hero--alive .hero__img-main img { height: 340px; }
  .hero--alive .hero__img-frame {
    max-width: 560px;
    margin: 0 auto;
    transform: perspective(1100px) rotateY(0deg) rotateX(0deg);
  }
  .hero--alive .hero__img-accent {
    width: 130px; height: 130px;
    bottom: -20px; left: -14px;
  }
}
@media (max-width: 720px) {
  .hero.hero--alive { padding: calc(var(--nav-height) + 24px) var(--page-gutter) 48px; }
  .hero--alive .hero__headline { font-size: clamp(1.9rem, 8vw, 2.6rem); word-break: normal; overflow-wrap: break-word; }
  .hero--alive .badge.badge--eyebrow {
    max-width: 100%;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    padding: 6px 14px 6px 12px;
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .hero--alive .hero__sub { font-size: 0.98rem; }
  .hero--alive .hero__trust.hero__trust--stack {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .hero--alive .hero-actions { flex-direction: column; align-items: stretch; }
  .hero--alive .hero-actions .btn {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 16px 18px;
    font-size: 0.95rem;
  }
  .hero--alive .hero__img-frame { max-width: min(100%, 460px); }
  .hero--alive .hero__img-plate { top: 12px; right: 12px; padding: 6px 10px; }
  .hero--alive .hero__img-plate-value { font-size: 0.82rem; }
  .hero--alive .hero__img-accent { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes lcpHeroDrift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 40%; }
  100% { background-position: 20% 100%; }
}
@keyframes lcpFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lcpVisualIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lcpGoldPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(212,185,136,0.25)); }
  50%      { filter: drop-shadow(0 0 22px rgba(212,185,136,0.55)); }
}
@keyframes lcpDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
@keyframes lcpBtnShimmer {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
@keyframes lcpOrbFloat1 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-40px, 30px, 0) scale(1.08); }
}
@keyframes lcpOrbFloat2 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(50px, -40px, 0) scale(1.06); }
}
@keyframes lcpOrbFloat3 {
  0%   { transform: translate3d(0, 0, 0) scale(0.95); }
  100% { transform: translate3d(-30px, -20px, 0) scale(1.05); }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION — kill decorative animations
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero.hero--alive,
  .hero--alive .hero__orb,
  .hero--alive .hero__headline-line,
  .hero--alive .hero__sub,
  .hero--alive .hero__availability,
  .hero--alive .hero-actions,
  .hero--alive .hero__trust.hero__trust--stack,
  .hero--alive .hero__visual,
  .hero--alive .hero__glow,
  .hero--alive .hero__availability-dot,
  .hero--alive .badge.badge--eyebrow .badge__dot,
  .btn--gold::after {
    animation: none !important;
  }
  .hero--alive .hero__headline-line,
  .hero--alive .hero__sub,
  .hero--alive .hero__availability,
  .hero--alive .hero-actions,
  .hero--alive .hero__trust.hero__trust--stack,
  .hero--alive .hero__visual {
    opacity: 1;
    transform: none;
  }
  .hero.hero--alive { background-position: 0% 0%; }
  .hero--alive .hero__img-frame { transform: none; transition: none; }
}

/* Screenshot / capture mode from ?screenshot=1 already kills animation
   at the head level via inline <style>. */

/* ═══════════════════════════════════════════════════════════════
   SECTION UTILITIES / TYPOGRAPHY / CARDS / BADGES / FOOTER
   (Preserved from the original brand file — below-fold usage.)
   ═══════════════════════════════════════════════════════════════ */

.section { padding: var(--space-5xl) var(--page-gutter); }
.section--sm { padding: var(--space-4xl) var(--page-gutter); }
.section--green { background: var(--ppm-green); color: var(--ppm-white); }
.section--green h2,
.section--green h3,
.section--green h4 { color: var(--ppm-white); }
.section--dark { background: var(--ppm-dark); color: var(--ppm-white); }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--ppm-white); }
.section--light { background: var(--ppm-gray-50); }
.section--green-tint { background: var(--ppm-green-50); }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ppm-green);
  margin-bottom: var(--space-md);
}
.section--green .eyebrow,
.section--dark .eyebrow { color: rgba(255,255,255,0.7); }

.text-center { text-align: center; }
.text-muted { color: var(--ppm-gray-600); }
.text-white-muted { color: rgba(255,255,255,0.7); }

.heading-xl { font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.08; letter-spacing: -0.02em; }
.heading-lg { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.12; letter-spacing: -0.01em; }
.heading-md { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.2; }
.heading-sm { font-size: 1.25rem; line-height: 1.3; }
.body-lg { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.7; }
.body-md { font-size: 1rem; line-height: 1.7; }
.body-sm { font-size: 0.9rem; line-height: 1.6; }

.card {
  background: var(--ppm-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--ppm-gray-200);
  transition: all var(--transition-base);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--ppm-gray-300); }
.card--green-top { border-top: 3px solid var(--ppm-green); }
.card--flat { box-shadow: none; border: 1px solid var(--ppm-gray-200); }
.card--flat:hover { box-shadow: var(--shadow-md); }

.icon-circle {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.icon-circle--green { background: var(--ppm-green-50); color: var(--ppm-green); }
.icon-circle--white { background: rgba(255,255,255,0.15); color: var(--ppm-white); }

.grid { display: grid; gap: var(--space-lg); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.proof-bar { display: flex; justify-content: center; gap: var(--space-3xl); flex-wrap: wrap; padding: var(--space-2xl) var(--page-gutter); }
.proof-bar--dark { background: var(--ppm-dark); color: var(--ppm-white); }
.proof-bar--green { background: var(--ppm-green-dark); color: var(--ppm-white); }
.proof-stat { text-align: center; }
.proof-stat__number {
  font-family: var(--font-heading);
  font-weight: 800; font-size: 2.4rem;
  color: var(--ppm-green-light); display: block; line-height: 1;
}
.proof-bar--green .proof-stat__number,
.proof-bar--dark .proof-stat__number { color: var(--ppm-white); }
.proof-stat__label {
  font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 6px; display: block;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}
.stat-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.stat-card__number {
  font-family: var(--font-heading);
  font-weight: 800; font-size: 3rem;
  color: var(--ppm-white); display: block;
  margin-bottom: var(--space-sm); line-height: 1;
}
.section--green .stat-card__number { color: var(--ppm-white); }
.stat-card__desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* Legacy .badge (below-fold uses .badge without --eyebrow) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ppm-green-50);
  border: 1px solid var(--ppm-green-100);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ppm-green);
}
.badge--dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.badge__dot {
  width: 8px; height: 8px;
  background: var(--ppm-green);
  border-radius: 50%;
  animation: ppm-pulse 2s ease infinite;
}
.badge--dark .badge__dot { background: var(--ppm-green-light); }
@keyframes ppm-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.check-item {
  display: flex; gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--ppm-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--ppm-gray-200);
  transition: all var(--transition-base);
}
.check-item:hover { box-shadow: var(--shadow-md); }
.check-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--ppm-green-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--ppm-green); font-weight: 700; font-size: 1.1rem;
}

.ppm-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-style: italic;
  line-height: 1.5; max-width: 600px; margin: 0 auto;
}
.ppm-quote__attr {
  margin-top: 12px; font-size: 0.85rem;
  font-family: var(--font-body); font-style: normal; opacity: 0.5;
}

.cta-trust {
  margin-top: var(--space-lg);
  font-size: 0.82rem;
  color: var(--ppm-gray-500);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

.ppm-footer {
  background: var(--ppm-dark);
  color: rgba(255,255,255,0.5);
  padding: var(--space-2xl) var(--page-gutter);
  text-align: center; font-size: 0.85rem;
}
.ppm-footer a { color: var(--ppm-green-light); text-decoration: none; }
.ppm-footer a:hover { color: var(--ppm-white); }

/* ── GALLERY / PORTFOLIO SECTION ── */
.gallery-section {
  padding: var(--space-5xl) var(--page-gutter);
  background: var(--lcp-cream-2);
}
.gallery-inner { max-width: var(--container-max); margin: 0 auto; }
.gallery-eyebrow { text-align: center; }
.gallery-headline {
  text-align: center;
  color: var(--lcp-charcoal);
  font-family: var(--font-serif);
  font-weight: 600;
}
.gallery-intro { text-align: center; max-width: 620px; margin: var(--space-md) auto 0; }
.gallery-grid {
  margin-top: var(--space-2xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.gallery-item {
  margin: 0; position: relative;
  overflow: hidden; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--lcp-charcoal);
}
.gallery-item img {
  width: 100%; height: 300px;
  object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px 18px 14px;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.82) 100%);
  color: var(--lcp-cream);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 768px) { .gallery-item img { height: 240px; } }

/* ── LEGAL / CONTENT PAGE ── */
.legal-page { padding: 150px var(--page-gutter) var(--space-5xl); background: var(--ppm-white); }
.legal-page__inner { max-width: 760px; margin: 0 auto; }
.legal-page__title {
  font-family: var(--font-serif);
  font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--lcp-charcoal); line-height: 1.1;
  margin: var(--space-xs) 0 var(--space-sm);
}
.legal-page__meta { color: var(--ppm-gray-500); font-size: 0.85rem; margin-bottom: var(--space-xl); }
.legal-page h2 {
  font-family: var(--font-serif);
  font-weight: 600; font-size: 1.6rem;
  color: var(--lcp-charcoal);
  margin: var(--space-xl) 0 var(--space-sm);
}
.legal-page p { color: var(--ppm-gray-800); line-height: 1.75; margin-bottom: var(--space-md); }
.legal-page a { color: var(--lcp-gold-dark); font-weight: 600; }
.legal-page__back { margin-top: var(--space-2xl); padding-top: var(--space-lg); border-top: 1px solid var(--ppm-gray-200); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE (below-fold sections) ── */
@media (max-width: 768px) {
  .section { padding: var(--space-4xl) var(--page-gutter); }
  .section--sm { padding: var(--space-3xl) var(--page-gutter); }
  .proof-bar { gap: var(--space-xl); }
  .proof-stat__number { font-size: 1.8rem; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .btn { padding: 14px 24px; font-size: 0.85rem; }
  .btn--primary-lg { padding: 16px 32px; }
}


/* ═══════════════════════════════════════════════════════════════
   RELATABILITY LAYER (1.6.0-relatable-20260721)
   Owner pill · pull-quote · signature · testimonials rotator ·
   Yelp badge · neighborhood strip. All on the dark hero.
   ═══════════════════════════════════════════════════════════════ */

/* ── One-line italic pull under H1 ── */
.hero--alive .hero__pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lcp-cream-muted);
  margin: 0 0 var(--space-md);
  opacity: 0;
  animation: lcpFadeUp 0.7s var(--ease-out) 0.36s forwards;
}

/* ── Handwritten signature ── */
.hero--alive .hero__signature {
  font-family: 'Dancing Script', 'Caveat', 'Great Vibes', cursive;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--lcp-gold-light);
  text-align: right;
  margin: -6px 0 var(--space-md);
  text-shadow: 0 0 12px rgba(212,185,136,0.28);
  opacity: 0;
  animation: lcpFadeUp 0.7s var(--ease-out) 0.5s forwards;
}

/* ── Owner face + name/role pill (48px avatar + text) ── */
.hero--alive .hero__owner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  background: rgba(245,241,234,0.05);
  border: 1px solid rgba(184,153,104,0.28);
  border-radius: 999px;
  max-width: 560px;
  margin: 0 0 var(--space-md);
  opacity: 0;
  animation: lcpFadeUp 0.7s var(--ease-out) 0.44s forwards;
}
.hero--alive .hero__owner-face {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--lcp-charcoal-2);
  border: 2px solid var(--lcp-gold);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,153,104,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--alive .hero__owner-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero--alive .hero__owner-face--initials {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--lcp-gold-light);
  background: linear-gradient(135deg, #2a2116 0%, #1a1410 100%);
}
.hero--alive .hero__owner-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}
.hero--alive .hero__owner-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lcp-cream);
  line-height: 1.1;
}
.hero--alive .hero__owner-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lcp-cream-muted);
  line-height: 1.3;
}

/* ── Rotating micro-testimonials (below the availability pill) ── */
.hero--alive .hero__quotes {
  position: relative;
  margin: 0 0 var(--space-lg);
  min-height: 82px;
  max-width: 560px;
  opacity: 0;
  animation: lcpFadeUp 0.7s var(--ease-out) 0.6s forwards;
}
.hero--alive .hero__quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
  pointer-events: none;
}
.hero--alive .hero__quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero--alive .hero__quote-stars {
  color: var(--lcp-gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  line-height: 1;
  text-shadow: 0 0 8px rgba(212,185,136,0.4);
}
.hero--alive .hero__quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--lcp-cream);
}
.hero--alive .hero__quote-attr {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lcp-cream-quiet);
}

/* ── Yelp 5-star pill (below trust stats) ── */
.hero--alive .hero__yelp-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: var(--space-lg);
  opacity: 0;
  animation: lcpFadeUp 0.7s var(--ease-out) 0.72s forwards;
}
.hero--alive .hero__yelp {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}
.hero--alive .hero__yelp:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 8px 22px rgba(211,35,35,0.35);
}
.hero--alive .hero__yelp-img {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}
.hero--alive .hero__yelp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d32323;
  color: #ffffff;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 18px rgba(211,35,35,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.14);
}
.hero--alive .hero__yelp-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.hero--alive .hero__yelp-text { color: #ffffff; }
.hero--alive .hero__yelp-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lcp-cream-quiet);
  padding-left: 4px;
}

/* ── Neighborhood strip (inside hero, bottom sub-row) ── */
.hero--alive .hero__neighborhoods {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: var(--space-2xl) auto 0;
  width: 100%;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(184,153,104,0.14);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  animation: lcpFadeUp 0.7s var(--ease-out) 0.8s forwards;
}
.hero--alive .hero__neighborhoods::-webkit-scrollbar { display: none; }
.hero--alive .hero__neighborhoods-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
  white-space: nowrap;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.55);
  font-weight: 600;
}
.hero--alive .hero__nb-label {
  color: var(--lcp-gold-light);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.hero--alive .hero__nb-dot {
  color: rgba(184,153,104,0.55);
  font-weight: 700;
}
.hero--alive .hero__nb {
  color: rgba(245,241,234,0.72);
}

/* ── Relatability layer: reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero--alive .hero__pull,
  .hero--alive .hero__signature,
  .hero--alive .hero__owner,
  .hero--alive .hero__quotes,
  .hero--alive .hero__yelp-wrap,
  .hero--alive .hero__neighborhoods {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero--alive .hero__quote {
    transition: none !important;
  }
}

/* ── Screenshot mode: force reveal for the new elements ── */
.hero.hero--alive .hero__pull,
.hero.hero--alive .hero__signature,
.hero.hero--alive .hero__owner,
.hero.hero--alive .hero__quotes,
.hero.hero--alive .hero__yelp-wrap,
.hero.hero--alive .hero__neighborhoods { /* baseline visible; animation just fades in */ }

/* ── Relatability layer: mobile ── */
@media (max-width: 720px) {
  .hero--alive .hero__pull {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }
  .hero--alive .hero__signature {
    font-size: 1.4rem;
    text-align: left;
    margin: -2px 0 var(--space-sm);
  }
  .hero--alive .hero__owner {
    padding: 6px 12px 6px 6px;
    gap: 10px;
  }
  .hero--alive .hero__owner-face {
    width: 44px;
    height: 44px;
  }
  .hero--alive .hero__owner-name {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .hero--alive .hero__owner-role {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }
  .hero--alive .hero__quotes {
    min-height: 100px;
  }
  .hero--alive .hero__quote-text {
    font-size: 0.94rem;
    line-height: 1.5;
  }
  .hero--alive .hero__quote-attr {
    font-size: 0.66rem;
  }
  .hero--alive .hero__yelp-wrap {
    align-items: stretch;
  }
  .hero--alive .hero__yelp {
    width: 100%;
    justify-content: center;
  }
  .hero--alive .hero__yelp-pill {
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
  }
  .hero--alive .hero__yelp-sub {
    text-align: center;
    align-self: center;
    padding-left: 0;
  }
  .hero--alive .hero__neighborhoods {
    margin-top: var(--space-xl);
    padding-top: var(--space-sm);
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    margin-left: calc(var(--page-gutter) * -1);
    margin-right: calc(var(--page-gutter) * -1);
    width: auto;
  }
  .hero--alive .hero__neighborhoods-inner {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }
}
