:root {
  --ink: #1c1b17;
  --muted: #646054;
  --paper: #fbf4e8;
  --panel: #ffffff;
  --wash: #eee4d4;
  --line: #d8c8b1;
  --forest: #513146;
  --forest-dark: #221822;
  --clay: #a24f37;
  --brass: #c18b37;
  --aubergine: #513146;
  --shadow: 0 28px 80px rgba(25, 21, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Garamond, "EB Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.05;
  font-weight: 700;
}

h1 {
  max-width: 920px;
  font-size: 4.8rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 88px;
  padding: 12px 64px;
  background: rgba(251, 246, 237, 0.92);
  border-bottom: 1px solid rgba(216, 200, 177, 0.86);
  backdrop-filter: blur(16px);
}

.brand,
.top-nav,
.site-footer nav,
.palette-row,
.hero-actions,
.related-row,
.material-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 13px;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  display: none;
  width: 0;
  height: 0;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.brand span {
  position: static;
  display: grid;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  gap: 4px;
  color: #1b1714;
  font-family: Garamond, "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand span::after {
  content: "Interior Stilguide";
  color: #716b60;
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top-nav,
.site-footer nav {
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  width: calc(100% + 36px);
  height: 16px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 260ms ease;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  display: grid;
  width: 300px;
  gap: 4px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(193, 139, 55, 0.1), transparent 38%),
    rgba(255, 250, 241, 0.98);
  border: 1px solid rgba(216, 200, 177, 0.94);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(25, 21, 16, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-panel a {
  display: grid;
  gap: 2px;
  padding: 10px 11px;
  border-radius: 7px;
  color: var(--ink);
  text-decoration: none;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  color: var(--forest-dark);
  background: #f3e6d3;
}

.nav-dropdown-panel span {
  font-weight: 850;
}

.nav-dropdown-panel small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.top-nav a,
.site-footer a,
.style-card a,
.featured-image,
.related-link {
  text-decoration: none;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--forest-dark);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100svh - 88px);
  padding: 64px 64px 42px;
  background:
    linear-gradient(120deg, rgba(81, 49, 70, 0.12), transparent 38%),
    linear-gradient(180deg, #fbf4e8 0%, #ead8c0 100%);
}

.home-hero > *,
.style-hero > *,
.scene-shell > * {
  min-width: 0;
}

.home-hero-luxury {
  min-height: calc(100svh - 88px);
}

.project-statement {
  padding: 88px 64px;
}

.project-statement-luxury {
  color: #f8eddb;
  background:
    linear-gradient(135deg, rgba(193, 139, 55, 0.2), transparent 36%),
    #2a1b28;
}

.project-statement-luxury .eyebrow,
.project-statement-luxury p {
  color: rgba(248, 237, 219, 0.76);
}

.project-statement-luxury h2,
.project-statement-luxury p {
  max-width: 920px;
}

.project-statement-luxury p:not(.eyebrow) {
  margin-top: 20px;
  font-size: 1.18rem;
}

.hero-copy,
.page-intro,
.style-hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow),
.page-intro p,
.style-hero p,
.section-heading p,
.text-block p,
.style-card p,
.product-card p,
.product-drawer p,
.affiliate-disclosure,
.proof-strip p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy > p:not(.eyebrow),
.style-hero-copy > p {
  max-width: 640px;
  margin-top: 22px;
  font-size: 1.17rem;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 17px;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
}

.button-dark {
  color: white;
  background: var(--forest-dark);
}

.button-light {
  color: var(--forest-dark);
  background: #f2eadc;
  border: 1px solid #ddc6a5;
}

.button:hover,
.button:focus-visible {
  filter: brightness(0.95);
}

.button,
.style-card,
.featured-style,
.text-block,
.product-card,
.product-drawer,
.scene-stage {
  transition:
    border-color 420ms ease,
    box-shadow 520ms ease,
    transform 520ms ease,
    background-color 520ms ease;
}

.style-card:hover,
.featured-style:hover,
.product-card:hover,
.text-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 68px rgba(25, 21, 16, 0.13);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0.78;
    transform: translateY(18px);
    transition:
      opacity 900ms ease,
      transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual,
.featured-image,
.style-card-media,
.scene-stage {
  position: relative;
  overflow: hidden;
  background: #e7ddce;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual {
  min-height: 560px;
  box-shadow: 0 34px 90px rgba(28, 24, 18, 0.18);
}

.hero-visual img,
.featured-image img,
.style-card-media img,
.scene-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual img {
  position: absolute;
  inset: 0;
}

.visual-badge,
.status-pill {
  position: absolute;
  z-index: 3;
  color: white;
  background: rgba(42, 27, 40, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.visual-badge {
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
}

.status-pill {
  top: 12px;
  left: 12px;
  padding: 7px 10px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-strip article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  background: #f7efe3;
}

.proof-strip-luxury article {
  background: #fff9ee;
}

.proof-strip span,
.product-number {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
}

.method-flow {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
  padding: 70px 64px;
  background: #f8f5ef;
  border-top: 1px solid rgba(216, 200, 177, 0.66);
  border-bottom: 1px solid rgba(216, 200, 177, 0.66);
}

.method-flow-copy {
  max-width: 520px;
}

.method-flow-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.method-flow-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(216, 200, 177, 0.82);
}

.method-flow-list article {
  display: grid;
  grid-template-columns: 120px minmax(0, 0.66fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(216, 200, 177, 0.82);
}

.method-flow-list span {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.method-flow-list h3 {
  font-size: 1.45rem;
}

.method-flow-list p {
  color: var(--muted);
}

.section,
.page-intro,
.style-hero,
.content-grid,
.shop-scene-section,
.legal-page {
  padding: 72px 64px;
}

.section-tight {
  padding-top: 18px;
}

.section-muted,
.shop-scene-section {
  background: #ece1d2;
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 28px;
}

.section-heading p {
  max-width: 720px;
  margin-top: 12px;
}

.style-grid,
.product-grid,
.content-grid,
.scene-shell,
.style-hero {
  display: grid;
  gap: 20px;
}

.style-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.style-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(34, 31, 27, 0.07);
}

.style-card a {
  display: grid;
  min-height: 100%;
}

.style-card-media {
  min-height: 210px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.style-card-copy {
  display: grid;
  gap: 11px;
  padding: 20px;
}

.palette-row,
.material-list,
.related-row {
  gap: 8px;
  flex-wrap: wrap;
}

.swatch {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(36, 34, 30, 0.16);
  border-radius: 999px;
}

.material-list span,
.related-link {
  padding: 8px 11px;
  background: #f5ead9;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3b3a34;
  font-size: 0.9rem;
  font-weight: 750;
}

.featured-style {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.featured-image {
  min-height: 420px;
}

.featured-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.style-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  padding-bottom: 44px;
  background:
    linear-gradient(135deg, rgba(70, 50, 65, 0.08), transparent 38%),
    #f3e8d8;
}

body[data-current-style="art-deco"] .style-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(193, 139, 55, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(22, 33, 58, 0.12), transparent 42%),
    #f1e3d1;
}

body[data-current-style="art-deco"] .shop-scene-section,
body[data-current-style="art-deco"] .section-muted {
  background:
    linear-gradient(180deg, rgba(84, 38, 52, 0.06), transparent 44%),
    #eadbc8;
}

body[data-current-style="art-deco"] .eyebrow,
body[data-current-style="art-deco"] .product-priority {
  color: #8d3c2d;
}

body[data-current-style="art-deco"] .hotspot-dot {
  background: #17120f;
  border-color: rgba(248, 230, 190, 0.94);
}

body[data-current-style="art-deco"] .hotspot-glow {
  border-color: rgba(197, 143, 53, 0.82);
  box-shadow:
    0 0 0 2px rgba(197, 143, 53, 0.12),
    0 0 22px rgba(197, 143, 53, 0.3);
}

body[data-current-style="organic-modern"] {
  --style-hero-bg:
    radial-gradient(circle at 82% 18%, rgba(95, 111, 91, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(165, 106, 79, 0.11), transparent 42%),
    #f5eee4;
  --style-muted-bg: #e7dac8;
  --style-accent: #a56a4f;
  --style-ink: #202016;
  --style-button: #202016;
  --style-card-glow: rgba(95, 111, 91, 0.18);
  --hotspot-dot: #202016;
  --hotspot-ring: rgba(245, 238, 228, 0.94);
  --hotspot-active: #5f6f5b;
  --hotspot-glow-color: rgba(95, 111, 91, 0.48);
}

body[data-current-style="japandi"] {
  --style-hero-bg:
    radial-gradient(circle at 84% 14%, rgba(127, 152, 165, 0.2), transparent 26%),
    linear-gradient(135deg, rgba(217, 197, 164, 0.26), transparent 42%),
    #f6f2ea;
  --style-muted-bg: #e8e3d9;
  --style-accent: #7f98a5;
  --style-ink: #171717;
  --style-button: #171717;
  --style-card-glow: rgba(127, 152, 165, 0.17);
  --hotspot-dot: #171717;
  --hotspot-ring: rgba(246, 242, 234, 0.94);
  --hotspot-active: #2b3438;
  --hotspot-glow-color: rgba(127, 152, 165, 0.48);
}

body[data-current-style="art-deco"] {
  --style-hero-bg:
    radial-gradient(circle at 82% 18%, rgba(185, 135, 63, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(20, 33, 61, 0.18), transparent 42%),
    #f3e5d1;
  --style-muted-bg: #e5d0b6;
  --style-accent: #6f1f2d;
  --style-ink: #11100f;
  --style-button: #14213d;
  --style-card-glow: rgba(185, 135, 63, 0.2);
  --hotspot-dot: #11100f;
  --hotspot-ring: rgba(243, 229, 209, 0.94);
  --hotspot-active: #3a2117;
  --hotspot-glow-color: rgba(185, 135, 63, 0.56);
}

body[data-current-style] .style-hero {
  background: var(--style-hero-bg);
}

body[data-current-style] .shop-scene-section,
body[data-current-style] .section-muted {
  background: var(--style-muted-bg);
}

body[data-current-style] .eyebrow,
body[data-current-style] .product-priority {
  color: var(--style-accent);
}

body[data-current-style] .button-dark {
  background: var(--style-button);
}

body[data-current-style] .button-light {
  color: var(--style-ink);
  background: rgba(255, 250, 241, 0.66);
  border-color: color-mix(in srgb, var(--style-accent), var(--line) 62%);
}

.shop-scene-section {
  padding-top: 48px;
}

.style-facts,
.text-block,
.product-drawer,
.product-card,
.legal-warning {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.style-facts,
.text-block,
.product-drawer,
.product-card {
  padding: 22px;
}

.style-facts {
  display: grid;
  gap: 18px;
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.content-grid > div {
  display: grid;
  gap: 20px;
}

.editorial-section {
  background: var(--paper);
}

.lead-block {
  gap: 16px;
}

.home-essay-grid,
.manifest-grid,
.timeline-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 20px;
}

.home-essay-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-essay-grid-balanced {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: start;
}

.essay-card,
.manifest-grid article,
.timeline-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(34, 31, 27, 0.06);
}

.manifest-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.timeline-card span {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-copy {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-top: 18px;
}

.intro-copy p {
  margin: 0;
}

.narrow-block {
  max-width: 840px;
  margin: 0 auto;
}

.rule-grid,
.visual-grid,
.room-grid,
.mistake-grid,
.long-read-list {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.rule-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.visual-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mistake-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.long-read-list {
  gap: 20px;
}

.long-read-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.long-read-card h3 {
  font-size: 2rem;
}

.detail-item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.detail-item {
  padding: 16px;
  background: #fbf6ee;
  border: 1px solid rgba(216, 200, 177, 0.78);
  border-radius: 8px;
}

.detail-item h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.94rem;
  line-height: 1.25;
}

.detail-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.rule-card,
.visual-card,
.room-card,
.mistake-card {
  min-height: 100%;
}

.rule-card {
  padding: 18px;
}

.rule-card h3,
.visual-card h3,
.room-card h3,
.mistake-card h3 {
  font-size: 1.08rem;
  line-height: 1.2;
}

.rule-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.visual-language .section-heading,
.budget-section .content-grid {
  max-width: 1180px;
}

.sticky-facts {
  position: sticky;
  top: 96px;
}

.text-block p,
.product-drawer p,
.product-card p,
.style-facts p {
  margin-top: 12px;
}

.text-block ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.text-block li::marker {
  color: var(--clay);
}

.scene-shell {
  grid-template-columns: minmax(520px, 1fr) minmax(300px, 390px);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.scene-list,
.scene-block {
  display: grid;
  gap: 28px;
}

.scene-list {
  max-width: 1280px;
  margin: 0 auto;
}

.scene-block + .scene-block {
  padding-top: 30px;
  border-top: 1px solid rgba(216, 200, 177, 0.82);
}

.scene-block {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 28px;
  padding: 28px;
  background: rgba(255, 249, 238, 0.56);
  border: 1px solid rgba(216, 200, 177, 0.78);
  border-radius: 8px;
}

.scene-block-reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.scene-block-reverse .scene-media-column {
  order: 2;
}

.scene-block-reverse .scene-info-column {
  order: 1;
}

.scene-media-column,
.scene-info-column {
  display: grid;
  min-width: 0;
}

.scene-info-column {
  gap: 18px;
}

.scene-copy {
  max-width: 760px;
}

.scene-copy h3 {
  font-size: 2.1rem;
}

.scene-copy p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--muted);
}

.scene-stage {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.scene-arrows {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
}

.scene-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #24161f;
  background: rgba(255, 249, 238, 0.82);
  border: 1px solid rgba(216, 200, 177, 0.78);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(25, 21, 16, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
  text-decoration: none;
  pointer-events: auto;
  transition:
    background-color 260ms ease,
    transform 360ms ease,
    box-shadow 360ms ease;
}

.scene-arrow:hover,
.scene-arrow:focus-visible {
  background: #fff8ec;
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(25, 21, 16, 0.24);
}

.scene-image {
  position: absolute;
  inset: 0;
}

.scene-fallback,
.mini-scene-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 66, 58, 0.08), rgba(37, 66, 58, 0)),
    linear-gradient(180deg, #f5f0e7 0 62%, #d7c6ae 62% 100%);
}

.scene-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 26px;
  text-align: center;
}

.scene-fallback span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.scene-fallback small {
  color: var(--muted);
  font-weight: 750;
}

.mini-window,
.mini-sofa,
.mini-table,
.mini-vase {
  position: absolute;
  display: block;
}

.mini-window {
  left: 13%;
  top: 12%;
  width: 30%;
  height: 38%;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(111, 106, 96, 0.18);
}

.mini-sofa {
  left: 21%;
  bottom: 20%;
  width: 48%;
  height: 22%;
  background: rgba(81, 49, 70, 0.72);
  border-radius: 24px 24px 8px 8px;
}

.mini-table {
  right: 22%;
  bottom: 13%;
  width: 26%;
  height: 7%;
  background: #5b4739;
  border-radius: 999px;
}

.mini-vase {
  right: 28%;
  bottom: 22%;
  width: 7%;
  height: 18%;
  background: #f7f1e8;
  border-radius: 999px 999px 12px 12px;
}

.hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 6;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  transform: translate(-50%, -50%);
}

.hotspot-glow {
  position: absolute;
  width: 38px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(193, 139, 55, 0.1), transparent 66%);
  border: 1px solid rgba(193, 139, 55, 0.75);
  border-radius: 999px;
  opacity: 0.12;
  transform: scale(0.68);
  transition:
    opacity 1200ms ease,
    transform 1200ms ease,
    box-shadow 1200ms ease,
    background-color 1200ms ease;
  box-shadow:
    0 0 0 2px rgba(193, 139, 55, 0.1),
    0 0 18px rgba(193, 139, 55, 0.26);
}

.hotspot-dot {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 11px;
  height: 11px;
  color: transparent;
  background: #24161f;
  border: 1px solid rgba(255, 248, 229, 0.9);
  border-radius: 999px;
  box-shadow:
    0 0 0 3px rgba(255, 248, 229, 0.2),
    0 0 14px rgba(193, 139, 55, 0.45),
    0 8px 22px rgba(42, 27, 40, 0.38);
  transition: transform 900ms ease, box-shadow 900ms ease;
}

.hotspot-dot::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--brass);
  border-radius: 50%;
}

