/* ============================================================
   JCLK Interior Pages — Complete Redesign v3
   Requires: styles.css for CSS variables, header, footer, buttons
   ============================================================ */

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.bc-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(201,162,39,0.08);
  padding: 0.55rem var(--gutter);
}
.bc-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bc-item {
  font-family: var(--f-caps);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(240,237,229,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.bc-item:hover { color: var(--gold); }
.bc-sep { font-size: 0.55rem; color: rgba(201,162,39,0.25); }
.bc-item.active { color: rgba(240,237,229,0.6); pointer-events: none; }

/* ── PAGE TRANSITION OVERLAY ────────────────────────────────── */
.page-transition-overlay {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 100000;
  pointer-events: none;
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.35s ease;
}
.page-transition-overlay.active { opacity: 1; pointer-events: auto; }
.page-transition-logo {
  width: 72px; height: 72px; border-radius: 50%;
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.3s ease 0.1s, transform 0.4s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.page-transition-overlay.active .page-transition-logo { opacity: 0.7; transform: scale(1); }
#pageIntro {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  animation: introHide 0s 1.5s forwards;
}
#pageIntro.done { display: none; }
@keyframes introHide { to { visibility: hidden; opacity: 0; pointer-events: none; } }
#introLogo {
  width: clamp(180px, 30vw, 320px); opacity: 0;
  animation: introFade 0.5s 0.1s ease forwards, introExit 0.4s 0.9s ease forwards;
}
#introLogo img { width: 100%; border-radius: 50%; display: block; }
@keyframes introFade { to { opacity: 1; } }
@keyframes introExit { to { opacity: 0; transform: scale(0.88); } }

/* ── SCROLL PROGRESS ───────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform-origin: left; transform: scaleX(0);
  z-index: 9999; pointer-events: none;
  transition: transform 0.1s linear;
}

/* ── SITE HEADER OVERRIDES FOR INTERIOR ──────────────────────── */
.site-header {
  transform: translateY(0);
  background: rgba(12,20,32,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,162,39,0.1);
}
.site-header.visible { transform: translateY(0); }



/* ── HERO: SPLIT LAYOUT ───────────────────────────────────── */
.sp-hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.sp-hero::before {
  content: '';
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: repeating-linear-gradient(
    15deg, transparent, transparent 88px,
    rgba(201,162,39,0.03) 88px, rgba(201,162,39,0.03) 89px
  );
  pointer-events: none; z-index: 0;
  animation: rulesDrift 36s linear infinite;
}
@keyframes rulesDrift { from { transform: translateY(0); } to { transform: translateY(89px); } }
.sp-hero-l {
  padding: calc(var(--header-h, 80px) + 4rem) var(--gutter) 3.5rem;
  padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; z-index: 2;
}
.sp-hero-r {
  background: rgba(255,255,255,0.025);
  border-left: 1px solid rgba(201,162,39,0.1);
  padding: calc(var(--header-h, 80px) + 4rem) 2.5rem 3.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; z-index: 2;
}
.sp-eyebrow {
  font-family: var(--f-caps);
  font-size: 0.65rem; letter-spacing: 0.28em;
  color: rgba(201,162,39,0.65);
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: var(--sp-md);
}
.sp-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: rgba(201,162,39,0.45);
}
.sp-h1 {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 300; line-height: 1.0;
  color: var(--light); letter-spacing: -0.02em;
  margin-bottom: var(--sp-md);
}
.sp-h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.sp-body {
  font-size: 0.98rem; color: rgba(240,237,229,0.5);
  line-height: 1.85; max-width: 480px;
  margin-bottom: var(--sp-lg);
}
.sp-actions {
  display: flex; align-items: center;
  gap: var(--sp-md); flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}
