/* ============================================================
   PAUL ADAMS II — Redesign v2
   Dark editorial · Legacy serif · Gold accent
   ============================================================ */

/* ---------- Google Fonts loaded in HTML ---------- */

/* ---------- Variables ---------- */
:root {
  --black:       #080808;
  --dark:        #0d0d0d;
  --dark-2:      #141414;
  --dark-3:      #1c1c1c;
  --dark-4:      #252525;
  --mid:         #a0a0a0;
  --muted:       #999999;
  --border-dark: rgba(255,255,255,0.08);
  --border-light:#e2ddd6;
  --cream:       #f4f0e8;
  --cream-2:     #ece8df;
  --white:       #ffffff;
  --gold:        #c9a060;
  --gold-light:  #ddb978;
  --gold-dim:    rgba(201,160,96,0.15);
  --text-dark:   #1a1a1a;
  --text-mid:    #555555;
  --text-light:  #888888;
  --nav-h:       76px;
  --max:         1180px;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:      2px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; border: none; outline: none; }
button { cursor: pointer; background: none; }

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--dark);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Sections ---------- */
.section        { padding: 112px 0; }
.section-sm     { padding: 72px 0; }
.section-dark   { background: var(--dark); }
.section-dark-2 { background: var(--dark-2); }
.section-dark-3 { background: var(--dark-3); }
.section-cream  { background: var(--cream); }
.section-cream-2{ background: var(--cream-2); }

/* ---------- Typography System ---------- */

/* Eyebrow label */
.label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.label-light { color: var(--gold); }
.label-dark  { color: var(--gold); }

/* Serif display headings */
.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
}

.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
}

.display-md {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
}

.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

/* Dark-background variants */
.on-cream .display-lg,
.on-cream .display-md,
.on-cream .display-sm { color: var(--text-dark); }
.on-cream .label      { color: var(--gold); }

/* Sub-heading */
.subhead {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
  max-width: 540px;
}
.on-cream .subhead { color: var(--text-mid); }

/* Body */
.body-lg { font-size: 18px; line-height: 1.78; color: rgba(255,255,255,0.6); }
.body-md { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.55); }
.on-cream .body-lg { color: var(--text-mid); }
.on-cream .body-md { color: var(--text-mid); }

/* Gold rule */
.rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0 36px;
}
.rule-center { margin-left: auto; margin-right: auto; }

/* ---------- Logo SVG ---------- */
.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
  gap: 3px;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.logo-rule {
  width: 100%;
  height: 1px;
  background: var(--gold);
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(8,8,8,0.96);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-item { position: relative; }

.nav-item > a,
.nav-item > span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  height: var(--nav-h);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > span:hover,
.nav-item > a.active { color: var(--white); }

.nav-chevron {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  position: absolute;
  top: calc(var(--nav-h) - 2px);
  left: 0;
  min-width: 210px;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: all 0.12s;
}
.nav-dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.04); padding-left: 26px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #0d0d0d;
  border-top: 1px solid var(--border-dark);
  z-index: 999;
  padding: 12px 0 28px;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 13px 32px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .mob-sub { padding-left: 48px; font-size: 12px; color: rgba(255,255,255,0.4); }
.nav-mobile .mob-sub:hover { color: rgba(255,255,255,0.8); }
.nav-mobile .mob-divider { height: 1px; background: var(--border-dark); margin: 8px 32px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.25);
}
.btn-outline-dark:hover {
  border-color: var(--text-dark);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.btn-sm {
  padding: 11px 24px;
  font-size: 10px;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Arrow icon inside btn */
.btn-arrow { font-size: 14px; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 0;
  padding-left: calc((100vw - var(--max)) / 2 + 32px);
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: var(--dark-3);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
  color: rgba(255,255,255,0.15);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-right::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--dark), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-credentials {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border-dark);
}
.hero-cred-item { display:flex; flex-direction:column; justify-content:flex-end; }
.hero-cred-value {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-cred-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ---------- Philosophy / Differentiator ---------- */
.philosophy {
  padding: 96px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--white);
  font-style: italic;
  position: relative;
  padding-left: 28px;
}

.philosophy-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--gold);
}

.philosophy-right {}

.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.philosophy-pillar {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.2s;
}
.philosophy-pillar:last-child { border-bottom: none; }
.philosophy-pillar:hover { background: rgba(255,255,255,0.02); }

.pillar-num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.6;
  width: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.pillar-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ---------- About / Heritage ---------- */
.heritage {
  padding: 112px 0;
  background: var(--cream);
}

