@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --ink:     #090E18;
  --navy:    #0F2240;
  --gold:    #C49A3C;
  --gold-lt: #E8C87A;
  --cream:   #FAF8F3;
  --cream-d: #F0EBE0;
  --white:   #FFFFFF;
  --text:    #1C2B3A;
  --muted:   #7A8A9B;
  --border:  #DDD6CB;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --max-w:   1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────── */

.label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BUTTONS ─────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.875rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-gold         { background: var(--gold);  color: var(--white); border-color: var(--gold); }
.btn-gold:hover   { background: #a8822f; border-color: #a8822f; }
.btn-outline      { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.btn-white        { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-white:hover  { background: var(--cream); }

/* ── NAV ─────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 66.667%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  height: 160px;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(9, 14, 24, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo img { height: 84px; width: auto; flex-shrink: 0; }

.nav-links { display: flex; }
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 0.4rem 0.9rem;
  transition: color 0.15s;
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 1.125rem; }
.nav-phone {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--gold-lt); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }
  .nav { width: 100%; height: 70px; }
  .nav-logo img { height: 50px; }
  .mobile-nav { top: 70px; width: 100%; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  width: 66.667%;
  background: var(--ink);
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem) 2rem;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.mobile-nav a {
  display: block;
  padding: 0.8rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.mobile-nav-actions .btn { justify-content: center; }

/* ── HERO ────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  max-height: 820px;
}
.hero-left {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 11rem clamp(2rem, 4vw, 4.5rem) 5rem;
}
.hero-left .label { color: var(--gold-lt); margin-bottom: 2rem; display: block; }
.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 2.75rem;
}
.hero-headline em { font-style: italic; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.hero-phone:hover { color: var(--white); }

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(9,14,24,0.2) 30%, transparent 60%);
  z-index: 1;
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-right { height: 65vw; min-height: 300px; order: -1; }
  .hero-right img { object-position: center 15%; }
  .hero-right::before { background: linear-gradient(0deg, var(--ink) 0%, transparent 50%); }
  .hero-left { justify-content: center; align-items: center; text-align: center; padding: 3rem clamp(1.5rem, 5vw, 2.5rem) 4rem; }
}

/* ── SERVICES LIST ───────────────────────────────── */

.services-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.services-header {
  padding: clamp(2.5rem, 4vw, 4rem) 0 2rem;
  border-bottom: 1px solid var(--border);
}
.services-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-bottom: 3rem;
}
.svc-card {
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.625rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: inherit;
  min-height: 200px;
}
.svc-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(196,154,60,0.1);
}
.svc-card:hover .svc-card-cta { color: var(--gold); }
.svc-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(0,0,0,0.25);
  display: block;
  margin-bottom: 1.25rem;
}
.svc-card-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.625rem;
}
.svc-card-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.svc-card-cta {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  transition: color 0.15s;
}

@media (max-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .services-grid { grid-template-columns: 1fr; } }

/* legacy - keep for any remaining references */
.svc-name {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.svc-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 0.25rem;
}
.svc-arrow {
  font-size: 1.125rem;
  color: rgba(0,0,0,0.2);
  transition: transform 0.2s, color 0.15s;
}

@media (max-width: 640px) {
  .service-row { grid-template-columns: 2.5rem 1fr 1.5rem; gap: 1rem; }
}

/* ── GENERATION MOMENT ───────────────────────────── */

.generation {
  background: var(--cream);
}
.generation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.generation-left {
  padding: clamp(3.5rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.gen-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 1;
  color: var(--ink);
  display: block;
  letter-spacing: -0.02em;
}
.gen-sup {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--muted);
  display: block;
  margin-top: 1rem;
  letter-spacing: -0.01em;
}

.generation-right {
  padding: clamp(3.5rem, 6vw, 6rem) clamp(3rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.generation-right .label { display: block; margin-bottom: 1.5rem; }
.generation-right p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.125rem;
}
.gen-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.gen-stats { display: flex; gap: 3rem; }
.gen-stat-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  display: block;
  letter-spacing: -0.01em;
}
.gen-stat-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
  display: block;
}

@media (max-width: 768px) {
  .generation-inner { grid-template-columns: 1fr; }
  .generation-left { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 3rem; }
}

