/* Dünya Halal Food — Corporate Identity */
:root {
  --gold: #D4AF37;
  --gold-light: #E8C547;
  --gold-dark: #A8892A;
  --black: #0D0D0D;
  --black-soft: #141414;
  --black-muted: #1A1A1A;
  --white: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.65);
  --border: rgba(212, 175, 55, 0.22);
  --border-strong: rgba(212, 175, 55, 0.45);
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --page-max: 1920px;
  --gutter: 15px;
  --content-prose: 65ch;
  --content-medium: 960px;
  --content-wide: 1280px;
  --section-gap: clamp(1rem, 3vw, 2rem);
  --section-pad-fluid: clamp(1.25rem, 4vw, 4rem);
  --header-h: 76px;
  --radius: 10px;
  --transition: 0.25s ease;
  --card-pad: clamp(1.15rem, 2.5vw, 1.5rem);
  --card-pad-lg: clamp(1.75rem, 3vw, 2.25rem);
  --card-gap: 1.25rem;
  --card-min: 260px;
  --card-shadow-hover: 0 10px 32px rgba(0, 0, 0, 0.28);
  --btn-radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--white);
  background: var(--black);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.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;
}

#main {
  max-width: var(--page-max);
  margin-inline: auto;
}

#main:focus {
  outline: none;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 1000;
  padding: 0.7rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 0 0 var(--btn-radius) var(--btn-radius);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translate(-50%, 0);
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

@media (min-width: 1366px) {
  :root { --gutter: 23px; }
}

@media (min-width: 1536px) {
  :root { --gutter: 108px; }
}

@media (min-width: 1920px) {
  :root { --gutter: 108px; }

  .site-header .container,
  .site-footer .container {
    padding-inline: clamp(4rem, 10vw, 8rem);
  }
}

.section {
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}

.section + .section {
  padding-top: clamp(1.5rem, 2.8vw, 2.25rem);
}

.section--alt + .section--alt {
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.page-hero + .section,
.hero + .section {
  padding-top: clamp(1.5rem, 2.8vw, 2.25rem);
}

.section--alt { background: var(--black-soft); }

.section__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--gold);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section__lead {
  color: var(--text-muted);
  max-width: 72ch;
  margin: 0;
  font-size: 1.05rem;
}

.section__head {
  margin-bottom: clamp(1.25rem, 2.8vw, 2rem);
  text-align: left;
  max-width: min(72ch, 100%);
}

.section__head .section__lead {
  max-width: min(65ch, 100%);
}

.section--band {
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}

/* ── Design system: cards ── */
.card-grid {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--card-min)), 1fr));
}

.card-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

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

.card-grid--3 > .card {
  height: 100%;
}

.card-grid--chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.card-grid--filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.product-filters {
  position: relative;
  margin-bottom: 2rem;
}