.hotspot:hover .hotspot-glow,
.hotspot:focus-visible .hotspot-glow,
.hotspot.is-active .hotspot-glow {
  opacity: 1;
  transform: scale(1.42);
  box-shadow:
    0 0 0 4px rgba(193, 139, 55, 0.14),
    0 0 34px rgba(193, 139, 55, 0.42);
}

.hotspot:hover .hotspot-dot,
.hotspot:focus-visible .hotspot-dot,
.hotspot.is-active .hotspot-dot {
  transform: scale(1.12);
}

.hotspot-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 8;
  display: grid;
  width: min(230px, 62vw);
  gap: 3px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.96);
  border: 1px solid rgba(216, 200, 177, 0.9);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(25, 21, 16, 0.2);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, 8px);
  transition:
    opacity 320ms ease,
    transform 420ms ease;
}

.hotspot-popover strong {
  font-family: Garamond, Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.hotspot-popover small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.hotspot:hover .hotspot-popover,
.hotspot:focus-visible .hotspot-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hotspot:focus-visible .hotspot-dot {
  box-shadow:
    0 0 0 5px rgba(193, 139, 55, 0.34),
    0 0 20px rgba(193, 139, 55, 0.7),
    0 8px 22px rgba(16, 42, 36, 0.38);
}

.product-drawer {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 58px;
  background:
    linear-gradient(145deg, rgba(193, 139, 55, 0.12), transparent 42%),
    var(--panel);
  animation: productPanelIn 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.amazon-product-card {
  display: grid;
  gap: 13px;
}

.amazon-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(216, 200, 177, 0.8);
}

.amazon-wordmark {
  color: var(--forest-dark);
  font-family: Garamond, Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 800;
}

.amazon-link-label {
  padding: 5px 9px;
  color: #4a3425;
  background: #f6e5c9;
  border: 1px solid rgba(193, 139, 55, 0.42);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-context,
.product-live-note {
  color: #7a684f;
  font-size: 0.88rem;
  font-weight: 750;
}

.amazon-product-card h3 {
  font-size: 1.75rem;
}

.product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, auto);
  gap: 7px 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(216, 200, 177, 0.72);
  border-bottom: 1px solid rgba(216, 200, 177, 0.72);
}