.sp-stats {
  display: flex; align-items: center;
  gap: 0; padding-top: 1.25rem;
  border-top: 1px solid rgba(201,162,39,0.12);
  flex-wrap: wrap;
}
.sp-stat {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.5rem var(--sp-md) 0.5rem 0;
  margin-right: var(--sp-md);
  border-right: 1px solid rgba(201,162,39,0.1);
}
.sp-stat:last-child { border-right: none; margin-right: 0; }
.sp-stat-num {
  font-family: var(--f-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.sp-stat-unit { font-size: 1rem; color: rgba(201,162,39,0.6); }
.sp-stat-lbl {
  font-family: var(--f-caps);
  font-size: 0.58rem; letter-spacing: 0.16em;
  color: rgba(240,237,229,0.35); line-height: 1.4;
}
.sp-svc-label {
  font-family: var(--f-caps);
  font-size: 0.55rem; letter-spacing: 0.26em;
  color: rgba(201,162,39,0.4);
  display: block; margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201,162,39,0.1);
}
.sp-svc-item {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0.72rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  transition: padding-left 0.2s, background 0.2s;
  position: relative; border-radius: 2px;
}
.sp-svc-item::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 0;
  background: var(--gold); transition: width 0.22s;
}
.sp-svc-item:hover { padding-left: 0.9rem; background: rgba(255,255,255,0.03); }
.sp-svc-item:hover::before { width: 2px; }
.sp-svc-item--active { padding-left: 0.8rem; }
.sp-svc-item--active::before { width: 3px; }
.sp-svc-name {
  font-family: var(--f-caps);
  font-size: 0.65rem; letter-spacing: 0.12em;
  color: rgba(240,237,229,0.55);
  transition: color 0.2s;
}
.sp-svc-item--active .sp-svc-name,
.sp-svc-item:hover .sp-svc-name { color: var(--light); }
.sp-svc-arr {
  font-size: 0.58rem; color: rgba(201,162,39,0.25);
  flex-shrink: 0; transition: color 0.2s, transform 0.2s;
}
.sp-svc-item--active .sp-svc-arr { color: var(--gold); }
.sp-svc-item:hover .sp-svc-arr { color: var(--gold); transform: translateX(3px); }

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,162,39,0.07);
  border-bottom: 2px solid rgba(201,162,39,0.15);
  padding: 0.55rem var(--gutter);
}
.trust-bar-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 0.4rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-caps);
  font-size: 0.57rem; letter-spacing: 0.17em;
  color: rgba(240,237,229,0.32);
}
.trust-item i { color: rgba(201,162,39,0.5); font-size: 0.68rem; }

/* ── WHAT WE DO: SPLIT ANCHOR ─────────────────────────────── */
.svc-anchor {
  display: grid; grid-template-columns: 200px 1fr;
  border-bottom: 2px solid rgba(201,162,39,0.15);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.svc-anchor-l {
  background: var(--navy);
  padding: 2.75rem 1.75rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.svc-anchor-eye {
  font-family: var(--f-caps);
  font-size: 0.58rem; letter-spacing: 0.26em;
  color: rgba(201,162,39,0.45);
  margin-bottom: 0.65rem;
}
.svc-anchor-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  font-weight: 300; color: var(--light); line-height: 1.2;
  letter-spacing: -0.01em;
}
.svc-anchor-r { background: var(--cream); padding: 2rem; }
.sp-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--cream-line);
  border: 1px solid var(--cream-line);
}
.sp-card {
  background: var(--cream);
  padding: 1.35rem 1.1rem;
  position: relative; overflow: hidden;
  cursor: default;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}
