/* Bright Display — design system */
:root {
  --cream: #F7F1E8;
  --ivory: #FFFBF5;
  --charcoal: #2A2622;
  --espresso: #1A1614;
  --amber: #F5A623;
  --coral: #FF6B4A;
  --gold: #D4A574;
  --coral-ink: #B8432C; /* coral darkened for text on cream/ivory */
  --gold-ink: #8A5A32; /* gold darkened for labels on light */
  --blush: #F2D6C9;
  --sage: #A8C5B0;
  --mist: #E8E0D5;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 20px 60px rgba(26, 22, 20, 0.12);
  --shadow-glow: 0 0 80px rgba(245, 166, 35, 0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .parallax-layer,
  .hero-layer,
  .hero-room-frame,
  .interior-room,
  .interior-furniture-fg,
  .sticky-visual-stage,
  .product-room-frame,
  .product-layer {
    transform: none !important;
  }
  .interior-stage { height: auto !important; min-height: 0 !important; }
  .interior-stage-sticky { position: relative !important; height: auto !important; }
  .interior-frame { opacity: 0; }
  .interior-frame.is-active { opacity: 1; }
  .bg-video { display: none !important; }
  .bg-video-poster { display: block !important; opacity: 1 !important; }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-wide { width: min(1400px, 94vw); margin-inline: auto; }

/* Typography */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-ink);
}
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.lede { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 300; max-width: 38ch; color: color-mix(in srgb, var(--charcoal) 75%, transparent); }
.muted { color: color-mix(in srgb, var(--charcoal) 60%, transparent); }

/* Nav — light over dark heroes; dark text once scrolled onto light pages */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  color: #FFFBF5;
  background: linear-gradient(180deg, rgba(26, 22, 20, 0.72) 0%, rgba(26, 22, 20, 0.35) 55%, transparent 100%);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s, color 0.4s;
}
.site-header .nav-links a,
.site-header .logo-link {
  color: inherit;
}
.site-header .nav-toggle span {
  background: currentColor;
}
.site-header.scrolled {
  color: var(--charcoal);
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--mist);
}
.site-header .nav-inner {
  width: min(1400px, 94vw);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.logo-link {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
.logo-link img, .logo-link svg { width: 40px; height: 40px; }
.logo-link .word { letter-spacing: 0.02em; }
.logo-link .word span { font-weight: 400; opacity: 0.7; margin-left: 0.25em; }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.9rem; font-weight: 500;
}
.nav-links a { position: relative; opacity: 0.75; transition: opacity 0.25s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: linear-gradient(90deg, var(--amber), var(--coral));
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 550; font-size: 0.9rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--coral));
  color: var(--espresso);
  box-shadow: 0 8px 28px rgba(255, 107, 74, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255, 107, 74, 0.4); }
.btn-ghost {
  border: 1.5px solid color-mix(in srgb, var(--charcoal) 25%, transparent);
  color: var(--charcoal);
}
.btn-ghost:hover { border-color: var(--charcoal); background: var(--ivory); }
.btn-light {
  background: var(--ivory);
  color: var(--espresso);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto;
    flex-direction: column; align-items: stretch;
    padding: 1.5rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--mist);
    transform: translateY(-120%);
    opacity: 0; pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    gap: 0;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-header .nav-links a { color: var(--charcoal); padding: 0.9rem 0; border-bottom: 1px solid var(--mist); }
  .nav-links .btn { margin-top: 1rem; justify-content: center; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img, .hero-bg .hero-art {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,22,20,0.15) 0%, rgba(26,22,20,0.55) 55%, rgba(26,22,20,0.85) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(245,166,35,0.35), transparent 50%);
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--ivory);
  padding-bottom: 2rem;
}
.hero-content .eyebrow { color: var(--amber); }
.hero-content .lede { color: color-mix(in srgb, var(--ivory) 80%, transparent); max-width: 42ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-scroll-hint {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--ivory); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.7;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Parallax / reveal */
.parallax-layer { will-change: transform; }
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* Sections */
.section { padding: clamp(4rem, 10vw, 8rem) 0; }
.section-head {
  display: grid; gap: 1rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 52ch;
}
.section-head.center { margin-inline: auto; text-align: center; }

/* Sticky gallery */
.sticky-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 220vh;
  position: relative;
}
.sticky-visual {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--espresso);
  overflow: hidden;
}
.sticky-visual-stage {
  position: absolute; inset: 6% 8%;
  border-radius: 1rem;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.45),
    0 0 0 1px rgba(247,241,232,0.08);
  perspective: 1200px;
}
.sticky-visual img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; position: absolute; inset: 0;
  transition: opacity 0.85s var(--ease), transform 1.4s var(--ease), filter 0.85s var(--ease);
  transform: scale(1.12) translateZ(0);
  filter: saturate(0.92) brightness(0.92);
}
.sticky-visual img.active {
  opacity: 1;
  transform: scale(1) translateZ(40px);
  filter: saturate(1.05) brightness(1.02);
}
.sticky-visual-glow {
  position: absolute; inset: -20%;
  background: radial-gradient(ellipse at 60% 40%, rgba(245,166,35,0.35), transparent 55%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.7;
  z-index: 2;
}
.sticky-panels {
  display: flex; flex-direction: column;
}
.sticky-panel {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
  border-bottom: 1px solid var(--mist);
}
.sticky-panel:nth-child(even) { background: var(--ivory); }
@media (max-width: 900px) {
  .sticky-gallery { grid-template-columns: 1fr; min-height: auto; }
  .sticky-visual { position: relative; height: 50vh; }
  .sticky-panel { min-height: auto; padding: 3rem 1.5rem; }
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--ivory);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(26, 22, 20, 0.16);
}
.product-card .card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--espresso);
}
.product-card .card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .card-media img { transform: scale(1.06); }
.product-card .card-glow {
  position: absolute; inset: auto -20% -40% -20%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(245,166,35,0.45), transparent 70%);
  pointer-events: none;
}
.product-card .card-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.product-card .card-body h3 { font-size: 1.65rem; }
.product-card .card-meta { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.product-card .card-link { margin-top: auto; padding-top: 1rem; font-weight: 550; font-size: 0.9rem; color: var(--coral); }

/* Feature bands */
.feature-band {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 70vh;
  background: var(--espresso); color: var(--ivory);
  overflow: hidden;
}
.feature-band.reverse .feature-copy { order: 2; }
.feature-band .feature-media { position: relative; min-height: 360px; }
.feature-band .feature-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.feature-band .feature-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  gap: 1.25rem;
}
@media (max-width: 800px) {
  .feature-band, .feature-band.reverse { grid-template-columns: 1fr; }
  .feature-band.reverse .feature-copy { order: 0; }
}

