:root {
  --ink: #070707;
  --black: #0d0b09;
  --charcoal: #17130f;
  --panel: #211a14;
  --panel-soft: #2a221a;
  --gold: #c89545;
  --gold-light: #f3c36b;
  --ivory: #f7f1e7;
  --soft: #d9cec0;
  --muted: #9b9083;
  --line: rgba(243, 195, 107, 0.18);
  --glass: rgba(255, 255, 255, 0.07);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(200, 149, 69, 0.14), transparent 28rem),
    linear-gradient(180deg, #080706 0%, #0d0b09 42%, #120f0c 100%);
  color: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open,
body.has-lightbox {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 84px;
  padding: 12px clamp(18px, 4vw, 42px);
  background: rgba(7, 7, 7, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 230px;
}

.brand-logo,
.footer-logo,
.hero-logo,
.contact-logo,
.branded-cta img {
  object-fit: contain;
}

.brand-logo {
  width: 58px;
  height: 58px;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0;
  color: var(--ivory);
}

.brand-line {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(7px, 0.85vw, 16px);
  flex: 1;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transition: width 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

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

.nav-dropdown-trigger {
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-dropdown-trigger::before {
  margin-right: 7px;
  color: var(--gold-light);
  content: "+";
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 50%;
  z-index: 90;
  width: 240px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 8, 7, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

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

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 4px;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-menu a:hover {
  background: rgba(243, 195, 107, 0.12);
  color: var(--gold-light);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(243, 195, 107, 0.5);
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--ivory);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 84px 0 auto 0;
  z-index: 70;
  max-height: calc(100svh - 84px);
  overflow: auto;
  padding: 22px;
  background: rgba(9, 8, 7, 0.97);
  border-bottom: 1px solid var(--line);
  transform: translateY(-120%);
  transition: transform 240ms ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  gap: 6px;
}

.mobile-menu .nav-link {
  min-height: 48px;
  font-size: 0.82rem;
}

.mobile-menu-cta {
  width: 100%;
  margin-top: 18px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88svh;
  overflow: hidden;
  background-color: #0b0907;
  background-position: center;
  background-size: cover;
}

.home-hero {
  background-image: url("../images/backgrounds/hero-showroom.png");
}

.hero-overlay,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.82) 34%, rgba(7, 7, 7, 0.12) 72%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0) 34%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.46fr);
  align-items: end;
  gap: clamp(30px, 5vw, 70px);
  padding: 76px 0 64px;
}

.hero-copy {
  max-width: 720px;
}

.hero-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.3rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.65rem);
}

h4 {
  font-size: clamp(1.38rem, 2.4vw, 2.25rem);
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(1.02rem, 1.8vw, 1.26rem);
}

.hero-actions,
.cta-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1209;
}

.btn-outline {
  border-color: rgba(243, 195, 107, 0.55);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.02);
}

