:root {
  --ink: #11100e;
  --muted: #6f6a62;
  --line: #e8e0d6;
  --paper: #fbf7ef;
  --soft: #f2ebe1;
  --white: #ffffff;
  --gold: #b99a5f;
  --deep: #050505;
  --shadow: 0 24px 70px rgba(24, 18, 12, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(232, 224, 214, 0.8);
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #38342f;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--gold);
}

.language-switcher {
  position: relative;
  display: inline-block;
}

.language-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  min-width: 168px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 6px;
}

.language-menu button {
  display: block;
  width: 100%;
  border: 0;
  background: var(--white);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
}

.language-menu button.is-active {
  background: var(--ink);
  color: var(--white);
}

.main {
  min-height: 70vh;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 24px;
}

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

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

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

h1 {
  font-size: clamp(42px, 7vw, 92px);
  max-width: 920px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  font-size: 25px;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 720px;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: stretch;
  background: var(--paper);
}

.hero__copy {
  padding: 86px 8vw 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.hero__media {
  min-height: 560px;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.hero__media img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.9;
}

.hero__note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 5, 5, 0.58);
  color: var(--white);
}

.hero__note span {
  display: block;
  color: #d7c39b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__note p {
  margin-top: 8px;
  color: #efe8df;
}

.custom-reference-note {
  max-width: 680px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.66);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.custom-reference-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
}

.custom-reference-note span {
  display: block;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button--soft {
  border-color: var(--line);
  background: var(--soft);
}

.split-grid,
.audience-grid,
.product-detail,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.intro-block {
  display: grid;
  gap: 18px;
  align-content: start;
}

.feature-card,
.audience-card,
.contact-card,
.faq-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  padding: 30px;
  box-shadow: var(--shadow);
}

.section--customizable {
  padding-top: 68px;
  padding-bottom: 68px;
}

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

.custom-detail-grid .feature-card {
  display: grid;
  gap: 14px;
  box-shadow: none;
}

.custom-detail-grid .feature-card h3 {
  font-size: 22px;
}

.custom-detail-grid .feature-card p:last-child {
  color: var(--muted);
  font-size: 14px;
}

.audience-card {
  display: grid;
  gap: 16px;
}

.audience-card ul,
.process-list,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li,
.process-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
}

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

.product-card,
.category-card {
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.product-card__image,
.category-card {
  position: relative;
}

.product-card__image img,
.category-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 400ms ease;
}

.product-card:hover img,
.category-card:hover img {
  transform: scale(1.035);
}

.product-card__image span,
.category-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(5, 5, 5, 0.78);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.product-card__body p,
.category-card p {
  color: var(--muted);
  font-size: 14px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 24px;
}

.badge {
  border: 1px solid var(--line);
  color: var(--gold);
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-specs,
.spec-grid {
  margin: 0;
  display: grid;
  gap: 10px;
}

.mini-specs div,
.spec-grid div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  text-align: right;
}

.category-card {
  display: block;
}

.category-card p {
  padding: 18px;
  min-height: 92px;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 0;
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.page-hero {
  background: var(--deep);
  color: var(--white);
}

.page-hero .section {
  padding-top: 88px;
  padding-bottom: 76px;
}

.page-hero p {
  color: #d8d0c5;
  margin-top: 22px;
}

.filter-bar {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffdf9;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  padding-top: 12px;
  resize: vertical;
}

.result-line {
  color: var(--muted);
  margin-bottom: 18px;
}

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

.gallery__main {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--soft);
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery__thumbs button {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.gallery__thumbs img {
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery__video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #000;
}

.gallery__video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.gallery__video-thumb span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 7px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.detail-copy h1 {
  font-size: clamp(42px, 5vw, 72px);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reference-disclaimer {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 18px;
  color: var(--muted);
}

.reference-disclaimer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.inquiry-panel {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
  display: grid;
  gap: 12px;
}

.inquiry-panel a {
  color: var(--gold);
  font-weight: 800;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 34px;
}

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

.form-status {
  color: var(--gold);
  font-weight: 700;
}

.qr-box {
  display: grid;
  place-items: center;
  min-height: 160px;
  border: 1px dashed var(--line);
  background: var(--soft);
  color: var(--muted);
  text-align: center;
  padding: 18px;
}

.site-footer {
  background: var(--deep);
  color: var(--white);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
}

.footer-inner p,
.footer-list a {
  color: #c9c0b5;
}

.footer-list {
  display: grid;
  gap: 8px;
}

.fine-print {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 24px 28px;
  color: #8d8479;
  font-size: 13px;
}

@media (max-width: 920px) {
  .hero,
  .split-grid,
  .audience-grid,
  .custom-detail-grid,
  .product-detail,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding: 68px 24px 42px;
  }

  .hero__media,
  .hero__media img {
    min-height: 420px;
  }

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

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

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 16px;
  }

  .language-switcher {
    width: 100%;
  }

  .language-toggle {
    width: 100%;
  }

  .language-menu {
    left: 0;
    right: auto;
    width: 100%;
  }

  .section {
    padding: 60px 18px;
  }

  .section-head {
    display: grid;
  }

  .product-grid,
  .category-grid,
  .filter-bar {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }
}