/* Glow orb art */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.orb-amber { background: var(--amber); opacity: 0.4; }
.orb-coral { background: var(--coral); opacity: 0.3; }
.orb-gold { background: var(--gold); opacity: 0.35; }

/* Gallery masonry */
.gallery-grid {
  columns: 3;
  column-gap: 1.25rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: var(--espresso);
}
.gallery-item img {
  width: 100%;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(26,22,20,0.85));
  color: var(--ivory);
  font-size: 0.9rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}
.gallery-item:hover figcaption { opacity: 1; transform: none; }
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }

/* Specs table */
.specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.specs th, .specs td {
  text-align: left;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mist);
}
.specs th { font-weight: 550; color: var(--gold-ink); width: 40%; font-family: var(--font-display); font-size: 1.1rem; }

/* Contact form (visual) */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--mist);
  border-radius: 0.75rem;
  background: var(--ivory);
  font: inherit;
  color: var(--charcoal);
  transition: border-color 0.25s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--amber);
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* Footer */
.site-footer {
  background: var(--espresso);
  color: color-mix(in srgb, var(--ivory) 85%, transparent);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-link { color: var(--ivory); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; max-width: 28ch; opacity: 0.7; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block; padding: 0.35rem 0;
  opacity: 0.7; font-size: 0.9rem;
  transition: opacity 0.25s, color 0.25s;
}
.footer-col a:hover { opacity: 1; color: var(--amber); }
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--ivory) 12%, transparent);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.8rem; opacity: 0.55;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Page hero (subpages) */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 50vw; height: 50vw;
  right: -10%; top: -20%;
  background: radial-gradient(circle, rgba(245,166,35,0.2), transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

/* Product detail hero */
.product-hero {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  padding-top: var(--nav-h);
}
.product-hero-visual {
  position: relative;
  min-height: 60vh;
  background: var(--espresso);
  overflow: hidden;
}
.product-hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.product-hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--cream);
}
@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; }
  .product-hero-visual { min-height: 45vh; }
}

/* Craft timeline */
.timeline { display: grid; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--mist);
}
.timeline-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
}

/* Legal stubs */
.legal-content {
  max-width: 70ch;
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
}
.legal-content h1 { margin-bottom: 1.5rem; }
.legal-content h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.legal-content p { margin-bottom: 1rem; color: color-mix(in srgb, var(--charcoal) 80%, transparent); }

/* 404 */
.error-page {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(245,166,35,0.25), transparent 55%),
    var(--cream);
}
.error-page h1 { font-size: clamp(5rem, 20vw, 12rem); color: var(--amber); line-height: 0.9; }

/* Marquee strip */
.marquee {
  overflow: hidden;
  padding: 1.25rem 0;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  color: var(--espresso);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.marquee-track {
  display: flex; gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--amber);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; margin-top: 0.5rem; opacity: 0.7; }
@media (max-width: 700px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  width: 0%; transform-origin: left;
}

/* Utility */
.text-gradient {
  background: linear-gradient(135deg, var(--amber), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--blush);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 760px) { .split-2 { grid-template-columns: 1fr; } }

/* Partners strip */
.partners {
  padding: 3rem 0;
  border-block: 1px solid var(--mist);
  background: var(--ivory);
}
.partners-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.75rem;
}
.partners-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 2.5rem 3.5rem;
}
.partner-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  opacity: 0.35;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}
.partner-logo:hover { opacity: 0.7; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--ivory);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  flex: 1;
}
.testimonial .who { font-size: 0.85rem; opacity: 0.65; }
.testimonial .who strong { display: block; color: var(--charcoal); opacity: 1; font-weight: 600; margin-bottom: 0.15rem; }
@media (max-width: 800px) { .testimonials { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--espresso);
  color: var(--ivory);
  overflow: hidden;
  text-align: center;
}
.cta-band .glow-orb { width: 40vw; height: 40vw; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band .lede { margin-inline: auto; color: color-mix(in srgb, var(--ivory) 75%, transparent); }

/* Solutions cards */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.solution-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--ivory);
  box-shadow: var(--shadow-soft);
}
.solution-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.solution-card:hover img { transform: scale(1.06); }
.solution-card .sol-body {
  position: relative; z-index: 1;
  padding: 1.75rem;
  background: linear-gradient(transparent, rgba(26,22,20,0.9));
}
.solution-card h3 { margin-bottom: 0.4rem; }

/* News cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.news-card {
  background: var(--ivory);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease);
}
.news-card:hover { transform: translateY(-6px); }
.news-card .news-media { aspect-ratio: 16/10; overflow: hidden; background: var(--espresso); }
.news-card .news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-card .news-body { padding: 1.5rem; }
.news-card time { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.location-card {
  background: var(--ivory);
  border: 1px solid var(--mist);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.location-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-glow);
}
.location-card .city {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.location-card .addr { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; }

/* Careers / support list */
.job-list, .support-list { display: grid; gap: 1rem; }
.job-item, .support-item {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--ivory);
  border-radius: 1rem;
  border: 1px solid var(--mist);
  transition: border-color 0.3s;
}
.job-item:hover, .support-item:hover { border-color: var(--amber); }
.job-item h3, .support-item h3 { font-size: 1.35rem; }

/* Series badge */
.series-badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 0.4rem;
  background: color-mix(in srgb, var(--sage) 35%, var(--ivory));
  color: var(--espresso);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Article prose */
.article-prose { max-width: 68ch; }
.article-prose p { margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.75; }
.article-prose h2 { margin: 2.5rem 0 1rem; font-size: 1.75rem; }



/* Leadership / team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.team-card {
  background: var(--ivory);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.4s var(--ease);
}
.team-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--espresso);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-body {
  padding: 1.35rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.team-body h3 {
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.25;
}
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.team-bio {
  font-size: 0.92rem;
  opacity: 0.72;
  line-height: 1.55;
  margin-top: 0.35rem;
}
@media (max-width: 960px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ========== High-end scroll interior motion ========== */