.product-info-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

.product-info-grid strong {
  color: var(--ink);
  font-size: 0.84rem;
  text-align: right;
}

.inline-amazon-check {
  color: inherit;
  text-decoration: none;
}

.inline-amazon-check:hover,
.inline-amazon-check:focus-visible {
  text-decoration: underline;
}

.product-fit {
  color: #6f4f33;
  font-size: 0.9rem;
  font-weight: 850;
}

.product-drawer.is-collapsed {
  display: none;
}

.drawer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: #f5f2ec;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.product-priority {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-fineprint {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  padding-top: 10px;
  border-top: 1px solid rgba(216, 200, 177, 0.78);
}

@keyframes productPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.affiliate-cta {
  display: grid;
  justify-items: start;
  gap: 7px;
  margin-top: 2px;
}

.affiliate-cta span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.affiliate-disclosure,
.notice-band {
  max-width: 1280px;
  margin: 18px auto 0;
  padding: 16px 18px;
  color: #413b31;
  background: #f4e6cf;
  border: 1px solid #dfc9a4;
  border-radius: 8px;
}

.notice-band {
  margin: 0 64px 72px;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(145deg, rgba(193, 139, 55, 0.16), transparent 38%),
    var(--panel);
}

.product-card-compact {
  gap: 7px;
  min-height: 150px;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.product-card-compact strong {
  font-family: Garamond, Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.08;
}

.product-card-compact span:not(.product-priority) {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card-compact em {
  align-self: end;
  color: #71583f;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.scene-viewer {
  display: grid;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px;
  background:
    linear-gradient(145deg, var(--style-card-glow, rgba(193, 139, 55, 0.14)), transparent 42%),
    rgba(255, 250, 241, 0.7);
  border: 1px solid rgba(216, 200, 177, 0.82);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(25, 21, 16, 0.13);
}

.scene-viewer-head,
.scene-controls,
.scene-tabs {
  display: flex;
  align-items: center;
}

.scene-viewer-head {
  justify-content: space-between;
  gap: 16px;
}

.scene-tabs {
  gap: 8px;
  flex-wrap: wrap;
}

.scene-tab {
  min-height: 36px;
  padding: 0 13px;
  color: var(--style-ink, var(--ink));
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(216, 200, 177, 0.9);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 850;
  transition:
    background-color 360ms ease,
    border-color 360ms ease,
    transform 360ms ease;
}

.scene-tab:hover,
.scene-tab:focus-visible,
.scene-tab.is-active {
  color: white;
  background: var(--style-button, var(--forest-dark));
  border-color: var(--style-button, var(--forest-dark));
  transform: translateY(-1px);
}

.scene-controls {
  gap: 8px;
}

.scene-viewer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.scene-viewer.is-switching .scene-stage,
.scene-viewer.is-switching .scene-copy,
.scene-viewer.is-switching .product-drawer {
  opacity: 0.35;
  transform: translateY(6px);
}

.scene-stage,
.scene-copy,
.product-drawer {
  transition:
    opacity 420ms ease,
    transform 520ms ease,
    box-shadow 520ms ease;
}

.scene-stage {
  min-height: 520px;
}

.scene-info-column {
  align-content: start;
  gap: 16px;
}

.scene-info-column .product-drawer {
  order: 1;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.scene-copy {
  order: 2;
  padding: 8px 2px 4px;
}

.hotspot {
  width: 34px;
  height: 34px;
}

.hotspot-glow {
  display: none !important;
}

.hotspot-dot {
  width: 10px;
  height: 10px;
  background: var(--hotspot-dot, #17120f);
  border: 1px solid var(--hotspot-ring, rgba(235, 215, 175, 0.9));
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.28);
  transition:
    transform 650ms ease,
    background-color 650ms ease,
    box-shadow 900ms ease,
    border-color 650ms ease;
}

.hotspot-dot::after {
  content: none;
}

.hotspot:hover .hotspot-dot,
.hotspot:focus-visible .hotspot-dot,
.hotspot.is-active .hotspot-dot {
  transform: scale(1.22);
  background: var(--hotspot-active, #2a211a);
  border-color: rgba(255, 242, 210, 0.96);
  box-shadow:
    0 0 0 2px rgba(255, 242, 210, 0.34),
    0 0 14px var(--hotspot-glow-color, rgba(193, 139, 55, 0.52)),
    0 6px 20px rgba(0, 0, 0, 0.34);
}

.partner-product-window {
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--style-card-glow, rgba(193, 139, 55, 0.16)), transparent 42%),
    rgba(255, 252, 246, 0.96);
  border: 1px solid rgba(216, 200, 177, 0.92);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(25, 21, 16, 0.12);
}

.partner-window-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 8px 14px;
  color: var(--style-ink, var(--ink));
  background: rgba(255, 247, 235, 0.76);
  border-bottom: 1px solid rgba(216, 200, 177, 0.84);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-window-topbar span:last-child {
  padding: 5px 9px;
  color: var(--style-ink, var(--ink));
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(216, 200, 177, 0.86);
  border-radius: 999px;
}

.partner-window-body {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
}

.partner-window-visual,
.product-board-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 104px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(145deg, var(--style-accent, var(--brass)), var(--style-ink, var(--forest-dark)));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.partner-window-visual::after,
.product-board-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.partner-window-visual span,
.product-board-visual span {
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.partner-window-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.partner-window-copy h3 {
  font-size: 1.62rem;
}

.partner-window-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.scene-product-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 247, 235, 0.82);
  border: 1px solid rgba(216, 200, 177, 0.88);
  border-radius: 8px 8px 0 0;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.scene-product-panel-head small {
  padding: 5px 9px;
  color: var(--style-ink, var(--ink));
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(216, 200, 177, 0.86);
  border-radius: 999px;
  font-size: 0.7rem;
}

.scene-product-list {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(216, 200, 177, 0.88);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.scene-product-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(216, 200, 177, 0.78);
  border-radius: 8px;
  transition:
    border-color 520ms ease,
    box-shadow 620ms ease,
    background-color 520ms ease;
}

.scene-product-item.is-active {
  background: rgba(255, 250, 241, 0.96);
  border-color: color-mix(in srgb, var(--style-accent, var(--brass)), var(--line) 48%);
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--style-accent, var(--brass)), transparent 82%),
    0 18px 46px rgba(25, 21, 16, 0.1);
}