.card {
  background: linear-gradient(160deg, var(--black-muted), var(--black-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--card-pad);
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.card--interactive:hover,
.card--interactive:focus-within,
a.card:hover,
a.card:focus-visible {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.card--accent {
  position: relative;
  overflow: hidden;
}

.card--accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card--accent:hover::before,
.card--accent:focus-within::before {
  opacity: 1;
}

.card--center { text-align: center; }

.card--stack {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card--row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.card--panel {
  padding: var(--card-pad-lg);
}

.card--chip {
  padding: 0.65rem 1rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
}

.card--chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.card--wide { grid-column: 1 / -1; }

.card--cta {
  display: grid;
  gap: 2rem;
  align-items: center;
  border-color: var(--border-strong);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(145deg, var(--black-muted), var(--black-soft));
}

.card--quote {
  text-align: left;
  max-width: min(var(--content-wide), 100%);
  margin-inline: 0;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--gold-light);
}

.card__title--lg {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--white);
  line-height: 1.2;
}

.card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.card__meta {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
}

.card__mark {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.card__icon svg {
  width: 100%;
  height: 100%;
}

.card__actions {
  margin-top: auto;
  padding-top: 0.5rem;
}

.card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.card__list li + li {
  margin-top: 0.35rem;
}

.card__quote {
  margin: 0 auto 1.25rem;
  padding: 0;
  max-width: min(var(--content-medium), 100%);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
}

.card__quote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  font-size: 0.9375rem;
}

.site-logo__mark {
  display: block;
  height: 2.35em;
  width: auto;
  aspect-ratio: 965 / 1024;
  flex-shrink: 0;
  object-fit: contain;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-logo__sub {
  font-family: var(--font-heading);
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-top: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 101;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__arc {
  position: absolute;
  right: -15%;
  top: 10%;
  width: 70%;
  max-width: 700px;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  opacity: 0.35;
  transform: rotate(-30deg);
}

.hero__glow {
  position: absolute;
  left: 50%;
  top: 30%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 8vw, 5rem);
}

.hero__logo-img {
  max-width: min(100%, 520px);
  margin-bottom: 1.5rem;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  padding-block: 0.75rem;
  border-block: 1px solid var(--border);
}

.hero__slogan {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: var(--white);
}

.hero__desc {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__featured {
  position: relative;
}

.hero__featured-card {
  position: relative;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.hero__featured-card.is-loading {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__featured-card.is-loading::after {
  content: '';
  width: 32px;
  height: 32px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.hero__featured-img {
  max-height: 340px;
  margin-inline: auto;
  object-fit: contain;
}

.hero__featured-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.35rem;
}

.hero__featured-meta {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Premium homepage hero ── */
.hero--premium {
  background: var(--black);
}

.hero--premium .hero__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.hero--premium.container,
.hero--premium .container.hero__shell {
  padding-inline: var(--section-pad-fluid);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.02);
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(212, 175, 55, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.95) 55%, var(--black-soft) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  right: 10%;
  top: 15%;
  background: rgba(212, 175, 55, 0.08);
}

.hero__orb--2 {
  width: 280px;
  height: 280px;
  left: 5%;
  bottom: 20%;
  background: rgba(212, 175, 55, 0.05);
}

.hero__line {
  position: absolute;
  right: 0;
  top: 25%;
  width: 45%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--section-gap);
  align-items: center;
  min-width: 0;
}

@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: 0.88fr 1.12fr;
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .hero__panel {
    width: 100%;
  }

  .hero__showcase {
    max-width: none;
    margin-inline: 0;
    aspect-ratio: 5 / 4;
    min-height: clamp(320px, 34vw, 520px);
  }
}

.hero__kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.06);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero__lede {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.hero--premium .hero__desc {
  max-width: min(var(--content-prose), 100%);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero__showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  min-height: 280px;
  margin-inline: auto;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  background: var(--black-soft);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(212, 175, 55, 0.08);
  --hero-bg-x: 0;
  --hero-bg-y: 0;
  --hero-parallax-x: 0;
  --hero-parallax-y: 0;
}

.hero__showcase-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: translate3d(calc(var(--hero-bg-x) * 1px), calc(var(--hero-bg-y) * 1px), 0);
  transition: transform 0.35s ease-out;
}

.hero__showcase-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroBgDrift 24s ease-in-out infinite;
}

.hero__showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.18) 0%, rgba(13, 13, 13, 0.02) 42%, rgba(13, 13, 13, 0.5) 100%),
    radial-gradient(ellipse 95% 80% at 50% 50%, transparent 45%, rgba(13, 13, 13, 0.22) 100%);
  pointer-events: none;
}

.hero__showcase-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 45% at 50% 78%, rgba(255, 120, 40, 0.22) 0%, transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 62%);
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

.hero__showcase-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 1fr);
  align-items: end;
  justify-items: center;
  gap: clamp(0.25rem, 1vw, 0.65rem);
  padding: clamp(0.65rem, 2vw, 1.15rem) clamp(0.85rem, 2.5vw, 1.5rem) clamp(0.5rem, 1.5vw, 0.85rem);
  transform: translate3d(calc(var(--hero-parallax-x) * 0.55px), calc(var(--hero-parallax-y) * 0.45px), 0);
  transition: transform 0.35s ease-out;
}

.hero__showcase-card {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: clamp(192px, 49%, 338px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 1;
  transform-origin: center bottom;
}

.hero__showcase-card--left {
  rotate: -6deg;
  translate: 0 4%;
  animation: heroCardEnterLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both,
    heroFloatLeft 5.6s ease-in-out 1.1s infinite;
}

.hero__showcase-card--center {
  z-index: 3;
  max-width: clamp(224px, 57%, 390px);
  translate: 0 1%;
  animation: heroCardEnterCenter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both,
    heroFloatCenter 6.2s ease-in-out 1.05s infinite;
}

.hero__showcase-card--right {
  rotate: 6deg;
  translate: 0 5%;
  animation: heroCardEnterRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both,
    heroFloatRight 6s ease-in-out 1.25s infinite;
}

.hero__showcase-badge {
  position: absolute;
  top: -0.15rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  padding: 0.28rem 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 100px;
  background: rgba(13, 13, 13, 0.78);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hero__showcase-item {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(218px, 44vw, 390px);
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.5));
}

.hero__showcase-card--center .hero__showcase-item {
  max-height: clamp(250px, 52vw, 442px);
}