/* Hero multi-layer depth */
.hero[data-hero-parallax] {
  perspective: 1400px;
}
.hero-bg {
  transform-style: preserve-3d;
}
.hero-layer {
  position: absolute;
  inset: -8%;
  will-change: transform;
  transform-style: preserve-3d;
}
.hero-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-layer-bg {
  inset: -4%;
  z-index: 0;
  filter: saturate(1.05) brightness(0.95);
}
.hero-layer-mid {
  inset: -12% -8% -8%;
  z-index: 1;
  clip-path: polygon(42% 0%, 100% 0%, 100% 100%, 28% 100%);
  opacity: 0.45;
  mix-blend-mode: soft-light;
  filter: blur(1px) saturate(1.15) brightness(1.05);
}
.hero-layer-fg {
  inset: auto -5% -18% 52%;
  height: 62%;
  z-index: 2;
  clip-path: polygon(18% 10%, 100% 0%, 100% 100%, 0% 90%);
  opacity: 0.38;
  mix-blend-mode: soft-light;
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
}
.hero-overlay { z-index: 3; }
.hero-vignette {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 70%, transparent 20%, rgba(26,22,20,0.55) 100%),
    linear-gradient(90deg, rgba(26,22,20,0.35), transparent 40%);
}
.hero-room-frame {
  position: absolute;
  right: clamp(4%, 8vw, 12%);
  bottom: clamp(12%, 18vh, 22%);
  width: min(34vw, 420px);
  aspect-ratio: 4/5;
  z-index: 4;
  perspective: 1000px;
  transform-style: preserve-3d;
  will-change: transform;
  pointer-events: none;
}
.hero-room-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.1rem;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(247,241,232,0.18),
    inset 0 0 40px rgba(245,166,35,0.15);
}
.hero-room-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero-room-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.25), transparent 50%, rgba(255,107,74,0.2));
  mix-blend-mode: soft-light;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-layer-mid, .hero-layer-fg { opacity: 0.4; }
  .hero-room-frame { width: min(48vw, 260px); bottom: 22%; right: 5%; opacity: 0.9; }
}

/* Interior stage — sticky scroll room turn */
.interior-stage {
  position: relative;
  height: 320vh;
  background: var(--espresso);
  color: var(--ivory);
}
.interior-stage--compact { height: 280vh; }
.interior-stage-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.3fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: calc(var(--nav-h) + 1.5rem) clamp(1.25rem, 4vw, 3.5rem) 2rem;
  overflow: hidden;
}
.interior-stage-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36ch;
}
.interior-stage-copy .eyebrow { color: var(--amber); }
.interior-stage-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--ivory);
}
.interior-stage-lede {
  color: color-mix(in srgb, var(--ivory) 72%, transparent);
  max-width: 34ch;
}
.interior-stage-progress {
  margin-top: 1.25rem;
  height: 3px;
  width: 100%;
  max-width: 220px;
  background: rgba(247,241,232,0.15);
  border-radius: 999px;
  overflow: hidden;
}
.interior-stage-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  border-radius: inherit;
  transform-origin: left center;
  will-change: width;
}
.interior-stage-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.interior-stage-labels li {
  opacity: 0.35;
  transition: opacity 0.4s var(--ease), color 0.4s;
}
.interior-stage-labels li.is-active {
  opacity: 1;
  color: var(--amber);
}

.interior-stage-viewport {
  position: relative;
  height: min(78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
  perspective-origin: 50% 45%;
}
.interior-room {
  position: relative;
  width: min(100%, 920px);
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}
.interior-room-scene {
  position: absolute;
  inset: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  transform-style: preserve-3d;
  background: #0e0c0b;
  box-shadow:
    0 50px 120px rgba(0,0,0,0.55),
    0 0 0 1px rgba(247,241,232,0.1),
    inset 0 0 80px rgba(245,166,35,0.08);
}
.interior-room-bezel {
  position: absolute;
  inset: -1.5%;
  border-radius: 1.55rem;
  border: 1px solid rgba(247,241,232,0.12);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.35);
  transform: translateZ(1px);
}
.interior-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08) rotateY(-4deg) translateZ(-40px);
  transition: opacity 0.15s linear;
  will-change: opacity, transform, filter;
  transform-style: preserve-3d;
}
.interior-frame.is-active {
  opacity: 1;
  z-index: 1;
}
.interior-frame.is-prev {
  opacity: 0.35;
  z-index: 0;
}
.interior-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interior-furniture-fg {
  position: absolute;
  right: -4%;
  bottom: -10%;
  width: 34%;
  height: 58%;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
  transform-style: preserve-3d;
  mask-image: linear-gradient(to top left, #000 40%, transparent 85%);
  -webkit-mask-image: linear-gradient(to top left, #000 40%, transparent 85%);
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
  opacity: 0.7;
}
.interior-furniture-fg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  border-radius: 0.85rem;
  opacity: 0.9;
  mix-blend-mode: normal;
  border: 1px solid rgba(247,241,232,0.12);
}
.interior-room-shine {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.12) 0%, transparent 38%),
    radial-gradient(ellipse at 70% 30%, rgba(245,166,35,0.22), transparent 50%);
  mix-blend-mode: soft-light;
}

@media (max-width: 900px) {
  .interior-stage { height: 260vh; }
  .interior-stage-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    padding-top: calc(var(--nav-h) + 0.75rem);
    gap: 1rem;
  }
  .interior-stage-copy { max-width: none; }
  .interior-stage-viewport { height: min(52vh, 420px); }
  .interior-furniture-fg { width: 38%; opacity: 0.75; }
}

