/* =========================================================
   LOCATION × CATEGORY  — reusable subpage template
   Used by: <location>-<category>.html
   e.g. frankfurt-meetings.html, upper-west-dining.html
   Builds on tokens defined in site.css / site-v2.css.
   ========================================================= */

:root {
  --lc-shell-x: clamp(24px, 5vw, 80px);
  --lc-max:     1640px;
}

/* ── BREADCRUMB STRIP ─────────────────────────────────────── */
.lc-crumbs {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 90px var(--lc-shell-x) 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
}
.lc-crumbs__inner {
  max-width: var(--lc-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.lc-crumbs a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}
.lc-crumbs a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }
.lc-crumbs__sep { color: rgba(255,255,255,0.32); font-size: 9px; }
.lc-crumbs__current { color: #fff; }

/* ── HERO ─────────────────────────────────────────────────── */
.lc-hero {
  position: relative;
  min-height: clamp(560px, 80vh, 760px);
  margin-top: -90px; /* lift below the breadcrumb that sits above it */
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.lc-hero__media { position: absolute; inset: 0; z-index: -2; }
.lc-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.78) saturate(1.05);
}
.lc-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(11,11,12,0.55) 0%,
    rgba(11,11,12,0.18) 35%,
    rgba(11,11,12,0.85) 100%);
}
.lc-hero__inner {
  width: 100%;
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 200px var(--lc-shell-x) clamp(56px, 6vw, 96px);
  display: grid;
  gap: 26px;
}
.lc-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--oak);
  font-weight: 500;
}
.lc-hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--oak);
}
.lc-hero__h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(50px, 7vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
}
.lc-hero__h1 em {
  font-style: italic;
  font-family: var(--font-serif), 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--oak);
}
.lc-hero__sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
  margin: 0;
  max-width: 56ch;
}
.lc-hero__ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px;
}
.lc-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.lc-btn--primary {
  background: var(--oak); color: var(--ink); border-color: var(--oak);
}
.lc-btn--primary:hover { background: #fff; border-color: #fff; }
.lc-btn--ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.lc-btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.lc-btn--dark {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.lc-btn--dark:hover { background: transparent; color: var(--ink); }
.lc-btn--outline {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.lc-btn--outline:hover { background: var(--ink); color: #fff; }
.lc-hero__meta {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-top: 8px;
}
.lc-hero__meta span::before {
  content: ""; display: inline-block;
  width: 5px; height: 5px;
  background: var(--oak); border-radius: 999px;
  margin-right: 10px; vertical-align: middle;
}

/* ── INTRO LEDE ───────────────────────────────────────────── */
.lc-intro {
  background: var(--paper);
  padding: clamp(72px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.lc-intro__inner {
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 0 var(--lc-shell-x);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.lc-intro__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--oak-deep);
  font-weight: 500;
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 10px;
}
.lc-intro__eyebrow .dot {
  width: 5px; height: 5px; border-radius: 999px; background: var(--oak);
}
.lc-intro__h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
.lc-intro__h2 em {
  font-style: italic;
  font-family: var(--font-serif), 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--oak-deep);
}
.lc-intro__copy p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(11,11,12,0.78);
  margin: 0 0 18px;
  max-width: 60ch;
}
.lc-intro__copy p:last-child { margin-bottom: 0; }
.lc-intro__facts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px;
  border-top: 1px solid var(--rule-soft);
  padding-top: 22px;
  max-width: 720px;
}
.lc-intro__fact-k {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(11,11,12,0.5);
  margin-bottom: 6px;
}
.lc-intro__fact-v {
  display: block;
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 880px) {
  .lc-intro__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ── DETAILED ROOM ROWS (re-uses .stage-row but adds subtitle) ─ */
.lc-rooms {
  background: #fff;
  padding: clamp(72px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.lc-rooms__inner {
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 0 var(--lc-shell-x);
}
.lc-section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--rule-soft);
  padding-bottom: 28px;
}
.lc-section-head__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--oak-deep);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.lc-section-head__eyebrow .dot {
  width: 5px; height: 5px; border-radius: 999px; background: var(--oak);
}
.lc-section-head__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
.lc-section-head__h2 em {
  font-style: italic;
  font-family: var(--font-serif), 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--oak-deep);
}
.lc-section-head__copy {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: rgba(11,11,12,0.7);
  max-width: 56ch;
  justify-self: end;
}

@media (max-width: 880px) {
  .lc-section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .lc-section-head__copy { justify-self: start; }
}

.lc-room {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(36px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.lc-room:last-child { border-bottom: 0; }
.lc-room--reverse { grid-template-columns: 1fr 1.1fr; }
.lc-room--reverse .lc-room__media { order: 2; }

.lc-room__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
}
.lc-room__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.lc-room:hover .lc-room__media img { transform: scale(1.03); }
.lc-room__floor {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff;
  background: rgba(11,11,12,0.65);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 999px;
}

.lc-room__body {
  display: flex; flex-direction: column; gap: 14px;
}
.lc-room__num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--oak-deep);
  font-weight: 500;
}
.lc-room__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
}
.lc-room__name em {
  font-style: italic;
  font-family: var(--font-serif), 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--oak-deep);
}
.lc-room__specs {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06em;
  color: rgba(11,11,12,0.6);
  margin: 0;
}
.lc-room__desc {
  font-size: 16px; line-height: 1.55;
  color: rgba(11,11,12,0.78);
  margin: 4px 0 0;
  max-width: 52ch;
}
.lc-room__bullets {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lc-room__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14px; line-height: 1.5;
  color: rgba(11,11,12,0.72);
}
.lc-room__bullets li::before {
  content: ""; position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--oak-deep);
}

