/* Luxury Escorts VIP — mobile-first redesign */
:root {
  --ink: #0e0c0a;
  --ink-2: #161310;
  --surface: #1c1712;
  --surface-2: #241e18;
  --line: rgba(212, 175, 115, 0.16);
  --line-2: rgba(212, 175, 115, 0.34);
  --gold: #d4af73;
  --gold-2: #e8c992;
  --gold-3: #9a7a45;
  --text: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.72);
  --faint: rgba(246, 241, 232, 0.48);
  --ok: #7f9b76;
  --danger: #c47a6a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  --radius: 14px;
  --nav-h: 64px;
  --wrap: 1120px;
  --font-d: "Cormorant Garamond", "Times New Roman", serif;
  --font-b: "Manrope", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(72px + var(--safe-b));
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--gold); color: var(--ink); padding: .75rem 1rem; font-weight: 600;
}
.skip-link:focus { left: 1rem; top: calc(1rem + var(--safe-t)); }

.wrap {
  width: min(100% - 1.25rem, var(--wrap));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .wrap { width: min(100% - 2.5rem, var(--wrap)); }
  body { padding-bottom: 0; font-size: 17px; }
  :root { --nav-h: 76px; }
}

/* Keyword highlight — SEO visible emphasis */
.kw, mark.kw {
  background: linear-gradient(180deg, transparent 55%, rgba(212, 175, 115, 0.28) 55%);
  color: var(--gold-2);
  font-weight: 650;
  padding: 0 .08em;
  border-radius: 2px;
}
a.kw-link {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 115, 0.45);
  text-underline-offset: 3px;
  font-weight: 600;
}
a.kw-link:hover { color: var(--gold); text-decoration-color: var(--gold); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--gold); }
h1, h2, h3, .display { font-family: var(--font-d); font-weight: 500; line-height: 1.15; letter-spacing: .01em; }
h1 { font-size: clamp(1.85rem, 7.2vw, 3.6rem); }
h2 { font-size: clamp(1.55rem, 4.5vw, 2.45rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
.lede { color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.15rem); max-width: 38rem; }
.section { padding: clamp(2.75rem, 7vw, 5.5rem) 0; }
.section-head { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); max-width: 40rem; }
.section-head p { margin-top: .85rem; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.2rem; border-radius: 999px;
  border: 1px solid transparent;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s;
  white-space: nowrap; touch-action: manipulation;
}
.btn:active { transform: scale(.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 40%, var(--gold-3));
  color: #1a140c; box-shadow: 0 10px 28px rgba(212, 175, 115, .22);
}
.btn-ghost { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-wa { background: #1f6b4a; color: #e9f7f0; }
.btn-wa:hover { background: #268559; }

/* Nav */
.navbar {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: calc(var(--nav-h) + var(--safe-t));
  padding-top: var(--safe-t);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.navbar.is-scrolled, body:not(.page-home) .navbar {
  background: rgba(14, 12, 10, .92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.navbar-inner {
  width: min(100% - 1rem, var(--wrap));
  margin: 0 auto; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
}
.nav-logo {
  font-family: var(--font-d); font-size: 1.35rem; letter-spacing: .03em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: none; gap: 1.25rem; align-items: center; }
.nav-links a {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.nav-links a.is-active, .nav-links a:hover { color: var(--gold-2); }
.nav-cta { display: none; }
.hamburger {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 12px;
}
.hamburger span {
  display: block; width: 18px; height: 1.5px; background: var(--text);
  margin: 2.5px 0; transition: .28s var(--ease);
}
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  opacity: 0; pointer-events: none; z-index: 110; transition: opacity .3s;
}
.mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 120;
  width: min(88vw, 340px); height: 100%;
  background: var(--ink-2);
  border-left: 1px solid var(--line);
  padding: calc(var(--nav-h) + var(--safe-t) + 1rem) 1.25rem calc(1.5rem + var(--safe-b));
  transform: translateX(105%); transition: transform .38s var(--ease);
  overflow-y: auto;
}
.mobile-menu a {
  display: block; padding: .95rem 0;
  font-family: var(--font-d); font-size: 1.45rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-cta { display: grid; gap: .65rem; margin-top: 1.25rem; }
body.menu-open { overflow: hidden; }
body.menu-open .mobile-overlay { opacity: 1; pointer-events: auto; }
body.menu-open .mobile-menu { transform: none; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 980px) {
  .nav-links, .nav-cta { display: flex; }
  .hamburger { display: none; }
}

/* Hero */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: end;
  padding: calc(var(--nav-h) + var(--safe-t) + 1.5rem) 0 3rem;
  overflow: hidden;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  transform: scale(1.05);
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(14,12,10,.5) 0%, rgba(14,12,10,.25) 35%, rgba(14,12,10,.88) 72%, rgba(14,12,10,.98) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(212,175,115,.16), transparent 50%);
}
.hero-content { position: relative; z-index: 2; }
.hero-brand {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 12vw, 5.8rem);
  line-height: .92; margin: .7rem 0 .9rem;
}
.hero-brand em { font-style: normal; color: var(--gold-2); display: block; }
.hero h1 {
  font-family: var(--font-b);
  font-size: clamp(.9rem, 2.8vw, 1.05rem);
  font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); max-width: 28rem;
}
.hero-sub { margin-top: 1rem; color: var(--faint); max-width: 32rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
@media (max-width: 560px) {
  .hero-actions .btn { flex: 1 1 calc(50% - .4rem); min-width: 140px; }
}

.marquee {
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden; padding: .85rem 0;
}
.marquee-track {
  display: flex; gap: 1.75rem; width: max-content;
  animation: marquee 36s linear infinite;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap; font-weight: 600;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* Cards / grids */
.profile-grid, .chip-grid, .cat-grid, .price-grid, .pillars, .link-cloud {
  display: grid; gap: .85rem;
}
.profile-grid { grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .profile-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; } }

.profile-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s;
}
.profile-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.profile-card .media { aspect-ratio: 3/4; overflow: hidden; background: #1a1511; }
.profile-card img { width: 100%; height: 100%; object-fit: cover; }
.profile-card .body { padding: .9rem .85rem 1rem; }
.profile-card h3 { font-size: 1.2rem; margin-bottom: .25rem; }
.profile-meta { display: grid; gap: .15rem; font-size: .82rem; color: var(--muted); }
.profile-meta strong { color: var(--gold); font-weight: 700; }
.profile-card .actions { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; margin-top: .75rem; }
.profile-card .actions .btn { min-height: 40px; padding: .45rem; font-size: .62rem; border-radius: 10px; }

.chip-grid { grid-template-columns: 1fr 1fr; }
@media (min-width: 800px) { .chip-grid { grid-template-columns: repeat(4, 1fr); } }
.chip {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  min-height: 64px; padding: .9rem 1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  transition: border-color .25s, transform .25s var(--ease);
}
.chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.chip strong { font-family: var(--font-d); font-size: 1.05rem; font-weight: 500; }
.chip span { color: var(--gold); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }

.cat-grid, .price-grid, .pillars { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .cat-grid, .price-grid, .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .cat-grid, .price-grid, .pillars { grid-template-columns: repeat(3, 1fr); }
}
.cat-card, .price-card, .pillar {
  padding: 1.35rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 160px;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .3s var(--ease);
}
.cat-card:hover, .price-card:hover, .pillar:hover { border-color: var(--gold); transform: translateY(-3px); }
.cat-card p, .price-card p, .pillar p { color: var(--muted); margin: .65rem 0 1rem; flex: 1; font-size: .94rem; }
.cat-card .link { color: var(--gold); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-top: auto; }
.price-card .amount { font-family: var(--font-d); font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--gold-2); margin: .35rem 0; }
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(165deg, rgba(212,175,115,.14), transparent 50%), var(--surface-2);
  position: relative;
}
.price-card .tag {
  position: absolute; top: .85rem; right: .85rem;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800;
  background: var(--gold); color: var(--ink); padding: .28rem .5rem; border-radius: 999px;
}
.pillar .num { font-family: var(--font-d); color: var(--gold); font-size: 1.4rem; margin-bottom: .7rem; }

.split {
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; gap: 2.5rem; } }
.split-media {
  position: relative; min-height: 260px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
}
@media (min-width: 900px) { .split-media { min-height: 420px; } }
.split-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.feature-list { display: grid; gap: .15rem; margin-top: 1.1rem; }
.feature-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: .75rem;
  padding: .8rem 0; border-bottom: 1px solid var(--line); color: var(--muted);
}
.feature-list .mark {
  width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--gold); font-size: .75rem; font-weight: 700;
}