/* CSS scroll-driven animation enhancement (progressive) */
@supports (animation-timeline: view()) {
  .interior-room-scene {
    animation: interior-glow-pulse linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
}
@keyframes interior-glow-pulse {
  0% { filter: brightness(0.9) saturate(0.95); }
  50% { filter: brightness(1.05) saturate(1.08); }
  100% { filter: brightness(0.95) saturate(1); }
}

/* Product hero layered parallax */
.product-hero-layers {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.product-layer {
  position: absolute;
  inset: -10%;
  will-change: transform;
}
.product-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-layer-bg {
  filter: brightness(0.55) saturate(0.9);
}
.product-layer-mid {
  inset: 8% 12% 18% 8%;
  border-radius: 1rem;
  overflow: hidden;
  opacity: 0.35;
  mix-blend-mode: soft-light;
  clip-path: inset(0 round 1rem);
}
.product-room-frame {
  position: absolute;
  inset: 12% 10% 14% 12%;
  border-radius: 1.15rem;
  overflow: hidden;
  z-index: 2;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow:
    0 35px 90px rgba(0,0,0,0.5),
    0 0 0 1px rgba(247,241,232,0.15);
}
.product-room-frame img {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.product-room-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(145deg, rgba(245,166,35,0.28), transparent 45%, rgba(255,107,74,0.18));
  mix-blend-mode: soft-light;
}
.product-hero-visual .glow-orb { z-index: 3; }

/* Sticky gallery perspective host */
.sticky-gallery[data-sticky-tilt] .sticky-visual {
  perspective: 1400px;
  perspective-origin: 50% 40%;
}

/* Showroom rich photo blocks */
.showroom-hero-strip {
  overflow: hidden;
  margin: -1rem 0 0;
  padding: 0 0 1.5rem;
}
.showroom-hero-strip-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  height: min(28vh, 280px);
}
.showroom-hero-strip-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showroom-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding-bottom: 2rem;
  justify-content: center;
}
.showroom-jump a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  opacity: 0.7;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: opacity 0.25s, border-color 0.25s;
}
.showroom-jump a:hover { opacity: 1; border-color: var(--amber); }
.showroom-block {
  background: var(--ivory);
  border: 1px solid var(--mist);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2.5rem;
}
.showroom-hero {
  position: relative;
  aspect-ratio: 21/9;
  min-height: 260px;
  overflow: hidden;
  background: var(--espresso);
}
.showroom-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.showroom-block:hover .showroom-hero img { transform: scale(1.03); }
.showroom-hero-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 3rem 2rem 1.75rem;
  background: linear-gradient(transparent, rgba(26,22,20,0.88));
  color: var(--ivory);
}
.showroom-hero-overlay .eyebrow { color: var(--gold); }
.showroom-hero-overlay .city {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.25rem 0 0.75rem;
  color: var(--ivory);
}
.showroom-hero-overlay .addr {
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.88;
  max-width: 42ch;
}
.showroom-hero-overlay .addr a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.showroom-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0.5rem;
}
.showroom-gallery figure {
  margin: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--espresso);
}
.showroom-gallery figure.sg-wide {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}
.showroom-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.showroom-gallery figure:hover img { transform: scale(1.04); }
@media (max-width: 700px) {
  .showroom-hero-strip-track { grid-template-columns: repeat(2, 1fr); height: 180px; }
  .showroom-hero { aspect-ratio: 16/10; }
  .showroom-gallery { grid-template-columns: 1fr 1fr; }
  .showroom-gallery figure.sg-wide { aspect-ratio: 16/9; }
  .showroom-hero-overlay { padding: 2rem 1.25rem 1.25rem; }
}

/* Lifestyle photo strip (site-wide densify) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 1.25rem 2.5rem;
}
.photo-strip figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--espresso);
  box-shadow: var(--shadow-soft);
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.photo-strip figure:hover img { transform: scale(1.04); }
@media (max-width: 700px) {
  .photo-strip { grid-template-columns: 1fr; }
}

/* Showrooms teaser cards on home */
.showroom-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.showroom-teaser {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--mist);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.4s var(--ease);
}
.showroom-teaser:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.showroom-teaser .st-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--espresso);
}
.showroom-teaser .st-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.showroom-teaser:hover .st-media img { transform: scale(1.05); }
.showroom-teaser .st-body { padding: 1.15rem 1.25rem 1.35rem; }
.showroom-teaser .st-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0.2rem 0 0.35rem;
}
.showroom-teaser .st-body p { font-size: 0.85rem; opacity: 0.7; margin: 0; line-height: 1.5; }
@media (max-width: 900px) {
  .showroom-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .showroom-teaser-grid { grid-template-columns: 1fr; }
}

/* Journal */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.journal-card {
  background: var(--ivory);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.journal-card:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
  box-shadow: var(--shadow-glow);
}
.journal-card .journal-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--espresso);
}
.journal-card .journal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.journal-card:hover .journal-media img { transform: scale(1.05); }
.journal-card .journal-body {
  padding: 1.5rem 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.journal-card .journal-deck {
  font-size: 0.95rem;
  opacity: 0.72;
  line-height: 1.55;
  margin: 0;
}
.journal-card h3 {
  font-size: 1.45rem;
  margin: 0;
  line-height: 1.25;
}
.journal-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
}
.journal-byline img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mist);
}
.journal-byline .byline-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.82rem;
  line-height: 1.3;
}
.journal-byline .byline-name { font-weight: 600; color: var(--espresso); }
.journal-byline .byline-role { opacity: 0.65; font-size: 0.75rem; }
.journal-post-hero {
  position: relative;
  aspect-ratio: 21/9;
  max-height: 420px;
  overflow: hidden;
  border-radius: 0 0 1.5rem 1.5rem;
  background: var(--espresso);
}
.journal-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journal-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.journal-post-meta .journal-byline img {
  width: 56px;
  height: 56px;
}
.journal-figure {
  margin: 2rem 0;
  border-radius: 1rem;
  overflow: hidden;
}
.journal-figure img {
  width: 100%;
  display: block;
  border-radius: 1rem;
}
.journal-figure figcaption {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 0.65rem;
  font-style: italic;
}
.journal-callout {
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
}
.journal-callout p { margin: 0; }
.article-prose h3 { margin: 2rem 0 0.85rem; font-size: 1.35rem; }
.article-prose ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}
.article-prose li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
  font-size: 1.05rem;
}
.article-prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Solution detail pages */
a.solution-card { text-decoration: none; color: var(--ivory); }
a.solution-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.solution-card .sol-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}
.solution-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 0 3.5rem;
  overflow: hidden;
  background: var(--espresso);
  color: var(--ivory);
}
.solution-hero-media {
  position: absolute;
  inset: 0;
}
.solution-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.solution-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,22,20,0.35) 0%, rgba(26,22,20,0.82) 100%);
}
.solution-hero .container { position: relative; z-index: 1; }
.solution-hero .eyebrow { color: var(--gold); }
.solution-hero h1 {
  color: var(--ivory);
  max-width: 16ch;
  margin: 0.4rem 0 1rem;
}
.solution-hero .lede {
  color: color-mix(in srgb, var(--ivory) 82%, transparent);
  max-width: 48ch;
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.scenario-card {
  background: var(--ivory);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.scenario-card .sc-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--espresso);
}
.scenario-card .sc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.scenario-card:hover .sc-media img { transform: scale(1.04); }
.scenario-card .sc-body {
  padding: 1.5rem 1.6rem 1.75rem;
  flex: 1;
}
.scenario-card h3 { margin: 0 0 0.55rem; font-size: 1.35rem; }
.scenario-card p { margin: 0; font-size: 0.95rem; opacity: 0.75; line-height: 1.55; }
@media (max-width: 900px) {
  .scenario-grid { grid-template-columns: 1fr; }
}
.staff-quote {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.75rem;
  align-items: center;
  background: var(--ivory);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.staff-quote img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--mist);
}
.staff-quote blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--espresso);
}
.staff-quote .who {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
.staff-quote .who strong {
  display: block;
  color: var(--espresso);
  opacity: 1;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
@media (max-width: 560px) {
  .staff-quote { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  background: var(--cream);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--espresso) 8%, transparent);
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
.process-step h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.process-step p { margin: 0; font-size: 0.9rem; opacity: 0.72; line-height: 1.5; }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
}
.related-solutions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 760px) {
  .related-solutions { grid-template-columns: 1fr; }
}