@keyframes heroBgDrift {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes heroCardEnterLeft {
  from {
    opacity: 0;
    translate: -12px calc(4% + 32px);
    scale: 0.9;
  }

  to {
    opacity: 1;
    translate: 0 4%;
    scale: 1;
  }
}

@keyframes heroCardEnterRight {
  from {
    opacity: 0;
    translate: 12px calc(5% + 32px);
    scale: 0.9;
  }

  to {
    opacity: 1;
    translate: 0 5%;
    scale: 1;
  }
}

@keyframes heroCardEnterCenter {
  from {
    opacity: 0;
    translate: 0 calc(1% + 36px);
    scale: 0.92;
  }

  to {
    opacity: 1;
    translate: 0 1%;
    scale: 1;
  }
}

@keyframes heroFloatLeft {
  0%, 100% { translate: 0 4%; }
  50% { translate: 0 calc(4% - 10px); }
}

@keyframes heroFloatRight {
  0%, 100% { translate: 0 5%; }
  50% { translate: 0 calc(5% - 10px); }
}

@keyframes heroFloatCenter {
  0%, 100% { translate: 0 1%; }
  50% { translate: 0 calc(1% - 12px); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

@keyframes heroCardEnterMobile {
  from {
    opacity: 0;
    scale: 0.94;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@media (hover: hover) {
  .hero__showcase:hover .hero__showcase-card--left {
    rotate: -8deg;
    translate: 0 4%;
  }

  .hero__showcase:hover .hero__showcase-card--right {
    rotate: 8deg;
    translate: 0 5%;
  }

  .hero__showcase:hover .hero__showcase-card--center {
    translate: 0 0;
  }

  .hero__showcase:hover .hero__showcase-item {
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.58));
  }
}

.hero__logo-wrap {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.hero__logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1rem);
  max-width: 100%;
  margin-inline: auto;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
}

.hero__logo-mark {
  display: block;
  height: 2.35em;
  width: auto;
  aspect-ratio: 965 / 1024;
  flex-shrink: 0;
  object-fit: contain;
}

.hero__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.hero__logo-name {
  font-family: var(--font-heading);
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

.hero__logo-sub {
  font-family: var(--font-heading);
  font-size: 0.55em;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 0.12em;
}

@media (max-width: 1023px) {
  .hero__panel {
    order: -1;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .hero__showcase {
    margin-inline: 0;
  }
}

@media (max-width: 480px) {
  .hero--premium .hero__actions {
    flex-direction: column;
  }

  .hero--premium .hero__actions .btn {
    width: 100%;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  min-height: 44px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.72rem;
  min-height: 40px;
}

.btn--lg {
  padding: 1rem 1.85rem;
  font-size: 0.78rem;
}

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

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
}

.btn--outline {
  color: var(--gold);
  border-color: var(--border-strong);
  background: transparent;
}

.btn--outline:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--text-muted);
  border-color: var(--border);
  background: transparent;
  border-radius: 100px;
  letter-spacing: 0.1em;
}

.btn--ghost:hover,
.btn--ghost.is-active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ── Products carousel ── */
.products-section {
  overflow: hidden;
}

@media (max-width: 900px) {
  .product-filters {
    margin-inline: calc(-1 * var(--gutter));
    margin-bottom: 1.5rem;
  }

  .product-filters::before,
  .product-filters::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(1.25rem, 5vw, 2rem);
    z-index: 1;
    pointer-events: none;
  }

  .product-filters::before {
    left: 0;
    background: linear-gradient(90deg, var(--black-soft) 20%, transparent);
  }

  .product-filters::after {
    right: 0;
    background: linear-gradient(270deg, var(--black-soft) 20%, transparent);
  }

  .product-filters .card-grid--filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: var(--gutter);
    padding-inline: var(--gutter);
    gap: 0.45rem;
    scrollbar-width: none;
  }

  .product-filters .card-grid--filters::-webkit-scrollbar {
    display: none;
  }

  .product-filters .card-grid--filters .btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 0.5rem 0.95rem;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    min-height: 38px;
  }
}

.products-carousel__wrapper {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
}

.products-carousel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  color: var(--text-muted);
  background: var(--black-muted);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.products-carousel__chevron {
  display: block;
  width: 10px;
  height: 16px;
}

.products-carousel__chevron--prev {
  transform: rotate(180deg);
}

.products-carousel__arrow--prev {
  grid-column: 1;
  justify-self: center;
}

.products-carousel__arrow--next {
  grid-column: 3;
  justify-self: center;
}

.products-carousel__arrow.slick-arrow {
  position: static;
  transform: none;
}

.products-carousel__arrow.slick-arrow::before {
  content: none;
}

.products-carousel__arrow:hover,
.products-carousel__arrow:focus-visible {
  color: var(--gold);
  border-color: var(--border-strong);
  background: rgba(212, 175, 55, 0.08);
}

.products-carousel__arrow.slick-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.products-carousel__slider {
  grid-column: 2;
  min-width: 0;
  margin: 0 -7.5px;
}

.products-carousel__slider.is-loading {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-carousel__slider.is-loading::after {
  content: '';
  width: 36px;
  height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.products-carousel__slider .slide {
  outline: none;
  margin: 0 7.5px;
  height: auto;
}

.products-carousel .product_post.card {
  aspect-ratio: 1;
  height: 100%;
  text-decoration: none;
  padding: 15px;
  overflow: hidden;
}

.products-carousel .product_post .category {
  display: block;
  flex-shrink: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
  line-height: 1;
}

.products-carousel .product_post .image {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
}

.products-carousel .product_post .image img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.products-carousel .product_post h3 {
  flex-shrink: 0;
  margin: 0 0 4px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: var(--white);
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .products-carousel .product_post.card {
    padding: 20px;
  }

  .products-carousel .product_post h3 {
    font-size: 17px;
    line-height: 1.35;
  }
}

.products-carousel .product_post:hover h3 {
  color: var(--gold-light);
}

.products-carousel .product_post .info {
  flex-shrink: 0;
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-muted);
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: 4px;
}

.products__empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem;
}