.sp-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.sp-card:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(12,20,32,0.08); z-index: 1; }
.sp-card:hover::after { transform: scaleX(1); }
.sp-card:hover .sp-card-num { color: rgba(201,162,39,0.11); }
.sp-card-num {
  position: absolute; top: -0.1em; right: 0.25rem;
  font-family: var(--f-display); font-size: 4.5rem;
  font-weight: 700; color: rgba(201,162,39,0.07);
  line-height: 1; pointer-events: none;
  letter-spacing: -0.03em; transition: color 0.28s;
}
.sp-card-icon {
  width: 38px; height: 38px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem; position: relative; z-index: 1;
  border: 1px solid transparent;
  transition: border-color 0.22s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.sp-card:hover .sp-card-icon { border-color: rgba(201,162,39,0.25); transform: scale(1.06); }
.sp-card-icon i { font-size: 0.88rem; color: var(--gold); }
.sp-card-title {
  font-family: var(--f-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--navy); line-height: 1.2;
  margin-bottom: 0.3rem; position: relative; z-index: 1;
}
.sp-card-desc {
  font-size: 0.83rem; color: var(--ink-muted);
  line-height: 1.7; position: relative; z-index: 1;
}

/* ── DETAIL SECTION ──────────────────────────────────────── */
.detail-section {
  background: var(--cream-dark);
  padding: var(--section-v) var(--gutter);
  border-bottom: 1px solid var(--cream-line);
}
.detail-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 4rem; align-items: start;
}
.detail-prose { }
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 0.2rem 0 0.2rem 1.4rem;
  margin-bottom: 2rem;
}
.pull-quote-text {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-style: italic; font-weight: 400;
  color: var(--navy); line-height: 1.55;
}
.prose h2 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600; color: var(--navy);
  line-height: 1.25; margin-bottom: 0.9rem;
}
.prose h3 {
  font-family: var(--f-caps);
  font-size: 0.68rem; letter-spacing: 0.16em;
  color: var(--navy); margin: 1.5rem 0 0.45rem;
}
.prose p {
  font-size: 0.95rem; color: var(--ink-muted);
  line-height: 1.85; margin-bottom: 0.85rem;
}
.prose a { color: var(--navy); border-bottom: 1px solid rgba(12,20,32,0.2); transition: border-color 0.2s; }
.prose a:hover { border-color: var(--gold); }
.prose strong { color: var(--navy); font-weight: 500; }
.detail-aside {
  background: var(--navy);
  padding: 2.25rem 2rem;
  position: sticky; top: 100px;
}
.aside-tag {
  font-family: var(--f-caps);
  font-size: 0.62rem; letter-spacing: 0.22em;
  color: rgba(201,162,39,0.5);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(201,162,39,0.12);
  margin-bottom: 1.1rem;
}
.aside-phone {
  font-family: var(--f-display);
  font-size: 1.9rem; font-weight: 300;
  color: var(--light); display: block;
  line-height: 1; margin-bottom: 0.1rem;
  transition: color 0.2s;
}
.aside-phone:hover { color: var(--gold); }
.aside-rule {
  width: 32px; height: 1px;
  background: rgba(201,162,39,0.35); margin: 0.85rem 0;
}
.aside-body {
  font-size: 0.86rem; color: rgba(240,237,229,0.45);
  line-height: 1.75; margin-bottom: 1.35rem;
}
.aside-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; background: var(--gold); color: var(--navy);
  font-family: var(--f-caps); font-size: 0.65rem;
  letter-spacing: 0.14em; font-weight: 700;
  padding: 0.95rem 1rem; margin-bottom: 1.25rem;
  gap: 0.5rem; transition: background 0.2s;
}
.aside-cta:hover { background: var(--gold-hi); }
.aside-links { border-top: 1px solid rgba(201,162,39,0.1); padding-top: 0.85rem; }
.aside-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: var(--f-caps); font-size: 0.6rem; letter-spacing: 0.14em;
  color: rgba(240,237,229,0.42); transition: color 0.2s;
}
.aside-link:hover { color: var(--gold); }
.aside-link i { font-size: 0.58rem; }
.aside-link:last-child { border-bottom: none; }

