:root {
  --stone: #f7f5f0;
  --paper: #fffdf8;
  --ink: #23211f;
  --muted: #746f68;
  --line: #e5ded2;
  --gold: #b88a44;
  --clay: #9b6a55;
  --sage: #6f7d69;
  --charcoal: #171717;
  --shadow: 0 22px 60px rgba(24, 21, 18, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf8 0%, #f8f4ec 46%, #fffdf8 100%);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}
.showroom-nav {
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 222, 210, .75);
  box-shadow: 0 10px 28px rgba(35, 33, 31, .045);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
}
.brand-mark span { color: var(--gold); }
.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}
.navbar-brand .brand-logo {
  height: 42px;
}
.footer-brand {
  margin-bottom: .9rem;
}
.footer-brand .brand-logo {
  height: 50px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-left: auto;
}
.navbar-nav {
  gap: .35rem;
}
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 42px;
  min-height: 42px;
  margin-left: .8rem;
  margin-right: .85rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: width .24s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-search.is-open,
.nav-search:focus-within {
  width: 230px;
  border-color: rgba(184, 138, 68, .68);
  background: #fffdf8;
  box-shadow: 0 0 0 .18rem rgba(184, 138, 68, .12);
}
.nav-search input {
  width: 0;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: .55rem 0;
  opacity: 0;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 700;
  pointer-events: none;
  transition: width .24s ease, opacity .18s ease, padding .24s ease;
}
.nav-search.is-open input,
.nav-search:focus-within input {
  width: 100%;
  padding: .55rem .2rem .55rem .75rem;
  opacity: 1;
  pointer-events: auto;
}
.nav-search input::placeholder {
  color: rgba(116, 111, 104, .78);
}
.nav-search button {
  width: 42px;
  min-width: 42px;
  align-self: stretch;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--gold);
  transition: color .2s ease, background .2s ease;
}
.nav-search button:hover {
  color: var(--charcoal);
  background: transparent;
}
.nav-search.is-open button:hover,
.nav-search:focus-within button:hover {
  background: rgba(184, 138, 68, .1);
}
.nav-search-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.nav-search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}
.nav-search-suggestions {
  position: absolute;
  top: calc(100% + .6rem);
  right: 0;
  z-index: 1300;
  width: min(360px, calc(100vw - 1.5rem));
  padding: .45rem;
  border: 1px solid rgba(229, 222, 210, .95);
  border-radius: 8px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 24px 55px rgba(24, 21, 18, .16);
}
.nav-search-suggestions[hidden] {
  display: none;
}
.suggestion-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .55rem;
  border-radius: 8px;
  transition: background .18s ease, transform .18s ease;
}
.suggestion-item:hover {
  background: rgba(184, 138, 68, .1);
  transform: translateX(2px);
}
.suggestion-item img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}
.suggestion-copy {
  min-width: 0;
}
.suggestion-label {
  display: block;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}
.suggestion-title {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.suggestion-subtitle {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-link {
  position: relative;
  padding: .6rem .7rem !important;
  font-weight: 700;
  color: var(--ink);
  transition: color .2s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .35rem;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: .38rem;
}
.language-switcher a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: .78rem;
  line-height: 1;
  padding: 0;
  transition: background .2s ease, color .2s ease;
}
.language-switcher a.active {
  color: inherit;
}
.language-switcher img {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.language-divider {
  color: rgba(35, 33, 31, .45);
  font-weight: 700;
  line-height: 1;
}
.message-wrap {
  position: fixed;
  top: 82px;
  right: 20px;
  z-index: 1200;
  width: min(420px, calc(100% - 40px));
}
.hero-section {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
  padding: 9.5rem 0 5rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 11, 10, .82), rgba(15, 14, 13, .5), rgba(15, 14, 13, .25)),
    linear-gradient(180deg, rgba(12, 11, 10, .32), rgba(12, 11, 10, .06) 42%, rgba(12, 11, 10, .28));
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .85s ease, transform 5.8s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.03);
}
.hero-slideshow-controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-slideshow-control {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: white;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
  pointer-events: auto;
  transform: translateY(-50%);
  transition: color .2s ease, transform .2s ease;
}
.hero-slideshow-control[data-hero-prev] {
  left: clamp(.9rem, 3vw, 2.5rem);
}
.hero-slideshow-control[data-hero-next] {
  right: clamp(.9rem, 3vw, 2.5rem);
}
.hero-slideshow-control:hover,
.hero-slideshow-control:focus-visible {
  color: var(--gold);
  transform: translateY(-50%) scale(1.08);
  outline: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}