/* Related reading */
.related-reading {
  margin: 3rem 0 1rem;
  padding: 1.75rem 1.75rem 1.5rem;
  background: color-mix(in srgb, var(--ivory) 92%, var(--amber));
  border: 1px solid var(--mist);
  border-radius: 1.15rem;
}
.related-reading h2 {
  margin: 0.35rem 0 1rem;
  font-size: 1.5rem;
}
.related-reading ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.related-reading li {
  font-size: 1.02rem;
  line-height: 1.5;
  margin: 0;
  padding-left: 0;
}
.related-reading a {
  color: var(--espresso);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.related-reading a:hover { color: var(--gold); }

/* ========== Craft elevation — hand-made flourishes ========== */

/* Film grain overlay (site-wide) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* Editorial hairline rules */
.ed-rule {
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--mist) 8%, var(--mist) 92%, transparent);
  margin: 0;
  border: 0;
}
.ed-rule-thick {
  height: 2px;
  background: var(--espresso);
  opacity: 0.12;
}
.ed-rule-accent {
  width: 3.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  border: 0;
  margin: 1rem 0 1.5rem;
}

/* Mixed type scales */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.display-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--amber);
}
.kicker {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Intentional overlap helpers */
.overlap-stack { position: relative; }
.overlap-stack .overlap-a {
  position: relative;
  z-index: 1;
  width: 72%;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.overlap-stack .overlap-b {
  position: absolute;
  right: 0;
  bottom: -12%;
  width: 48%;
  z-index: 2;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(26,22,20,0.28);
  border: 3px solid var(--cream);
}
.overlap-stack img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Pull quotes */
.pull-quote {
  position: relative;
  margin: clamp(2.5rem, 6vw, 4rem) 0;
  padding: 0 clamp(1rem, 4vw, 3rem);
  max-width: 28ch;
}
.pull-quote::before {
  content: "“";
  position: absolute;
  left: -0.15em;
  top: -0.35em;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.55;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  line-height: 1.25;
  font-weight: 500;
  color: var(--espresso);
  margin: 0;
}
.pull-quote cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  font-family: var(--font-body);
}
.pull-quote--wide { max-width: 42ch; margin-inline: auto; text-align: center; }
.pull-quote--wide::before { left: 50%; transform: translateX(-50%); }

/* Numbered specs */
.spec-numbers {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--mist);
}
.spec-numbers .spec-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--mist);
}
.spec-numbers .spec-n {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--amber);
  line-height: 1;
}
.spec-numbers .spec-label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}
.spec-numbers .spec-val {
  font-size: 0.92rem;
  opacity: 0.7;
  text-align: right;
  max-width: 28ch;
}
@media (max-width: 640px) {
  .spec-numbers .spec-row { grid-template-columns: 3rem 1fr; }
  .spec-numbers .spec-val { grid-column: 2; text-align: left; max-width: none; }
}