/* ── PROCESS SECTION ──────────────────────────────────────── */
.proc-section {
  background: var(--navy);
  padding: var(--section-v) var(--gutter);
  border-top: 1px solid rgba(201,162,39,0.08);
}
.proc-inner { max-width: var(--container); margin: 0 auto; }
.proc-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 2.5rem;
}
.proc-eye {
  font-family: var(--f-caps);
  font-size: 0.6rem; letter-spacing: 0.26em;
  color: rgba(201,162,39,0.5); margin-bottom: 0.45rem;
}
.proc-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300; color: var(--light);
  letter-spacing: -0.01em;
}
.proc-count {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700; color: rgba(201,162,39,0.07);
  line-height: 1; letter-spacing: -0.03em; flex-shrink: 0;
}
.proc-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.proc-step {
  padding: 1.5rem 1.75rem 1.5rem 0;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.proc-step:last-child { border-right: none; }
.proc-step:not(:first-child) { padding-left: 1.75rem; }
.proc-connector {
  display: flex; align-items: center;
  gap: 0.85rem; margin-bottom: 0.9rem;
}
.proc-num {
  font-family: var(--f-display); font-size: 2.2rem;
  color: rgba(201,162,39,0.28); line-height: 1; flex-shrink: 0;
}
.proc-line { flex: 1; height: 1px; background: rgba(201,162,39,0.1); }
.proc-title {
  font-family: var(--f-caps); font-size: 0.63rem;
  letter-spacing: 0.18em; color: var(--gold); margin-bottom: 0.45rem;
}
.proc-desc { font-size: 0.9rem; color: rgba(240,237,229,0.42); line-height: 1.75; }

/* ── FAQ SECTION ──────────────────────────────────────────── */
.faq-section {
  background: var(--cream);
  padding: var(--section-v) var(--gutter);
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.faq-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 5rem; align-items: start;
}
.faq-hd { position: sticky; top: 100px; }
.faq-eye {
  font-family: var(--f-caps); font-size: 0.6rem;
  letter-spacing: 0.26em; color: var(--ink-muted); margin-bottom: 0.5rem;
}
.faq-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600; color: var(--navy); line-height: 1.15;
}
.faq-note {
  font-size: 0.85rem; color: var(--ink-muted);
  line-height: 1.65; margin-top: 1rem;
}
.faq-note a { color: var(--navy); border-bottom: 1px solid rgba(12,20,32,0.2); }
.faq-list { }
.faq-item { border-top: 1px solid var(--cream-line); }
.faq-item:last-child { border-bottom: 1px solid var(--cream-line); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1.5rem;
  padding: 1.15rem 0; cursor: pointer;
  font-family: var(--f-body); font-size: 0.95rem;
  color: var(--navy); line-height: 1.5;
  text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--gold); margin-top: 1px;
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  font-size: 0.91rem; color: var(--ink-muted);
  line-height: 1.8; padding-bottom: 1.35rem;
}
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ── EDITORIAL RELATED ────────────────────────────────────── */
.editorial-rel {
  background: var(--cream);
  padding: var(--sp-xl) var(--gutter);
  border-top: 1px solid var(--cream-line);
}
.editorial-rel-inner { max-width: var(--container); margin: 0 auto; }
.editorial-rel-eye {
  font-family: var(--f-caps); font-size: 0.6rem;
  letter-spacing: 0.26em; color: var(--ink-muted); margin-bottom: 1rem;
}
.editorial-rel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--cream-line);
  border: 1px solid var(--cream-line);
}
.editorial-rel-item {
  background: var(--cream);
  padding: 1.1rem 1.3rem;
  display: flex; align-items: center;
  justify-content: space-between;
  text-decoration: none; transition: background 0.2s;
  gap: 0.75rem;
}
.editorial-rel-item:hover { background: #fff; }
.editorial-rel-item:hover .rel-arr { color: var(--gold); transform: translateX(3px); }
.editorial-rel-name {
  font-family: var(--f-display);
  font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.2;
}
.rel-arr {
  font-size: 0.62rem; color: rgba(201,162,39,0.3);
  flex-shrink: 0; transition: color 0.2s, transform 0.2s;
}

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: var(--sp-xl) var(--gutter);
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(201,162,39,0.1);
}
.cta-band::before {
  content: '';
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: repeating-linear-gradient(
    15deg, transparent, transparent 88px,
    rgba(201,162,39,0.025) 88px, rgba(201,162,39,0.025) 89px
  );
  pointer-events: none; z-index: 0;
}
.cta-band-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 3rem;
  position: relative; z-index: 1;
}
.cta-band-eye {
  font-family: var(--f-caps); font-size: 0.6rem;
  letter-spacing: 0.26em; color: rgba(201,162,39,0.5); margin-bottom: 0.6rem;
}
.cta-band-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--light); line-height: 1.1;
}
.cta-band-h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.cta-band-sub {
  font-size: 0.9rem; color: rgba(240,237,229,0.45);
  line-height: 1.7; margin-top: 0.75rem; max-width: 40ch;
}
.cta-band-r { text-align: right; flex-shrink: 0; }
.cta-phone {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; color: var(--gold);
  display: block; line-height: 1; transition: color 0.2s;
}
.cta-phone:hover { color: var(--gold-hi); }
.cta-avail {
  font-family: var(--f-caps); font-size: 0.57rem;
  letter-spacing: 0.14em; color: rgba(240,237,229,0.28);
  display: block; margin: 0.5rem 0 1rem;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--navy);
  font-family: var(--f-caps); font-size: 0.65rem;
  letter-spacing: 0.14em; font-weight: 700;
  padding: 0.9rem 1.75rem; transition: background 0.2s;
}
.cta-btn:hover { background: var(--gold-hi); }