/* ── TESTIMONIAL FEATURE ─────────────────────────── */

.testimonial-feature {
  background: var(--navy);
  padding: clamp(5rem, 9vw, 9rem) max(1.5rem, calc((100% - var(--max-w)) / 2));
  text-align: center;
}
.testimonial-feature blockquote { max-width: 900px; margin: 0 auto; }
.quote-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}
.testimonial-feature blockquote p {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.625rem, 3.5vw, 2.875rem);
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
}
.testimonial-feature blockquote cite {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0.8;
}

/* ── NICK BIO ────────────────────────────────────── */

.nick-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nick-photo { overflow: hidden; background: var(--cream-d); min-height: 440px; max-height: 560px; }
.nick-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.nick-copy {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
}
.nick-copy .label { display: block; margin-bottom: 1.375rem; }
.nick-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1.625rem;
}
.nick-copy p {
  font-size: 1.0125rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.125rem;
}
.nick-copy .nick-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

@media (max-width: 768px) {
  .nick-bio { grid-template-columns: 1fr; }
  .nick-photo { min-height: 60vw; }
}

/* ── CARRIERS ────────────────────────────────────── */

.carriers-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.carriers-strip .label { flex-shrink: 0; color: var(--muted); }
.carrier-logos { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.carrier-logos img {
  height: 76px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(40%);
  opacity: 0.6;
  transition: opacity 0.2s, filter 0.2s;
}
.carrier-logos img:hover { opacity: 0.95; filter: grayscale(0%); }

/* ── LOCATIONS (HOMEPAGE) ────────────────────────── */

.locations-home {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 6vw, 6rem) clamp(1.5rem, 4vw, 3rem);
}
.locations-home-header {
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.locations-home-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.locations-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.loc-item {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}
.loc-item:last-child { border-right: none; }
.loc-item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.loc-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.loc-item address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.loc-item a {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  transition: color 0.15s;
  margin-bottom: 0.25rem;
}
.loc-item a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .locations-row { grid-template-columns: 1fr; }
  .loc-item { border-right: none; border-bottom: 1px solid var(--border); }
  .loc-item:last-child { border-bottom: none; }
  .locations-home-header { flex-direction: column; align-items: flex-start; }
}

/* ── CTA ─────────────────────────────────────────── */

.cta {
  background: var(--ink);
  padding: clamp(4rem, 6vw, 7rem) max(1.5rem, calc((100% - var(--max-w)) / 2));
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta .label { color: var(--gold-lt); display: block; margin-bottom: 1.375rem; }
.cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 2.25rem;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── FOOTER ──────────────────────────────────────── */

.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem max(1.5rem, calc((100% - var(--max-w)) / 2)) 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .brand-name {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.footer-brand .brand-tag {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.footer-brand .brand-phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.15s;
}
.footer-brand .brand-phone:hover { color: var(--gold-lt); }
.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.125rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-gold-link { color: var(--gold-lt) !important; font-weight: 500; }
.footer-gold-link:hover { color: var(--white) !important; }
.footer-col p { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 0.5rem; }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom span { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

@media (max-width: 900px) { .footer { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer { grid-template-columns: 1fr; gap: 2rem; } }

/* ── PAGE HERO (INNER PAGES) ─────────────────────── */

.page-hero {
  background: var(--ink);
  padding: clamp(7rem, 10vw, 10rem) max(1.5rem, calc((100% - var(--max-w)) / 2)) clamp(3.5rem, 5vw, 5rem);
  text-align: center;
}
.page-hero .label { display: block; color: var(--gold-lt); margin-bottom: 1.75rem; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.06;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero .page-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1.0625rem;
  margin-top: 1.625rem;
  max-width: 600px;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
}

/* ── INNER PAGE SECTIONS ─────────────────────────── */

.content-section {
  padding: clamp(4rem, 6vw, 6rem) max(1.5rem, calc((100% - var(--max-w)) / 2));
  max-width: 100%;
}
.content-section-full {
  padding: clamp(4rem, 6vw, 6rem) max(1.5rem, calc((100% - var(--max-w)) / 2));
}
.cream-bg { background: var(--cream); }

.section-lead { max-width: 720px; margin-bottom: 3.5rem; }
.section-lead .label { display: block; margin-bottom: 1.125rem; }
.section-lead h2,
.section-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-lead p,
.section-sub { font-size: 1.0125rem; color: var(--muted); line-height: 1.8; }
.section-label { display: block; margin-bottom: 1.125rem; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3.5rem, 6vw, 6rem);
  align-items: center;
}
.split-photo { overflow: hidden; min-height: 420px; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.split-copy .label { display: block; margin-bottom: 1.125rem; }
.split-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.split-copy p { font-size: 1.0125rem; line-height: 1.85; color: var(--text); margin-bottom: 1rem; }
.split-copy .split-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split-photo { min-height: 280px; }
}

/* Coverage list */
.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}
.coverage-list li {
  padding: 0.875rem 0 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text);
  position: relative;
  line-height: 1.5;
}
.coverage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 540px) { .coverage-list { grid-template-columns: 1fr; } }