.btn-compact {
  min-height: 40px;
  padding: 0 13px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.hero-panel {
  align-self: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 9, 8, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.hero-panel p,
.section-heading p,
.feature-card p,
.product-card p,
.project-card p,
.catalog-card p,
.series-card p,
.image-band-copy p,
.branded-cta p,
.page-hero p,
.contact-method span,
.faq-item p {
  color: var(--soft);
}

.section {
  padding: clamp(72px, 9vw, 126px) 0;
}

.compact-section {
  min-height: 54vh;
}

.alt-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.018);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.section-heading p {
  margin: 18px 0 0;
  max-width: 690px;
}

.stat-band {
  padding: 28px 0;
  background: #f4eadc;
  color: #1a1209;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(26, 18, 9, 0.15);
}

.stat-grid div {
  min-height: 110px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 18px;
  background: #f4eadc;
  text-align: center;
}

.stat-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.stat-grid span {
  color: #5b4b39;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-grid,
.product-grid,
.project-grid,
.catalog-grid,
.series-grid,
.feature-grid,
.capability-grid,
.project-service-grid {
  display: grid;
  gap: 22px;
}

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

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

.collection-card {
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.collection-card a {
  position: relative;
  display: block;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
}

.collection-card img,
.project-card img,
.series-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.collection-card:hover img,
.project-card:hover img,
.series-card:hover img,
.product-card:hover img {
  transform: scale(1.045);
}

.collection-card::after,
.collection-card-content {
  position: absolute;
  inset: auto 0 0;
}

.collection-card a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.76) 68%, rgba(0, 0, 0, 0.95) 100%);
  content: "";
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(243, 195, 107, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.collection-card:hover .card-shine {
  opacity: 1;
}

.collection-card-content {
  z-index: 1;
  padding: 24px;
}

.collection-card-content p,
.project-card-body span {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-card-content h3 {
  margin-bottom: 10px;
}

.collection-card-content span {
  color: var(--soft);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

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

.feature-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(243, 195, 107, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 8px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card p {
  margin-bottom: 0;
}

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

.product-card {
  display: grid;
  grid-template-rows: 260px auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: #15110e;
}

.product-media {
  position: relative;
  display: block;
  width: 100%;
  height: 260px;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--panel-soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.product-media span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.64);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-body,
.project-card-body {
  padding: 22px;
}

.product-card h3 {
  margin-bottom: 12px;
}

.product-card p {
  margin: 0 0 16px;
}

.product-meta-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.product-meta-list div {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.product-meta-list dt,
.gallery-filter-block p {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-meta-list dd {
  margin: 0;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.product-card-actions,
.quick-view-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.product-card-actions .text-link {
  min-height: 40px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.badge-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(243, 195, 107, 0.25);
  color: var(--gold-light);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link::after {
  margin-left: 8px;
  content: "+";
}

.image-band {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(33, 26, 20, 0.88)),
    #0b0907;
}

.image-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}

.image-band-media {
  min-height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-band-media img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.image-band-copy p {
  max-width: 620px;
}

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

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

.project-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: #15110e;
}

.project-card button {
  width: 100%;
  height: 280px;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--panel-soft);
}

.project-card-body p {
  margin-bottom: 12px;
}

.branded-cta {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(243, 195, 107, 0.12), rgba(255, 255, 255, 0.025)),
    #15110e;
}

.branded-cta img {
  width: 96px;
  height: 96px;
}

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

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

.catalog-card {
  display: grid;
  gap: 20px;
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: #15110e;
}

.catalog-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.catalog-card p {
  margin: 12px 0 0;
}

.catalog-card .btn {
  align-self: end;
}

.ai-assistant-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(243, 195, 107, 0.08), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 86% 12%, rgba(243, 195, 107, 0.11), transparent 32rem),
    #0b0907;
}

.ai-entry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.ai-preview-card {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82)),
    url("../images/backgrounds/collections-display.png") center / cover;
  box-shadow: var(--shadow);
}

.ai-preview-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.ai-preview-card span,
.assistant-summary > span,
.assistant-brief span,
.dimension-grid span,
.budget-control > span,
.qr-card span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-preview-card strong {
  max-width: 420px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.18;
}

.ai-preview-card p {
  margin: 0;
  color: var(--soft);
}

.assistant-shell {
  margin-top: clamp(34px, 5vw, 56px);
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(11, 9, 7, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.assistant-shell[hidden] {
  display: none;
}

.assistant-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.assistant-topbar h3 {
  max-width: 760px;
  font-size: clamp(1.8rem, 4vw, 3.15rem);
}

.assistant-progress {
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.assistant-progress span {
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.assistant-progress div {
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(243, 195, 107, 0.25);
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.28);
}

.assistant-progress i {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 260ms ease;
}

.assistant-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin: 24px 0;
}

.assistant-brief label,
.dimension-grid label {
  display: grid;
  gap: 8px;
}

.assistant-brief input,
.dimension-grid input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
  outline: none;
}

.assistant-brief input:focus,
.dimension-grid input:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.assistant-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.assistant-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.assistant-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.assistant-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.assistant-summary dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assistant-summary dd {
  margin: 0;
  color: var(--ivory);
  text-align: right;
}

.assistant-calculation {
  padding: 16px;
  border: 1px solid rgba(243, 195, 107, 0.18);
  background: rgba(243, 195, 107, 0.06);
}

.assistant-calculation strong,
.assistant-live-calc strong,
.recommendation-explanation strong {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.assistant-calculation p,
.assistant-live-calc p,
.recommendation-explanation p {
  margin: 8px 0 0;
  color: var(--soft);
}

.assistant-calculation ul {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  color: var(--soft);
  list-style: none;
}

.assistant-step-panel {
  min-height: 480px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.assistant-step-panel.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.assistant-step-copy {
  margin-bottom: 20px;
}

.assistant-step-copy p {
  margin: 0;
  color: var(--soft);
}

.assistant-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.assistant-option-card {
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(243, 195, 107, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  color: var(--ivory);
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.assistant-option-card:hover,
.assistant-option-card.is-selected {
  border-color: var(--gold-light);
  background: rgba(243, 195, 107, 0.13);
  transform: translateY(-2px);
}

.assistant-option-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(243, 195, 107, 0.42);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.assistant-option-card strong {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.2;
}

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

.style-option-card {
  min-height: 210px;
  align-content: end;
}

.style-option-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 500ms ease, opacity 180ms ease;
}

.style-option-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 76%);
  content: "";
}

.style-option-card:hover img,
.style-option-card.is-selected img {
  opacity: 0.76;
  transform: scale(1.04);
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.assistant-live-calc {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.assistant-live-calc ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.assistant-live-calc li {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
}

.budget-control {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.budget-control strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.budget-control input[type="range"] {
  width: 100%;
  accent-color: var(--gold-light);
}

.budget-ticks {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.budget-ticks span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.assistant-controls {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.assistant-controls .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.assistant-message {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(243, 195, 107, 0.25);
  background: rgba(243, 195, 107, 0.08);
  color: var(--gold-light);
}

.assistant-results {
  margin-top: clamp(34px, 5vw, 56px);
  padding-top: clamp(26px, 4vw, 42px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.assistant-results[hidden] {
  display: none;
}

.assistant-results-header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.7fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.assistant-results-header h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.assistant-results-header p {
  color: var(--soft);
}

.assistant-result-actions,
.recommendation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.assistant-result-actions {
  justify-content: flex-end;
}

.assistant-result-actions .btn,
.recommendation-actions .btn {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.68rem;
}

.recommendation-grid {
  display: grid;
  gap: 18px;
}

.recommendation-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: #15110e;
}

.recommendation-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--panel-soft);
}

.recommendation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.recommendation-card:hover .recommendation-media img {
  transform: scale(1.04);
}

.recommendation-media span {
  position: absolute;
  left: 16px;
  top: 16px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(243, 195, 107, 0.48);
  background: rgba(0, 0, 0, 0.64);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommendation-body {
  padding: clamp(22px, 4vw, 34px);
}

.recommendation-body > p {
  color: var(--soft);
}

.recommendation-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.recommendation-specs div {
  display: grid;
  gap: 5px;
  min-height: 88px;
  padding: 14px;
  background: #18130f;
}

.recommendation-specs div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.recommendation-specs span {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommendation-specs strong {
  color: var(--ivory);
  font-size: 0.9rem;
  line-height: 1.35;
}

.recommendation-explanation {
  padding: 18px;
  border: 1px solid rgba(243, 195, 107, 0.22);
  background: rgba(243, 195, 107, 0.06);
}

.recommendation-actions {
  margin-top: 20px;
}

.studio-field span,
.upload-zone span,
.control-grid span,
.planner-form label span,
.dashboard-grid span,
.design-notes-card strong,
.analysis-card strong,
.designer-note::before {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-designer-hero {
  background-image: url("../images/projects/hotel-lounge-project.png");
}

.planner-hero {
  background-image: url("../images/backgrounds/factory-showroom.png");
  background-position: 50% 46%;
}

.design-studio-section,
.planner-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(243, 195, 107, 0.12), transparent 28rem),
    #0b0907;
}

.studio-grid,
.product-selection-layout,
.controls-results-grid,
.planner-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.studio-grid {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
}

.product-selection-layout,
.controls-results-grid,
.planner-layout {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
}

.studio-panel,
.planner-dashboard {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(243, 195, 107, 0.07), rgba(255, 255, 255, 0.025)),
    #15110e;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.studio-panel {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.planner-dashboard {
  padding: clamp(22px, 4vw, 34px);
}

.compact-heading {
  margin-bottom: 0;
}

.compact-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.studio-field,
.planner-form label,
.design-inquiry-form label,
.control-grid label {
  display: grid;
  gap: 8px;
}

.studio-field input,
.studio-field select,
.planner-form input,
.planner-form select,
.design-inquiry-form input,
.design-inquiry-form textarea,
.control-grid select,
.dimension-grid input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
  outline: none;
}

.studio-field select,
.planner-form select,
.control-grid select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-light) 50%), linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.design-inquiry-form textarea {
  padding: 14px;
  resize: vertical;
}

.upload-zone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 22px;
  border: 1px dashed rgba(243, 195, 107, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(243, 195, 107, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.18);
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease;
}

.upload-zone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.upload-zone strong {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.15;
}

.upload-zone.is-dragging,
.upload-zone:hover {
  border-color: var(--gold-light);
  background: rgba(243, 195, 107, 0.12);
}

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

.analysis-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.analysis-card p,
.analysis-card li,
.designer-note,
.design-notes-card p {
  color: var(--soft);
}

.analysis-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.studio-canvas-wrap {
  min-width: 0;
}

.visualizer-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.visualizer-toolbar h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.room-visualizer {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050403;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.room-visualizer > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.room-visualizer::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 18%, rgba(255, 204, 123, 0.1), transparent 28rem);
  content: "";
  pointer-events: none;
}

.fixture-layer {
  position: absolute;
  z-index: 3;
  display: grid;
  justify-items: center;
  pointer-events: none;
  transform-origin: top center;
  transition: left 180ms ease, top 180ms ease, width 180ms ease, transform 180ms ease, filter 180ms ease;
}

.fixture-layer img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: cover;
  border-radius: 999px;
  clip-path: ellipse(46% 34% at 50% 32%);
  opacity: 0.82;
  mix-blend-mode: screen;
}

.fixture-glow {
  position: absolute;
  top: 42px;
  left: 50%;
  width: min(70vw, 520px);
  transform: translateX(-50%);
  filter: blur(18px);
  pointer-events: none;
}

.mounting-guide {
  position: absolute;
  z-index: 4;
  width: 1px;
  height: 96px;
  background: linear-gradient(var(--gold-light), transparent);
  opacity: 0.85;
  pointer-events: none;
}

.mounting-guide span {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.46);
}

.designer-note {
  position: relative;
  margin: 18px 0 0;
  padding: 20px 22px 20px 24px;
  border: 1px solid rgba(243, 195, 107, 0.22);
  border-radius: var(--radius);
  background: rgba(243, 195, 107, 0.06);
}

.designer-note::before {
  display: block;
  margin-bottom: 8px;
  content: "AI design recommendation";
}

.visual-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.visual-product-card,
.planner-product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: #15110e;
}

