/* ============================================================
   REJUVENATE SMP — Design System v3
   Bold condensed sans display, gold accent, brutalist layout,
   photo-bleed sections.
   ============================================================ */

:root {
  /* Surfaces */
  --black: #050505;
  --ink:   #0e0e0e;
  --ash:   #161616;
  --soot:  #1d1d1d;

  /* Cream / bone (warm off-white) */
  --cream: #f2eada;
  --bone:  #e8e2d2;

  /* Gold (warm, restrained) */
  --gold:        #d4a256;
  --gold-bright: #ecc579;
  --gold-deep:   rgba(212, 162, 86, 0.18);
  --gold-glow:   rgba(236, 197, 121, 0.35);

  /* Lines */
  --line:        rgba(232, 226, 210, 0.10);
  --line-strong: rgba(232, 226, 210, 0.30);
  --line-gold:   rgba(212, 162, 86, 0.30);
  --muted:       rgba(232, 226, 210, 0.58);
  --dim:         rgba(232, 226, 210, 0.40);

  /* Type */
  --display: "Big Shoulders Display", "Helvetica Neue", sans-serif;
  --body:    "Inter", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Spatial */
  --nav-h:   64px;
  --gutter:  22px;
  --max:     1400px;

  /* Motion */
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 720px) { :root { --nav-h: 72px; --gutter: 40px; } }
@media (min-width: 1280px) { :root { --nav-h: 80px; --gutter: 56px; } }

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  background: var(--black);
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: 0; border: 0; color: inherit; }
input, textarea, select { font: inherit; }
::selection { background: var(--gold); color: var(--black); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}
.container-narrow { max-width: 900px; }

/* ============================================================
   TOPBAR / NAV
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.3s var(--ease), border-color 0.3s, backdrop-filter 0.3s;
}
.topbar.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom-color: var(--line);
}
@media (min-width: 720px) {
  .topbar { padding-left: max(32px, env(safe-area-inset-left)); padding-right: max(32px, env(safe-area-inset-right)); }
}
@media (min-width: 1280px) {
  .topbar { padding-left: max(56px, env(safe-area-inset-left)); padding-right: max(56px, env(safe-area-inset-right)); }
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  z-index: 101;
}
.topbar-mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--bone);
  line-height: 1;
  text-transform: uppercase;
}
.topbar-mark span { color: var(--gold); }
.topbar-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  display: none;
  margin-left: 4px;
  padding-left: 12px;
  border-left: 1px solid var(--line-strong);
}
@media (min-width: 720px) { .topbar-meta { display: inline; } }

.topbar-nav {
  display: none;
  align-items: center;
  gap: 32px;
  margin-right: 24px;
}
.topbar-nav a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.topbar-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.topbar-nav a.active { color: var(--bone); }
.topbar-nav a.active::after { transform: scaleX(1); transform-origin: left; }
@media (hover: hover) {
  .topbar-nav a:hover { color: var(--bone); }
  .topbar-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
}
@media (min-width: 1024px) { .topbar-nav { display: flex; } }

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  transition: background 0.2s, transform 0.2s;
}
.btn-quote:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-quote::after { content: '→'; font-size: 13px; }

.topbar-hamb {
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: 14px;
  z-index: 101;
}
.topbar-hamb span {
  width: 22px; height: 1px;
  background: var(--bone);
  display: block;
  transition: transform 0.3s var(--ease), opacity 0.25s;
}
.topbar.open .topbar-hamb span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.topbar.open .topbar-hamb span:nth-child(2) { opacity: 0; }
.topbar.open .topbar-hamb span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1024px) { .topbar-hamb { display: none; } }

/* Mobile menu — slide-down full-viewport overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  padding: calc(var(--nav-h) + 32px) max(var(--gutter), env(safe-area-inset-left)) 40px;
  padding-bottom: max(40px, env(safe-area-inset-bottom));
  padding-top: calc(var(--nav-h) + 32px + env(safe-area-inset-top));
  display: flex;
  flex-direction: column;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s var(--ease), opacity 0.4s var(--ease);
  overflow-y: auto;
}
.topbar.open + .nav-overlay {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay a {
  display: block;
  padding: 20px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 9vw, 3.6rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid var(--line);
  line-height: 0.95;
}
.nav-overlay a.active { color: var(--gold); }
.nav-overlay a:last-of-type { border-bottom: none; }
.nav-overlay-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
}
.nav-overlay-cta::after { content: '→'; font-size: 18px; }
@media (min-width: 1024px) { .nav-overlay { display: none; } }
body.nav-open { overflow: hidden; }

/* Sticky vertical CTA (desktop) */
.sticky-cta {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  z-index: 50;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.sticky-cta.visible { opacity: 1; }
.sticky-cta:hover { background: var(--gold-bright); }
@media (min-width: 1280px) { .sticky-cta { display: inline-block; } }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-mega {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 9.5vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--bone);
  text-transform: uppercase;
}
.display-mega .line { display: block; white-space: nowrap; }
@media (min-width: 720px) {
  .display-mega { font-size: clamp(3.4rem, 6.4vw, 7rem); line-height: 0.9; }
}