.hero-content h1 { font-size: clamp(3.1rem, 8vw, 6.9rem); margin-bottom: 1.2rem; }
.hero-content p { max-width: 680px; font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn { border-radius: 8px; padding: .85rem 1.25rem; font-weight: 700; }
.btn-gold { background: var(--gold); color: white; border-color: var(--gold); }
.btn-gold:hover {
  background: #a67937;
  color: white;
  transform: translateY(-1px);
}
.btn-dark { background: var(--charcoal); border-color: var(--charcoal); }
.btn,
.section-link,
.cta-phone {
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.section-pad { padding: 7rem 0; }
.first-section { padding-top: 9rem; }
.section-heading { max-width: 760px; margin-bottom: 2.2rem; }
.section-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.section-note {
  max-width: 420px;
  margin: 0 0 .35rem;
  color: var(--muted);
}
.section-heading-side {
  display: grid;
  justify-items: end;
  gap: .6rem;
}
.section-link {
  margin-bottom: .55rem;
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}
.section-link::after {
  content: " ->";
  color: var(--clay);
}
.section-link:hover {
  color: var(--clay);
  transform: translateX(2px);
}
.section-heading h2, .split-grid h2, .about-preview h2, .cta-band h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}
.eyebrow {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: .8rem;
}
.surface-band {
  background:
    linear-gradient(180deg, #f5efe6, #fbfaf6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.catalog-section {
  background:
    linear-gradient(180deg, rgba(247,245,240,.8), rgba(255,253,248,1)),
    radial-gradient(circle at 8% 0%, rgba(111, 125, 105, .12), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(155, 106, 85, .12), transparent 28%);
}
.seo-copy {
  max-width: 920px;
  margin: 0 0 2rem;
  padding: 1.35rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 253, 248, .72);
}
.seo-copy h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
}
.seo-copy p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.product-carousel {
  position: relative;
  overflow: hidden;
}
.product-rail {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: .15rem .1rem .8rem;
}
.product-rail::-webkit-scrollbar {
  display: none;
}
.product-rail .product-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
}
.carousel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
  flex-wrap: wrap;
}
.carousel-actions .section-link {
  margin-left: .3rem;
}
.carousel-control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(24, 21, 18, .06);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.carousel-control:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 138, 68, .55);
  color: var(--gold);
}
.product-card {
  background: white;
  border: 1px solid rgba(229, 222, 210, .9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(24, 21, 18, .08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 138, 68, .38);
  box-shadow: var(--shadow);
}
.product-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ece6dc;
}
.product-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), transparent 42%, rgba(0,0,0,.34));
  opacity: .85;
  pointer-events: none;
}
.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  transition: transform .35s ease;
}
.product-card:hover img { transform: scale(1.045); }
.product-category-pill,
.product-featured-pill {
  position: absolute;
  z-index: 1;
  max-width: calc(100% - 1.5rem);
  border-radius: 8px;
  padding: .42rem .62rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0;
}
.product-category-pill {
  left: .75rem;
  bottom: .75rem;
  color: white;
  background: rgba(23, 23, 23, .78);
  backdrop-filter: blur(12px);
}
.product-featured-pill {
  top: .75rem;
  right: .75rem;
  color: var(--ink);
  background: rgba(255, 253, 248, .9);
}
.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-brand-label {
  align-self: flex-start;
  margin-bottom: .65rem;
  border-left: 3px solid var(--gold);
  padding-left: .5rem;
  color: var(--clay);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.product-card h3 {
  font-size: 1.42rem;
  margin-bottom: .65rem;
}
.product-card p, .muted { color: var(--muted); }
.product-card p { flex: 1; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .8rem;
  padding-top: .95rem;
  border-top: 1px solid var(--line);
}
.text-link {
  color: var(--gold);
  font-weight: 800;
}
.text-link::after {
  content: " ->";
  color: var(--clay);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.category-card {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.76));
  z-index: -1;
}
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; transition: transform .35s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card small {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: .45rem;
  text-transform: uppercase;
}
.category-card span { font-family: "Playfair Display", Georgia, serif; font-size: 1.55rem; }
.category-card p { margin: .4rem 0 0; color: rgba(255,255,255,.84); }
.space-choice-section {
  background: #fffdf8;
}
.space-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.space-choice-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 222, 210, .8);
  border-radius: 8px;
  color: white;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  box-shadow: 0 18px 45px rgba(24, 21, 18, .08);
}
.space-choice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.78));
  z-index: -1;
}
.space-choice-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: transform .35s ease;
}
.space-choice-card:hover img { transform: scale(1.06); }
.space-choice-card span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.12;
}
.space-choice-card p {
  color: rgba(255, 255, 255, .86);
  margin: .65rem 0 0;
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
}
.split-section {
  background:
    linear-gradient(180deg, #fffdf8, #f8f4ed);
}
.split-section p {
  color: var(--muted);
  font-size: 1.05rem;
}
.inspiration-points {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.8rem;
}
.inspiration-points span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .65rem .8rem;
  background: rgba(255,255,255,.74);
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
}
.inspiration-mosaic {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 1rem;
}
.inspiration-mosaic img, .about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 222, 210, .8);
}
.inspiration-mosaic img:first-child { aspect-ratio: 3/4; }
.inspiration-mosaic img:last-child { aspect-ratio: 4/5; margin-top: 4rem; }
.why-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 23, 23, .98), rgba(35, 33, 31, .96)),
    var(--charcoal);
  color: white;
}
.why-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .18;
  pointer-events: none;
}
.why-band .container { position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.why-item {
  position: relative;
  min-height: 282px;
  padding: 1.65rem 1.35rem 1.5rem;
  display: grid;
  grid-template-rows: 54px 92px 1fr;
  align-items: start;
  background: rgba(255,255,255,.025);
  border-right: 1px solid rgba(255,255,255,.14);
  transition: background .25s ease, transform .25s ease;
}
.why-item:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.why-item::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0;
  width: 44px;
  height: 3px;
  background: var(--gold);
}
.why-item:hover {
  background: rgba(255,255,255,.065);
  transform: translateY(-4px);
}
.why-number {
  display: block;
  color: rgba(184, 138, 68, .9);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 700;
}
.why-item h3 {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 800;
  max-width: 13rem;
}
.why-item p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .94rem;
  line-height: 1.6;
  max-width: 14rem;
}
.about-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 3rem;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(247,245,240,.92)),
    linear-gradient(90deg, rgba(184,138,68,.08), transparent);
  box-shadow: 0 18px 48px rgba(24, 21, 18, .08);
}
.about-preview::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--clay));
}
.about-preview-copy {
  max-width: 840px;
}
.about-preview p { color: var(--muted); }
.about-preview-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.35rem;
  padding: 1.45rem;
  border-left: 1px solid var(--line);
}
.about-year span {
  display: block;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.about-year strong {
  display: block;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: .9;
}
.btn-about {
  align-self: flex-start;
  background: var(--charcoal);
  color: white;
  border-color: var(--charcoal);
  padding-right: 1.65rem;
}
.btn-about::after {
  content: " ->";
  color: var(--gold);
}
.btn-about:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}
.btn-about:hover::after { color: white; }
.faq-section {
  background: var(--paper);
}
.faq-list {
  display: grid;
  gap: .85rem;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(24,21,18,.05);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff8eb;
  color: var(--gold);
  font-weight: 900;
}
.faq-list details[open] summary::after {
  content: "-";
}
.faq-list p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}
.cta-band {
  background: linear-gradient(90deg, rgba(20,18,16,.94), rgba(35,33,31,.72), rgba(35,33,31,.5)),
    url("https://images.unsplash.com/photo-1600566753151-384129cf4e3e?auto=format&fit=crop&w=1600&q=85") center/cover;
  color: white;
  padding: 7rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cta-band p { max-width: 720px; color: rgba(255,255,255,.82); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.cta-phone {
  color: white;
  border-bottom: 1px solid rgba(184,138,68,.65);
  padding: .2rem 0;
  font-weight: 800;
}
.cta-phone:hover {
  color: var(--gold);
  transform: translateY(-1px);
}
.site-footer {
  background:
    linear-gradient(180deg, #151515, #0e0e0e);
  color: white;
  padding: 4.5rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr .9fr;
  gap: 2rem;
}
.footer-grid p { color: rgba(255,255,255,.72); }
.footer-grid a { color: rgba(255,255,255,.82); }
.footer-grid a:hover { color: white; }
.footer-grid h3 { font-size: 1.2rem; }
.page-hero {
  padding: 11rem 0 5rem;
  color: white;
  background:
    linear-gradient(90deg, rgba(20,19,18,.78), rgba(20,19,18,.38)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=85") center/cover;
}
.search-hero {
  background:
    linear-gradient(90deg, rgba(20,19,18,.82), rgba(20,19,18,.42)),
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1600&q=85") center/cover;
}
.search-page-form {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 2.4rem;
  padding: 1.1rem;
  border: 1px solid rgba(229, 222, 210, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 50px rgba(24, 21, 18, .08);
  backdrop-filter: blur(16px);
}
.search-page-form label {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}
.search-page-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .8rem;
}
.search-page-form .form-control {
  min-height: 54px;
  border-color: var(--line);
  border-radius: 8px;
  background-color: #fffdf8;
  font-weight: 700;
  box-shadow: none;
}
.search-page-form .form-control:focus {
  border-color: rgba(184, 138, 68, .65);
  box-shadow: 0 0 0 .2rem rgba(184, 138, 68, .12);
}
.search-page-form .btn {
  min-width: 118px;
}
.search-summary {
  margin-bottom: 2rem;
}
.search-summary h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: .4rem;
}
.search-summary p {
  color: var(--muted);
  font-weight: 700;
}
.search-category-grid {
  margin-bottom: 4rem;
}
.search-category-heading {
  margin-top: 3.5rem;
}
.search-product-heading {
  margin-top: .4rem;
}
.empty-search {
  max-width: 760px;
  padding: 2.2rem;
  border: 1px solid rgba(229, 222, 210, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 50px rgba(24, 21, 18, .08);
}
.empty-search h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.empty-search p {
  color: var(--muted);
  font-size: 1.05rem;
}
.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 2.2rem;
  padding: 1.1rem;
  border: 1px solid rgba(229, 222, 210, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 50px rgba(24, 21, 18, .08);
  backdrop-filter: blur(16px);
}
.catalog-toolbar-heading .eyebrow { margin-bottom: .25rem; }
.catalog-toolbar-heading strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.15;
}
.result-count-line span {
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: .92rem;
  font-weight: 700;
}
.result-count-summary {
  margin: .85rem 0 1.1rem;
}
.result-count-summary .result-count-line {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .3rem;
  align-items: center;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 800;
}
.catalog-filter,
.admin-filter {
  display: grid;
  grid-template-columns: 1fr 220px 200px auto;
  gap: .8rem;
  margin-bottom: 0;
}
.catalog-filter label {
  display: grid;
  gap: .35rem;
  margin: 0;
}
.catalog-filter label span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.catalog-filter .form-control,
.catalog-filter .form-select {
  min-height: 52px;
  border-color: var(--line);
  border-radius: 8px;
  background-color: #fffdf8;
  font-weight: 600;
  box-shadow: none;
}
.catalog-filter .form-control:focus,
.catalog-filter .form-select:focus {
  border-color: rgba(184, 138, 68, .65);
  box-shadow: 0 0 0 .2rem rgba(184, 138, 68, .12);
}
.catalog-filter-actions {
  display: flex;
  align-items: end;
  gap: .75rem;
}
.catalog-filter-actions .btn {
  min-height: 52px;
  min-width: 108px;
}
.filter-reset {
  padding-bottom: .82rem;
  color: var(--muted);
  font-weight: 800;
}
.filter-reset:hover { color: var(--gold); }
.admin-filter { grid-template-columns: minmax(220px, 1fr) repeat(auto-fit, minmax(145px, 180px)); }
.message-filter {
  grid-template-columns: 190px 210px auto auto;
  justify-content: start;
  align-items: center;
  margin-bottom: 1.25rem;
}
.message-filter .filter-reset {
  padding-bottom: 0;
}
.detail-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.detail-image img { border-radius: 8px; box-shadow: var(--shadow); aspect-ratio: 4/5; width: 100%; }
.detail-copy h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
.lead { color: var(--muted); font-size: 1.18rem; }
.detail-cta, .contact-form, .contact-info, .auth-panel, .delete-panel, .message-card {
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 35px rgba(24,21,18,.07);
}
.product-presentation {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
}
.product-presentation article {
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fffdf8;
  padding: 1.15rem;
}
.product-presentation span {
  color: var(--clay);
  display: block;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: .45rem;
  text-transform: uppercase;
}
.product-presentation p {
  color: var(--muted);
  margin: 0;
}
.detail-cta .eyebrow { margin-bottom: .35rem; }
.detail-cta p { color: var(--muted); }
.contact-form p {
  margin-bottom: 1rem;
}
.contact-form label {
  margin-bottom: .35rem;
  color: var(--ink);
  font-weight: 800;
}
.contact-form .errorlist {
  margin: .45rem 0 0;
  padding-left: 1.1rem;
  color: #b33a2f;
  font-size: .9rem;
  font-weight: 700;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: -.35rem 0 1rem;
}
.contact-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .55rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf0;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
}
.contact-actions a:hover {
  border-color: rgba(194,145,70,.5);
  background: var(--gold);
  color: white;
}
.privacy-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
  margin: 1.1rem 0 .6rem;
  color: var(--muted);
  font-size: .94rem;
}
.privacy-consent .form-check-input {
  margin-top: .22rem;
  border-color: rgba(184, 138, 68, .65);
}
.privacy-consent label {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}
.privacy-consent a,
.form-privacy-note a {
  color: var(--gold);
  font-weight: 800;
}
.privacy-consent .errorlist {
  grid-column: 1 / -1;
}
.form-privacy-note {
  color: var(--muted);
  font-size: .92rem;
}
.privacy-policy-modal .modal-content {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(15,14,13,.28);
}
.privacy-policy-modal .modal-header {
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem;
}
.privacy-policy-modal .modal-title {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.privacy-policy-modal .modal-body {
  height: min(76vh, 760px);
  padding: 1.35rem;
  background: var(--paper);
  overflow-y: auto;
}
.privacy-modal-document {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
}
.privacy-modal-document h3 {
  margin: 1.15rem 0 .4rem;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}
.privacy-modal-document p {
  margin-bottom: .85rem;
}
.privacy-modal-document a {
  color: var(--gold);
  font-weight: 800;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}
.breadcrumb-link { color: var(--gold); font-weight: 800; }
.breadcrumb-link.light { color: white; }
.detail-brand {
  display: inline-block;
  margin: 1rem 0 .3rem;
  border-left: 3px solid var(--gold);
  padding-left: .65rem;
  color: var(--clay);
  font-weight: 800;
  text-transform: uppercase;
}
.map-placeholder,
.map-embed {
  min-height: 220px;
  border-radius: 8px;
  background: repeating-linear-gradient(45deg, #eee7dc, #eee7dc 14px, #f8f4ed 14px, #f8f4ed 28px);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.map-placeholder:hover {
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
.legal-document {
  max-width: 960px;
}
.legal-document > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}
.legal-section {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.legal-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.legal-section h2 {
  margin-bottom: .85rem;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}
.legal-section h3 {
  margin-top: 1.25rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}
.legal-section p,
.legal-section li {
  color: var(--muted);
}
.legal-section ul {
  margin: 0;
  padding-left: 1.25rem;
}
.legal-section a {
  color: var(--gold);
  font-weight: 800;
}
.auth-shell { min-height: 80vh; display: grid; place-items: center; background: var(--stone); }
.auth-panel { width: min(440px, calc(100% - 2rem)); }
.dashboard-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #f5f2ec;
}
.dashboard-sidebar {
  background: var(--charcoal);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.dashboard-sidebar a, .dashboard-sidebar button {
  color: white;
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 700;
  padding: .6rem 0;
}
.dashboard-content { padding: 2rem; overflow: auto; }
.dashboard-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; gap: 1rem; }
.metric-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.metric-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem;
  font-weight: 800;
}
.metric-card span { display: block; font-size: 2.4rem; font-family: "Playfair Display", Georgia, serif; }
.admin-table-wrap { overflow-x: auto; background: white; border: 1px solid var(--line); border-radius: 8px; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th, .admin-table td { padding: .9rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table img { width: 74px; height: 58px; border-radius: 6px; }
.table-actions { white-space: nowrap; }
.table-actions a { color: var(--gold); font-weight: 800; margin-right: .8rem; }
.admin-form { max-width: 880px; background: white; border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem; }
.admin-preview { width: 220px; border-radius: 8px; margin: 1rem 0; }
.message-list { display: grid; gap: .85rem; }
.message-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border-left: 5px solid transparent;
  padding: 0;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.message-row.unread {
  border-left-color: var(--gold);
  background: linear-gradient(90deg, rgba(184, 138, 68, .08), #fff 32%);
  box-shadow: 0 14px 38px rgba(24, 21, 18, .09);
}
.message-summary {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.15rem 1.25rem;
  color: var(--ink);
  text-align: left;
}
.message-summary:hover,
.message-summary:focus {
  background: rgba(184, 138, 68, .06);
  outline: none;
}
.message-from { font-weight: 700; }
.message-date {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}
.message-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}
.message-head h2 { margin-bottom: .35rem; }
.message-status {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .24rem .65rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.message-status.unread {
  border-color: rgba(184, 138, 68, .45);
  background: rgba(184, 138, 68, .12);
  color: var(--clay);
}
.message-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.message-actions {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-right: 1.25rem;
  white-space: nowrap;
}
.message-actions form { margin: 0; }
.message-toggle {
  border: 0;
  background: transparent;
  color: var(--gold);
  font-weight: 800;
  padding: 0;
}
.message-toggle:hover { color: var(--clay); }
.message-delete {
  color: #b33a2f;
  font-weight: 800;
}
.message-delete:hover { color: #7f241d; }
.message-modal .modal-content {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.message-modal .modal-header,
.message-modal .modal-footer {
  border-color: var(--line);
}
.message-modal .modal-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}
.message-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.message-detail-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #fffdf8;
}
.message-detail-grid dt {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.message-detail-grid dd {
  margin: .25rem 0 0;
  font-weight: 700;
}
.message-body-full {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.message-body-full h3 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}
.message-body-full p {
  color: var(--muted);
  font-size: 1rem;
}
.message-modal-actions form { margin: 0; }
.pagination-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
  margin-top: 2rem;
  font-weight: 800;
}
.pagination-wrap a,
.pagination-current,
.pagination-ellipsis {
  min-width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--gold);
}
.pagination-pages {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: center;
}
.pagination-current {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}
.pagination-ellipsis {
  color: var(--muted);
}
.scroll-top-button {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 138, 68, .45);
  border-radius: 50%;
  background: rgba(23, 23, 23, .92);
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  box-shadow: 0 18px 45px rgba(24, 21, 18, .2);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-button:hover {
  background: var(--gold);
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
  .product-grid, .category-grid, .space-choice-grid, .why-grid, .footer-grid, .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-grid, .detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .catalog-toolbar,
  .search-page-form,
  .catalog-filter,
  .admin-filter { grid-template-columns: 1fr; }
  .search-page-form > div {
    grid-template-columns: 1fr;
  }
  .message-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .message-summary {
    grid-template-columns: 1fr auto;
  }
  .message-date {
    grid-column: 1 / -1;
    white-space: normal;
  }
  .message-actions {
    justify-content: flex-start;
    padding: 0 1.25rem 1rem;
  }
  .section-heading-row {
    align-items: start;
    flex-direction: column;
    gap: .8rem;
  }
  .section-heading-side {
    justify-items: start;
  }
  .section-link { margin-bottom: 0; }
  .product-rail .product-card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }
  .dashboard-shell { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .navbar-nav {
    margin-top: 1rem;
    gap: .1rem;
    align-items: stretch !important;
    padding-top: .75rem;
    border-top: 1px solid var(--line);
  }
  .nav-link { padding: .7rem 0 !important; }
  .nav-link.active::after {
    left: 0;
    right: auto;
    width: 34px;
    bottom: .35rem;
  }
  .nav-search {
    width: 42px;
    margin: .85rem 0 0;
  }
  .nav-search.is-open,
  .nav-search:focus-within {
    width: 100%;
  }
  .nav-actions { gap: .65rem; }
  .language-switcher {
    margin-left: auto;
  }
  .language-switcher a {
    padding: 0;
  }
  .language-switcher img {
    width: 19px;
    height: 14px;
  }
}
@media (max-width: 640px) {
  .navbar-brand .brand-logo {
    height: 36px;
  }
  .footer-brand .brand-logo {
    height: 44px;
  }
  .hero-section { min-height: 86vh; padding-bottom: 4rem; }
  .hero-content h1 {
    font-size: clamp(2.85rem, 14vw, 4.25rem);
  }
  .hero-slideshow-controls {
    inset: auto .75rem .75rem auto;
    display: flex;
    gap: .32rem;
    padding: .28rem;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(15, 14, 13, .5);
    box-shadow: 0 16px 36px rgba(0,0,0,.28);
    backdrop-filter: blur(10px);
    pointer-events: auto;
  }
  .hero-slideshow-control {
    position: static;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    font-size: 1.25rem;
    text-shadow: none;
    transform: none;
  }
  .hero-slideshow-control:hover,
  .hero-slideshow-control:focus-visible {
    transform: none;
    background: rgba(194,145,70,.9);
  }
  .section-pad { padding: 4rem 0; }
  .product-grid, .category-grid, .space-choice-grid, .why-grid, .footer-grid, .metric-grid { grid-template-columns: 1fr; }
  .product-rail .product-card {
    flex-basis: 88%;
  }
  .carousel-actions {
    justify-content: flex-start;
  }
  .dashboard-heading { align-items: flex-start; flex-direction: column; }
  .message-summary {
    grid-template-columns: 1fr;
    gap: .45rem;
  }
  .message-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .message-detail-grid { grid-template-columns: 1fr; }
  .message-modal .modal-title { font-size: 1.55rem; }
  .about-preview {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .about-preview-aside {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 1.2rem 0 0;
  }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn,
  .cta-phone { width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
  .hero-slide:not(:first-child) {
    opacity: 0;
  }
}