.visual-product-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.visual-product-card:hover,
.visual-product-card.is-selected {
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.visual-product-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.visual-product-card div {
  padding: 18px;
}

.visual-product-card p {
  color: var(--soft);
}

.visual-product-card span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.control-grid input[type="range"] {
  width: 100%;
  accent-color: var(--gold-light);
}

.design-inquiry-form,
.planner-form {
  display: grid;
  gap: 16px;
}

.studio-actions,
.planner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.studio-actions .btn,
.planner-actions .btn {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.68rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-grid article {
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  background: #15110e;
}

.dashboard-grid strong {
  color: var(--ivory);
  line-height: 1.32;
}

.design-notes-card {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(243, 195, 107, 0.22);
  border-radius: var(--radius);
  background: rgba(243, 195, 107, 0.06);
}

.planner-actions {
  margin: 20px 0;
}

.planner-product-list {
  display: grid;
  gap: 16px;
}

.planner-product-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
}

.planner-product-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.planner-product-card > div {
  padding: 22px;
}

.planner-product-card > div > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(243, 195, 107, 0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.planner-product-card p {
  color: var(--soft);
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.66), rgba(7, 7, 7, 0.96)),
    url("../images/backgrounds/collections-display.png") center / cover;
}

.final-cta .container {
  max-width: 820px;
}

