:root {
  --bg: #f5f1eb;
  --bg-soft: #fbf9f5;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --surface-quiet: #f2ede7;
  --ink: #171513;
  --ink-soft: rgba(23, 21, 19, 0.72);
  --ink-muted: rgba(23, 21, 19, 0.52);
  --line: rgba(23, 21, 19, 0.12);
  --line-strong: rgba(23, 21, 19, 0.22);
  --gold: #ae9666;
  --gold-soft: rgba(174, 150, 102, 0.18);
  --shadow-soft: 0 18px 40px rgba(33, 28, 23, 0.08);
  --shadow-strong: 0 30px 70px rgba(33, 28, 23, 0.16);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 155, 100, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(183, 155, 100, 0.08), transparent 22%),
    linear-gradient(180deg, #f7f3ed 0%, #f4eee7 100%);
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
}

.no-script {
  padding: 14px 20px;
  background: #201b17;
  color: #fff;
  text-align: center;
}

.page-shell {
  position: relative;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 0;
}

.brands-top {
  background: rgba(34, 34, 36, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(8, 8, 10, 0.24);
}

.brands-header {
  width: min(1720px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.brands-marquee {
  overflow: hidden;
  background: linear-gradient(180deg, #c8c3bd 0%, #b9b5b0 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 54px;
  min-width: max-content;
  padding: 16px 30px;
  animation: brandMarquee 36s linear infinite;
}

.brands-track img {
  width: auto;
  height: 56px;
  max-width: 188px;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(1) contrast(1.05);
}

.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

.topbar__actions {
  display: grid;
  grid-template-columns: auto auto;
  align-items: stretch;
  gap: 0;
  background: #34363a;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.home-link {
  display: flex;
  align-items: center;
  min-width: 176px;
  min-height: 88px;
  padding: 18px 22px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.home-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: none;
}

.lang-switch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-width: 96px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.lang-switch__btn {
  min-width: 96px;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}

.lang-switch__btn + .lang-switch__btn {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switch__btn:hover,
.lang-switch__btn[aria-pressed="true"] {
  background: #ebe7e0;
  color: #171513;
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero {
  position: relative;
  min-height: min(860px, 88vh);
  margin-top: 0;
  padding-top: 0;
  overflow: clip;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(18, 17, 16, 0.76) 0%, rgba(18, 17, 16, 0.48) 32%, rgba(18, 17, 16, 0.12) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.28) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: min(860px, 88vh);
  display: flex;
  align-items: center;
  padding: 84px 0 72px;
}

.hero__panel {
  width: min(820px, 100%);
  padding: 34px;
  border: 1px solid rgba(23, 21, 19, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(249, 246, 240, 0.97), rgba(244, 238, 232, 0.93));
  color: var(--ink);
  box-shadow: var(--shadow-strong);
  backdrop-filter: none;
}

.eyebrow,
.preface__eyebrow,
.intro__label,
.chapter-rail__label,
.closing__eyebrow,
.section__eyebrow,
.editorial-break__eyebrow,
.modal__eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero__subtitle {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.82;
}

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

.hero__stat {
  padding: 16px 18px 18px;
  border: 1px solid rgba(23, 21, 19, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.hero__stat-value {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
}

.hero__stat-label {
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid #171513;
  border-radius: var(--radius-sm);
  background: #171513;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #171513;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(174, 150, 102, 0.22);
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn--secondary:hover {
  color: #171513;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border-color: var(--line);
}

.intro,
.chapter-rail,
.preface,
.catalog,
.closing,
.footer {
  padding-top: 34px;
}

.intro__frame,
.preface__card,
.closing__card {
  padding: 34px;
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 246, 241, 0.92));
  box-shadow: var(--shadow-soft);
  backdrop-filter: none;
}

.intro__label,
.chapter-rail__label,
.preface__eyebrow,
.closing__eyebrow {
  color: var(--gold);
}

.intro__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: start;
}

.catalog-identity {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(23, 21, 19, 0.1);
}

.catalog-identity__store {
  width: min(290px, 58vw);
  height: auto;
}

.catalog-identity__note {
  margin: 0;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.72;
}

.intro__brand-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.intro__brand {
  width: auto;
  object-fit: contain;
}

.intro__brand--spiegelau {
  height: 44px;
}

.intro__brand--nachtmann {
  height: 50px;
}

.intro__headline h2,
.preface__title,
.closing__card h2,
.section__title,
.editorial-break__title,
.modal__content h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.intro__copy,
.preface__text,
.closing__card p,
.section__intro,
.editorial-break__text,
.modal__story {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.chapter-rail {
  position: relative;
  top: auto;
  z-index: 1;
  padding: 30px 32px;
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 235, 0.94));
  box-shadow: var(--shadow-soft);
}

.chapter-rail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  overflow: visible;
  padding: 0;
  scrollbar-width: none;
}

.chapter-rail__chips::-webkit-scrollbar {
  display: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 14px 18px;
  border: 1px solid rgba(23, 21, 19, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.chip:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #171513;
  border-color: #171513;
}

.chip__count {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}

.chip:hover .chip__count {
  color: rgba(255, 255, 255, 0.68);
}

#catalogFlow {
  display: grid;
  gap: 34px;
}

.editorial-break,
.category-section {
  position: relative;
}

.editorial-break__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(23, 21, 19, 0.08);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
}

.editorial-break--reverse .editorial-break__card {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.editorial-break__visual {
  min-height: 420px;
}

.editorial-break__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-break__copy {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(174, 150, 102, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 236, 0.98));
}

.editorial-break--dark .editorial-break__copy {
  background:
    radial-gradient(circle at top left, rgba(174, 150, 102, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(26, 23, 21, 0.96), rgba(19, 18, 17, 0.98));
  color: #fff;
}

.editorial-break--dark .editorial-break__eyebrow,
.editorial-break--dark .editorial-break__text {
  color: rgba(255, 255, 255, 0.74);
}

.category-section__card {
  padding: 34px;
  border: 1px solid rgba(23, 21, 19, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 244, 238, 0.9));
  box-shadow: var(--shadow-soft);
}

.category-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.section__eyebrow {
  color: var(--gold);
}

.section__meta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.section__meta-count {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.section__meta-label {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section__intro {
  max-width: 760px;
  margin: 16px 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.product-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(23, 21, 19, 0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(174, 150, 102, 0.36);
  box-shadow: 0 20px 40px rgba(33, 28, 23, 0.11);
}

.product-card__visual {
  position: relative;
  aspect-ratio: 1 / 1.08;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(174, 150, 102, 0.13), transparent 30%),
    linear-gradient(180deg, #f9f7f2, #fff);
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__visual img {
  transform: scale(1.04);
}

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

.product-card__sku {
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card__title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 700;
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.product-card__old {
  color: var(--ink-muted);
  font-size: 0.94rem;
  text-decoration: line-through;
}

.product-card__new {
  font-size: 1.45rem;
  font-weight: 800;
  color: #171513;
}

.product-card__button {
  width: 100%;
}

.closing__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

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

.footer {
  padding-bottom: 48px;
}

.footer p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.64);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  width: min(1120px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 21, 19, 0.08);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.modal__media {
  min-height: 100%;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(174, 150, 102, 0.14), transparent 34%),
    linear-gradient(180deg, #f8f4ee, #fff);
}

.modal__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal__content {
  padding: 44px 34px 34px;
}

.modal__eyebrow {
  color: var(--gold);
}

.modal__story {
  margin: 18px 0 0;
}

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

.modal__meta div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
}

.modal__meta dt {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal__meta dd {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-break__card,
  .editorial-break--reverse .editorial-break__card,
  .modal__dialog {
    grid-template-columns: 1fr;
  }

  .editorial-break__visual {
    min-height: 340px;
  }
}

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

  .brands-header,
  .intro__content,
  .category-section__header,
  .closing__card {
    grid-template-columns: 1fr;
  }

  .topbar__actions {
    grid-template-columns: 1fr 1fr;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .brands-track {
    gap: 38px;
    padding: 14px 18px;
  }

  .brands-track img {
    height: 44px;
    max-width: 148px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    min-height: 760px;
    align-items: flex-end;
    padding: 56px 0 48px;
  }

  .hero__panel,
  .intro__frame,
  .preface__card,
  .category-section__card,
  .closing__card,
  .editorial-break__copy,
  .modal__content,
  .modal__media {
    padding: 26px;
  }
}

@media (max-width: 720px) {
  .brands-track {
    gap: 26px;
    padding: 12px 14px;
  }

  .brands-track img {
    height: 30px;
    max-width: 110px;
  }

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

  .home-link {
    min-width: 0;
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lang-switch {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .lang-switch__btn {
    min-width: 0;
    min-height: 58px;
  }

  .lang-switch__btn + .lang-switch__btn {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: auto;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(10, 11, 13, 0.36) 0%, rgba(10, 11, 13, 0.74) 100%);
  }

  .hero__content {
    align-items: flex-end;
    min-height: auto;
    padding: 36px 0 28px;
  }

  .hero__panel {
    padding: 24px;
  }

  .catalog-identity__store {
    width: 220px;
  }

  .intro__brand-row {
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .intro__brand--spiegelau {
    height: 34px;
  }

  .intro__brand--nachtmann {
    height: 40px;
  }

  .chapter-rail {
    padding: 24px;
  }

  .hero__stats,
  .modal__meta {
    grid-template-columns: 1fr;
  }

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

  .chip,
  .btn {
    width: 100%;
  }

  .chapter-rail__chips,
  .closing__actions {
    display: grid;
    width: 100%;
  }

  .editorial-break__visual {
    min-height: 280px;
  }
}