.scene-product-summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: 100%;
  padding: 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.scene-product-summary small {
  display: block;
  color: var(--style-accent, var(--clay));
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.scene-product-summary strong {
  display: block;
  margin-top: 2px;
  font-family: Garamond, Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.08;
}

.scene-product-details {
  display: grid;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  opacity: 0;
  transition:
    max-height 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 620ms ease,
    opacity 520ms ease;
}

.scene-product-item.is-active .scene-product-details {
  max-height: 360px;
  padding: 0 14px 14px;
  opacity: 1;
}

.scene-product-details p {
  color: var(--muted);
  font-size: 0.94rem;
}

.scene-product-details small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.product-board-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 36%),
    var(--paper);
}

.product-redirect-section {
  padding-top: 48px;
}

.product-redirect-card {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  background:
    linear-gradient(145deg, var(--style-card-glow, rgba(193, 139, 55, 0.16)), transparent 44%),
    rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(216, 200, 177, 0.86);
  border-radius: 8px;
}

.product-redirect-card p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.product-redirect-card .button {
  justify-self: start;
}

.product-card-board {
  gap: 8px;
  min-height: 230px;
  padding: 12px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.product-card-board strong {
  font-family: Garamond, Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.08;
}

.product-card-board > span:not(.product-priority):not(.product-board-visual) {
  color: var(--muted);
  font-size: 0.86rem;
}

.product-card-board em {
  align-self: end;
  color: var(--style-accent, #71583f);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.product-board-visual {
  min-height: 88px;
  margin-bottom: 4px;
}

.editorial-article-section,
.article-budget,
.article-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 360px);
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.style-article {
  color: var(--ink);
}

.style-article h2 {
  margin-top: 34px;
}

.style-article h2:first-of-type {
  margin-top: 0;
}

.style-article p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.style-article blockquote {
  margin: 34px 0;
  padding: 24px 0 24px 26px;
  color: var(--style-ink, var(--ink));
  border-left: 3px solid var(--style-accent, var(--brass));
  font-family: Garamond, Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.15;
}

.article-aside {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(216, 200, 177, 0.82);
  border-radius: 8px;
}

.principle-context {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(216, 200, 177, 0.78);
}

.principle-context p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.principle-reading-note {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 18px;
  background: rgba(255, 250, 241, 0.7);
  border: 1px solid rgba(216, 200, 177, 0.78);
  border-radius: 8px;
}

.principle-reading-note h3 {
  font-size: 1.25rem;
}

.principle-reading-note p {
  font-size: 0.98rem;
}

.principle-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: principle;
}