.final-cta .cta-actions {
  justify-content: center;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 440px;
  overflow: hidden;
  background-color: #0b0907;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.54), rgba(7, 7, 7, 0.1));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 104px 0 70px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.collections-hero,
.gallery-hero,
.series-hero,
.catalogs-hero {
  background-image: url("../images/backgrounds/collections-display.png");
}

.projects-hero {
  background-image: url("../images/projects/hotel-lounge-project.png");
}

.customization-hero,
.company-hero {
  background-image: url("../images/backgrounds/factory-showroom.png");
}

.contact-hero {
  background-image: url("../images/backgrounds/hero-showroom.png");
  background-position: 70% 30%;
}

.toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-field {
  display: grid;
  gap: 8px;
  width: min(100%, 520px);
}

.search-field span,
.contact-form label span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-field input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ivory);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.search-field input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
}

.search-field input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}

.filter-chip {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(243, 195, 107, 0.28);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-chip.is-active,
.filter-chip:hover {
  border-color: var(--gold-light);
  background: rgba(243, 195, 107, 0.14);
  color: var(--gold-light);
}

.gallery-filter-block {
  margin-top: 22px;
}

.gallery-filter-block p {
  margin: 0 0 12px;
}

.gallery-grid {
  margin-top: 34px;
}

.gallery-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #15110e;
}