.display-xl {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--bone);
  text-transform: uppercase;
}
.display-xl .line { display: block; }
.display-xl .gold { color: var(--gold); }

.display-lg {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--bone);
  text-transform: uppercase;
}
.display-lg .gold { color: var(--gold); }

h1 { font-family: var(--display); font-weight: 900; }
h2 { font-family: var(--display); font-weight: 800; }
h3 { font-family: var(--display); font-weight: 700; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

p { color: var(--muted); font-weight: 300; }
p.lede {
  color: var(--bone);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.5;
}
p.lg { font-size: 1.05rem; line-height: 1.7; }
strong { color: var(--gold); font-weight: 400; }
p strong { color: var(--gold); font-weight: 400; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold-cta, .btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.2s;
  min-height: 56px;
  border: 1px solid transparent;
}
.btn-gold-cta { background: var(--gold); color: var(--black); }
.btn-line { background: transparent; color: var(--bone); border-color: var(--line-strong); }
.btn-gold-cta::after, .btn-line::after { content: '→'; font-size: 18px; }
@media (hover: hover) {
  .btn-gold-cta:hover { background: var(--gold-bright); transform: translateX(2px); }
  .btn-line:hover { border-color: var(--gold); color: var(--gold); }
}
@media (min-width: 720px) {
  .btn-gold-cta, .btn-line { padding: 18px 28px; gap: 18px; }
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--line-gold);
  transition: gap 0.3s var(--ease), border-color 0.2s, color 0.2s;
}
.btn-text::after { content: '→'; font-size: 14px; }
@media (hover: hover) {
  .btn-text:hover { color: var(--gold-bright); gap: 16px; border-bottom-color: var(--gold); }
}

/* ============================================================
   HERO (homepage)
   Mobile: content-sized, with photo presence above (~38vh-tall band).
   Desktop: full viewport, content anchored bottom-left.
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg picture, .hero-bg source {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: brightness(0.52) contrast(1.08) saturate(0.95);
}
.hero-bg img {
  display: block;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(5,5,5,0.55) 0%,
      rgba(5,5,5,0) 28%,
      rgba(5,5,5,0) 50%,
      rgba(5,5,5,0.8) 85%,
      rgba(5,5,5,0.96) 100%),
    linear-gradient(90deg,
      rgba(5,5,5,0.55) 0%,
      rgba(5,5,5,0.05) 55%,
      rgba(5,5,5,0) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Mobile-first: photo band sits above content via padding-top, hero sizes to content */
  padding: calc(var(--nav-h) + 38vh) 22px 48px;
  padding-bottom: calc(48px + env(safe-area-inset-bottom));
  padding-left: max(22px, env(safe-area-inset-left));
  padding-right: max(22px, env(safe-area-inset-right));
}
.hero-content .tag { margin-bottom: 24px; }

.hero-display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 9.5vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 2px 18px rgba(5, 5, 5, 0.5);
}
.hero-display .line { display: block; white-space: nowrap; }
@media (min-width: 720px) {
  .hero-display { font-size: clamp(3.4rem, 6.4vw, 7rem); line-height: 0.9; margin-bottom: 32px; }
}