.principle-list li {
  counter-increment: principle;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(216, 200, 177, 0.86);
}

.principle-list li::before {
  content: counter(principle, decimal-leading-zero);
  color: var(--style-accent, var(--brass));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.principle-list h3 {
  grid-column: 2;
  font-size: 1.28rem;
}

.principle-list p {
  grid-column: 2;
  min-width: 0;
  margin-top: 8px;
  color: var(--muted);
}

.long-read-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid rgba(216, 200, 177, 0.82);
}

.site-header {
  background: rgba(248, 245, 239, 0.98);
  border-bottom-color: rgba(216, 200, 177, 0.72);
}

body[data-current-style="organic-modern"] {
  --hotspot-border: rgba(245, 238, 228, 0.94);
  --hotspot-glow: rgba(95, 111, 91, 0.48);
}

body[data-current-style="japandi"] {
  --hotspot-border: rgba(246, 242, 234, 0.94);
  --hotspot-glow: rgba(127, 152, 165, 0.48);
}

body[data-current-style="art-deco"] {
  --hotspot-border: rgba(243, 229, 209, 0.94);
  --hotspot-glow: rgba(185, 135, 63, 0.56);
}

.hotspot {
  width: 34px;
  height: 34px;
}

.hotspot-dot {
  width: 10px;
  height: 10px;
  background: var(--hotspot-dot, #17120f);
  border-color: var(--hotspot-border, rgba(235, 215, 175, 0.9));
  box-shadow:
    0 0 0 3px rgba(255, 246, 224, 0.28),
    0 0 14px var(--hotspot-glow, rgba(193, 139, 55, 0.42)),
    0 3px 10px rgba(0, 0, 0, 0.3);
}

.hotspot:hover .hotspot-dot,
.hotspot:focus-visible .hotspot-dot,
.hotspot.is-active .hotspot-dot {
  transform: scale(1.58);
  box-shadow:
    0 0 0 5px rgba(255, 246, 224, 0.46),
    0 0 22px var(--hotspot-glow, rgba(193, 139, 55, 0.62)),
    0 0 42px var(--hotspot-glow, rgba(193, 139, 55, 0.5)),
    0 9px 24px rgba(0, 0, 0, 0.36);
}

.partner-window-body {
  grid-template-columns: 1fr;
  padding: 16px;
}

.partner-window-visual,
.product-board-visual {
  display: none;
}

.product-window-category,
.product-category-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-window-category span:last-child {
  color: var(--style-accent, var(--clay));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--style-accent, var(--brass)), white 52%);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.76);
}