.page-hero {
  padding: calc(var(--nav-h) + var(--safe-t) + 2rem) 0 2rem;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(212,175,115,.14), transparent 45%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  font-size: .75rem; color: var(--faint); margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--gold); }
.page-hero .lede { margin-top: .85rem; }

.prose p { color: var(--muted); margin-top: 1rem; font-size: 1.02rem; }
.prose h2 { margin-top: 1.75rem; margin-bottom: .25rem; }
.prose h2:first-child { margin-top: 0; }
.price-note, .callout {
  margin-top: 1.5rem; padding: 1rem 1.1rem;
  border: 1px dashed var(--line-2); border-radius: 12px;
  color: var(--muted); font-size: .94rem;
  background: rgba(212,175,115,.04);
}

.faq-list { display: grid; gap: .65rem; margin-top: 1.25rem; }
.faq-item {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 12px; padding: 1rem 1.1rem;
}
.faq-item h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.faq-item p { color: var(--muted); font-size: .94rem; }

.cta-band {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-block: 1px solid var(--line);
  background: radial-gradient(ellipse at 80% 50%, rgba(212,175,115,.16), transparent 45%), var(--ink-2);
}
.cta-band .wrap {
  display: flex; flex-direction: column; gap: 1.25rem;
}
@media (min-width: 800px) {
  .cta-band .wrap { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-band p { color: var(--muted); margin-top: .6rem; max-width: 34rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
@media (max-width: 560px) { .cta-actions .btn { width: 100%; } }

.contact-grid { display: grid; gap: 1rem; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }
.contact-card, .contact-aside {
  padding: 1.35rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.contact-card a.big {
  display: inline-block; margin-top: .55rem;
  font-family: var(--font-d); font-size: clamp(1.35rem, 4vw, 1.7rem); color: var(--gold-2);
}
.contact-stack { display: grid; gap: .85rem; }

/* Footer — professional internal link mesh */
.footer {
  padding: 2.75rem 0 calc(1.5rem + var(--safe-b));
  background: #090807; border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; gap: 1.75rem; margin-bottom: 2rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.35fr 1fr 1fr 1fr 1.15fr; } }
.footer h3 {
  font-family: var(--font-b); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .85rem; font-weight: 700;
}
.footer p, .footer a { color: var(--muted); font-size: .9rem; }
.footer a:hover { color: var(--gold-2); }
.footer ul { display: grid; gap: .4rem; }
.footer-brand { font-family: var(--font-d); font-size: 1.55rem; color: var(--text); margin-bottom: .6rem; }
.footer-brand span { color: var(--gold); }
.footer-bottom {
  padding-top: 1.1rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem;
  font-size: .78rem; color: var(--faint);
}
.footer-mega {
  margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.footer-mega h3 { margin-bottom: .75rem; }
.link-cloud { grid-template-columns: 1fr 1fr; gap: .35rem .75rem; }
@media (min-width: 700px) { .link-cloud { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .link-cloud { grid-template-columns: repeat(4, 1fr); } }
.link-cloud a {
  font-size: .82rem; color: var(--faint); padding: .25rem 0;
  border-bottom: 1px solid transparent;
}
.link-cloud a:hover { color: var(--gold-2); border-bottom-color: var(--line); }

/* Mobile sticky book bar */
.mobile-bookbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem;
  padding: .65rem .75rem calc(.65rem + var(--safe-b));
  background: rgba(14,12,10,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobile-bookbar .btn { width: 100%; border-radius: 12px; }
@media (min-width: 980px) { .mobile-bookbar { display: none; } }

.float-bar { display: none; }
@media (min-width: 980px) {
  .float-bar {
    display: flex; position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
    flex-direction: column; gap: .55rem;
  }
  .float-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: grid; place-items: center; box-shadow: var(--shadow);
  }
  .float-btn.call { background: var(--gold); color: var(--ink); }
  .float-btn.wa { background: #25d366; color: #06341a; }
  .float-btn svg { width: 22px; height: 22px; fill: currentColor; }
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.step-list { display: grid; gap: .7rem; counter-reset: s; }
.step-list li {
  counter-increment: s; display: grid; grid-template-columns: 42px 1fr; gap: .75rem;
  padding: 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface);
}
.step-list li::before {
  content: counter(s); font-family: var(--font-d); color: var(--gold); font-size: 1.3rem;
}
.step-list strong { display: block; font-family: var(--font-d); font-weight: 500; font-size: 1.1rem; }
.step-list span { color: var(--muted); font-size: .92rem; }

.related-block { margin-top: 2.5rem; }
.seo-local-note {
  display: inline-block; margin-bottom: .75rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}

.error-page {
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  padding: 6rem 1.25rem;
}
.error-page .code {
  font-family: var(--font-d); font-size: clamp(4.5rem, 18vw, 8rem); color: var(--gold); line-height: 1;
}

/* ===== DISTINCT PAGE LAYOUT SYSTEMS (anti-duplicate structure) ===== */
.hero-local {
  position: relative; min-height: 52svh;
  display: grid; align-items: end;
  padding: calc(var(--nav-h) + var(--safe-t) + 2rem) 0 2rem;
  overflow: hidden;
}
@media (min-width: 800px) { .hero-local { min-height: 62svh; } }
.hero-local .bg { position: absolute; inset: 0; }
.hero-local .bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-local .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,.35), rgba(14,12,10,.92) 75%);
}
.hero-local .content { position: relative; z-index: 2; }
.pullquote {
  font-family: var(--font-d); font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  line-height: 1.35; color: var(--gold-2);
  border-left: 3px solid var(--gold); padding: .25rem 0 .25rem 1.1rem;
  margin: 1.5rem 0;
}
.bento {
  display: grid; gap: .65rem;
  grid-template-columns: 1.2fr 1fr; grid-template-rows: 160px 160px;
}
.bento img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); }
.bento .big { grid-row: 1 / span 2; }
@media (max-width: 700px) {
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: 120px 120px; }
  .bento .big { grid-row: auto; grid-column: 1 / -1; min-height: 180px; }
}
.zigzag { display: grid; gap: 2rem; }
.zigzag-row {
  display: grid; gap: 1.25rem; align-items: center;
}
@media (min-width: 860px) {
  .zigzag-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .zigzag-row.reverse .media { order: 2; }
}
.zigzag-row .media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  min-height: 220px; position: relative;
}
.zigzag-row .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dossier-bar {
  display: flex; flex-wrap: wrap; gap: .55rem;
  padding: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  margin: 1rem 0 1.5rem;
}
.dossier-bar span {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  color: var(--gold); background: rgba(212,175,115,.08); padding: .4rem .65rem; border-radius: 999px;
}
.article-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 960px) {
  .article-grid { grid-template-columns: 1fr 300px; align-items: start; }
  .sticky-side { position: sticky; top: calc(var(--nav-h) + 1rem); }
}
.portrait-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; margin: 1.25rem 0;
}
@media (min-width: 700px) { .portrait-strip { grid-template-columns: repeat(4, 1fr); } }
.portrait-strip figure {
  margin: 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--surface);
}
.portrait-strip img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.portrait-strip figcaption {
  padding: .55rem .65rem; font-size: .78rem; color: var(--muted);
  font-family: var(--font-d); font-size: 1rem;
}
.stat-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; margin: 1.25rem 0;
}
@media (min-width: 700px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 1rem; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); text-align: center;
}
.stat strong { display: block; font-family: var(--font-d); font-size: 1.5rem; color: var(--gold-2); }
.stat span { font-size: .75rem; color: var(--faint); letter-spacing: .06em; text-transform: uppercase; }
.layout-editorial .page-hero { display: none; }
.layout-immersion .page-hero { display: none; }
.layout-gallery .page-hero { padding-bottom: 1rem; }
.layout-dossier .hero-local { min-height: 42svh; }
.layout-concierge .hero-local { min-height: 46svh; }
.layout-suite .dual-hero {
  display: grid; gap: .65rem; margin-top: 1rem;
}
@media (min-width: 800px) { .layout-suite .dual-hero { grid-template-columns: 1.3fr .7fr; } }
.layout-suite .dual-hero figure {
  margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); position: relative; min-height: 240px;
}
.layout-suite .dual-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.content-length-note { display: none; } /* hidden meta for humans not needed */


