/* Shared demo site system — industry brand mini-sites */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --on-accent: #ffffff;
  --hero-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 980px;
  --max-wide: 1100px;
  --radius: 18px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Brand themes */
html[data-brand="apex"] {
  --accent: #0a6ebd;
  --accent-hover: #085a9a;
  --bg-soft: #eef5fb;
}
html[data-brand="swift"] {
  --accent: #e67e00;
  --accent-hover: #c96c00;
  --bg-soft: #fff7ec;
}
html[data-brand="hearth"] {
  --accent: #c45c26;
  --accent-hover: #a34a1c;
  --bg-soft: #fbf4ef;
}
html[data-brand="harbor"] {
  --accent: #6f4e37;
  --accent-hover: #5a3e2c;
  --bg-soft: #f7f1ea;
}
html[data-brand="ironline"] {
  --accent: #8b7355;
  --accent-hover: #726044;
  --bg-soft: #f5f2e6;
}
html[data-brand="lumen"] {
  --accent: #1d1d1f;
  --accent-hover: #000;
  --bg-soft: #f7f5f0;
  --on-accent: #f5f5f7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-img {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}
.wrap-wide {
  width: min(100% - 40px, var(--max-wide));
  margin-inline: auto;
}

/* Demo chrome bar */
.demo-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: rgba(29, 29, 31, 0.92);
  color: #f5f5f7;
  font-size: 13px;
  backdrop-filter: blur(12px);
}
.demo-bar a {
  color: #7ec3ff;
  font-weight: 600;
  text-decoration: none;
}
.demo-bar a:hover {
  text-decoration: underline;
}
.demo-bar .pill {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  width: min(100% - 40px, var(--max-wide));
  margin: 0 auto;
  padding: 8px 0;
}
.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
  opacity: 0.8;
}
.nav-links {
  display: none;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  opacity: 0.8;
  font-size: 13px;
  text-decoration: none;
}
.nav-links a:hover {
  opacity: 1;
  text-decoration: none;
}
@media (min-width: 800px) {
  .nav-links {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 980px;
  border: none;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s var(--ease);
}
.btn:hover {
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  padding-left: 0;
  padding-right: 0;
}
.btn-secondary:hover {
  text-decoration: underline;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 64px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}
.hero-content .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 12px;
}
.hero-content h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.hero-content .lede {
  margin: 0 0 24px;
  font-size: clamp(17px, 2vw, 22px);
  max-width: 32em;
  opacity: 0.92;
}

/* Sections */
.section {
  padding: 80px 0;
}
.section.soft {
  background: var(--bg-soft);
}
.section-intro {
  text-align: center;
  margin-bottom: 40px;
}
.section-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.section-intro p {
  margin: 0 auto;
  max-width: 34em;
  color: var(--muted);
  font-size: 18px;
}

