/* ============================================================
   SHOT IN FOCUS — Shared Stylesheet
   Editorial / Magazine aesthetic
   Tokens → Reset → Base → Layout → Components → Pages → Utilities
   ============================================================ */

/* ============ DESIGN TOKENS ============ */
:root {
  --notice-h: 40px;
  --bg: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-deep: #1A1A1A;
  --ink: #1A1A1A;
  --ink-muted: #5C5C5C;
  --ink-faint: #8A8A8A;
  --teal: #0E4D5C;
  --teal-deep: #062B33;
  --sand: #C7B299;
  --sand-soft: #EDE4D3;
  --border: #E5DDD0;
  --error: #B43A1F;
  --success: #2F7A3F;

  --shadow-sm: 0 1px 2px rgba(20,20,20,.04), 0 1px 8px rgba(20,20,20,.04);
  --shadow-md: 0 4px 24px rgba(20,20,20,.06), 0 1px 2px rgba(20,20,20,.04);
  --shadow-lg: 0 24px 64px rgba(20,20,20,.12);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --container: 1280px;
  --gutter: 24px;
  --gutter-lg: 48px;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ============ TYPOGRAPHY ============ */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.lede { font-size: 20px; line-height: 1.55; color: var(--ink-muted); max-width: 60ch; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 900px) {
  .container { padding: 0 var(--gutter-lg); }
}
section { padding: 96px 0; position: relative; }
@media (min-width: 900px) { section { padding: 128px 0; } }
.section-compact { padding: 64px 0; }
@media (min-width: 900px) { .section-compact { padding: 80px 0; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--teal); color: var(--bg); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(14, 77, 92, 0.25); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-link {
  background: transparent;
  color: var(--ink);
  padding: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding-bottom: 2px;
}
.btn-link:hover { color: var(--teal); border-color: var(--teal); }

/* On dark backgrounds */
.on-dark .btn-primary { background: var(--sand); color: var(--bg-deep); }
.on-dark .btn-primary:hover { background: #D7C4AB; }
.on-dark .btn-ghost { color: var(--bg); border-color: rgba(250, 247, 242, 0.4); }
.on-dark .btn-ghost:hover { background: var(--bg); color: var(--bg-deep); }

/* ============ SCHOOLS & SPORTS NOTICE BAR ============ */
.site-notice {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  min-height: var(--notice-h);
  background: var(--bg-deep);
  color: rgba(250, 247, 242, 0.92);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.01em;
}
.site-notice strong { font-weight: 600; color: var(--bg); }
.site-notice a {
  color: var(--sand);
  font-weight: 500;
  margin-left: 6px;
  border-bottom: 1px solid rgba(199, 178, 153, 0.4);
  transition: border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.site-notice a:hover {
  color: #D7C4AB;
  border-bottom-color: #D7C4AB;
}
@media (max-width: 600px) {
  :root { --notice-h: 56px; }
  .site-notice { font-size: 12px; padding: 8px 14px; }
  .site-notice a { display: inline-block; margin-left: 0; margin-top: 2px; }
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: var(--notice-h); left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: all .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand span { color: var(--teal); }
.nav-links {
  display: none;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
}
.nav-phone:hover { color: var(--teal); }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  display: block;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--notice-h); left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--bg);
  padding: 96px 32px 32px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-cta { margin-top: 24px; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-phone { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ============ HERO (homepage) ============ */
.hero {
  padding: 160px 0 96px;
  background:
    radial-gradient(ellipse at top right, rgba(199, 178, 153, 0.15) 0%, transparent 50%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}
@media (min-width: 900px) {
  .hero { padding: 200px 0 120px; }
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
}
.hero-text .eyebrow {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-text .eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--teal);
}
.hero-headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
  font-variation-settings: "SOFT" 100;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 52ch;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--bg);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

/* ============ CITY HERO (city pages) ============ */
.breadcrumb { padding: 100px 0 0; }
.breadcrumb-trail {
  font-size: 13px;
  color: var(--ink-faint);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.breadcrumb-trail a { color: var(--ink-muted); }
.breadcrumb-trail a:hover { color: var(--teal); }
.breadcrumb-trail .sep { color: var(--ink-faint); }
.city-hero { padding: 32px 0 64px; }
@media (min-width: 900px) { .city-hero { padding: 32px 0 96px; } }
.city-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .city-hero-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}
.city-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 16px 0 24px;
}
.city-hero h1 em { font-style: italic; color: var(--teal); }
.city-hero p.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 52ch;
  margin-bottom: 32px;
}
.city-hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 32px;
}
.city-hero-stats {
  display: flex; gap: 32px; padding-top: 28px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.city-hero-stat .v {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.city-hero-stat .l {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin-top: 6px;
}
.city-hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.city-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.city-hero-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--bg); color: var(--ink);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-md);
}