/* ── MOBILE BOTTOM NAV ──────────────────────────────────────── */
.mbn { position: fixed; bottom: 0; left: 0; right: 0; z-index: 400; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  }
@media (max-width: 1000px) {
  .detail-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-aside { position: static; }
  .faq-inner { grid-template-columns: 1fr; gap: 2rem; }
  .faq-hd { position: static; }
}
@media (max-width: 860px) {
  .sp-hero { grid-template-columns: 1fr; min-height: auto; }
  .sp-hero-r { display: none; }
  .sp-hero-l { padding: calc(var(--header-h, 70px) + 2.5rem) var(--gutter) 2.5rem; }
  .svc-anchor { grid-template-columns: 1fr; }
  .svc-anchor-l { padding: 1.5rem 1.75rem; justify-content: flex-start; }
  .sp-card-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-steps { grid-template-columns: 1fr; }
  .proc-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1.25rem 0; }
  .proc-step:last-child { border-bottom: none; }
  .proc-step:not(:first-child) { padding-left: 0; }
  .editorial-rel-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-r { text-align: left; }
}
@media (max-width: 540px) {
  .sp-card-grid { grid-template-columns: 1fr; }
  .editorial-rel-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 0.3rem; }
  .trust-item { font-size: 0.52rem; }
}

/* ═══════════════════════════════════════════════════════════
   CITY PAGE STYLES (legacy classes used by location pages)
   ═══════════════════════════════════════════════════════════ */