/* Optical / recess diagram */
.diagram {
  background: var(--espresso);
  color: var(--ivory);
  border-radius: 1.35rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
}
.diagram::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.diagram-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.diagram-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
  z-index: 1;
}
.diagram-layer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid rgba(247,241,232,0.12);
}
.diagram-layer span { opacity: 0.55; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.diagram-layer--face { background: linear-gradient(90deg, rgba(245,166,35,0.35), rgba(245,166,35,0.08)); }
.diagram-layer--diff { background: rgba(247,241,232,0.08); }
.diagram-layer--led { background: rgba(255,107,74,0.18); }
.diagram-layer--frame { background: rgba(168,197,176,0.15); }
.diagram-layer--driver { background: rgba(247,241,232,0.04); }

.ribbon-diagram {
  position: relative;
  z-index: 1;
  height: 140px;
  margin: 1rem 0 1.5rem;
}
.ribbon-diagram .rd-ceiling {
  position: absolute;
  top: 18%;
  left: 0; right: 0;
  height: 8px;
  background: rgba(247,241,232,0.15);
  border-radius: 2px;
}
.ribbon-diagram .rd-channel {
  position: absolute;
  top: 26%;
  left: 8%; right: 8%;
  height: 28px;
  background: linear-gradient(180deg, rgba(245,166,35,0.55), rgba(245,166,35,0.15));
  border-radius: 0 0 4px 4px;
  box-shadow: 0 18px 40px rgba(245,166,35,0.35);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}
.ribbon-diagram .rd-wash {
  position: absolute;
  top: 52%;
  left: 5%; right: 5%;
  height: 48%;
  background: linear-gradient(180deg, rgba(245,166,35,0.28), transparent);
  pointer-events: none;
}
.ribbon-diagram-labels {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  position: relative;
  z-index: 1;
}

/* Asymmetric magazine / bento */
.range-atlas {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.range-atlas .atlas-feature {
  grid-row: 1 / 3;
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  min-height: 520px;
  background: var(--espresso);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}
.range-atlas .atlas-feature img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
  opacity: 0.85;
}
.range-atlas .atlas-feature:hover img { transform: scale(1.05); }
.range-atlas .atlas-feature .af-body {
  position: relative; z-index: 1;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(26,22,20,0.92));
}
.range-atlas .atlas-feature h3 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0.35rem 0 0.5rem;
  color: var(--ivory);
}
.range-atlas .atlas-feature p { opacity: 0.8; margin: 0 0 0.75rem; max-width: 32ch; font-size: 0.95rem; }
.range-atlas .atlas-tile {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  min-height: 240px;
  background: var(--ivory);
  border: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.range-atlas .atlas-tile:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.range-atlas .atlas-tile .at-media {
  flex: 1;
  min-height: 120px;
  overflow: hidden;
  background: var(--espresso);
}
.range-atlas .atlas-tile .at-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.range-atlas .atlas-tile:hover .at-media img { transform: scale(1.06); }
.range-atlas .atlas-tile .at-body { padding: 1.1rem 1.2rem 1.25rem; }
.range-atlas .atlas-tile h3 { font-size: 1.35rem; margin: 0.2rem 0; }
.range-atlas .atlas-tile .muted { font-size: 0.82rem; margin: 0; }
.range-atlas .atlas-ribbon {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  min-height: 200px;
  background: var(--espresso);
  color: var(--ivory);
  text-decoration: none;
  border: 1px solid rgba(247,241,232,0.08);
}
.range-atlas .atlas-ribbon .ar-media { position: relative; min-height: 180px; }
.range-atlas .atlas-ribbon .ar-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.8;
}
.range-atlas .atlas-ribbon .ar-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.5rem 1.75rem; gap: 0.5rem;
}
.range-atlas .atlas-ribbon h3 { color: var(--ivory); font-size: 1.65rem; margin: 0; }
.range-atlas .atlas-ribbon p { margin: 0; opacity: 0.75; font-size: 0.9rem; }
@media (max-width: 960px) {
  .range-atlas { grid-template-columns: 1fr 1fr; }
  .range-atlas .atlas-feature { grid-row: auto; grid-column: 1 / -1; min-height: 360px; }
  .range-atlas .atlas-ribbon { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .range-atlas { grid-template-columns: 1fr; }
}

/* Magazine spread (journal home / solutions) */
.mag-spread {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.mag-lead {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.mag-lead .mag-media {
  aspect-ratio: 4/3;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--espresso);
  margin-bottom: -3.5rem;
  position: relative;
  z-index: 0;
}
.mag-lead .mag-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.mag-lead:hover .mag-media img { transform: scale(1.04); }
.mag-lead .mag-copy {
  position: relative;
  z-index: 1;
  margin-left: clamp(1rem, 4vw, 2.5rem);
  margin-right: clamp(0.5rem, 2vw, 1.5rem);
  background: var(--cream);
  padding: 1.5rem 1.5rem 0.5rem;
  border-left: 3px solid var(--amber);
}
.mag-lead h3 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  margin: 0.4rem 0 0.75rem;
  max-width: 18ch;
}
.mag-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--mist);
}
.mag-side a {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--mist);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s;
}
.mag-side a:hover { opacity: 0.75; }
.mag-side .ms-thumb {
  aspect-ratio: 1;
  border-radius: 0.65rem;
  overflow: hidden;
  background: var(--espresso);
}
.mag-side .ms-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mag-side h3 { font-size: 1.2rem; margin: 0.25rem 0 0.35rem; line-height: 1.25; }
.mag-side p { margin: 0; font-size: 0.85rem; opacity: 0.65; }
@media (max-width: 800px) {
  .mag-spread { grid-template-columns: 1fr; }
  .mag-lead .mag-media { margin-bottom: -2rem; }
}

/* Horizontal scroll chapters */
.h-scroll {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}
.h-scroll-head {
  width: min(1200px, 92vw);
  margin: 0 auto 1.5rem;
}
.h-scroll-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem max(1.5rem, calc(50vw - 600px)) 1.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.h-scroll-track::-webkit-scrollbar { height: 4px; }
.h-scroll-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }
.h-chapter {
  flex: 0 0 min(78vw, 420px);
  scroll-snap-align: start;
  background: var(--ivory);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  min-height: 420px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.35s;
}
.h-chapter:hover { border-color: var(--amber); box-shadow: var(--shadow-soft); }
.h-chapter .hc-media {
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--espresso);
}
.h-chapter .hc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.h-chapter:hover .hc-media img { transform: scale(1.05); }
.h-chapter .hc-body { padding: 1.35rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.h-chapter .hc-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
}
.h-chapter h3 { font-size: 1.45rem; margin: 0; }
.h-chapter p { margin: 0; font-size: 0.9rem; opacity: 0.7; line-height: 1.5; flex: 1; }

/* Sticky sidebar layout */
.sticky-side-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.sticky-side {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.sticky-side .side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.5rem;
}
.sticky-side .side-nav a {
  font-size: 0.85rem;
  padding: 0.45rem 0;
  opacity: 0.55;
  border-left: 2px solid transparent;
  padding-left: 0.85rem;
  transition: opacity 0.25s, border-color 0.25s, color 0.25s;
}
.sticky-side .side-nav a:hover {
  opacity: 1;
  border-color: var(--amber);
  color: var(--coral);
}
@media (max-width: 860px) {
  .sticky-side-layout { grid-template-columns: 1fr; }
  .sticky-side { position: relative; top: 0; }
}