.hero-sub {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--bone);
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--gold); font-weight: 400; }

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin-bottom: 32px;
}
@media (min-width: 720px) {
  .hero-ctas { flex-direction: row; max-width: none; gap: 16px; flex-wrap: wrap; }
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta-g { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-g svg { width: 14px; height: 14px; }
.hero-meta strong { color: var(--bone); font-weight: 500; }

@media (min-width: 900px) {
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-bg img { object-position: 55% 22%; }
  .hero-content {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0 max(56px, env(safe-area-inset-left)) 80px;
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
  .hero-sub { max-width: 520px; }
}
@media (min-width: 1280px) {
  .hero-content { padding-left: max(80px, env(safe-area-inset-left)); }
}

/* ============================================================
   PAGE HEAD (non-home pages)
   ============================================================ */
.page-head {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.page-head-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-head-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.34) contrast(1.05) saturate(0.9);
}
.page-head-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0) 30%, rgba(5,5,5,0.9) 100%);
  pointer-events: none;
}
.page-head-inner {
  position: relative;
  z-index: 2;
}
.page-head .tag { margin-bottom: 24px; }
.page-head h1 { margin-bottom: 24px; }
.page-head p { max-width: 640px; color: var(--bone); font-size: 1.05rem; line-height: 1.6; }
@media (min-width: 720px) {
  .page-head { padding: calc(var(--nav-h) + 120px) 0 120px; }
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section {
  padding: 80px 0;
  position: relative;
}
.section.dark { background: var(--ink); }
.section.warm { background: var(--ash); }
@media (min-width: 720px) { .section { padding: 120px 0; } }
@media (min-width: 1280px) { .section { padding: 140px 0; } }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 36px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.section-head .tag { font-family: var(--mono); }
.section-head h2 { margin-top: 8px; }
.section-head .lede { margin-top: 16px; max-width: 680px; }
@media (min-width: 720px) {
  .section-head { padding-bottom: 48px; margin-bottom: 80px; }
}

/* ============================================================
   SPLIT (image + copy)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.split-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform 1s var(--ease);
}
.split-image-mark {
  position: absolute;
  left: 14px; bottom: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
}
.split-copy h2 { margin-bottom: 24px; }
.split-copy p { font-size: 1rem; margin-bottom: 18px; }
.split-copy p.lede { margin-bottom: 24px; }
.split-actions { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (hover: hover) {
  .split:hover .split-image img { transform: scale(1.04); }
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 80px; }
  .split-r .split-image { order: 2; }
}
@media (min-width: 1280px) { .split { gap: 100px; } }

/* ============================================================
   SERVICES GRID (numbered, brutalist)
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.svc::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
@media (hover: hover) {
  .svc:hover { background: var(--ink); padding-left: 8px; padding-right: 8px; }
  .svc:hover::before { transform: scaleX(1); }
}
.svc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.svc-info { display: flex; flex-direction: column; gap: 6px; }
.svc-info h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
}
.svc-info p { font-size: 0.92rem; line-height: 1.5; color: var(--muted); margin: 0; }
.svc-arrow {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
@media (hover: hover) {
  .svc:hover .svc-arrow { transform: translateX(6px); }
}
@media (min-width: 720px) {
  .svc { grid-template-columns: 80px 1fr 1fr 60px; padding: 36px 0; gap: 32px; }
  .svc-info { gap: 8px; }
  .svc-info p { max-width: 420px; }
}

/* ============================================================
   GALLERY (natural aspect, no square crop)
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.gallery-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gallery-item-mark {
  position: absolute;
  left: 12px; bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
}
@media (hover: hover) {
  .gallery-item:hover img { transform: scale(1.03); }
}
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1100px) {
  .gallery { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 720px) { .gallery-teaser { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

/* ============================================================
   STATS / FEATURE NUMBERS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   REVIEWS — hard-edged tile grid
   ============================================================ */
.reviews-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  margin-bottom: 32px;
}
.reviews-meta svg { width: 20px; height: 20px; flex-shrink: 0; }
.reviews-meta .stars { color: var(--gold-bright); letter-spacing: 0.05em; font-size: 14px; }
.reviews-meta .meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.reviews-meta .meta strong { color: var(--bone); font-weight: 500; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.review {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s var(--ease);
}
@media (hover: hover) { .review:hover { background: var(--ink); } }
.review-stars { color: var(--gold-bright); font-size: 13px; letter-spacing: 0.1em; }
.review-body {
  font-family: var(--body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--bone);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--gold-bright);
}
.review-meta { display: flex; flex-direction: column; flex: 1; }
.review-meta strong { font-family: var(--body); font-size: 13px; font-weight: 500; color: var(--bone); }
.review-meta span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); }
.review-author-g svg { width: 14px; height: 14px; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 719px) {
  .reviews-grid > .review:nth-child(n+5) { display: none; }
}
.reviews-grid > .review { border-left: 0; }

.featured-pull {
  max-width: 820px;
  padding: 0 var(--gutter);
  margin: 0 auto 48px;
}
.featured-pull p {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  color: var(--bone);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.featured-pull p::before, .featured-pull p::after { content: '"'; color: var(--gold); }
.featured-pull cite {
  display: block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ============================================================
   FAQ — details/summary list
   ============================================================ */
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color 0.2s, padding-left 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.4s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item .answer {
  padding: 0 0 26px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 760px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info dl {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.contact-info dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info dd { font-size: 1rem; color: var(--bone); line-height: 1.55; }
.contact-info dd a { transition: color 0.2s; }
.contact-info dd a:hover { color: var(--gold); }

.map-frame {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--ink);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.5) contrast(1.1) brightness(0.85);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; }
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  position: relative;
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, var(--gold-deep) 0%, transparent 60%);
  pointer-events: none;
}
.cta-strip .container { position: relative; }
.cta-strip .tag { margin: 0 auto 20px; }
.cta-strip h2 { margin-bottom: 20px; }
.cta-strip p { max-width: 540px; margin: 0 auto 32px; color: var(--bone); font-size: 1.05rem; }
.cta-strip .hero-ctas { justify-content: center; margin: 0 auto; }
@media (min-width: 720px) { .cta-strip { padding: 110px 0; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 60px 0 28px;
  padding-bottom: max(28px, env(safe-area-inset-bottom));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.footer-brand { margin-bottom: 12px; }
.footer-brand .mark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--bone);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}
.footer-brand .mark span { color: var(--gold); }
.footer-brand p { font-size: 0.92rem; max-width: 280px; color: var(--muted); }

.footer h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { font-size: 0.92rem; color: var(--muted); transition: color 0.2s; }
.footer a:hover { color: var(--bone); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FOCUS
   ============================================================ */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