/* ── Page Hero (city pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: calc(var(--header-h, 80px) + 4rem) var(--gutter) 4rem;
  min-height: 440px;
  display: flex; align-items: flex-end;
}
.page-hero::before {
  content: '';
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: repeating-linear-gradient(
    15deg, transparent, transparent 88px,
    rgba(201,162,39,0.03) 88px, rgba(201,162,39,0.03) 89px
  );
  pointer-events: none; z-index: 0;
  animation: rulesDrift 36s linear infinite;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; width: 100%;
}
.page-hero-medallion {
  position: absolute; right: var(--gutter); bottom: -10%;
  width: clamp(180px, 24vw, 360px);
  opacity: 0.04; filter: brightness(2.5);
  border-radius: 50%; pointer-events: none;
}
.page-eyebrow {
  font-family: var(--f-caps);
  font-size: 0.65rem; letter-spacing: 0.28em;
  color: rgba(201,162,39,0.65);
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: var(--sp-md);
}
.page-h1 {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 300; line-height: 1.0;
  color: var(--light); letter-spacing: -0.02em;
  margin-bottom: var(--sp-md);
}
.page-h1 em { font-style: italic; color: var(--gold); }
.page-hero-body {
  font-size: 0.98rem; color: rgba(240,237,229,0.5);
  line-height: 1.85; max-width: 520px;
  margin-bottom: var(--sp-lg);
}
.page-hero-actions {
  display: flex; align-items: center;
  gap: var(--sp-md); flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}
.page-hero-stats {
  display: flex; align-items: center;
  gap: 0; padding-top: var(--sp-sm);
  border-top: 1px solid rgba(201,162,39,0.12);
  flex-wrap: wrap;
}
.ph-stat {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.5rem var(--sp-md) 0.5rem 0;
  margin-right: var(--sp-md);
  border-right: 1px solid rgba(201,162,39,0.1);
}
.ph-stat:last-child { border-right: none; margin-right: 0; }
.ph-stat-num {
  font-family: var(--f-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.ph-stat-label {
  font-family: var(--f-caps);
  font-size: 0.58rem; letter-spacing: 0.16em;
  color: rgba(240,237,229,0.35); line-height: 1.4;
}

/* ── Section Headers ─────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--f-caps);
  font-size: 0.65rem; letter-spacing: 0.26em;
  color: var(--ink-muted); display: flex;
  align-items: center; gap: 0.85rem; margin-bottom: var(--sp-md);
}
.section-eyebrow.draw-line::after {
  content: ''; display: block; flex: 1;
  height: 1px; background: var(--cream-line); max-width: 60px;
}
.section-eyebrow--light { color: rgba(240,237,229,0.4); }
.section-eyebrow--light.draw-line::after { background: rgba(201,162,39,0.2); }
.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600; color: var(--navy); line-height: 1.15;
  margin-bottom: var(--sp-lg); letter-spacing: -0.01em;
}
.section-title--light { color: var(--light); }

/* ── Content Sections ─────────────────────────────────────── */
.content-section {
  background: var(--cream);
  padding: var(--section-v) var(--gutter);
}
.content-section--dark { background: var(--cream-dark); }
.content-section--navy { background: var(--navy); }
.content-inner { max-width: var(--container); margin: 0 auto; }
.content-2col {
  display: grid; grid-template-columns: 1fr 360px;
  gap: var(--sp-xl); align-items: start;
}
.prose h2 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600; color: var(--navy); line-height: 1.25;
  margin-bottom: 0.9rem;
}
.prose h3 {
  font-family: var(--f-caps);
  font-size: 0.68rem; letter-spacing: 0.16em;
  color: var(--navy); margin: 1.5rem 0 0.45rem;
}
.prose p {
  font-size: 0.95rem; color: var(--ink-muted);
  line-height: 1.85; margin-bottom: 0.85rem;
}
.prose a { color: var(--navy); border-bottom: 1px solid rgba(12,20,32,0.2); }
.prose a:hover { border-color: var(--gold); }
.prose strong { color: var(--navy); font-weight: 500; }

/* ── Service Cards (city pages) ──────────────────────────── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--cream-line);
  border: 1px solid var(--cream-line);
}
.service-card {
  background: var(--cream);
  padding: 1.5rem 1.25rem;
  position: relative; overflow: hidden;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12,20,32,0.07); z-index: 1; }
.service-card:hover::after { transform: scaleX(1); }
.sc-icon {
  width: 38px; height: 38px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.service-card:hover .sc-icon { transform: scale(1.06); }
.sc-icon i { font-size: 0.88rem; color: var(--gold); }
.sc-title {
  font-family: var(--f-caps); font-size: 0.68rem;
  letter-spacing: 0.14em; color: var(--navy);
  margin-bottom: 0.4rem;
}
.sc-body { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.75; }

/* ── Aside Card ───────────────────────────────────────────── */
.aside-card {
  background: var(--navy); padding: var(--sp-lg);
  position: sticky; top: 100px;
}
.aside-title {
  font-family: var(--f-caps); font-size: 0.68rem;
  letter-spacing: 0.2em; color: var(--gold);
  margin-bottom: var(--sp-md); padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.aside-phone {
  font-family: var(--f-display); font-size: 1.9rem;
  font-weight: 300; color: var(--light); display: block;
  margin-bottom: var(--sp-sm); line-height: 1; transition: color 0.2s;
}
.aside-phone:hover { color: var(--gold); }
.aside-body {
  font-size: 0.88rem; color: rgba(240,237,229,0.5);
  line-height: 1.7; margin-bottom: var(--sp-lg);
}
.aside-links {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(201,162,39,0.12);
  padding-top: var(--sp-md); margin-top: var(--sp-lg);
}
.aside-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(201,162,39,0.07);
  font-family: var(--f-caps); font-size: 0.62rem;
  letter-spacing: 0.14em; color: rgba(240,237,229,0.42);
  transition: color 0.2s;
}
.aside-link:hover { color: var(--gold); }
.aside-link:last-child { border-bottom: none; }