.series-grid {
  display: flex;
  align-items: stretch;
  min-height: clamp(480px, 58vw, 620px);
  gap: 14px;
}

.series-card {
  position: relative;
  flex: 1 1 0;
  min-width: 84px;
  min-height: clamp(480px, 58vw, 620px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #15110e;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition:
    flex 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.series-card:hover,
.series-card:focus-within,
.series-card.is-selected {
  flex: 3.4 1 0;
  border-color: rgba(214, 173, 96, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.series-card:focus-visible {
  outline: 2px solid rgba(214, 173, 96, 0.82);
  outline-offset: 4px;
}

.series-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0d0b09;
}

.series-card-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 22% 18%, rgba(214, 173, 96, 0.22), transparent 34%);
  content: "";
  pointer-events: none;
}

.series-card-media img {
  min-height: 100%;
}

.series-card-media span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 12px;
  border: 1px solid rgba(214, 173, 96, 0.34);
  border-radius: 999px;
  background: rgba(11, 9, 8, 0.78);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.series-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: clamp(18px, 2.4vw, 28px);
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.08) 0%, rgba(9, 8, 7, 0.82) 44%, rgba(9, 8, 7, 0.96) 100%);
}

.series-card-body h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.18rem, 1.8vw, 1.8rem);
}

.series-card-body > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.series-card:hover .series-card-body > p:not(.eyebrow),
.series-card:focus-within .series-card-body > p:not(.eyebrow),
.series-card.is-selected .series-card-body > p:not(.eyebrow) {
  opacity: 1;
  transform: translateY(0);
}

.series-card p:last-child,
.series-card-panel p {
  margin-bottom: 0;
}

.series-card-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition:
    max-height 360ms ease,
    opacity 260ms ease,
    transform 260ms ease,
    margin-top 260ms ease;
}