.heritage-inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 96px;
  align-items: center;
}

.heritage-photo-wrap {
  position: relative;
}

.heritage-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

.heritage-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heritage-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--gold);
  padding: 12px;
}
.heritage-badge-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.heritage-badge-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.3;
}

.heritage-content {}

.heritage-content .display-md {
  color: var(--text-dark);
  margin-bottom: 6px;
}

.heritage-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.heritage-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

.heritage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  margin-bottom: 40px;
}
.heritage-tag {
  padding: 8px 16px;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: var(--cream);
}

/* ---------- Services ---------- */
.services {
  padding: 112px 0;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}

.service-card {
  background: var(--dark-2);
  padding: 52px 48px;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: var(--dark-3); }

.service-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.service-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  display: block;
  line-height: 1.3;
}

.service-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  flex: 1;
}

.service-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border-dark);
  padding-top: 28px;
}

.service-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}
.step-n {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.7;
  width: 20px;
  flex-shrink: 0;
  margin-top: 0px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 112px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
}

.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-top: 56px;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.testi-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.testi-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.9;
}

.testi-quote {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
  flex: 1;
  margin-bottom: 28px;
}

.testi-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.testi-location {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testi-nav {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.15s;
}
.testi-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Neighborhoods ---------- */
.neighborhoods {
  padding: 112px 0;
  background: var(--dark);
}

.n-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 56px;
}

/* First 2 rows (10 cards) visible */
.n-card {
  position: relative;
  aspect-ratio: 2/3;
  background: var(--dark-3);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: flex-end;
  transition: transform 0.25s, border-color 0.25s;
  cursor: pointer;
}
.n-card:hover { transform: translateY(-4px); border-color: rgba(201,160,96,0.3); }

/* Cards 11-15 hidden initially */
.n-card.hidden { display: none; }

.n-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, transparent 35%, rgba(0,0,0,0.85) 100%);
  transition: opacity 0.25s;
}
.n-card:hover .n-overlay { opacity: 0.9; }

.n-label {
  position: relative;
  z-index: 1;
  padding: 16px 14px;
  width: 100%;
}
.n-label strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.n-label span {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.n-more-wrap {
  text-align: center;
  margin-top: 36px;
}

/* ---------- Blog ---------- */
.blog-section {
  padding: 112px 0;
  background: var(--cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 28px;
  margin-top: 56px;
}

/* Cards 7-9 hidden initially */
.blog-card-wrap.hidden { display: none; }

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  height: 300px;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(201,160,96,0.4);
}

.blog-card-body { padding: 28px 26px 24px; flex: 1; display: flex; flex-direction: column; }

.blog-cat,
.blog-category {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card:hover h3 { color: var(--black); }

.blog-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
  margin-top: auto;
}
.blog-meta-dot {
  color: var(--border-light);
}

.blog-more-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ---------- Market Insider / Email ---------- */
.insider {
  padding: 96px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.insider-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.insider-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 40px;
}
.insider-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.insider-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(201,160,96,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.insider-check svg { width: 10px; height: 10px; }
.insider-feat p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.insider-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: 3px;
  padding: 40px;
}

.insider-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.insider-input {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  transition: border-color 0.15s;
  width: 100%;
}
.insider-input::placeholder { color: rgba(255,255,255,0.25); }
.insider-input:focus { border-color: rgba(201,160,96,0.4); }

.insider-consent {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.65;
  margin-top: 6px;
}

/* ---------- CTA Banner ---------- */
.cta-section {
  padding: 96px 0;
  background: var(--dark);
  text-align: center;
}

.cta-contact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}
.cta-info-value {
  overflow: hidden;
  text-overflow: ellipsis;
}
.cta-info-item {
  background: var(--dark-2);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s;
}
.cta-info-item:hover { background: var(--dark-3); }
.cta-info-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.7;
}
.cta-info-value {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.cta-info-value a { transition: color 0.15s; }
.cta-info-value a:hover { color: var(--gold); }

/* ---------- Forms ---------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input {
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  transition: border-color 0.15s;
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus { border-color: rgba(201,160,96,0.4); }

.on-cream .form-input {
  background: var(--white);
  border-color: var(--border-light);
  color: var(--text-dark);
}
.on-cream .form-input::placeholder { color: #bbb; }
.on-cream .form-input:focus { border-color: var(--gold); }

.form-msg {
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
  margin-top: 6px;
}
.form-msg.success { background: rgba(134,239,172,0.08); border: 1px solid rgba(134,239,172,0.25); color: #86efac; display: block; }
.form-msg.error   { background: rgba(252,165,165,0.08); border: 1px solid rgba(252,165,165,0.25); color: #fca5a5; display: block; }

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
}

.page-header-eye {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.page-header-eye::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 740px;
  margin-bottom: 20px;
}

.page-header-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  line-height: 1.65;
}

/* ---------- Blog Post ---------- */
body:has(.post-content) {
  background: #fff;
}

.post-header {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--dark);
  border-bottom: 1px solid var(--border-dark);
}