/* Feature list */
.feature-list { border-top: 1px solid var(--border); }
.feature-list-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.fl-num {
  font-family: var(--serif);
  font-size: 0.875rem;
  color: var(--gold);
  padding-top: 0.2rem;
}
.fl-title { font-weight: 600; font-size: 0.9375rem; color: var(--ink); padding-top: 0.15rem; }
.fl-body  { font-size: 0.9125rem; color: var(--muted); line-height: 1.75; }

@media (max-width: 640px) {
  .feature-list-item { grid-template-columns: 2rem 1fr; }
  .fl-body { grid-column: 2; }
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.team-item-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-d);
  margin-bottom: 1.375rem;
}
.team-item-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-item h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.team-item .role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.team-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* Locations page */
.locations-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.loc-page-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
}
.loc-page-item:last-child { border-right: none; }
.loc-page-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.loc-page-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.75rem;
}
.loc-page-item address {
  font-style: normal;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.loc-page-item a {
  display: block;
  font-size: 0.9375rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.25rem;
  transition: color 0.15s;
}
.loc-page-item a:hover { color: var(--gold); }
.loc-hours {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.loc-page-item .btn { margin-top: 1.5rem; }

@media (max-width: 768px) {
  .locations-page-grid { grid-template-columns: 1fr; }
  .loc-page-item { border-right: none; border-bottom: 1px solid var(--border); }
  .loc-page-item:last-child { border-bottom: none; }
}

/* Contact form */
.contact-form { max-width: 620px; }
.form-group { margin-bottom: 1.375rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 0.9375rem;
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* Payment center */
.payment-list { border-top: 1px solid var(--border); margin-top: 3rem; }
.payment-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.payment-list-item h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.375rem;
}
.payment-list-item p { font-size: 0.9125rem; color: var(--muted); line-height: 1.65; max-width: 520px; }

@media (max-width: 640px) {
  .payment-list-item { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Testimonials page */
.review-stats {
  display: flex;
  gap: 4rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
}
.review-stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}
.review-stat-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── STATS BAR ───────────────────────────────────── */

.stats-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem max(1.5rem, calc((100% - var(--max-w)) / 2));
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 2rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 0.5rem;
}

/* ── TESTIMONIAL CAROUSEL ────────────────────────── */

.t-carousel { max-width: 900px; margin: 0 auto; }
.t-slides { display: grid; }
.t-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.t-slide.active { opacity: 1; pointer-events: auto; }
.t-dots {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2.5rem;
}
.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.t-dot.active { background: var(--gold); transform: scale(1.4); }

/* ── SCROLL REVEAL ───────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .js-ready .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0s);
  }
  .js-ready .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .js-ready .reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .js-ready .reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .js-ready .reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .js-ready .reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 640px) {
  .content-section, .content-section-full { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 6rem 1.25rem 3rem; }
  .cta { padding: 3.5rem 1.25rem; }
  .locations-home { padding: 3.5rem 1.25rem; }
  .stats-bar { flex-wrap: wrap; gap: 1.5rem; padding: 2rem 1.25rem; }
  .stat-item { border-right: none; flex: 0 0 calc(50% - 0.75rem); }
}