.category-icon::before,
.category-icon::after {
  content: "";
  position: absolute;
  border-color: var(--style-accent, var(--brass));
}

.category-icon::before {
  width: 13px;
  height: 13px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 3px;
  transform: rotate(45deg);
}

.category-icon-licht::before {
  width: 11px;
  height: 11px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 999px;
  box-shadow: 0 0 10px var(--hotspot-glow, rgba(193, 139, 55, 0.4));
  transform: none;
}

.category-icon-moebel::before {
  width: 16px;
  height: 11px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 7px 7px 3px 3px;
  transform: none;
}

.category-icon-textil::before {
  width: 17px;
  height: 12px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 4px;
  transform: skewX(-8deg);
}

.category-icon-objekt::before {
  width: 12px;
  height: 18px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 999px 999px 5px 5px;
  transform: none;
}

.category-icon-detail::before {
  width: 4px;
  height: 4px;
  background: var(--style-accent, var(--brass));
  border: 0;
  border-radius: 999px;
  box-shadow: 8px 3px 0 var(--style-accent, var(--brass)), -7px 5px 0 var(--style-accent, var(--brass));
  transform: none;
}

.category-icon-form::before {
  width: 15px;
  height: 19px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 999px 999px 4px 4px;
  transform: none;
}

.category-icon-ordnung::before {
  width: 16px;
  height: 13px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 3px;
  transform: none;
}