/* Slick overrides inside products carousel */
.products-carousel .slick-list {
  overflow: hidden;
  padding: 4px 0 12px;
}

.products-carousel .slick-slide {
  height: auto;
}

.products-carousel .slick-slide > div {
  height: 100%;
}

.products-carousel__wrapper.is-few-slides .slick-track {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .products-carousel__wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px 24px;
  }

  .products-carousel__slider {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0 -7.5px;
  }

  .products-carousel__arrow--prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .products-carousel__arrow--next {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }
}

/* ── Sortiment (Produkte page) ── */
.section--sortiment {
  position: relative;
}

.sortiment__grid {
  align-items: stretch;
}

.sortiment__grid > .card {
  height: 100%;
}

.sortiment__card {
  position: relative;
  overflow: hidden;
}

.sortiment__card::after {
  content: '';
  position: absolute;
  inset: auto -30% -40% -30%;
  height: 55%;
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.sortiment__card:hover::after,
.sortiment__card:focus-within::after {
  opacity: 1;
}

.sortiment__card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.sortiment__index {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.04);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.sortiment__card:hover .sortiment__index,
.sortiment__card:focus-within .sortiment__index {
  transform: scale(1.06);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.18);
}

.sortiment__title {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.3;
}

.sortiment__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.sortiment__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.sortiment__list li + li {
  margin-top: 0.5rem;
}

.sortiment__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.75;
  transform: scale(1);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sortiment__card:hover .sortiment__list li::before,
.sortiment__card:focus-within .sortiment__list li::before {
  opacity: 1;
}

.sortiment__card:hover .sortiment__list li:hover::before,
.sortiment__card:focus-within .sortiment__list li:hover::before {
  transform: scale(1.35);
}

html.js .sortiment__card.reveal {
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: calc(var(--reveal-i, 0) * 95ms);
}

/* ── Catalog ── */
.catalog {
  position: relative;
}

.catalog .card-grid--catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
}

.card--catalog {
  text-align: center;
  padding: clamp(0.85rem, 1.6vw, 1rem) clamp(0.65rem, 1.4vw, 0.85rem) clamp(0.9rem, 1.6vw, 1rem);
  aspect-ratio: 1;
  justify-content: flex-start;
  gap: 0.3rem;
}

.card--catalog .catalog-card__preview {
  position: relative;
  width: clamp(108px, 64%, 158px);
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.card--catalog .catalog-card__preview img,
.card--catalog .catalog-card__preview canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.card--catalog .card__title {
  font-size: clamp(0.86rem, 1.4vw, 0.96rem);
  line-height: 1.25;
  margin: 0;
}

.card--catalog .card__text {
  font-size: 0.76rem;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card--catalog .card__meta {
  font-size: 0.68rem;
  margin: 0;
}

.card--catalog .card__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.6rem;
}

.card--catalog .card__actions {
  margin-top: 0.45rem;
  padding-top: 0;
  justify-content: center;
}

.card--catalog .catalog-card__preview.is-loading-preview::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.card--catalog .catalog-card__preview.is-fallback-icon::before {
  content: 'PDF';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.85;
}

.card-grid.is-loading {
  min-height: 280px;
  place-items: center;
}

.card-grid.is-loading::after {
  content: '';
  width: 36px;
  height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ── About ── */
.section--about {
  position: relative;
  overflow: hidden;
}

.about__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 85% 25%, rgba(212, 175, 55, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 55%);
}

.section--about .container {
  position: relative;
  z-index: 1;
}

.about__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  min-width: 0;
}

@media (min-width: 1024px) {
  .about__layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}

.about__copy .section__head {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  max-width: none;
}

.about__prose p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.about__prose p:last-child {
  margin-bottom: 0;
}