.grid-3 {
  display: grid;
  gap: 16px;
}
@media (min-width: 800px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.section:not(.soft) .card {
  background: var(--bg-soft);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}
.split ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.split li {
  margin-bottom: 6px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stat {
  text-align: center;
  padding: 18px 12px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.stat span {
  font-size: 13px;
  color: var(--muted);
}

/* CTA */
.cta {
  text-align: center;
  padding: 88px 0;
}
.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
}
.cta p {
  margin: 0 auto 22px;
  color: var(--muted);
  max-width: 28em;
  font-size: 18px;
}
.cta .phone {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}
.cta .phone a {
  color: var(--ink);
  text-decoration: none;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
  font-size: 12px;
  color: var(--muted);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.footer a {
  color: var(--muted);
}

/* Menu grids — dish cards with photos */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.menu-card {
  background: var(--card, #fff);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 12px 32px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.35s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 22px 48px rgba(0, 0, 0, 0.12);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.menu-card:hover img {
  transform: scale(1.045);
}

.menu-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 0;
}

.menu-meta h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.menu-card .price {
  font-weight: 600;
  opacity: 0.75;
  font-size: 15px;
  white-space: nowrap;
}

.menu-card p {
  margin: 4px 0 0;
  padding: 0 16px 16px;
  font-size: 14px;
  opacity: 0.75;
}

.logo-glyph {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: -5px;
  margin-right: 8px;
}

video.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ BRAND WORLDS — each demo its own soul ============ */

/* Shared: display font hook */
:root {
  --font-display: var(--font);
  --heading-transform: none;
  --heading-spacing: -0.01em;
  --card-bg: #fff;
}

.hero-content h1,
.section-intro h2,
.cta h2 {
  font-family: var(--font-display);
  text-transform: var(--heading-transform);
  letter-spacing: var(--heading-spacing);
}

.card, .stat, .menu-card { background: var(--card-bg); }

/* —— LUMEN & STONE: night gallery, gold on near-black —— */
html[data-brand="lumen"] {
  --bg: #131110;
  --bg-soft: #1B1815;
  --ink: #EFE9DD;
  --muted: #A79E8D;
  --line: #2E2A24;
  --accent: #C9A96A;
  --accent-hover: #DBBC7E;
  --on-accent: #131110;
  --card-bg: #1D1A16;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --heading-spacing: 0.01em;
  --radius: 4px;
}

html[data-brand="lumen"] body { background: var(--bg); }
html[data-brand="lumen"] .nav { background: rgba(19, 17, 16, 0.85); border-bottom: 1px solid var(--line); }
html[data-brand="lumen"] .nav-links a, html[data-brand="lumen"] .logo { color: var(--ink); }
html[data-brand="lumen"] .section.soft { background: var(--bg-soft); }
html[data-brand="lumen"] .card { border: 1px solid var(--line); }
html[data-brand="lumen"] .section:not(.soft) .card { background: var(--card-bg); }
html[data-brand="lumen"] .hero-content h1 { font-weight: 500; font-size: clamp(40px, 6vw, 72px); font-style: italic; }
html[data-brand="lumen"] .section-intro h2 { font-weight: 500; font-size: clamp(30px, 4.5vw, 44px); }
html[data-brand="lumen"] .menu-card .price { color: var(--accent); }
html[data-brand="lumen"] .menu-meta h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
html[data-brand="lumen"] .btn-primary { background: var(--accent); color: var(--on-accent); border-radius: 2px; letter-spacing: 0.12em; text-transform: uppercase; font-size: 13px; font-weight: 600; }
html[data-brand="lumen"] .btn-primary:hover { background: var(--accent-hover); }
html[data-brand="lumen"] .footer { background: #0E0C0B; color: var(--muted); border-top: 1px solid var(--line); }
html[data-brand="lumen"] .footer a { color: var(--muted); }
html[data-brand="lumen"] .stat { border: 1px solid var(--line); }
html[data-brand="lumen"] .hero-shade { background: linear-gradient(180deg, rgba(10, 8, 7, 0.5), rgba(10, 8, 7, 0.75)); }

/* —— IRONLINE: steel, condensation, heavy type —— */
html[data-brand="ironline"] {
  --bg: #17191C;
  --bg-soft: #1F2226;
  --ink: #E8E6E1;
  --muted: #9BA1A8;
  --line: #2C3036;
  --accent: #D97B29;
  --accent-hover: #E88F3F;
  --on-accent: #17191C;
  --card-bg: #22262B;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --heading-transform: uppercase;
  --heading-spacing: 0.04em;
  --radius: 6px;
}

html[data-brand="ironline"] body { background: var(--bg); }
html[data-brand="ironline"] .nav { background: rgba(23, 25, 28, 0.88); border-bottom: 1px solid var(--line); }
html[data-brand="ironline"] .nav-links a, html[data-brand="ironline"] .logo { color: var(--ink); }
html[data-brand="ironline"] .section.soft { background: var(--bg-soft); }
html[data-brand="ironline"] .card { border: 1px solid var(--line); }
html[data-brand="ironline"] .section:not(.soft) .card { background: var(--card-bg); }
html[data-brand="ironline"] .hero-content h1 { font-weight: 700; font-size: clamp(44px, 7vw, 84px); }
html[data-brand="ironline"] .section-intro h2 { font-weight: 600; font-size: clamp(32px, 5vw, 52px); }
html[data-brand="ironline"] .menu-card .price { color: var(--accent); font-weight: 700; }
html[data-brand="ironline"] .btn-primary { border-radius: 4px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; font-size: 14px; }
html[data-brand="ironline"] .footer { background: #101215; color: var(--muted); border-top: 1px solid var(--line); }
html[data-brand="ironline"] .footer a { color: var(--muted); }
html[data-brand="ironline"] .stat { border: 1px solid var(--line); }
html[data-brand="ironline"] .kicker { color: var(--accent); letter-spacing: 0.22em; }

/* —— HEARTH: flame warmth + humanist serif —— */
html[data-brand="hearth"] {
  --font-display: "Fraunces", Georgia, serif;
  --card-bg: #fff;
}
html[data-brand="hearth"] .hero-content h1 { font-weight: 500; }
html[data-brand="hearth"] .menu-meta h3 { font-family: var(--font-display); font-weight: 600; }

/* —— HARBOR: warm ceramic serif —— */
html[data-brand="harbor"] {
  --font-display: "Fraunces", Georgia, serif;
}
html[data-brand="harbor"] .hero-content h1 { font-weight: 500; }

/* —— SWIFTDROP: kinetic italics —— */
html[data-brand="swift"] {
  --font-display: "Archivo", "Arial Black", sans-serif;
  --heading-spacing: -0.02em;
}
html[data-brand="swift"] .hero-content h1 { font-weight: 800; font-style: italic; }
html[data-brand="swift"] .section-intro h2 { font-weight: 700; font-style: italic; }

/* —— APEX: engineered confidence —— */
html[data-brand="apex"] {
  --font-display: "Barlow", "Helvetica Neue", sans-serif;
}
html[data-brand="apex"] .hero-content h1 { font-weight: 700; }

/* ============ LUMEN & STONE — lookbook layout ============ */
.ls-body { background: #131110; color: #EFE9DD; }

.ls-masthead {
  text-align: center;
  padding: 72px 20px 56px;
}

.ls-masthead svg { width: 44px; height: 44px; margin: 0 auto 18px; color: #C9A96A; }

.ls-wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}

.ls-sub {
  margin: 0 0 26px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #A79E8D;
}

.ls-nav { display: flex; justify-content: center; gap: 36px; }
.ls-nav a {
  color: #EFE9DD;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}
.ls-nav a:hover { border-color: #C9A96A; color: #C9A96A; }

.ls-opening {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  width: min(100% - 48px, 1080px);
  margin: 0 auto;
  padding: 40px 0 110px;
}

.ls-statement {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.15;
  margin: 0 0 22px;
  font-weight: 500;
}
.ls-statement em { color: #C9A96A; }

.ls-copy { color: #A79E8D; font-size: 16px; line-height: 1.7; max-width: 40ch; margin: 0 0 30px; }

.ls-cta {
  display: inline-block;
  color: #C9A96A;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid #C9A96A;
  padding: 14px 28px;
  transition: background 0.3s, color 0.3s;
}
.ls-cta:hover { background: #C9A96A; color: #131110; }

.ls-opening-img img { width: 100%; display: block; }
.ls-opening-img figcaption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #7A7160;
  font-style: italic;
}

.ls-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  text-align: center;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 70px;
}

.ls-collection { width: min(100% - 48px, 1080px); margin: 0 auto; padding: 40px 0 60px; }

.ls-piece {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 110px;
}
.ls-piece-flip { direction: rtl; }
.ls-piece-flip > * { direction: ltr; }
.ls-piece figure { margin: 0; }
.ls-piece img { width: 100%; display: block; }

.ls-no { display: block; font-size: 12px; letter-spacing: 0.3em; color: #C9A96A; margin-bottom: 14px; }
.ls-piece-text h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  margin: 0 0 14px;
}
.ls-piece-text p { color: #A79E8D; line-height: 1.7; font-size: 16px; margin: 0 0 18px; max-width: 38ch; }
.ls-price { font-size: 14px; letter-spacing: 0.14em; color: #EFE9DD; }

.ls-atelier {
  text-align: center;
  padding: 90px 24px;
  background: #0E0C0B;
  border-top: 1px solid #2E2A24;
  border-bottom: 1px solid #2E2A24;
}
.ls-atelier p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.4;
  margin: 0 0 14px;
  color: #EFE9DD;
}
.ls-atelier span { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: #7A7160; }

.ls-visit { text-align: center; padding: 100px 24px; }
.ls-visit .ls-copy { margin-inline: auto; margin-bottom: 30px; }
.ls-visit .ls-heading { margin-bottom: 20px; }

.ls-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px min(4vw, 48px) 34px;
  border-top: 1px solid #2E2A24;
  font-size: 12px;
  color: #7A7160;
  background: #0E0C0B;
}
.ls-footer a { color: #A79E8D; text-decoration: none; }
.ls-footer a:hover { color: #C9A96A; }

@media (max-width: 820px) {
  .ls-opening, .ls-piece { grid-template-columns: 1fr; gap: 28px; }
  .ls-piece { margin-bottom: 70px; }
}

/* ============ IRONLINE — tap-board layout ============ */
.il-body { background: #17191C; color: #E8E6E1; font-family: "Barlow Condensed", "Arial Narrow", sans-serif; }

.il-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 min(4vw, 48px);
  height: 68px;
  border-bottom: 2px solid #2C3036;
  position: sticky;
  top: 0;
  background: rgba(23, 25, 28, 0.92);
  backdrop-filter: blur(10px);
  z-index: 50;
}
.il-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #E8E6E1;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.il-logo svg { width: 30px; height: 30px; color: #D97B29; }
.il-bar nav { display: flex; gap: 26px; margin-left: auto; }
.il-bar nav a {
  color: #9BA1A8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.il-bar nav a:hover { color: #D97B29; }
.il-open { font-size: 13px; letter-spacing: 0.14em; color: #D97B29; font-weight: 700; }

.il-hero { position: relative; height: min(72vh, 640px); overflow: hidden; }
.il-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) contrast(1.05); }
.il-hero-type {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: min(7vw, 90px);
}
.il-hero-type span {
  font-size: clamp(56px, 10vw, 148px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.il-hero-type .il-accent { color: #D97B29; }

.il-board { width: min(100% - 48px, 900px); margin: 0 auto; padding: 90px 0 60px; }
.il-board-head { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 3px solid #D97B29; padding-bottom: 12px; margin-bottom: 8px; }
.il-board-head h2 { margin: 0; font-size: clamp(38px, 6vw, 64px); font-weight: 800; letter-spacing: 0.04em; }
.il-board-head span { font-size: 13px; letter-spacing: 0.18em; color: #9BA1A8; font-weight: 600; }

.il-list { list-style: none; margin: 0; padding: 0; }
.il-list li {
  display: grid;
  grid-template-columns: 52px 1fr auto 70px 56px;
  gap: 18px;
  align-items: baseline;
  padding: 20px 10px;
  border-bottom: 1px solid #2C3036;
  transition: background 0.2s, padding-left 0.2s;
}
.il-list li:hover { background: #1F2226; padding-left: 20px; }
.il-num { color: #D97B29; font-weight: 700; font-size: 18px; }
.il-name { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; }
.il-style { color: #9BA1A8; font-size: 16px; }
.il-abv { color: #9BA1A8; font-size: 16px; font-weight: 600; text-align: right; }
.il-price { font-size: 20px; font-weight: 700; color: #D97B29; text-align: right; }

.il-note { margin: 22px 10px 0; color: #9BA1A8; font-size: 15px; letter-spacing: 0.06em; }

.il-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 50px min(3vw, 40px);
}
.il-strip img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }

.il-visit { width: min(100% - 48px, 900px); margin: 0 auto; padding: 50px 0 90px; }
.il-visit h2 { font-size: clamp(30px, 5vw, 48px); font-weight: 800; margin: 0 0 12px; letter-spacing: 0.04em; }
.il-visit p { color: #9BA1A8; font-size: 17px; max-width: 60ch; }
.il-hours { display: flex; gap: 40px; margin: 30px 0; padding: 0; }
.il-hours div { border-left: 3px solid #D97B29; padding-left: 14px; }
.il-hours dt { font-size: 14px; letter-spacing: 0.16em; color: #9BA1A8; font-weight: 700; }
.il-hours dd { margin: 4px 0 0; font-size: 22px; font-weight: 700; }
.il-cta {
  display: inline-block;
  background: #D97B29;
  color: #17191C;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
}
.il-cta:hover { background: #E88F3F; }
.il-fine { font-size: 13px; color: #6E747B; margin-top: 26px; }

.il-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px min(4vw, 48px) 32px;
  border-top: 2px solid #2C3036;
  font-size: 14px;
  color: #6E747B;
  background: #101215;
}
.il-footer a { color: #9BA1A8; text-decoration: none; }
.il-footer a:hover { color: #D97B29; }

@media (max-width: 720px) {
  .il-list li { grid-template-columns: 40px 1fr 60px; }
  .il-style, .il-abv { display: none; }
  .il-strip { grid-template-columns: 1fr; }
  .il-open { display: none; }
}

/* Lumen review fixes — image discipline + rhythm */
.ls-opening-img img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 60% center;
  max-height: 560px;
}

.ls-piece figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  max-height: 460px;
}

.ls-piece {
  margin-bottom: 84px;
}

.ls-collection {
  padding-top: 20px;
}

.ls-heading {
  margin-bottom: 56px;
}

/* Lumen 3D viewer */
.ls-three {
  text-align: center;
  padding: 30px 0 90px;
}

.ls-three .ls-no {
  margin-bottom: 12px;
}

.ls-drag-hint {
  margin: 16px 0 0;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #7A7160;
}

model-viewer::part(default-progress-bar) {
  display: none;
}