/* ============ TRUST BAR ============ */
.trust-bar {
  padding: 32px 0;
  background: var(--bg-deep);
  color: var(--bg);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }
.trust-item { text-align: center; }
.trust-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
}

/* ============ SECTION HEAD ============ */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 72px;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.3fr 1fr; gap: 64px; }
}
.section-head .eyebrow { margin-bottom: 16px; display: block; }
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--teal); }
.section-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.section-head-single { max-width: 800px; margin-bottom: 56px; }
.section-head-single .section-title { margin-top: 16px; }

/* ============ WHY REBOOK ============ */
.bg-sand { background: var(--sand-soft); }
.bg-deep { background: var(--bg-deep); color: var(--bg); }
.bg-teal { background: var(--teal); color: var(--bg); }

.bg-deep .section-title, .bg-teal .section-title { color: var(--bg); }
.bg-deep .section-title em, .bg-teal .section-title em { color: var(--sand); }
.bg-deep .section-lede, .bg-teal .section-lede { color: rgba(250, 247, 242, 0.7); }
.bg-deep .eyebrow, .bg-teal .eyebrow { color: var(--sand); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.why-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s ease;
}
.why-card:hover { background: var(--bg-card); }
.why-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.why-card p { font-size: 15px; line-height: 1.6; color: var(--ink-muted); }

/* ============ FEATURED WORK GALLERY ============ */
.work-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-chip {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--ink-muted);
  transition: all .2s ease;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) {
  .work-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
  }
  .work-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
  .work-item:nth-child(2) { grid-column: span 2; }
  .work-item:nth-child(3) { grid-column: span 2; }
  .work-item:nth-child(4) { grid-column: span 3; }
  .work-item:nth-child(5) { grid-column: span 3; }
  .work-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
  .work-item:nth-child(7) { grid-column: span 4; }
}
.work-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
@media (min-width: 700px) { .work-item { aspect-ratio: auto; } }
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.work-item:hover img { transform: scale(1.04); }
.work-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent 50%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.work-item:hover::after { opacity: 1; }
.work-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.work-item:hover .work-tag { opacity: 1; transform: translateY(0); }

/* ============ PRICING ============ */
.pricing-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
}
@media (min-width: 700px) {
  .pricing-table { grid-template-columns: repeat(5, 1fr); }
}
.price-card {
  background: var(--bg-deep);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background .3s ease;
}
.price-card:hover { background: #232323; }
.price-card.featured {
  background: linear-gradient(180deg, rgba(199, 178, 153, 0.12), rgba(199, 178, 153, 0.04));
}
.price-size {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
}
.price-amount {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--bg);
  line-height: 1;
}
.price-amount sup { font-size: 18px; vertical-align: super; color: rgba(250, 247, 242, 0.7); }
.price-note { font-size: 13px; color: rgba(250, 247, 242, 0.5); }
.price-includes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
}
@media (min-width: 700px) {
  .price-includes { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.includes-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(250, 247, 242, 0.85);
}
.includes-item svg { flex-shrink: 0; color: var(--sand); margin-top: 2px; }
.pricing-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 40px; }