.about__goal {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.about__goal p {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.55;
}

.about__goal strong {
  color: var(--gold-light);
}

.about__aside {
  align-self: center;
}

.about__highlights {
  display: grid;
  gap: var(--card-gap);
}

@media (min-width: 900px) and (max-width: 1023px) {
  .about__highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .about__highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about__highlights .card {
  gap: 0.65rem;
}

.about__highlights .card__mark {
  font-size: 1.1rem;
}

/* ── Contact page ── */
.section--contact-page .contact-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.section--contact-page .contact-page__details {
  height: 100%;
}

.section--contact-page .contact-page__details-list {
  margin: 0;
  display: grid;
  gap: 0;
}

.section--contact-page .contact-page__detail {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.section--contact-page .contact-page__detail:first-child {
  padding-top: 0;
}

.section--contact-page .contact-page__detail:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.section--contact-page .contact-page__detail-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.section--contact-page .contact-page__detail-value {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--white);
}

.section--contact-page .contact-page__detail-value a:hover {
  color: var(--gold-light);
}

.section--contact-page .contact-page__muted {
  color: rgba(255, 255, 255, 0.45);
}

.section--contact-page .contact-page__languages-box {
  margin-top: clamp(1.15rem, 2.5vw, 1.5rem);
  padding: clamp(0.95rem, 2vw, 1.15rem) clamp(1rem, 2.2vw, 1.2rem);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.04) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.section--contact-page .contact-page__languages-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.section--contact-page .contact-page__languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section--contact-page .contact-page__language {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  background: rgba(13, 13, 13, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 100px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.section--contact-page .contact-page__form {
  max-width: none;
  margin-top: 0;
}

.section--delivery.section--alt {
  background: transparent;
}

.section--delivery {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(320px, 42vw, 480px);
}

.section--delivery .delivery__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.section--delivery .delivery__bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section--delivery .delivery__mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(13, 13, 13, 0.92) 0%,
      rgba(13, 13, 13, 0.72) 28%,
      rgba(13, 13, 13, 0.38) 48%,
      rgba(13, 13, 13, 0.12) 68%,
      transparent 82%
    ),
    linear-gradient(180deg, rgba(13, 13, 13, 0.35) 0%, transparent 42%, rgba(13, 13, 13, 0.45) 100%);
}

.section--delivery .container {
  position: relative;
  z-index: 1;
}

.section--delivery .section__head {
  margin-bottom: 0;
  max-width: min(52ch, 100%);
}

@media (max-width: 767px) {
  .section--delivery {
    min-height: clamp(280px, 70vw, 380px);
  }

  .section--delivery .delivery__bg-photo {
    background-position: 62% center;
  }

  .section--delivery .delivery__mesh {
    background:
      linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.9) 0%,
        rgba(13, 13, 13, 0.55) 42%,
        rgba(13, 13, 13, 0.25) 72%,
        rgba(13, 13, 13, 0.4) 100%
      );
  }
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: 3rem 1.5rem;
  background: var(--black-soft);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0 0;
  max-width: 32ch;
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.site-footer__links li { margin-bottom: 0.5rem; }

.site-footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.site-footer__links a:hover { color: var(--white); }

.site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__bottom a { color: var(--gold); }
.site-footer__bottom a:hover { text-decoration: underline; }

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
}

.site-footer__links li:last-child {
  margin-bottom: 0;
}

.site-footer__legal {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.site-footer__legal a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color var(--transition);
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
}

.site-footer__legal a:hover {
  color: var(--white);
}

.site-footer__legal-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* ── Legal pages ── */
.section--legal {
  padding-top: 0;
}

.legal-document {
  max-width: min(var(--content-prose), 100%);
  margin-inline: auto;
  padding: var(--card-pad-lg);
}

.legal-document__block + .legal-document__block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-document__block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 0.85rem;
  line-height: 1.35;
}

.legal-document__block p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-document__block p:last-child {
  margin-bottom: 0;
}

.legal-document__block a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-document__block a:hover {
  color: var(--gold-light);
}

.legal-document__meta {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Product detail ── */
.single-product #main {
  padding-top: var(--header-h);
}

.product-detail__banner {
  padding: 1.5rem 0 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--black-soft);
}

.product-detail__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.product-detail__breadcrumb a:hover {
  color: var(--gold);
}

.product-detail__breadcrumb [aria-current="page"] {
  color: var(--white);
}

.product-detail__badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: 4px;
}

.product-detail__main {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.product-detail__hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 2rem;
  background: var(--black-muted);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.product-detail__hero-image img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
}