@media (max-width: 880px) {
  .lc-room, .lc-room--reverse { grid-template-columns: 1fr; gap: 24px; }
  .lc-room--reverse .lc-room__media { order: 0; }
}

/* ── COMPACT GRID (alt to room rows; for events/dining packages) ─ */
.lc-grid {
  background: var(--paper);
  padding: clamp(72px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.lc-grid__inner {
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 0 var(--lc-shell-x);
}
.lc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.lc-card {
  background: #fff;
  border: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.lc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -32px rgba(0,0,0,0.18);
}
.lc-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
}
.lc-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.lc-card:hover .lc-card__media img { transform: scale(1.04); }
.lc-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.lc-card__floor {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--oak-deep);
  font-weight: 500;
}
.lc-card__name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin: 0;
}
.lc-card__desc {
  font-size: 14px; line-height: 1.5;
  color: rgba(11,11,12,0.7);
  margin: 0;
}
.lc-card__spec {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  color: rgba(11,11,12,0.55);
}
.lc-card__spec b {
  color: var(--ink); font-weight: 600;
}

/* ── GALLERY MOSAIC ───────────────────────────────────────── */
.lc-gallery {
  background: var(--ink);
  padding: clamp(72px, 8vw, 120px) 0;
  color: #fff;
}
.lc-gallery__inner {
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 0 var(--lc-shell-x);
}
.lc-gallery .lc-section-head { border-bottom-color: rgba(255,255,255,0.12); }
.lc-gallery .lc-section-head__h2 { color: #fff; }
.lc-gallery .lc-section-head__h2 em { color: var(--oak); }
.lc-gallery .lc-section-head__copy { color: rgba(255,255,255,0.7); }
.lc-gallery .lc-section-head__eyebrow { color: var(--oak); }

.lc-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.lc-mosaic__tile {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.lc-mosaic__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.lc-mosaic__tile:hover img { transform: scale(1.04); }
.lc-mosaic__tile--wide { grid-column: span 8; grid-row: span 2; }
.lc-mosaic__tile--tall { grid-column: span 4; grid-row: span 2; }
.lc-mosaic__tile--third { grid-column: span 4; grid-row: span 2; }
.lc-mosaic__tile--half { grid-column: span 6; grid-row: span 2; }

@media (max-width: 880px) {
  .lc-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .lc-mosaic__tile--wide,
  .lc-mosaic__tile--tall,
  .lc-mosaic__tile--third,
  .lc-mosaic__tile--half { grid-column: span 2; grid-row: span 1; }
}

/* ── FLOORPLAN ────────────────────────────────────────────── */
.lc-floorplan {
  background: var(--paper);
  padding: clamp(72px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.lc-floorplan__inner {
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 0 var(--lc-shell-x);
}
.lc-floorplan figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--rule-soft);
  padding: clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.lc-floorplan figure img {
  width: 100%;
  max-width: 1120px;
  height: auto;
  display: block;
}
.lc-floorplan figcaption {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(11,11,12,0.5);
  text-align: center;
}

/* ── CROSS-SELL: same category, other locations ───────────── */
.lc-cross {
  background: #fff;
  padding: clamp(72px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.lc-cross__inner {
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 0 var(--lc-shell-x);
}
.lc-cross__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.lc-cross__card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  aspect-ratio: 5/6;
  isolation: isolate;
}
.lc-cross__card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .8s ease;
  filter: brightness(0.62);
}
.lc-cross__card:hover img { transform: scale(1.04); }
.lc-cross__card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(11,11,12,0.10) 0%,
    rgba(11,11,12,0.45) 60%,
    rgba(11,11,12,0.85) 100%);
  z-index: -1;
}
.lc-cross__card-inner {
  padding: clamp(20px, 3vw, 32px);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lc-cross__card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--oak);
  font-weight: 500;
}
.lc-cross__card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0;
}
.lc-cross__card-title em {
  font-style: italic;
  font-family: var(--font-serif), 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--oak);
}
.lc-cross__card-sub {
  font-size: 13px; line-height: 1.45;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 38ch;
}
.lc-cross__card-cta {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  margin-top: 6px;
  display: inline-flex; gap: 8px; align-items: center;
}
.lc-cross__card-cta .arr { transition: transform .2s ease; }
.lc-cross__card:hover .lc-cross__card-cta .arr { transform: translateX(4px); }
.lc-cross__card--current { pointer-events: none; opacity: 0.42; }
.lc-cross__card--current .lc-cross__card-cta { display: none; }
.lc-cross__card--current::after {
  content: "You are here";
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.18);
  padding: 6px 10px;
  border-radius: 999px;
}