.category-icon-muster::before,
.category-icon-geometrie::before {
  width: 15px;
  height: 15px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 2px;
  transform: rotate(45deg);
}

.category-icon-muster::after,
.category-icon-geometrie::after {
  width: 17px;
  height: 1px;
  background: var(--style-accent, var(--brass));
  transform: rotate(-45deg);
}

.category-icon-tiefe::before,
.category-icon-glas::before {
  width: 15px;
  height: 15px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 999px;
  transform: none;
}

.category-icon-tiefe::after,
.category-icon-glas::after {
  width: 9px;
  height: 9px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 999px;
  opacity: 0.5;
  transform: translate(4px, -4px);
}

.category-icon-farbe::before {
  width: 15px;
  height: 15px;
  background: color-mix(in srgb, var(--style-accent, var(--brass)), transparent 62%);
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 999px;
  transform: none;
}

.category-icon-abendlicht::before {
  width: 10px;
  height: 14px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 999px 999px 4px 4px;
  box-shadow: 0 0 12px var(--hotspot-glow, rgba(193, 139, 55, 0.44));
  transform: none;
}

.category-icon-messing::before {
  width: 15px;
  height: 15px;
  background: color-mix(in srgb, var(--brass), white 52%);
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 999px;
  transform: none;
}

.category-icon-messing::after {
  width: 8px;
  height: 8px;
  border: 1px solid var(--style-accent, var(--brass));
  border-radius: 999px;
  transform: translate(4px, 4px);
}

.product-grid-categorized,
.product-accordion,
.room-discovery-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-board-section .product-grid,
.style-product-accordion .product-grid {
  grid-template-columns: 1fr;
}

.product-category-board {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(216, 200, 177, 0.82);
  border-radius: 8px;
}

.product-category-head {
  align-items: flex-start;
}

.product-category-head h3 {
  font-size: 1.42rem;
}

.product-category-head p:not(.eyebrow) {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 12px;
}

.product-card-board {
  min-height: 168px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border-color: color-mix(in srgb, var(--style-accent, var(--brass)), var(--line) 72%);
}

.style-product-accordion {
  overflow: hidden;
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid rgba(216, 200, 177, 0.86);
  border-radius: 8px;
  transition:
    border-color 520ms ease,
    box-shadow 620ms ease,
    background-color 520ms ease;
}