/* ── Interior FAQ (city pages) ───────────────────────────── */
.int-faq {
  background: var(--cream);
  padding: var(--section-v) var(--gutter);
  border-top: 1px solid var(--cream-line);
}
.int-faq-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 5rem; align-items: start;
}
.int-faq-header { position: sticky; top: 100px; }
.int-faq-title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600; color: var(--navy); line-height: 1.15;
}
.int-faq-note {
  font-size: 0.85rem; color: var(--ink-muted);
  line-height: 1.65; margin-top: 1rem;
}
.int-faq-note a { color: var(--navy); border-bottom: 1px solid rgba(12,20,32,0.2); }
.int-faq-list { display: flex; flex-direction: column; }
.int-faq-item { border-top: 1px solid var(--cream-line); }
.int-faq-item:last-child { border-bottom: 1px solid var(--cream-line); }
.int-faq-q {
  width: 100%; background: none; border: none;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.5rem; padding: 1.15rem 0; cursor: pointer;
  font-family: var(--f-body); font-size: 0.95rem;
  color: var(--navy); line-height: 1.5; text-align: left;
  transition: color 0.2s;
}
.int-faq-q:hover { color: var(--gold); }
.int-faq-q-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--gold); margin-top: 1px;
  transition: transform 0.25s, background 0.2s;
}
.int-faq-item.open .int-faq-q-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.int-faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.int-faq-item.open .int-faq-a { grid-template-rows: 1fr; }
.int-faq-a-inner { overflow: hidden; }
.int-faq-a-inner p {
  font-size: 0.91rem; color: var(--ink-muted);
  line-height: 1.8; padding-bottom: 1.35rem;
}

/* ── Related Links (city pages) ──────────────────────────── */
.related-links-section {
  background: var(--cream);
  padding: var(--sp-xl) var(--gutter);
  border-top: 1px solid var(--cream-line);
}
.related-links-inner { max-width: var(--container); margin: 0 auto; }
.related-links-eyebrow {
  font-family: var(--f-caps); font-size: 0.62rem;
  letter-spacing: 0.22em; color: var(--ink-muted);
  margin-bottom: 1rem;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--cream-line);
  border: 1px solid var(--cream-line);
}
.related-link {
  background: var(--cream); padding: 1rem 1.25rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 0.75rem;
  transition: background 0.2s;
}
.related-link:hover { background: #fff; }
.related-link-text {
  font-family: var(--f-display); font-size: 0.95rem;
  font-weight: 600; color: var(--navy);
}
.related-link-arrow { color: rgba(201,162,39,0.4); font-size: 0.65rem; transition: transform 0.2s; }
.related-link:hover .related-link-arrow { transform: translateX(3px); }

/* ── Responsive for city pages ───────────────────────────── */
@media (max-width: 860px) {
  .page-h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .content-2col { grid-template-columns: 1fr; gap: 2.5rem; }
  .aside-card { position: static; }
  .int-faq-inner { grid-template-columns: 1fr; gap: 2rem; }
  .int-faq-header { position: static; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .service-cards { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