/* ── CROSS-SELL: other categories at this location ──────── */
.lc-also {
  background: var(--paper);
  padding: clamp(72px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.lc-also__inner {
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 0 var(--lc-shell-x);
}
.lc-also__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.lc-also__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule-soft);
  padding: 26px 24px 24px;
  text-decoration: none;
  color: inherit;
  transition: background .2s ease, border-color .2s ease;
  min-height: 200px;
}
.lc-also__card:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.lc-also__card-num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--oak-deep);
  margin-bottom: 12px;
}
.lc-also__card:hover .lc-also__card-num { color: var(--oak); }
.lc-also__card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 0 0 8px;
}
.lc-also__card-sub {
  font-size: 13px; line-height: 1.5;
  color: rgba(11,11,12,0.62);
  margin: 0 0 18px;
}
.lc-also__card:hover .lc-also__card-sub { color: rgba(255,255,255,0.7); }
.lc-also__card-cta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; gap: 8px; align-items: center;
}
.lc-also__card-cta .arr { transition: transform .2s ease; }
.lc-also__card:hover .lc-also__card-cta .arr { transform: translateX(4px); }
.lc-also__card--current { pointer-events: none; opacity: 0.4; }
.lc-also__card--current::after {
  content: "Current";
}

/* ── FINAL CTA / ENQUIRE BLOCK ────────────────────────────── */
.lc-cta {
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 9vw, 140px) 0;
}
.lc-cta__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--lc-shell-x);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.lc-cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--oak);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.lc-cta__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--oak);
}
.lc-cta__h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.024em;
  margin: 0;
  text-wrap: balance;
}
.lc-cta__h2 em {
  font-style: italic;
  font-family: var(--font-serif), 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--oak);
}
.lc-cta__copy {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 56ch;
}
.lc-cta__ctas {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 6px;
}

/* ── COMING SOON BANNER (Kudamm) ──────────────────────────── */
.lc-coming-banner {
  position: relative;
  z-index: 3;
  background: var(--oak);
  color: var(--ink);
  text-align: center;
  padding: 10px var(--lc-shell-x);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
}

/* ── COMING SOON CARD (Kudamm subpages) ──────────────────── */
.lc-soon {
  background: var(--paper);
  padding: clamp(72px, 9vw, 140px) 0;
  border-bottom: 1px solid var(--rule-soft);
}
.lc-soon__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--lc-shell-x);
  display: grid;
  gap: 28px;
  text-align: center;
  justify-items: center;
}
.lc-soon__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--oak-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.lc-soon__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--oak);
}
.lc-soon__h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.024em;
  margin: 0;
  text-wrap: balance;
  max-width: 18ch;
}
.lc-soon__h2 em {
  font-style: italic;
  font-family: var(--font-serif), 'Instrument Serif', serif;
  font-weight: 400;
  color: var(--oak-deep);
}
.lc-soon__copy {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(11,11,12,0.74);
  margin: 0;
  max-width: 56ch;
}
.lc-soon__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 18px 0 8px;
  width: 100%;
  max-width: 720px;
  text-align: left;
}
.lc-soon__list-item {
  background: #fff;
  border: 1px solid var(--rule-soft);
  padding: 18px 20px;
}
.lc-soon__list-k {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(11,11,12,0.5);
  margin-bottom: 6px;
}
.lc-soon__list-v {
  display: block;
  font-family: var(--font-display);
  font-size: 18px; letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}
.lc-soon__ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}