/* Mini pricing (city pages) */
.mini-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 48px;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 700px) { .mini-price-grid { grid-template-columns: repeat(5, 1fr); } }
.mini-price-card { background: var(--bg-deep); padding: 28px 20px; text-align: center; }
.mini-price-size { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250,247,242,0.6); margin-bottom: 8px; }
.mini-price-amount { font-family: var(--serif); font-size: 36px; font-weight: 300; }
.mini-price-amount sup { font-size: 16px; vertical-align: super; color: rgba(250,247,242,0.6); }

/* ============ ADD-ONS ============ */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 900px) {
  .addons-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
}
.addons-grid.reverse { direction: rtl; }
.addons-grid.reverse > * { direction: ltr; }

.addon-feature .eyebrow { margin-bottom: 16px; display: block; }
.addon-feature h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.addon-feature h3 em { font-style: italic; color: var(--teal); }
.addon-feature p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.addon-list { list-style: none; display: grid; gap: 16px; margin-bottom: 32px; }
.addon-list li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.addon-list .name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  display: block;
}
.addon-list .desc { font-size: 14px; color: var(--ink-muted); margin-top: 2px; }
.addon-list .price {
  margin-left: auto;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--teal);
  flex-shrink: 0;
}

/* Before/After Slider */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
}
.ba-after-wrap img {
  width: 100vw;
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.95);
  left: 50%;
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 24px rgba(0,0,0,0.4);
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  margin: -22px 0 0 -22px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.ba-handle::before {
  content: "‹ ›";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.1em;
  z-index: 2;
}
.ba-label {
  position: absolute;
  top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  padding: 6px 12px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; }

/* ============ AREAS GRID ============ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.area-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: all .25s ease;
}
.area-card:hover {
  background: var(--bg-card);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.area-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.area-county {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.area-arrow {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  display: flex; align-items: center; gap: 6px;
  transition: gap .25s ease;
}
.area-card:hover .area-arrow { gap: 10px; }

/* ============ NEIGHBORHOODS CHIPS ============ */
.nbhd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.nbhd-chip {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 4px;
}
.nbhd-chip .n { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--ink); }
.nbhd-chip .sub { font-size: 12px; color: var(--ink-faint); letter-spacing: 0.06em; text-transform: uppercase; }

/* ============ TESTIMONIALS ============ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 800px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column;
}
.testi-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: var(--bg);
  margin-bottom: 24px;
  flex: 1;
}
.testi-quote::before { content: "\201C"; color: var(--sand); }
.testi-quote::after { content: "\201D"; color: var(--sand); }
.testi-author { font-size: 14px; font-weight: 600; color: var(--bg); }
.testi-role { font-size: 13px; color: rgba(250, 247, 242, 0.55); margin-top: 2px; }
.testi-stars { color: var(--sand); margin-bottom: 16px; letter-spacing: 2px; }

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}
@media (min-width: 800px) { .process-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.process-step { position: relative; }
.process-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin-bottom: 16px;
  font-style: italic;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.process-step p { font-size: 16px; line-height: 1.6; color: var(--ink-muted); }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: 8px; max-width: 880px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .25s ease;
}
.faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow-md); }
.faq-summary {
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; position: relative; transition: transform .3s ease; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  left: 50%; top: 50%;
}
.faq-icon::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); transition: opacity .25s; }
.faq-item[open] .faq-icon::after { opacity: 0; }
.faq-body { padding: 0 28px 28px; color: var(--ink-muted); font-size: 16px; line-height: 1.65; max-width: 68ch; }

/* ============ FINAL CTA ============ */
.cta-final { text-align: center; }
.cta-final .eyebrow { color: var(--sand); margin-bottom: 24px; }
.cta-final h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--bg);
}
.cta-final h2 em { font-style: italic; color: var(--sand); }
.cta-final p {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.85);
  margin: 0 auto 48px;
  max-width: 56ch;
}
.cta-final-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============ LOCAL CONTENT (city SEO) ============ */
.local-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .local-grid { grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
}
.local-prose { font-size: 17px; line-height: 1.75; color: var(--ink); }
.local-prose h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
  margin-top: 12px;
}
.local-prose h2 em { font-style: italic; color: var(--teal); }
.local-prose h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--ink);
}
.local-prose p { margin-bottom: 18px; color: var(--ink-muted); }
.local-prose strong { color: var(--ink); font-weight: 600; }
.local-prose ul { padding-left: 0; list-style: none; margin: 16px 0 24px; }
.local-prose li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--ink-muted);
}
.local-prose li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 16px; height: 1px;
  background: var(--teal);
}
.local-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.local-sidebar h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.local-sidebar p.s { font-size: 14px; color: var(--ink-muted); margin-bottom: 24px; }
.local-sidebar .quick-price {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}
.local-sidebar .quick-price .size { color: var(--ink-muted); }
.local-sidebar .quick-price .price { font-family: var(--serif); color: var(--ink); font-size: 17px; }
.local-sidebar .btn { width: 100%; margin-top: 24px; }
.local-sidebar .ghost {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 16px;
}
.local-sidebar .ghost a { color: var(--teal); border-bottom: 1px solid var(--teal); }