.post-header .container {
  max-width: 720px;
  padding: 0 24px;
}

.post-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.post-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  max-width: 800px;
  margin-bottom: 22px;
}

.post-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  display: flex;
  gap: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}
.post-content h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 52px 0 18px;
}
.post-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 36px 0 12px;
}
.post-content p  { font-size: 17px; line-height: 1.8; color: var(--text-mid); margin-bottom: 22px; }
.post-content ul,
.post-content ol { margin: 0 0 22px 24px; list-style: initial; }
.post-content li { font-size: 17px; line-height: 1.78; color: var(--text-mid); margin-bottom: 8px; }
.post-content strong { color: var(--text-dark); }

.post-cta {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 36px 40px;
  border-radius: var(--radius);
  margin-top: 64px;
}
.post-cta h3 { font-family: var(--font-serif); font-size: 22px; color: var(--text-dark); margin-bottom: 10px; }
.post-cta p  { font-size: 15px; color: var(--text-mid); margin-bottom: 24px; }

.post-cta-box {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 36px 40px;
  border-radius: var(--radius);
  margin-top: 64px;
}
.post-cta-box h3 { font-family: var(--font-serif); font-size: 22px; color: var(--text-dark); margin-bottom: 10px; }
.post-cta-box p  { font-size: 15px; color: var(--text-mid); margin-bottom: 24px; }
.post-cta-box .btn-outline,
.post-cta .btn-outline {
  color: var(--text-dark);
  border-color: rgba(26,26,26,0.35);
}
.post-cta-box .btn-outline:hover,
.post-cta .btn-outline:hover {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}

.post-pullquote {
  border-left: 3px solid var(--gold);
  margin: 40px 0;
  padding: 8px 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--text-dark);
  line-height: 1.55;
}

.post-content em,
.post-content i {
  font-weight: 600;
}
.post-content a {
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(195,163,112,0.6);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.post-content a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.post-summary-box {
  background: rgba(195,163,112,0.07);
  border: 1px solid rgba(195,163,112,0.25);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0 48px;
}
.post-summary-box .summary-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.post-summary-box ul { margin: 0 0 0 20px; }
.post-summary-box li { font-size: 15px; color: var(--text-mid); margin-bottom: 7px; }

/* ---------- More Articles Carousel ---------- */
.post-more {
  background: var(--cream);
  border-top: 1px solid rgba(195,163,112,0.2);
  padding: 64px 0 72px;
}
.post-more-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.post-more-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-more-arrows {
  display: flex;
  gap: 8px;
}
.post-more-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.4);
  transition: border-color 0.2s, color 0.2s;
  padding: 0;
}
.post-more-arrow:hover:not(:disabled) {
  border-color: rgba(195,163,112,0.5);
  color: var(--gold);
}
.post-more-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
.post-more-track-wrap {
  overflow: hidden;
}
.post-more-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.more-card {
  flex: 0 0 340px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 28px 28px 32px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.more-card:hover {
  border-color: rgba(195,163,112,0.5);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.more-card-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.more-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1;
  margin-bottom: 20px;
}
.more-card-date {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .more-card { flex: 0 0 260px; }
}

/* ---------- Footer ---------- */
.footer {
  background: #060606;
  border-top: 1px solid var(--border-dark);
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 56px;
}

.footer-logo-wrap { margin-bottom: 18px; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.15s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-block { margin-bottom: 16px; }
.footer-contact-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}
.footer-contact-val {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-val a:hover { color: var(--gold); }

.footer-dre {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  line-height: 1.7;
  max-width: 660px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.footer-bottom-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  transition: color 0.15s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 32px; padding-top: calc(var(--nav-h) + 64px); }
  .hero-right { height: 480px; }
  .hero-right::after { display: none; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .heritage-inner { grid-template-columns: 1fr; gap: 48px; }
  .heritage-photo-wrap { max-width: 400px; }
  .insider-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .n-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-credentials { flex-wrap: wrap; gap: 24px; }
  .n-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .cta-contact-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; }
  .testi-card { flex: 0 0 88%; }
  .heritage-badge { width: 90px; height: 90px; right: -10px; bottom: -10px; }
  .heritage-badge-num { font-size: 22px; }
}

@media (max-width: 480px) {
  .n-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-group { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   INNER PAGE COMPATIBILITY — variable aliases + missing classes
   ============================================================ */

:root {
  --light:  rgba(255,255,255,0.40);
  --accent: var(--gold);
  --border: rgba(255,255,255,0.08);
  --bg:     #141414;
  --bg-alt: #1c1c1c;
}

/* Button aliases */
.btn-primary { background:var(--gold); color:var(--dark); border-color:var(--gold); }
.btn-primary:hover { background:var(--gold-light); border-color:var(--gold-light); transform:translateY(-1px); }
.btn-outline { background:transparent; color:rgba(255,255,255,0.85); border-color:rgba(255,255,255,0.25); }
.btn-outline:hover { border-color:rgba(255,255,255,0.7); color:var(--white); }
.btn-accent  { background:var(--gold); color:var(--dark); border-color:var(--gold); }
.btn-accent:hover { background:var(--gold-light); border-color:var(--gold-light); transform:translateY(-1px); }

/* Nav dropdown alias */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 8px 0;
  z-index: 200;
}
.nav-item:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s, padding-left 0.15s, background 0.15s;
}
.nav-dropdown-menu a:hover { color:var(--white); background:rgba(255,255,255,0.04); padding-left:26px; }

/* Utility */
.text-center { text-align: center; }

/* Typography aliases */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.65;
  margin: 12px auto 32px;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.section-alt { background: var(--dark-2); }

/* Page header eyebrow alias */
.page-header-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.page-header-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
/* Page header p tag */
.page-header p { font-size: 17px; color: rgba(255,255,255,0.50); max-width: 520px; line-height: 1.65; margin-top: 16px; }

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.about-image-placeholder {
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 14px;
  border-radius: var(--radius);
  width: 100%;
}
.about-credentials { display: flex; flex-direction: column; gap: 20px; }
.credential-item { display: flex; gap: 14px; align-items: flex-start; }
.credential-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.credential-item strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 4px; font-weight: 700; }
.credential-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 0; }