.series-card:hover .series-card-panel,
.series-card:focus-within .series-card-panel,
.series-card.is-selected .series-card-panel {
  max-height: 230px;
  margin-top: 18px;
  opacity: 1;
  transform: translateY(0);
}

.series-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.series-card-actions .btn {
  width: auto;
  min-height: 42px;
}

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

.process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.process-line li {
  position: relative;
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: #15110e;
}

.process-line li::before {
  position: absolute;
  top: 39px;
  left: calc(100% - 7px);
  z-index: 1;
  width: 30px;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-line li:last-child::before {
  display: none;
}

.process-line span {
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-line strong {
  display: block;
  margin: 18px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.process-line p {
  margin: 0;
  color: var(--soft);
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: #15110e;
}

.faq-item summary {
  min-height: 64px;
  padding: 18px 22px;
  color: var(--ivory);
  font-weight: 800;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.contact-form,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(243, 195, 107, 0.08), rgba(255, 255, 255, 0.02)),
    #15110e;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.form-status {
  display: none;
  margin: 0;
  color: var(--gold-light);
}

.form-status.is-visible {
  display: block;
}

.contact-panel {
  padding: clamp(24px, 4vw, 34px);
}

.contact-logo {
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.contact-method strong {
  color: var(--ivory);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.qr-card {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.qr-card span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qr-card img {
  width: min(100%, 190px);
  aspect-ratio: 1 / 1;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
}

.qr-card p {
  margin: 0;
  color: var(--soft);
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 250px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(243, 195, 107, 0.12), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 16px);
  text-align: center;
}

.map-placeholder span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070605;
}

.footer-grid {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 78px) 0 34px;
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(3, minmax(0, 0.75fr));
  gap: clamp(24px, 4vw, 44px);
}

.footer-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
}

.footer-brand p,
.site-footer address {
  color: var(--soft);
}

.site-footer h2 {
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.site-footer address a {
  color: var(--soft);
  overflow-wrap: anywhere;
}

.footer-links a:hover,
.site-footer address a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 18px 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
}

.map-placeholder p {
  margin: 6px 0 0;
  color: var(--soft);
}

.detail-hero {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-main-image {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-soft);
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.detail-thumbs button {
  aspect-ratio: 1 / 0.76;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
}

.detail-thumbs button.is-active,
.detail-thumbs button:hover {
  border-color: var(--gold-light);
}

.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  position: sticky;
  top: 110px;
}

.detail-copy h1 {
  font-size: clamp(3rem, 5.3vw, 5.45rem);
}

.detail-copy p:not(.eyebrow) {
  color: var(--soft);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-grid div {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  background: #15110e;
}

.spec-grid span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec-grid strong {
  color: var(--ivory);
}

.detail-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.detail-info-panel,
.detail-inquiry-panel {
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(243, 195, 107, 0.08), rgba(255, 255, 255, 0.018)),
    #15110e;
}

.detail-inquiry-panel {
  grid-column: 1 / -1;
}

.detail-info-panel h2,
.detail-inquiry-panel h2,
.quick-view-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(243, 195, 107, 0.28);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-form {
  margin-top: 24px;
}

.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.quick-view-modal.is-open {
  display: flex;
}

.quick-view-panel {
  width: min(100%, 1040px);
  max-height: calc(100svh - 48px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #100d0a;
  box-shadow: var(--shadow);
}

.quick-view-media {
  min-height: 520px;
  padding: 0;
  border: 0;
  background: #0a0908;
}

.quick-view-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.quick-view-copy {
  padding: clamp(24px, 4vw, 42px);
}

.quick-view-copy p:not(.eyebrow) {
  color: var(--soft);
}

.product-meta-list-large {
  margin-top: 18px;
}

.quick-view-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #15110e;
  text-align: center;
}

.empty-state p {
  color: var(--soft);
}

.admin-export-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.admin-export-bar h2 {
  margin: 4px 0 0;
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.review-metric-card {
  min-height: 118px;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 8px;
  background: #15110e;
}

.review-metric-card span,
.review-card-header span,
.review-fields span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.review-metric-card strong {
  color: var(--ivory);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.review-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.review-tabs .filter-chip span {
  margin-left: 8px;
  color: var(--gold-light);
}

.review-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: #15110e;
}

.review-card p {
  color: var(--soft);
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.review-card-header h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.review-state-pill {
  padding: 7px 10px;
  border: 1px solid rgba(215, 177, 106, 0.28);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.review-thumb {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.review-thumb.is-cover {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 1px rgba(215, 177, 106, 0.2);
}

.review-thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 4px;
  background: var(--panel-soft);
}

.review-thumb div,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.review-thumb button,
.review-actions button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 800;
}

.review-thumb button:hover,
.review-actions button:hover {
  border-color: rgba(215, 177, 106, 0.55);
  color: var(--gold-light);
}

.review-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  margin: 16px 0;
}

.review-fields label {
  display: grid;
  gap: 8px;
}

.review-fields select {
  min-height: 44px;
  min-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: #0f0d0b;
  color: var(--ivory);
  padding: 0 12px;
}

.review-path-list {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.review-path-list code {
  display: block;
  overflow-wrap: anywhere;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: var(--soft);
  background: rgba(0, 0, 0, 0.22);
}

.review-raw-image {
  max-width: 260px;
  margin: 14px 0;
}

.review-raw-image img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 6px;
  background: var(--panel-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1180px);
  max-height: 82svh;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-meta {
  position: absolute;
  left: 32px;
  bottom: 24px;
  right: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

.lightbox-meta p {
  margin: 0;
  color: var(--soft);
}

.lightbox-meta span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-close:hover {
  border-color: rgba(215, 177, 106, 0.72);
  background: rgba(215, 177, 106, 0.16);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1380px) {
  .site-header {
    gap: 12px;
    padding-inline: 22px;
  }

  .brand-lockup {
    min-width: 220px;
  }

  .desktop-nav {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.66rem;
    letter-spacing: 0.07em;
  }

  .header-contact {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.7rem;
  }
}

@media (max-width: 1120px) {
  .brand-lockup {
    min-width: auto;
  }

  .brand-copy {
    display: none;
  }

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

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

@media (max-width: 1240px) {
  .collection-grid,
  .collection-grid-large,
  .product-grid,
  .capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .visual-product-card {
    grid-template-columns: 210px minmax(0, 1fr);
  }

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

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

  .process-line li::before {
    display: none;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    min-height: 76px;
  }

  .mobile-menu {
    inset: 76px 0 auto 0;
    max-height: calc(100svh - 76px);
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-line {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .image-band-grid,
  .ai-entry-grid,
  .assistant-layout,
  .assistant-results-header,
  .studio-grid,
  .product-selection-layout,
  .controls-results-grid,
  .planner-layout,
  .contact-grid,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-extra-grid,
  .quick-view-panel {
    grid-template-columns: 1fr;
  }

  .quick-view-panel {
    width: min(100%, 760px);
  }

  .quick-view-media,
  .quick-view-media img {
    min-height: 380px;
  }

  .hero-panel,
  .assistant-summary,
  .detail-copy {
    position: static;
  }

  .room-visualizer,
  .room-visualizer > img {
    min-height: 520px;
  }

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

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 56px;
    padding-bottom: 34px;
    gap: 24px;
  }

  .stat-grid,
  .feature-grid,
  .project-grid,
  .project-grid-large,
  .catalog-grid,
  .project-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branded-cta {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .branded-cta .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .assistant-topbar,
  .assistant-brief {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .assistant-topbar {
    display: grid;
  }

  .assistant-progress span {
    text-align: left;
  }

  .assistant-result-actions {
    justify-content: flex-start;
  }

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

  .recommendation-media {
    min-height: 330px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .hero-logo {
    width: 82px;
    height: 82px;
  }

  h1 {
    font-size: clamp(2.5rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
  }

  .hero-overlay,
  .page-hero::before {
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.76), rgba(7, 7, 7, 0.96));
  }

  .home-hero {
    background-position: 67% 50%;
  }

  .hero-grid {
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .hero-panel {
    padding: 22px;
  }

  .hero-actions,
  .cta-actions,
  .detail-actions {
    flex-direction: column;
  }

  .product-card-actions,
  .quick-view-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card-actions .text-link,
  .quick-view-actions .text-link {
    justify-content: center;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .stat-grid,
  .collection-grid,
  .collection-grid-large,
  .product-grid,
  .project-grid,
  .project-grid-large,
  .catalog-grid,
  .catalog-grid-large,
  .series-grid,
  .feature-grid,
  .capability-grid,
  .project-service-grid,
  .process-line,
  .assistant-option-grid,
  .style-grid,
  .dimension-grid,
  .assistant-live-calc ul,
  .recommendation-specs,
  .studio-dimensions,
  .control-grid,
  .dashboard-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .series-grid {
    flex-direction: column;
    min-height: auto;
  }

  .series-card,
  .series-card:hover,
  .series-card:focus-within,
  .series-card.is-selected {
    flex: none;
    min-width: 0;
    min-height: 390px;
    transform: none;
  }

  .series-card-body > p:not(.eyebrow),
  .series-card:hover .series-card-body > p:not(.eyebrow),
  .series-card:focus-within .series-card-body > p:not(.eyebrow),
  .series-card.is-selected .series-card-body > p:not(.eyebrow) {
    opacity: 1;
    transform: none;
  }

  .series-card-panel,
  .series-card:hover .series-card-panel,
  .series-card:focus-within .series-card-panel,
  .series-card.is-selected .series-card-panel {
    max-height: none;
    margin-top: 16px;
    opacity: 1;
    transform: none;
  }

  .series-card-actions .btn {
    width: 100%;
  }

  .admin-export-bar,
  .review-card-header,
  .review-fields {
    align-items: stretch;
    flex-direction: column;
  }

  .review-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-fields select {
    width: 100%;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .collection-card,
  .collection-card a {
    min-height: 340px;
  }

  .product-card {
    grid-template-rows: 240px auto;
  }

  .product-media {
    height: 240px;
  }

  .image-band-media,
  .image-band-media img {
    min-height: 320px;
  }

  .branded-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .branded-cta img,
  .contact-logo {
    margin-inline: auto;
  }

  .filter-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filter-chip {
    width: 100%;
  }

  .quick-view-modal {
    padding: 14px;
  }

  .quick-view-media,
  .quick-view-media img {
    min-height: 300px;
  }

  .ai-preview-card {
    min-height: 300px;
  }

  .visualizer-toolbar,
  .studio-actions,
  .planner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .room-visualizer,
  .room-visualizer > img {
    min-height: 360px;
  }

  .fixture-layer img {
    max-width: 240px;
  }

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

  .visual-product-card img,
  .planner-product-card img {
    min-height: 220px;
  }

  .assistant-shell {
    padding: 18px;
  }

  .assistant-summary dl div {
    display: grid;
  }

  .assistant-summary dd {
    text-align: left;
  }

  .assistant-option-card {
    min-height: 112px;
  }

  .style-option-card {
    min-height: 180px;
  }

  .budget-ticks {
    grid-template-columns: 1fr;
  }

  .budget-ticks span {
    text-align: left;
  }

  .assistant-controls,
  .assistant-result-actions,
  .recommendation-actions {
    flex-direction: column;
  }

  .recommendation-media {
    min-height: 260px;
  }

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

  .lightbox {
    padding: 16px;
  }

  .lightbox img {
    max-height: 78svh;
  }

  .lightbox-meta {
    left: 16px;
    right: 16px;
    bottom: 12px;
    align-items: flex-end;
  }

  .lightbox-meta p {
    max-width: 72%;
  }

  .lightbox-nav {
    width: 40px;
    height: 54px;
    font-size: 2.4rem;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