/* CITY WORK GRID (3-col) */
.city-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) {
  .city-work-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.city-work-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.city-work-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.city-work-item:hover img { transform: scale(1.05); }

/* OTHER CITIES (internal links) */
.other-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.other-city {
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .25s ease;
}
.other-city:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.other-city .arr { color: var(--teal); font-size: 14px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-deep);
  color: rgba(250, 247, 242, 0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; } }
.footer-brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer-brand span { color: var(--sand); }
.footer-tagline {
  font-size: 15px;
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(250, 247, 242, 0.7); }
.footer-col a:hover { color: var(--bg); }
.footer-bar {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.45);
}

/* ============ ABOUT PAGE ============ */
.about-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse at top right, rgba(199, 178, 153, 0.15) 0%, transparent 50%),
    var(--bg);
}
@media (min-width: 900px) { .about-hero { padding: 200px 0 96px; } }
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-hero-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}
.about-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 16px 0 24px;
}
.about-hero h1 em { font-style: italic; color: var(--teal); }
.about-hero p.lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 52ch;
}
.about-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

.about-prose {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.75;
}
.about-prose p { margin-bottom: 24px; color: var(--ink-muted); }
.about-prose h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 48px 0 20px;
  color: var(--ink);
}
.about-prose h2 em { font-style: italic; color: var(--teal); }
.about-prose strong { color: var(--ink); font-weight: 600; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (min-width: 700px) { .about-stats { grid-template-columns: repeat(4, 1fr); } }
.about-stat {
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}
.about-stat .v {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.about-stat .v em { font-style: italic; color: var(--teal); }
.about-stat .l {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============ CONTACT FORM ============ */
.contact-hero {
  padding: 160px 0 64px;
  background:
    radial-gradient(ellipse at top right, rgba(199, 178, 153, 0.15) 0%, transparent 50%),
    var(--bg);
}
@media (min-width: 900px) { .contact-hero { padding: 200px 0 80px; } }
.contact-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 16px 0 24px;
}
.contact-hero h1 em { font-style: italic; color: var(--teal); }
.contact-hero p.lede { max-width: 52ch; font-size: 19px; color: var(--ink-muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
}
.contact-form { display: grid; gap: 20px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 700px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 16px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 77, 92, 0.12);
}
.form-field textarea { min-height: 140px; resize: vertical; font-family: inherit; line-height: 1.5; }
.form-submit { margin-top: 8px; }
.form-submit .btn { padding: 18px 36px; font-size: 16px; }
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 8px; }

.contact-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
}
.contact-sidebar h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
}
.contact-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-item .l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.contact-item .v {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.contact-item .v a { color: var(--ink); }
.contact-item .v a:hover { color: var(--teal); }
.contact-item .small { font-size: 14px; color: var(--ink-muted); font-family: var(--sans); font-weight: 400; }

/* ============ 404 ============ */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}
.notfound h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--teal);
  font-style: italic;
}
.notfound h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  margin: 24px 0 16px;
  color: var(--ink);
}
.notfound p { font-size: 18px; color: var(--ink-muted); margin-bottom: 32px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.notfound .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ MICRO ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }

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

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
