:root {
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --charcoal: #23201d;
  --ink: #332d28;
  --muted: #766d64;
  --maroon: #6d1f2a;
  --maroon-dark: #48141c;
  --gold: #b68a3b;
  --gold-soft: #ead8b2;
  --line: #e6dccb;
  --mist: #f3ece0;
  --success: #236f4e;
  --danger: #9e2f2f;
  --focus: #0f62fe;
  --shadow: 0 20px 50px rgba(35, 32, 29, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--maroon); }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
}
.skip-link:focus { top: 12px; }
.container-narrow { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.container-wide { width: min(1360px, calc(100% - 32px)); margin-inline: auto; }

.top-strip { background: var(--charcoal); color: #f4ecde; font-size: 13px; }
.top-strip .container-wide {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-block: 8px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand-mark { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; color: var(--charcoal); line-height: 1.1; }
.brand-monogram {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--ivory);
}
.brand-mark small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 10px 12px; border-radius: 4px; color: var(--ink); font-size: 14px; font-weight: 650; }
.nav-links a[aria-current="page"], .nav-links a:hover { background: var(--mist); color: var(--maroon); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--paper); color: var(--charcoal); border-radius: 4px; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: currentColor; }

.btn-premium, .btn-outline, .btn-ghost {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 4px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn-premium { background: linear-gradient(135deg, var(--maroon), var(--maroon-dark)); color: #fff; box-shadow: 0 12px 24px rgba(109, 31, 42, 0.18); }
.btn-premium:hover { color: #fff; transform: translateY(-1px); }
.btn-outline { border-color: var(--gold); color: var(--maroon); background: rgba(255, 253, 248, 0.82); }
.btn-outline:hover, .btn-ghost:hover { background: var(--mist); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--paper); }

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(35, 32, 29, 0.78) 0%, rgba(35, 32, 29, 0.54) 40%, rgba(35, 32, 29, 0.12) 100%),
    url("../assets/images/hero-showroom.png") center / cover no-repeat;
  color: var(--ivory);
}
.hero .container-wide { padding: clamp(86px, 11vw, 140px) 0 clamp(42px, 6vw, 76px); }
.eyebrow { color: var(--gold-soft); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.hero h1, .page-hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}
.hero p { max-width: 660px; color: #f3eadb; font-size: clamp(17px, 2vw, 21px); }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto -1px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  border: 1px solid var(--line);
}
.hero-note div { padding: 18px; border-right: 1px solid var(--line); }
.hero-note div:last-child { border-right: 0; }
.hero-note strong, .stat strong { display: block; color: var(--maroon); font-size: 15px; }

main { flex: 1; }
section, .page-section { padding: clamp(54px, 8vw, 96px) 0; }
.section-kicker { margin: 0 0 10px; color: var(--maroon); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.section-title { margin: 0; color: var(--charcoal); font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: 0; }
.section-lead { max-width: 760px; margin: 16px 0 0; color: var(--muted); font-size: 17px; }
.band { background: var(--ivory); border-block: 1px solid var(--line); }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background: rgba(255, 253, 248, 0.96); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 24px rgba(35, 32, 29, 0.05); }
.feature-card, .policy-card, .contact-panel { padding: 24px; }
.card h3, .feature-card h3, .policy-card h3 { margin: 0 0 10px; color: var(--charcoal); font-size: 20px; }
.card p, .feature-card p, .policy-card p, .contact-panel p { color: var(--muted); }
.category-card, .product-card { overflow: hidden; }
.image-tile {
  min-height: 210px;
  display: flex;
  align-items: end;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(72, 20, 28, 0.88), rgba(182, 138, 59, 0.52)),
    repeating-linear-gradient(45deg, #8c3140 0 12px, #d7b96b 12px 14px, #4b2c2a 14px 26px);
}
.image-tile span { background: rgba(35, 32, 29, 0.72); padding: 8px 10px; border-radius: 4px; font-weight: 800; }
.card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--mist);
}
.detail-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--mist);
}
.card-body { padding: 22px; }
.meta-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.meta-list li { display: flex; gap: 8px; align-items: baseline; color: var(--muted); }
.meta-list strong { min-width: 116px; color: var(--ink); }
.process { counter-reset: step; }
.process .feature-card { position: relative; }
.process .feature-card::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  background: var(--maroon);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
}

.page-hero { background: linear-gradient(135deg, var(--charcoal), var(--maroon-dark)); color: var(--ivory); padding: clamp(66px, 10vw, 118px) 0 54px; }
.page-hero p { max-width: 780px; color: #f0e2cf; font-size: 18px; }
.breadcrumb-lite { color: var(--gold-soft); font-size: 14px; font-weight: 700; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.filter-btn { border: 1px solid var(--line); background: var(--paper); color: var(--ink); padding: 9px 13px; border-radius: 999px; font-weight: 700; }
.filter-btn.active { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.product-meta { display: grid; gap: 7px; margin: 14px 0 18px; color: var(--muted); font-size: 14px; }
.placeholder { color: var(--maroon); font-weight: 800; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full, .consent-row.full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 4px; background: #fff; color: var(--ink); padding: 11px 12px; }
.field textarea { min-height: 130px; resize: vertical; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 14px; }
.status { min-height: 28px; margin-top: 12px; font-weight: 700; }
.status.success { color: var(--success); }
.status.error { color: var(--danger); }

.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 20px 22px; }
.faq-item h3 { margin: 0 0 8px; font-size: 18px; }
.footer { background: var(--charcoal); color: #f4ecde; padding: 52px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer h2, .footer h3 { margin: 0 0 14px; color: #fff; font-size: 17px; }
.footer p, .footer a, .footer li { color: #d7c9b6; font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.16); color: #c9bba7; font-size: 13px; }
.doc-content { max-width: 900px; }
.doc-content h2 { margin-top: 34px; color: var(--charcoal); font-size: 24px; }
.doc-content p, .doc-content li { color: var(--muted); }
.doc-content ul { padding-left: 20px; }
.notice { border-left: 4px solid var(--gold); background: var(--ivory); padding: 16px 18px; color: var(--muted); }
.detail-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 32px; align-items: start; }
.detail-image { min-height: 430px; }

@media (max-width: 1040px) {
  .nav-actions .btn-outline { display: none; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .top-strip .container-wide { align-items: flex-start; flex-direction: column; gap: 4px; }
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 10px; }
  .hero { min-height: auto; }
  .hero-note, .grid-2, .grid-3, .detail-layout, .footer-grid { grid-template-columns: 1fr; }
  .hero-note div { border-right: 0; border-bottom: 1px solid var(--line); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container-wide, .container-narrow { width: min(100% - 24px, 1120px); }
  .brand-mark { font-size: 14px; }
  .brand-monogram { width: 38px; height: 38px; }
  .nav-actions .btn-premium { display: none; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { font-size: 40px; }
}