.style-product-accordion.is-open {
  background: rgba(255, 250, 241, 0.92);
  border-color: color-mix(in srgb, var(--brass), var(--line) 54%);
  box-shadow: 0 22px 58px rgba(25, 21, 16, 0.1);
}

.style-product-accordion summary,
.style-product-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.style-product-summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid var(--brass);
  border-bottom: 2px solid var(--brass);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 520ms ease;
}

.style-product-accordion.is-open .style-product-summary::after {
  transform: translateY(3px) rotate(225deg);
}

.style-product-accordion summary small,
.style-product-summary small {
  color: var(--muted);
  font-weight: 750;
}

.style-product-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 840ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 620ms ease;
}

.style-product-accordion.is-open .style-product-panel {
  opacity: 1;
}

.style-product-accordion .product-grid {
  padding: 0 18px 18px;
}

.room-discovery-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.room-discovery-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid rgba(216, 200, 177, 0.84);
  border-radius: 8px;
}

.room-discovery-grid .category-icon {
  display: none;
}

.room-discovery-grid article p {
  color: var(--muted);
}

.find-style-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px;
  background:
    linear-gradient(145deg, var(--style-card-glow, rgba(193, 139, 55, 0.16)), transparent 44%),
    rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(216, 200, 177, 0.86);
  border-radius: 8px;
}

.find-style-card p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 12px;
  color: var(--muted);
}

.product-card-copy {
  display: grid;
  gap: 10px;
}

.related-row {
  max-width: 1180px;
  margin: 0 auto;
}

.legal-page {
  max-width: 920px;
}

.legal-section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: 1.7rem;
}

.legal-warning {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 16px;
  color: #4c3827;
  background: #f4ead8;
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 64px;
  color: rgba(255, 255, 255, 0.78);
  background: #171018;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: white;
}

.footer-disclosure {
  max-width: 760px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.9rem;
  }

  .home-hero,
  .method-flow,
  .style-hero,
  .content-grid,
  .scene-shell,
  .featured-style,
  .home-essay-grid-balanced,
  .scene-block,
  .scene-block-reverse,
  .scene-viewer-grid,
  .editorial-article-section,
  .article-budget,
  .article-support-layout {
    grid-template-columns: 1fr;
  }

  .scene-block-reverse .scene-media-column,
  .scene-block-reverse .scene-info-column {
    order: initial;
  }

  .style-grid,
  .product-grid,
  .product-category-grid,
  .room-discovery-grid,
  .home-essay-grid,
  .manifest-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rule-grid,
  .visual-grid,
  .room-grid,
  .mistake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual,
  .featured-image,
  .scene-stage {
    min-height: 460px;
  }

  .scene-viewer-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 2.18rem;
    max-width: 100%;
  }

  h2 {
    font-size: 2rem;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }

  .top-nav {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-dropdown-panel {
    left: 0;
    width: min(86vw, 320px);
    transform: translate(0, 8px);
  }

  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    transform: translate(0, 0);
  }

  .brand-mark {
    width: 190px;
    height: 60px;
  }

  .home-hero,
  .section,
  .page-intro,
  .style-hero,
  .content-grid,
  .shop-scene-section,
  .legal-page {
    padding: 42px 18px;
  }

  .hero-copy,
  .page-intro,
  .style-hero-copy,
  .hero-copy > p:not(.eyebrow),
  .style-hero-copy > p {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .featured-image {
    min-height: 340px;
  }

  .scene-stage {
    min-height: 0;
  }

  .scene-viewer {
    padding: 14px;
  }

  .scene-viewer-grid,
  .partner-window-body,
  .principle-list li {
    grid-template-columns: 1fr;
  }

  .scene-controls {
    width: 100%;
    justify-content: space-between;
  }

  .proof-strip,
  .method-flow,
  .style-grid,
  .product-grid,
  .product-category-grid,
  .room-discovery-grid,
  .home-essay-grid,
  .manifest-grid,
  .timeline-grid,
  .rule-grid,
  .visual-grid,
  .room-grid,
  .mistake-grid,
  .detail-item-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .notice-band {
    margin-left: 18px;
    margin-right: 18px;
  }

  .method-flow {
    padding: 42px 18px;
  }

  .method-flow-list article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .principle-list h3,
  .principle-list p {
    grid-column: 1;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-drawer {
    position: relative;
    bottom: auto;
    z-index: 1;
    box-shadow: 0 -14px 48px rgba(34, 31, 27, 0.13);
  }

  .scene-block {
    gap: 18px;
    padding: 16px;
  }

  .scene-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }

  .style-article p {
    font-size: 1.03rem;
  }

  .style-article blockquote {
    font-size: 1.5rem;
  }

  .hotspot-popover {
    display: none;
  }
}