/* Citywide head-keyword bridge — internal SEO mesh */
.rank-bridge {
  padding: 2.25rem 0 2.75rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,175,115,.08), transparent 55%),
    var(--ink-2);
  border-block: 1px solid var(--line);
}
.rank-bridge .section-head { margin-bottom: 1.25rem; }
.rank-bridge-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .rank-bridge-grid { grid-template-columns: 1.4fr 1fr; gap: 1.5rem; align-items: start; }
}
.rank-bridge .prose-block {
  color: var(--muted);
  font-size: .95rem;
  display: grid;
  gap: .85rem;
}
.rank-bridge .prose-block h2 {
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  color: var(--text);
  font-weight: 600;
  line-height: 1.2;
}
.rank-kw-list {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding: 1rem 1.1rem;
  background: rgba(0,0,0,.28);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.rank-kw-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem .65rem;
  font-size: .88rem;
  color: var(--muted);
}
.rank-kw-list a {
  color: var(--gold-2);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(212,175,115,.4);
  text-underline-offset: 3px;
}
.rank-kw-list a:hover { color: var(--gold); }
.rank-kw-list .hint { color: var(--faint); font-size: .78rem; }
.footer-kw h3 { margin-bottom: .85rem; }
.footer-kw ul { gap: .45rem; }