/* Asymmetric split with offset */
.split-asym {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.split-asym--flip { grid-template-columns: 0.85fr 1.15fr; }
.split-asym--flip .sa-media { order: 2; }
.split-asym .sa-media {
  position: relative;
  border-radius: 1.35rem;
  overflow: visible;
}
.split-asym .sa-media > img {
  width: 100%;
  border-radius: 1.35rem;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-asym .sa-float {
  position: absolute;
  left: -8%;
  bottom: 8%;
  width: 46%;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 24px 50px rgba(26,22,20,0.3);
  aspect-ratio: 1;
}
.split-asym .sa-float img { width: 100%; height: 100%; object-fit: cover; }
.split-asym .sa-copy { padding: 0.5rem 0; }
@media (max-width: 800px) {
  .split-asym, .split-asym--flip { grid-template-columns: 1fr; }
  .split-asym--flip .sa-media { order: 0; }
  .split-asym .sa-float { left: auto; right: 6%; width: 38%; }
}

/* Voices — editorial not 3 equal cards */
.voices-editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.voices-editorial .voice-lead {
  background: var(--espresso);
  color: var(--ivory);
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.voices-editorial .voice-lead::after {
  content: "";
  position: absolute;
  width: 50%; height: 50%;
  right: -10%; bottom: -20%;
  background: radial-gradient(circle, rgba(245,166,35,0.35), transparent 70%);
  pointer-events: none;
}
.voices-editorial .voice-lead blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.3;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}
.voices-editorial .voice-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.voices-editorial .voice-mini {
  flex: 1;
  background: var(--ivory);
  border: 1px solid var(--mist);
  border-radius: 1.15rem;
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.voices-editorial .voice-mini blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}
@media (max-width: 800px) {
  .voices-editorial { grid-template-columns: 1fr; }
}

/* Showroom atlas — not 4 identical cards */
.showroom-atlas {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  min-height: 480px;
}
.showroom-atlas a {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  text-decoration: none;
  color: var(--ivory);
  background: var(--espresso);
  min-height: 180px;
}
.showroom-atlas a:first-child { grid-row: 1 / 3; min-height: 420px; }
.showroom-atlas a img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.7; transition: transform 0.8s var(--ease), opacity 0.4s;
}
.showroom-atlas a:hover img { transform: scale(1.05); opacity: 0.85; }
.showroom-atlas .sa-label {
  position: absolute; inset: auto 0 0;
  padding: 2.5rem 1.5rem 1.35rem;
  background: linear-gradient(transparent, rgba(26,22,20,0.9));
  z-index: 1;
}
.showroom-atlas .sa-label h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin: 0.2rem 0 0.25rem;
  color: var(--ivory);
}
.showroom-atlas .sa-label p { margin: 0; font-size: 0.85rem; opacity: 0.8; }
@media (max-width: 700px) {
  .showroom-atlas { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .showroom-atlas a:first-child { grid-row: auto; grid-column: 1 / -1; min-height: 280px; }
}

/* Product page variants */
.product-hero--aura .product-hero-copy {
  background:
    linear-gradient(160deg, rgba(245,166,35,0.08), transparent 40%),
    var(--cream);
}
.product-hero--ribbon {
  grid-template-columns: 1fr;
  min-height: auto;
}
.product-hero--ribbon .product-hero-visual {
  min-height: min(58vh, 560px);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.product-hero--ribbon .product-hero-copy {
  margin-top: -4rem;
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-inline: auto;
  width: min(1200px, 92vw);
  background: var(--cream);
  border-radius: 1.25rem 1.25rem 0 0;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 -20px 60px rgba(26,22,20,0.12);
}
.product-hero--ribbon .ribbon-hero-line {
  position: absolute;
  left: 0; right: 0;
  top: 42%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--amber) 20%, var(--coral) 80%, transparent);
  box-shadow: 0 0 40px rgba(245,166,35,0.6);
  z-index: 4;
  pointer-events: none;
}

/* Craft chapters (vertical editorial, not sticky clone) */
.craft-chapters { display: flex; flex-direction: column; gap: 0; }
.craft-chapter {
  display: grid;
  grid-template-columns: 0.35fr 1.15fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--mist);
}
.craft-chapter .cc-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: color-mix(in srgb, var(--amber) 55%, transparent);
  line-height: 0.9;
}
.craft-chapter .cc-copy h3 { margin: 0.35rem 0 0.75rem; }
.craft-chapter .cc-media {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--espresso);
}
.craft-chapter .cc-media img { width: 100%; height: 100%; object-fit: cover; }
.craft-chapter:nth-child(even) { direction: rtl; }
.craft-chapter:nth-child(even) > * { direction: ltr; }
@media (max-width: 800px) {
  .craft-chapter, .craft-chapter:nth-child(even) {
    grid-template-columns: 4rem 1fr;
    direction: ltr;
  }
  .craft-chapter .cc-media { grid-column: 1 / -1; }
}

/* Journal magazine post */
.journal-mag {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.journal-mag-rail {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  padding-top: 0.5rem;
}
.journal-mag-rail .rail-meta {
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.65;
  margin-top: 1.25rem;
}
.journal-mag-rail .rail-toc {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.journal-mag-rail .rail-toc a {
  font-size: 0.8rem;
  opacity: 0.55;
  padding-left: 0.75rem;
  border-left: 2px solid var(--mist);
  transition: opacity 0.25s, border-color 0.25s;
}
.journal-mag-rail .rail-toc a:hover { opacity: 1; border-color: var(--amber); }
.journal-mag-body { max-width: 62ch; }
.journal-mag-body > h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  margin: 0.5rem 0 1rem;
  max-width: 16ch;
}
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 0.8;
  padding: 0.15rem 0.55rem 0 0;
  color: var(--amber);
  font-weight: 500;
}
.journal-figure--breakout {
  margin-left: calc(-8vw);
  margin-right: calc(-4vw);
  max-width: none;
  width: calc(100% + 12vw);
}
.journal-figure--breakout img { border-radius: 1.15rem; }
.journal-post-hero--mag {
  aspect-ratio: auto;
  max-height: none;
  min-height: min(52vh, 520px);
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.journal-post-hero--mag + .section { padding-top: 2rem; }
@media (max-width: 860px) {
  .journal-mag { grid-template-columns: 1fr; }
  .journal-mag-rail { position: relative; top: 0; display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; }
  .journal-mag-rail .rail-toc { flex-direction: row; flex-wrap: wrap; margin-top: 0; }
  .journal-figure--breakout { margin-left: 0; margin-right: 0; width: 100%; }
}

/* Solution hospitality exemplar */
.sol-index-card {
  position: absolute;
  right: clamp(4%, 6vw, 10%);
  bottom: clamp(12%, 18%, 22%);
  width: min(280px, 32vw);
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(12px);
  color: var(--espresso);
  border-radius: 1rem;
  padding: 1.35rem 1.5rem;
  z-index: 3;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  border: 1px solid rgba(247,241,232,0.4);
}
.sol-index-card .kicker { margin-bottom: 0.65rem; }
.sol-index-card ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.sol-index-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--mist);
}
.sol-index-card li:last-child { border-bottom: 0; }
.sol-index-card a { font-weight: 550; }
.sol-index-card span { opacity: 0.5; font-size: 0.75rem; }
@media (max-width: 800px) {
  .sol-index-card { position: relative; right: auto; bottom: auto; width: auto; margin: 1.5rem 0 0; }
}

.timeline-vert {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--mist);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.timeline-vert .tv-item { position: relative; }
.timeline-vert .tv-item::before {
  content: "";
  position: absolute;
  left: calc(-2rem - 5px);
  top: 0.35rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px var(--cream);
}
.timeline-vert h3 { margin: 0 0 0.4rem; font-size: 1.35rem; }
.timeline-vert p { margin: 0; opacity: 0.7; font-size: 0.95rem; }