.product-detail__hero-image--empty {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.product-detail__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-detail__thumb {
  width: 72px;
  height: 72px;
  padding: 6px;
  background: var(--black-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.product-detail__thumb.is-active,
.product-detail__thumb:hover {
  border-color: var(--gold);
}

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

.product-detail__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

.product-detail__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--black-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.product-detail__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-detail__meta-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-detail__meta-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.product-detail__meta-value--in { color: #6fcf97; }
.product-detail__meta-value--out { color: var(--text-muted); }

.product-detail__desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.product-detail__desc p {
  margin: 0 0 1rem;
}

.product-detail__desc p:last-child {
  margin-bottom: 0;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-detail__related {
  padding-top: 0;
}

@media (max-width: 1024px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .product-detail__hero-image {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .product-detail__meta {
    grid-template-columns: 1fr;
  }

  .product-detail__actions {
    flex-direction: column;
  }

  .product-detail__actions .btn {
    width: 100%;
  }
}

/* ── Page sections ── */
.section__lead--medium {
  max-width: min(var(--content-medium), 100%);
}

.card--check::before {
  content: '✓ ';
  color: var(--gold);
  font-weight: 700;
}

/* ── Quality ── */
.section--quality .quality__grid {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 2rem;
}

.section--quality .quality__grid > .quality__card {
  grid-column: span 2;
  height: 100%;
}

.section--quality .quality__grid > .quality__card:nth-child(4) {
  grid-column: 2 / 4;
}

.section--quality .quality__grid > .quality__card:nth-child(5) {
  grid-column: 4 / 6;
}

.section--quality .quality__footnote {
  max-width: min(var(--content-medium), 100%);
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

html.js .section--quality .quality__card.reveal {
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: calc(var(--reveal-i, 0) * 95ms);
}

.card--cta .card__actions {
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .card--cta {
    grid-template-columns: 1fr auto;
  }

  .card--cta .card__actions {
    justify-content: flex-end;
  }
}

.page-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--black-soft);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
}

.page-hero__lead {
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0;
}

.card--form {
  max-width: min(var(--content-medium), 100%);
  margin-top: 2rem;
}

.section--contact-page .card--form {
  max-width: none;
}

.contact-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__field span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--white);
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form__notice {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
}

.contact-form__notice--success {
  background: rgba(111, 207, 151, 0.12);
  border: 1px solid rgba(111, 207, 151, 0.35);
  color: #6fcf97;
}

.contact-form__notice--error {
  background: rgba(198, 40, 40, 0.12);
  border: 1px solid rgba(198, 40, 40, 0.35);
  color: #ef9a9a;
}

/* ── Certification medal ribbons (Warum section) ── */
.certificates {
  width: 100%;
  margin-top: clamp(2.75rem, 6vw, 4rem);
  padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.cert-medals {
  width: 100%;
}

.cert-medals__bar {
  position: relative;
  width: 100%;
  height: clamp(14px, 2.2vw, 20px);
  background: linear-gradient(180deg, #5c4610, #1a1008 35%, #0a0a0a 65%, #3d2817);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 4px rgba(0, 0, 0, 0.55),
    0 6px 18px rgba(0, 0, 0, 0.35);
}

.cert-medals__bar-rail {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #5c4610, #c9a227 10%, #f7e7a9 30%, #d4af37 50%, #f7e7a9 70%, #c9a227 90%, #5c4610);
  opacity: 0.92;
}

.cert-medals__bar-face {
  position: absolute;
  inset: 2px 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(0, 0, 0, 0.18) 18px 19px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, transparent 45%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.cert-medals__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  gap: clamp(0.35rem, 2.5vw, 1.75rem);
}

.cert-medals__item {
  flex: 1 1 0;
  min-width: 0;
  max-width: clamp(120px, 18vw, 220px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(-18px);
}

.certificates.is-visible .cert-medals__item {
  animation: certMedalDrop 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.08s + (var(--medal-i, 0) * 0.13s));
}

.cert-medals__straps {
  display: flex;
  justify-content: center;
  gap: clamp(2px, 0.35vw, 4px);
  width: min(100%, clamp(68px, 10vw, 104px));
  margin-top: -1px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
}

.cert-medals__strap {
  flex: 1 1 0;
  height: clamp(78px, 11vw, 118px);
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.18) 0%, transparent 18%, transparent 82%, rgba(212, 175, 55, 0.18) 100%),
    linear-gradient(180deg, #4a3018 0%, #241608 28%, #120c06 62%, #1a1008 100%);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 50% 100%, 0 86%);
  box-shadow:
    inset 1px 0 0 rgba(212, 175, 55, 0.28),
    inset -1px 0 0 rgba(0, 0, 0, 0.35);
}

.cert-medals__strap--left {
  transform-origin: top center;
  transform: rotate(-2.5deg);
}

.cert-medals__strap--right {
  transform-origin: top center;
  transform: rotate(2.5deg);
}

.cert-medals__disc {
  position: relative;
  z-index: 2;
  width: min(100%, clamp(88px, 13vw, 132px));
  aspect-ratio: 1;
  margin-top: clamp(-2.4rem, -6vw, -3.2rem);
  padding: clamp(5px, 0.85vw, 7px);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff1b8 0%, #d4af37 30%, #8a6d1e 62%, #d4af37 88%, #f0dc8a 100%);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.45),
    inset 0 2px 4px rgba(255, 255, 255, 0.42),
    inset 0 -4px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.cert-medals__disc-rim {
  position: absolute;
  inset: clamp(4px, 0.65vw, 6px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.cert-medals__disc-face {
  position: absolute;
  inset: clamp(7px, 1.1vw, 10px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.1) 0%, transparent 46%),
    linear-gradient(180deg, #171717 0%, #0d0d0d 100%);
  box-shadow:
    inset 0 0 0 2px rgba(212, 175, 55, 0.42),
    inset 0 5px 12px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.cert-medals__disc img {
  position: relative;
  z-index: 1;
  display: block;
  width: 72%;
  height: auto;
  margin: 14% auto 0;
  object-fit: contain;
  filter: brightness(1.03) contrast(1.06);
  transition: transform 0.45s ease, filter 0.45s ease;
}

@media (hover: hover) {
  .cert-medals__item:hover .cert-medals__disc {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.5),
      inset 0 2px 4px rgba(255, 255, 255, 0.48),
      inset 0 -4px 8px rgba(0, 0, 0, 0.35),
      0 0 22px rgba(212, 175, 55, 0.28);
  }

  .cert-medals__item:hover img {
    transform: scale(1.05);
    filter: brightness(1.08) contrast(1.1);
  }
}

@keyframes certMedalDrop {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  65% {
    opacity: 1;
    transform: translateY(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .cert-medals__row {
    flex-wrap: wrap;
    gap: 1.25rem 0.75rem;
    padding-inline: 0.85rem;
  }

  .cert-medals__item {
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }

  .cert-medals__straps {
    width: min(100%, 76px);
  }

  .cert-medals__strap {
    height: 72px;
  }

  .cert-medals__disc {
    width: min(100%, 96px);
    margin-top: -2.1rem;
  }
}

/* ── Customer network (Kundengruppen) ── */
.customers__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  min-width: 0;
}

.customers__copy {
  min-width: 0;
}

.customers__copy .section__head {
  margin-bottom: 0;
  max-width: none;
}

.customers__copy .section__lead {
  max-width: min(42ch, 100%);
}

.customers__diagram {
  min-width: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .customers__layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.customer-network {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: clamp(320px, 100%, 480px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.customer-network__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.customer-network__ring {
  fill: none;
  stroke: rgba(212, 175, 55, 0.22);
  stroke-width: 0.35;
}

.customer-network__spoke {
  stroke: rgba(212, 175, 55, 0.38);
  stroke-width: 0.3;
  stroke-dasharray: 1.2 0.8;
}

.customer-network__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: clamp(5.5rem, 14vw, 7rem);
  height: clamp(5.5rem, 14vw, 7rem);
  padding: 1.15rem;
  border-radius: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  overflow: visible;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 0 48px rgba(212, 175, 55, 0.12);
}

.customer-network__hub.card--accent::before {
  display: none;
}

.customer-network__hub:hover,
.customer-network__hub:focus-within {
  transform: translate(-50%, -50%);
  border-color: var(--border-strong);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.45),
    0 0 56px rgba(212, 175, 55, 0.22);
}

.customer-network__hub-mark {
  display: block;
  height: clamp(2.75rem, 7vw, 3.5rem);
  width: auto;
  object-fit: contain;
}

.customer-network__nodes {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 1;
}

.customer-network__node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
  max-width: min(9.5rem, 42%);
  font-size: clamp(0.68rem, 1.6vw, 0.82rem);
  line-height: 1.25;
  padding: 0.5rem 0.7rem;
}

.customer-network__node.card--interactive:hover,
.customer-network__node.card--interactive:focus-within {
  transform: translate(-50%, calc(-50% - 3px));
}

@media (max-width: 768px) {
  .customer-network {
    --cn-dot-size: 10px;
    --cn-line-width: 2px;
    --cn-rail-x: 11px;
    --cn-rail-gutter: 1.25rem;
    --cn-node-gap: 0.65rem;
    max-width: none;
    aspect-ratio: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-left: calc(var(--cn-rail-x) + var(--cn-dot-size) / 2 + var(--cn-rail-gutter));
  }

  .customer-network__lines,
  .customer-network__hub {
    display: none;
  }

  .customer-network__nodes {
    position: static;
    display: flex;
    flex-direction: column;
    gap: var(--cn-node-gap);
  }

  .customer-network__node {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none;
    max-width: none;
    margin: 0;
    border-radius: var(--radius);
    text-align: left;
    padding: 0.85rem 1rem 0.85rem 0.25rem;
  }

  .customer-network__node.card--interactive:hover,
  .customer-network__node.card--interactive:focus-within {
    transform: none;
  }

  .customer-network__node::before {
    content: '';
    position: absolute;
    left: calc(var(--cn-rail-x) - var(--cn-dot-size) / 2 - (var(--cn-rail-x) + var(--cn-dot-size) / 2 + var(--cn-rail-gutter)));
    top: 50%;
    width: var(--cn-dot-size);
    height: var(--cn-dot-size);
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--black-soft);
    transform: translateY(-50%);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35);
    z-index: 1;
  }

  .customer-network__node:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(
      var(--cn-rail-x) - var(--cn-line-width) / 2 -
      (var(--cn-rail-x) + var(--cn-dot-size) / 2 + var(--cn-rail-gutter))
    );
    top: calc(50% + var(--cn-dot-size) / 2);
    width: var(--cn-line-width);
    height: calc(100% - var(--cn-dot-size) / 2 + var(--cn-node-gap));
    border-radius: 0;
    background: linear-gradient(180deg, var(--gold), rgba(212, 175, 55, 0.25));
    transform: none;
    opacity: 1;
    z-index: 0;
  }
}

.delivery__text {
  color: var(--text-muted);
  max-width: 70ch;
}

.delivery__text p {
  margin: 0 0 1rem;
}

@media (max-width: 1024px) {
  .card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .card-grid--2,
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .section--quality .quality__grid {
    grid-template-columns: 1fr;
  }

  .section--quality .quality__grid > .quality__card,
  .section--quality .quality__grid > .quality__card:nth-child(4),
  .section--quality .quality__grid > .quality__card:nth-child(5) {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .card-grid--2,
  .card-grid--3,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Reveal animation ── */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (prefers-reduced-motion: reduce) {
  html.js .sortiment__card.reveal {
    transition-delay: 0ms;
  }

  .sortiment__card::after,
  .sortiment__index,
  .sortiment__list li::before {
    transition: none;
  }

  .hero__showcase-bg,
  .hero__showcase-glow,
  .hero__showcase-card {
    animation: none !important;
    transition: none;
  }

  .hero__showcase-bg {
    transform: none;
  }

  .hero__showcase-media,
  .hero__showcase-stage {
    transform: none;
    transition: none;
  }

  .hero__showcase-card--left,
  .hero__showcase-card--center,
  .hero__showcase-card--right {
    opacity: 1;
    scale: 1;
  }

  .cert-medals__item {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__featured { order: -1; max-width: 380px; margin-inline: auto; }
  .section--contact-page .contact-page__layout {
    grid-template-columns: 1fr;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --card-gap: 1rem;
    --gutter: 1.125rem;
  }

  .section {
    padding-block: clamp(2rem, 5vw, 2.75rem);
  }

  .section + .section,
  .page-hero + .section,
  .hero + .section {
    padding-top: clamp(1.25rem, 3vw, 1.75rem);
  }

  .section--alt + .section--alt {
    padding-top: 0.85rem;
  }

  .section__head {
    margin-bottom: clamp(1.1rem, 3.5vw, 1.65rem);
  }

  .section__lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .catalog .card-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .card--catalog {
    aspect-ratio: 1;
    padding: 0.8rem 0.55rem 0.85rem;
  }

  .card--catalog .catalog-card__preview {
    width: clamp(92px, 56%, 128px);
  }

  .card--catalog .card__actions {
    margin-top: 0.35rem;
  }

  .card--catalog .card__title {
    font-size: 0.82rem;
  }

  .card--catalog .card__text {
    font-size: 0.72rem;
    -webkit-line-clamp: 2;
  }

  .section--quality .quality__footnote {
    text-align: left;
    font-size: 0.95rem;
  }

  .hero.hero--premium {
    min-height: auto;
    align-items: stretch;
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }

  .hero--premium .hero__shell {
    padding-block: clamp(1.25rem, 4vw, 2rem);
  }

  .hero__layout {
    gap: clamp(1.25rem, 4vw, 1.75rem);
  }

  .hero__panel {
    max-width: none;
    margin-inline: 0;
  }

  .hero__showcase {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: clamp(280px, 92vw, 400px);
    margin-inline: 0;
  }

  .hero__showcase-stage {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.24fr) minmax(0, 0.88fr);
    align-items: end;
    padding: 0.45rem 0.25rem 0.35rem;
    gap: 0.1rem;
    transform: none;
  }

  .hero__showcase-media {
    transform: none;
  }

  .hero__showcase-card {
    max-width: none;
    min-width: 0;
  }

  .hero__showcase-card--left,
  .hero__showcase-card--center,
  .hero__showcase-card--right {
    animation: heroCardEnterMobile 0.7s ease both;
  }

  .hero__showcase-card--left {
    rotate: -3deg;
    translate: 0 2%;
    animation-delay: 0.12s;
  }

  .hero__showcase-card--center {
    translate: 0 0;
    animation-delay: 0.04s;
  }

  .hero__showcase-card--right {
    rotate: 3deg;
    translate: 0 2%;
    animation-delay: 0.2s;
  }

  .hero__showcase-item {
    max-height: clamp(88px, 29vw, 135px);
  }

  .hero__showcase-card--center .hero__showcase-item {
    max-height: clamp(101px, 34vw, 153px);
  }

  .hero__showcase-badge {
    top: -0.45rem;
    font-size: 0.5rem;
    padding: 0.18rem 0.38rem;
    letter-spacing: 0.06em;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 1.75rem);
    padding-bottom: 1.5rem;
  }

  .site-footer {
    padding-block: 2.25rem 1.25rem;
  }

  .site-footer__col--nav,
  .site-footer__col--contact {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 1.5rem;
  }

  .site-footer__brand {
    grid-column: auto;
    text-align: center;
  }

  .site-footer__brand .site-logo {
    justify-content: center;
  }

  .site-footer__brand p {
    max-width: 36ch;
    margin-inline: auto;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .site-footer__heading {
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
  }

  .site-footer__links a,
  .site-footer__links li {
    font-size: 0.88rem;
  }

  .site-footer__links a {
    min-height: 2.25rem;
    padding-block: 0.2rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding-top: 1.25rem;
    font-size: 0.78rem;
    line-height: 1.55;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    background: rgba(13, 13, 13, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

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

  .site-nav__link {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .site-footer__brand p {
    max-width: none;
  }
}