/* Pillars grid (about page approach section) */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.pillar-card {
  padding: 36px 28px;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
}
.pillar-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.pillar-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.pillar-card p  { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.7; }

/* CTA banner */
.cta-banner {
  padding: 80px 0;
  background: var(--dark-3);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.contact-info-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.contact-info-item { text-align: center; }
.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.contact-info-value { font-size: 15px; color: var(--white); font-weight: 600; }
.contact-info-value a { color: inherit; transition: color 0.15s; }
.contact-info-value a:hover { color: var(--gold); }

/* IDX placeholder */
.idx-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  text-align: center;
}
.idx-icon { font-size: 32px; margin-bottom: 20px; opacity: 0.5; }

/* Form layout (inner pages) */
.form-grid { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  transition: border-color 0.15s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(201,160,96,0.5); outline: none; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-message {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 4px;
}
.form-message.success { background: rgba(134,239,172,0.08); border: 1px solid rgba(134,239,172,0.25); color: #86efac; display: block; }
.form-message.error   { background: rgba(252,165,165,0.08); border: 1px solid rgba(252,165,165,0.25); color: #fca5a5; display: block; }

/* Post category tag (blog posts) */
.post-category-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.post-header-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Responsive — inner pages */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-row { flex-direction: column; gap: 24px; }
}

/* ---------- Neighborhood Stats ---------- */
.neighborhood-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
}
.stat-box {
  background: var(--dark-2);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.stat-value {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--white);
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* ---------- Neighborhood Carousel ---------- */
.nbhd-carousel-outer {
  position: relative;
  margin-top: 40px;
  padding: 0 52px;
}
.nbhd-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.nbhd-carousel::-webkit-scrollbar { display: none; }
.nbhd-carousel .n-card {
  flex: 0 0 200px;
  height: 280px;
  aspect-ratio: unset;
}
.carousel-arrow {
  position: absolute;
  top: calc(50% - 16px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}
.carousel-arrow:hover { background: var(--dark-3); border-color: rgba(201,160,96,0.4); }
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
@media (max-width: 768px) {
  .neighborhood-stats { grid-template-columns: repeat(2,1fr); }
  .nbhd-carousel-outer { padding: 0 40px; }
  .nbhd-carousel .n-card { flex: 0 0 160px; height: 220px; }
}