/* Stats as editorial strip */
.stats-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-block: 1px solid var(--mist);
}
.stats-editorial > div {
  padding: 2rem 1.25rem;
  border-right: 1px solid var(--mist);
  text-align: left;
}
.stats-editorial > div:last-child { border-right: 0; }
.stats-editorial .stat-num { text-align: left; }
@media (max-width: 700px) {
  .stats-editorial { grid-template-columns: 1fr 1fr; }
  .stats-editorial > div:nth-child(2n) { border-right: 0; }
  .stats-editorial > div:nth-child(1),
  .stats-editorial > div:nth-child(2) { border-bottom: 1px solid var(--mist); }
}

/* Related products as editorial list (not card grid) */
.related-editorial {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--mist);
}
.related-editorial a {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--mist);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
}
.related-editorial a:hover { background: color-mix(in srgb, var(--ivory) 80%, transparent); }
.related-editorial .re-thumb {
  aspect-ratio: 4/3;
  border-radius: 0.65rem;
  overflow: hidden;
  background: var(--espresso);
}
.related-editorial .re-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-editorial h3 { margin: 0 0 0.25rem; font-size: 1.35rem; }
.related-editorial p { margin: 0; font-size: 0.85rem; opacity: 0.65; }
.related-editorial .re-arrow {
  font-size: 1.25rem;
  color: var(--coral);
  opacity: 0.7;
}
@media (max-width: 560px) {
  .related-editorial a { grid-template-columns: 80px 1fr; }
  .related-editorial .re-arrow { display: none; }
}

/* Scenario magazine (hospitality) */
.scenario-mag {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.scenario-mag-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--mist);
}
.scenario-mag-row:nth-child(even) { direction: rtl; }
.scenario-mag-row:nth-child(even) > * { direction: ltr; }
.scenario-mag-row .sm-media {
  border-radius: 1.15rem;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--espresso);
}
.scenario-mag-row .sm-media img { width: 100%; height: 100%; object-fit: cover; }
.scenario-mag-row .sm-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
@media (max-width: 760px) {
  .scenario-mag-row, .scenario-mag-row:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Clip flourishes */
.clip-slant-br {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.clip-notch {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%, 0 88%);
}

/* Section eyebrow with rule */
.section-head--ruled {
  max-width: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2.5rem;
  align-items: end;
}
.section-head--ruled .sh-main { max-width: 42ch; }
.section-head--ruled .sh-aside {
  font-size: 0.9rem;
  opacity: 0.6;
  max-width: 36ch;
  justify-self: end;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--mist);
}
@media (max-width: 700px) {
  .section-head--ruled { grid-template-columns: 1fr; }
  .section-head--ruled .sh-aside { justify-self: start; }
}

/* Journal gallery-story multi-angle lookbook */
.story-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.85rem;
  margin: 2.25rem 0 2.75rem;
}
.story-gallery figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--espresso);
  position: relative;
}
.story-gallery figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
}
.story-gallery figure.story-gallery-hero {
  grid-row: span 2;
}
.story-gallery figure.story-gallery-hero img {
  aspect-ratio: auto;
  min-height: 100%;
}
.story-gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFBF5;
  background: linear-gradient(transparent, rgba(28, 22, 18, 0.72));
  font-style: normal;
  opacity: 1;
}
.story-gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 0 0 2.5rem;
}
.story-gallery-strip figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: var(--espresso);
}
.story-gallery-strip img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.story-gallery-strip figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFBF5;
  background: linear-gradient(transparent, rgba(28, 22, 18, 0.72));
}
.gallery-item a.gallery-story-link {
  color: inherit;
  text-decoration: none;
  display: block;
}
.gallery-item a.gallery-story-link:hover img {
  transform: scale(1.02);
  transition: transform 0.45s ease;
}
.gallery-item a.gallery-story-link img {
  transition: transform 0.45s ease;
}
@media (max-width: 720px) {
  .story-gallery { grid-template-columns: 1fr; }
  .story-gallery figure.story-gallery-hero { grid-row: auto; }
  .story-gallery-strip { grid-template-columns: 1fr; }
}


/* ========== Background video system (muted ambient loops) ========== */
.hero-video-wrap,
.section-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--espresso);
}
.bg-video,
.bg-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bg-video {
  z-index: 1;
  /* Slight scale avoids edge letterboxing on crop */
  transform: scale(1.04);
}
.bg-video-poster {
  z-index: 0;
  display: none; /* shown when video hidden (reduced motion / no video) */
}
.hero-video-wrap .bg-video {
  filter: saturate(1.05) brightness(0.92);
}
.hero .hero-overlay { z-index: 3; }
.hero .hero-vignette { z-index: 4; }
.hero .hero-layer-mid {
  z-index: 2;
  opacity: 0.28;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero-content { z-index: 5; }
.hero-scroll-hint { z-index: 5; }
.hero-room-frame { z-index: 5; }

/* CTA band with ambient video */
.cta-band.has-bg-video {
  background: var(--espresso);
}
.cta-band .section-video-bg { z-index: 0; }
.cta-band .section-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26,22,20,0.55) 0%, rgba(26,22,20,0.78) 55%, rgba(26,22,20,0.88) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(245,166,35,0.22), transparent 55%);
  pointer-events: none;
}
.cta-band.has-bg-video .glow-orb { z-index: 2; opacity: 0.55; }
.cta-band.has-bg-video .container { z-index: 3; }

/* Solutions / page hero with video */
.page-hero--video {
  min-height: min(58vh, 520px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  color: var(--ivory);
}
.page-hero--video::before { display: none; } /* drop amber blob; video + overlay instead */
.page-hero--video .section-video-overlay--page {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26,22,20,0.35) 0%, rgba(26,22,20,0.62) 45%, rgba(26,22,20,0.88) 100%),
    radial-gradient(ellipse at 75% 25%, rgba(245,166,35,0.28), transparent 50%);
  pointer-events: none;
}
.page-hero--video .container { z-index: 2; }
.page-hero--video .eyebrow { color: var(--amber); }
.page-hero--video .lede {
  color: color-mix(in srgb, var(--ivory) 80%, transparent);
  max-width: 42ch;
}
.page-hero--video h1 { color: var(--ivory); }

/* Product hero video layer */
.product-hero-visual--video .product-layer-bg {
  inset: 0;
}
.product-hero-visual--video .product-layer-bg .bg-video,
.product-hero-visual--video .product-layer-bg .bg-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-hero-visual--video .product-layer-mid {
  opacity: 0.42;
  mix-blend-mode: soft-light;
}
