:root {
  --lux-black: #000000;
  --lux-white: #ffffff;
  --lux-offwhite: #f5f5f5;
  --lux-dark: #000000;
  --lux-accent: #000000;
  --lux-accent-dark: #000000;
  --lux-accent-soft: #ffffff;
  --lux-accent-line: rgba(0, 0, 0, 0.18);
  --ink: var(--lux-black);
  --ink-muted: var(--lux-dark);
  --surface: var(--lux-offwhite);
  --surface-2: var(--lux-white);
  --champagne: var(--lux-offwhite);
  --gold: var(--lux-accent);
  --gold-strong: var(--lux-accent);
  --line: var(--lux-accent-line);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1600px;
  --display: "Domaine Text Light", "Cormorant Garamond", "Times New Roman", serif;
  --body: "Santral Book", "Manrope", "Helvetica Neue", Arial, sans-serif;
}


* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100%;
  overflow-x: hidden;
}

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

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

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

.top-bar {
  background: var(--lux-black);
  border-bottom: none;
  position: static;
  backdrop-filter: none;
}

.promo-bar {
  background: var(--lux-dark);
  color: var(--lux-white);
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
}

.top-strip {
  background: var(--lux-white);
  color: var(--lux-black);
  border-bottom: none;
  padding: 15px 0;
}

.top-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.top-strip-left,
.top-strip-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-strip-left {
  justify-self: start;
}

.top-strip-center {
  justify-self: center;
  display: flex;
  align-items: center;
}

.top-strip-right {
  justify-self: end;
}

.top-help {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: inherit;
}

.icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn:hover {
  color: var(--gold-strong);
}

.brand-row {
  display: flex;
  justify-content: center;
  padding: 24px 0 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 14px;
}

.brand-center {
  justify-content: center;
}

.brand-logo {
  height: 50px;
  width: auto;
}

.main-nav {
  border-top: none;
  background: var(--surface-2);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 6px 18px var(--lux-black);
}

.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 0 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.nav-item {
  position: relative;
}

.nav-item.has-mega {
  position: static;
}

.nav-links a {
  padding: 6px 2px;
}

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

.bag {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(240px, 1.2fr);
  gap: 24px;
  padding: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.mega-col h4 {
  font-family: var(--display);
  font-size: 14px;
  margin: 0 0 12px;
}

.mega-col a {
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ink-muted);
}

.mega-col a:hover {
  color: var(--ink);
}

.mega-visual {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  background: url("../img/hero.png") center/cover no-repeat;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
}

.mega-visual--education {
  background-image: url("../img/menu/wissenswertes-menu.png");
  background-position: center bottom;
}

.mega-visual--gemstones {
  background-image: url("../img/menu/edelsteine-menu.png");
  background-position: center 58%;
}

.mega-visual--diamonds {
  background-image: url("../img/menu/diamanten-menu.png");
  background-position: center 58%;
}

.mega-visual--friendship {
  background-image: url("../img/menu/freundschaftsringe-menu.png");
  background-position: center 58%;
}

.mega-visual--wedding {
  background-image: url("../img/menu/eheringe-menu.png");
  background-position: center 58%;
}

.mega-visual--engagement {
  background-image: url("../img/menu/verlobungsringe-menu.png");
  background-position: center 58%;
}

.mega-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
}

.mega-visual__content {
  display: none;
}

.mega-visual__content span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--lux-white);
}

.mega-visual__content h3 {
  margin: 8px 0 6px;
  font-family: var(--display);
  font-size: 20px;
  color: var(--lux-white);
}

.mega-visual__content p {
  font-size: 16px;
  color: var(--lux-white);
  margin: 0 0 12px;
}

.locale-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.locale-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 0;
  cursor: pointer;
  color: inherit;
}

.locale-trigger svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.locale-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 220px;
  background: var(--lux-offwhite);
  border: 1px solid var(--lux-accent);
  box-shadow: 0 18px 40px var(--lux-black);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 45;
}

.locale-dropdown.is-open .locale-panel {
  display: flex;
}

.locale-field {
  display: grid;
  gap: 8px;
  position: relative;
}

.locale-label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--lux-dark);
}

.locale-value {
  width: 100%;
  border: 1px solid var(--lux-accent);
  border-radius: 8px;
  background: var(--lux-white);
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--lux-black);
  cursor: pointer;
}

.locale-value svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--lux-black);
  stroke-width: 1.6;
  transition: transform 0.2s ease;
}

.locale-field.is-open .locale-value svg {
  transform: rotate(180deg);
}

.locale-options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: var(--lux-white);
  border: 1px solid var(--lux-accent);
  border-radius: 10px;
  box-shadow: 0 16px 30px var(--lux-black);
  padding: 6px 0;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}

.locale-field.is-open .locale-options {
  display: flex;
}

.locale-option {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--lux-black);
  cursor: pointer;
}

.locale-option:hover,
.locale-option:focus {
  background: var(--lux-offwhite);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px 16px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.hero {
  padding: 0;
}

.hero.hero-photo {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  color: var(--lux-white);
  overflow: hidden;
}

.hero-photo__media {
  position: absolute;
  inset: 0;
  background: url("../img/hero-20260510.png") center top / cover no-repeat;
}

.hero-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.08));
}

.hero-photo__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 88px 24px;
}

.hero-photo__content {
  width: min(100%, 720px);
  min-width: 0;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 68px);
  margin: 0;
  color: var(--lux-white);
}

.hero-copy {
  font-size: 17px;
  color: var(--lux-white);
  max-width: 640px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--lux-white);
  justify-content: center;
}

.hero .button-light {
  border-color: var(--lux-white);
  color: var(--lux-white);
  background: transparent;
}

.hero .button-light.button {
  background: var(--lux-white);
  color: var(--lux-black);
}

.diamond-orbit {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed var(--lux-black);
  position: relative;
  animation: orbit 18s linear infinite;
  opacity: 0.25;
}

.diamond-core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 80px;
  height: 80px;
  border: 2px solid var(--lux-black);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lux-white), var(--lux-offwhite));
}

.diamond-core::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  border-radius: 8px;
}

.diamond-orbit span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-strong);
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--lux-black);
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section {
  padding: 28px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--display);
  font-size: 26px;
  margin: 0;
}

.section-action {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: var(--champagne);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px var(--lux-black);
}

.product-media {
  height: 150px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--lux-white), var(--surface));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 28px;
  position: relative;
  overflow: hidden;
}

.product-media::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 1px dashed var(--lux-black);
}

.card-title {
  font-weight: 600;
}

.card-muted {
  color: var(--ink-muted);
  font-size: 12px;
}

.value-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--line);
}

.story {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border: 1px solid var(--line);
}

.story-panel {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.reviews {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.review {
  min-width: 220px;
}

.cta-banner {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--surface-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-banner p {
  color: var(--lux-white);
  margin: 0;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item {
  padding: 14px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  font-size: 12px;
}

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

.category-tile {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--lux-white), var(--champagne));
  border: 1px solid var(--line);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.footer {
  background: var(--surface-2);
  padding: 28px 0 40px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 12px;
}

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

.footer h4 {
  margin: 0 0 8px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer a {
  display: block;
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.footer.footer-modern {
  padding: 56px 0 0;
  margin-top: 40px;
}

.footer.footer-modern .footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.footer.footer-modern .footer-col h4 {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.footer.footer-modern .footer-col a {
  font-size: 16px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.footer.footer-modern .footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 16px;
  color: var(--ink-muted);
}

.footer-badge {
  display: none !important;
}

.footer.footer-modern .footer-badge__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--gold-strong);
}

.footer.footer-modern .footer-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  gap: 8px;
  margin-bottom: 16px;
}

.footer.footer-modern .footer-form input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  font-family: var(--body);
  background: transparent;
}

.footer.footer-modern .footer-form button {
  border: none;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
  color: var(--ink);
}

.footer.footer-modern .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer.footer-modern .social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
}

.footer-bottom {
  padding: 14px 0 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  color: var(--ink-muted);
}

.footer-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}

.trust-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--lux-accent);
}

.button,
.button-outline {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.button {
  background: var(--ink);
  color: var(--surface-2);
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.button:hover,
.button-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px var(--lux-black);
}

.page-hero {
  padding: 24px 0;
}

.page-hero-inner {
  padding: 0;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  font-family: var(--display);
  margin: 0 0 6px;
  font-size: 34px;
}

.page-hero p {
  margin: 0;
  color: var(--ink-muted);
}

.error-body {
  background: #050505;
}

.error-body .promo-bar {
  letter-spacing: 0;
}

.error-nav {
  background: #ffffff;
}

.error-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  min-height: 58px;
  padding: 0 22px;
}

.error-nav__inner a {
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.error-page {
  background: #050505;
}

.error-hero {
  position: relative;
  min-height: clamp(620px, 72vh, 820px);
  overflow: hidden;
  color: #ffffff;
  background: #050505;
}

.error-hero::before,
.error-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.error-hero::before {
  background: url("../img/promise/unsere-versprechen-hero.png") center bottom / cover no-repeat;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.01);
}

.error-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 46%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5));
}

.error-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  min-height: inherit;
  padding: clamp(58px, 8vw, 110px) clamp(24px, 5vw, 78px);
}

.error-hero__content {
  max-width: 820px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.error-kicker,
.error-status span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.error-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-family: var(--display);
  font-size: 82px;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.error-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  overflow-wrap: anywhere;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.error-actions .button,
.error-actions .button-outline {
  min-height: 48px;
  border-radius: 4px;
}

.error-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.error-link-row a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.error-link-row a:hover,
.error-link-row a:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #050505;
}

.error-status {
  min-width: 168px;
  text-align: right;
}

.error-status strong {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--display);
  font-size: 142px;
  line-height: 0.82;
}

.error-footer {
  margin-top: 0;
}

@media (max-width: 640px) {
  .section,
  .page-hero,
  .container,
  .content-split,
  .content-panel,
  .catalog-intro-stack {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
  }

  .page-hero-inner {
    padding: 28px 20px;
    width: 100%;
    max-width: 100vw;
  }

  .page-hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .page-hero p {
    font-size: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .error-nav__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    min-height: auto;
    padding: 12px 0;
    overflow: hidden;
  }

  .error-nav__inner a {
    font-size: 10px;
  }

  .error-body,
  .error-body .top-strip-inner,
  .error-nav,
  .error-page,
  .error-hero {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .error-body .promo-bar {
    font-size: 0;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .error-body .promo-bar::after {
    content: "5% Rabatt mit WILLKOMMEN5";
    font-size: 11px;
    font-weight: 700;
  }

  .error-hero {
    min-height: 650px;
  }

  .error-hero::before {
    background-position: 58% bottom;
  }

  .error-hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.58)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
  }

  .error-hero__inner {
    grid-template-columns: 1fr;
    align-items: end;
    width: 100vw;
    max-width: 100vw;
    padding: 54px 22px;
  }

  .error-hero__content,
  .error-hero h1,
  .error-hero p {
    width: 100%;
    max-width: 330px;
  }

  .error-hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .error-hero p {
    font-size: 16px;
  }

  .error-actions,
  .error-actions .button,
  .error-actions .button-outline {
    width: 100%;
    max-width: 330px;
  }

  .error-link-row a {
    text-align: center;
  }

  .error-link-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 330px;
  }

  .error-status {
    display: none;
  }

  .content-panel {
    padding: 24px;
    overflow-wrap: anywhere;
  }

  .content-panel h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .content-panel p,
  .content-list li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1600px);
  justify-content: center;
}

.legal-panel {
  background: var(--lux-white);
  border: 1px solid var(--lux-offwhite);
  padding: 40px 48px;
  width: 100%;
}

.legal-panel h2 {
  font-family: var(--display);
  font-size: 24px;
  margin: 28px 0 10px;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p {
  max-width: 920px;
  margin: 0;
  color: var(--lux-black);
}

.legal-panel a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info-strip {
  padding: 14px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--surface-2);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.cart-media {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.breadcrumbs {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-delay-1 {
  animation-delay: 0.1s;
}

.fade-delay-2 {
  animation-delay: 0.2s;
}

.fade-delay-3 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero.hero-photo {
    min-height: 420px;
  }

  .hero-photo__inner {
    padding: 72px 0;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-menu.is-open {
    display: flex;
  }

  .mega-menu {
    display: none;
  }

  .brand-logo {
    height: 50px;
  }

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

@media (max-width: 640px) {
  .top-strip-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    padding: 0 16px;
  }

  .top-strip-left,
  .top-strip-right {
    width: auto;
    min-width: 0;
    gap: 8px;
  }

  .top-strip-left {
    justify-content: flex-start;
  }

  .top-strip-right {
    justify-content: flex-end;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

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

  .hero-photo__inner {
    padding: 56px 0;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 46px);
  }

  .footer.footer-modern .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.product-media img {
  width: 56px;
  height: 56px;
  z-index: 1;
}

.product-media--photo::after {
  display: none;
}

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

.pdp-shell {
  background: #fff;
  padding: 34px 0 72px;
}

.pdp-container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 42px;
  padding: 0 42px;
}

.pdp-gallery {
  min-width: 0;
}

.pdp-visual {
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 0, 0, 0.05), transparent 30%),
    linear-gradient(145deg, #ffffff, #f2f2f2);
  border: 1px solid #111;
}

.pdp-visual img {
  width: min(82%, 780px);
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.16));
  animation: pdpFloat 6s ease-in-out infinite;
}

.pdp-visual__badge,
.pdp-visual__meta {
  position: absolute;
  z-index: 2;
}

.pdp-visual__badge {
  top: 22px;
  left: 22px;
  background: #fafafa;
  border: 1px solid #111;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.pdp-visual__meta {
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-visual__meta span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #111;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
}

.pdp-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.pdp-thumb {
  min-height: 132px;
  border: 1px solid transparent;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.pdp-thumb.is-active {
  border-color: var(--lux-black);
}

.pdp-thumb img {
  width: 100%;
  height: 110px;
  object-fit: contain;
}

.pdp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  background: #111;
}

.pdp-service-grid div {
  background: #fff;
  padding: 18px;
}

.pdp-service-grid strong,
.pdp-service-grid span {
  display: block;
}

.pdp-service-grid strong {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pdp-service-grid span {
  color: #555;
  font-size: 13px;
  margin-top: 8px;
}

.pdp-buybox {
  position: sticky;
  top: 18px;
  align-self: start;
  background: #fff;
  border: 1px solid #111;
  padding: 34px;
}

.pdp-kicker {
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pdp-buybox h1 {
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 62px);
  line-height: 0.98;
  margin: 10px 0 14px;
}

.pdp-lead {
  color: #333;
  margin: 0;
  max-width: 56ch;
}

.pdp-price-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  padding: 22px 0;
  border-bottom: 1px solid #d9d9d9;
}

.pdp-price-row strong {
  font-size: 26px;
}

.pdp-price-row span {
  color: #555;
  font-size: 12px;
  text-align: right;
}

.pdp-choice {
  padding: 20px 0 0;
}

.pdp-choice__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
}

.pdp-choice__head span {
  color: #555;
}

.pdp-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp-option,
.pdp-swatch {
  min-height: 42px;
  border: 1px solid #bdbdbd;
  background: #fff;
  color: #000000;
  padding: 9px 13px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pdp-option:hover,
.pdp-swatch:hover {
  transform: translateY(-1px);
  border-color: #000000;
}

.pdp-option.is-selected,
.pdp-swatch.is-selected {
  background: #000000;
  border-color: #000000;
  color: #fff;
}

.pdp-swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdp-swatch span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16);
}

.pdp-selection {
  margin-top: 22px;
  padding: 14px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdp-selection span {
  color: #555;
  font-size: 12px;
}

.pdp-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.pdp-cart-button {
  width: 100%;
}

.pdp-accordions {
  margin-top: 24px;
  border-top: 1px solid #d9d9d9;
}

.pdp-accordions details {
  border-bottom: 1px solid #d9d9d9;
  padding: 15px 0;
}

.pdp-accordions summary {
  cursor: pointer;
  font-weight: 700;
}

.pdp-accordions p {
  color: #555;
  font-size: 13px;
  margin: 10px 0 0;
}

.pdp-mobile-bar {
  display: none;
}

@keyframes pdpFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.012);
  }
}

@media (max-width: 1024px) {
  .pdp-shell {
    padding: 18px 0 110px;
  }

  .pdp-container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 16px;
  }

  .pdp-visual {
    min-height: 430px;
  }

  .pdp-visual img {
    width: 96%;
  }

  .pdp-thumb-grid,
  .pdp-service-grid {
    grid-template-columns: 1fr;
  }

  .pdp-thumb {
    min-height: 96px;
  }

  .pdp-thumb img {
    height: 78px;
  }

  .pdp-buybox {
    position: static;
    padding: 22px 16px;
  }

  .pdp-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .pdp-price-row span {
    text-align: left;
  }

  .pdp-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #111;
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
    backdrop-filter: blur(16px);
  }

  .pdp-mobile-bar div {
    min-width: 0;
  }

  .pdp-mobile-bar span,
  .pdp-mobile-bar strong {
    display: block;
  }

  .pdp-mobile-bar span {
    font-weight: 800;
  }

  .pdp-mobile-bar strong {
    color: #555;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pdp-mobile-bar .button {
    flex: 0 0 auto;
    padding-inline: 18px;
  }
}

.pdp-shell--77 {
  padding-top: 0;
  border-top: 1px solid #e5e5e5;
}

.pdp-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #111;
  padding: 18px 42px;
  background: #fff;
}

.pdp-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  align-items: center;
  color: #777;
}

.pdp-step span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #777;
  border-radius: 50%;
  font-weight: 800;
}

.pdp-step strong,
.pdp-step small {
  display: block;
  line-height: 1.2;
}

.pdp-step strong {
  color: #111;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pdp-step small {
  grid-column: 2;
  font-size: 12px;
}

.pdp-step.is-active span {
  background: #111;
  color: #fff;
  border-color: #111;
}

.pdp-reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, 0.84fr);
  gap: 46px;
  padding: 26px 42px 54px;
  background: #fff;
}

.pdp-gallery--77 {
  min-width: 0;
}

.pdp-back-link {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 8px 0 18px;
  font: inherit;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.pdp-visual--77 {
  min-height: 610px;
  background: #fff;
  border: 1px solid #e2e2e2;
}

.pdp-visual--77 img {
  width: min(88%, 820px);
  max-height: 72%;
}

.pdp-spin-hint,
.pdp-sample-note {
  color: #555;
  font-size: 12px;
  text-align: center;
}

.pdp-spin-hint {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.pdp-frame-index {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  color: #777;
  font-size: 12px;
}

.pdp-frame-index span.is-active {
  color: #111;
  font-weight: 800;
}

.pdp-sample-note {
  margin: 12px 0 0;
}

.pdp-thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.pdp-thumb-strip .pdp-thumb {
  min-height: 126px;
  border: 1px solid #ddd;
}

.pdp-thumb-strip .pdp-thumb.is-active {
  border-color: #111;
}

.pdp-tryon {
  display: grid;
  place-items: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pdp-buybox--77 {
  border: 0;
  border-left: 1px solid #111;
  padding: 8px 0 0 34px;
}

.pdp-buybox--77 h1 {
  font-family: var(--body);
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 12px;
}

.pdp-review {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
}

.pdp-review span {
  letter-spacing: 1px;
}

.pdp-review a {
  text-decoration: underline;
}

.pdp-options--metal {
  display: grid;
  grid-template-columns: 1fr;
}

.pdp-setting-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 12px;
}

.pdp-setting-price div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pdp-setting-price strong {
  font-size: 26px;
}

.pdp-old-price {
  color: #777;
  text-decoration: line-through;
}

.pdp-setting-price small,
.pdp-tax-note {
  color: #555;
  font-size: 12px;
}

.pdp-tax-note {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}

.pdp-price-breakdown {
  border-bottom: 1px solid #111;
  margin-top: 16px;
  padding-bottom: 14px;
}

.pdp-price-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
}

.pdp-breakdown-total {
  border-top: 1px solid #ddd;
  margin-top: 6px;
  padding-top: 12px !important;
  font-size: 18px;
}

.pdp-actions--77 {
  grid-template-columns: 1fr 1fr;
}

.pdp-product-details {
  margin-top: 28px;
}

.pdp-product-details h2 {
  font-size: 18px;
  margin: 0 0 14px;
}

.pdp-product-details dl {
  margin: 0;
  display: grid;
  border-top: 1px solid #ddd;
}

.pdp-product-details div {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.pdp-product-details dt {
  color: #555;
}

.pdp-product-details dd {
  margin: 0;
  font-weight: 700;
}

.pdp-service-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #111;
  padding: 0 42px 54px;
}

.pdp-service-panels article {
  background: #fff;
  padding: 24px;
}

.pdp-service-panels h3 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pdp-service-panels p {
  margin: 0;
  color: #555;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .pdp-progress {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .pdp-reference-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 18px 16px 32px;
  }

  .pdp-visual--77 {
    min-height: 430px;
  }

  .pdp-thumb-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .pdp-buybox--77 {
    border-left: 0;
    border-top: 1px solid #111;
    padding: 24px 0 0;
  }

  .pdp-actions--77 {
    grid-template-columns: 1fr;
  }

  .pdp-service-panels {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
  }
}

/* Product detail redesign */
.pdp-shell--77 {
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 150px, #f7f7f7 150px, #f7f7f7 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 78px;
}

.pdp-progress {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 42px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.pdp-step {
  min-height: 52px;
  padding: 8px 10px;
  border-radius: 8px;
}

.pdp-step span {
  border-color: rgba(0, 0, 0, 0.18);
  background: #ffffff;
}

.pdp-step.is-active {
  background: #f5f5f5;
}

.pdp-step.is-active span {
  background: #111111;
  color: #ffffff;
}

.pdp-step small {
  color: #555555;
}

.pdp-reference-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.72fr);
  gap: 32px;
  align-items: start;
  padding: 34px 42px 42px;
  background: transparent;
}

.pdp-gallery--77 {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.pdp-reference-layout > * {
  min-width: 0;
}

.pdp-gallery--77 .breadcrumbs {
  color: #555555;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pdp-back-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 12px 0 16px;
  color: #111111;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.pdp-back-link::before {
  content: "<";
  color: #555555;
}

.pdp-visual--77 {
  min-height: 620px;
  aspect-ratio: 1.08 / 1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 245, 0.98)),
    radial-gradient(circle at 50% 52%, rgba(18, 18, 18, 0.24), transparent 38%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.pdp-visual--77 img {
  width: min(68%, 620px);
  max-height: 68%;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.18));
  animation: none;
}

.pdp-spin-hint {
  top: 18px;
  right: auto;
  left: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #333333;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.pdp-frame-index {
  bottom: 20px;
  gap: 8px;
}

.pdp-frame-index span {
  width: 7px;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: transparent;
}

.pdp-frame-index span.is-active {
  width: 26px;
  background: #111111;
}

.pdp-sample-note {
  margin: 14px 0 0;
  color: #555555;
  text-align: left;
}

.pdp-thumb-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.pdp-thumb-strip .pdp-thumb {
  min-height: 118px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pdp-thumb-strip .pdp-thumb:hover,
.pdp-thumb-strip .pdp-thumb.is-active {
  border-color: #111111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pdp-thumb img {
  height: 92px;
}

.pdp-tryon {
  background: #111111;
  color: #ffffff;
  font-size: 12px;
}

.pdp-buybox--77 {
  position: sticky;
  top: 18px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
}

.pdp-buybox--77 h1 {
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  margin: 4px 0 10px;
}

.pdp-review {
  margin: 0 0 12px;
  color: #555555;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.pdp-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(18, 18, 18, 0.42);
  border-radius: 999px;
  background: #ffffff;
  color: #333333;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.pdp-lead {
  color: #333333;
  font-size: 15px;
  line-height: 1.65;
}

.pdp-choice {
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp-choice__head {
  align-items: center;
  margin-bottom: 12px;
}

.pdp-choice__head span {
  color: #555555;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pdp-options--metal {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.pdp-option,
.pdp-swatch {
  min-height: 44px;
  border-color: rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  background: #ffffff;
  font-size: 13px;
}

.pdp-option--static {
  cursor: default;
  background: #f7f7f7;
  color: #333333;
}

.pdp-option.is-selected,
.pdp-swatch.is-selected {
  background: #111111;
  border-color: #111111;
}

.pdp-setting-price {
  align-items: flex-start;
  margin-top: 22px;
  padding: 20px;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
}

.pdp-setting-price div {
  flex-wrap: wrap;
}

.pdp-setting-price strong {
  font-size: 30px;
  line-height: 1;
}

.pdp-setting-price small {
  max-width: 170px;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.pdp-tax-note {
  padding: 14px 0 0;
  border-bottom: 0;
  color: #555555;
  line-height: 1.55;
}

.pdp-price-breakdown {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #f5f5f5;
}

.pdp-price-breakdown div {
  color: #333333;
  font-size: 14px;
}

.pdp-price-breakdown strong {
  color: #111111;
}

.pdp-breakdown-total {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  color: #111111 !important;
}

.pdp-actions--77 {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pdp-actions--77 .button,
.pdp-actions--77 .button-outline,
.pdp-cart-button {
  min-height: 50px;
  border-radius: 8px;
}

.pdp-actions--77 .button {
  background: #111111;
  color: #ffffff;
}

.pdp-actions--77 .button-outline {
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #ffffff;
  color: #111111;
}

.pdp-selection {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #f5f5f5;
}

.pdp-selection span {
  color: #555555;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.pdp-cart-button {
  margin-top: 12px;
  background: var(--lux-accent);
  color: #111111;
}

.pdp-product-details {
  margin-top: 24px;
}

.pdp-product-details h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
}

.pdp-product-details dl {
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp-product-details div {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp-product-details dt {
  color: #555555;
}

.pdp-service-panels {
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 14px;
  background: transparent;
  padding: 0 42px 0;
}

.pdp-service-panels article {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
}

.pdp-service-panels h3 {
  color: #111111;
  font-size: 13px;
}

.pdp-service-panels p {
  color: #555555;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .pdp-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px 16px;
  }

  .pdp-step {
    grid-template-columns: 30px 1fr;
    column-gap: 8px;
  }

  .pdp-step span {
    width: 30px;
    height: 30px;
  }

  .pdp-step small {
    display: none;
  }

  .pdp-reference-layout {
    grid-template-columns: 1fr;
    padding: 22px 16px 36px;
  }

  .pdp-visual--77 {
    min-height: 440px;
  }

  .pdp-buybox--77 {
    position: static;
    padding: 24px;
  }

  .pdp-service-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 16px 42px;
  }
}

@media (max-width: 640px) {
  .pdp-shell--77 {
    padding-bottom: 96px;
  }

  .pdp-progress {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pdp-step {
    min-height: 44px;
  }

  .pdp-reference-layout {
    display: block;
    width: 100%;
    max-width: 100vw;
    padding: 18px 14px 28px;
  }

  .pdp-gallery--77,
  .pdp-buybox--77 {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
    margin-right: auto;
    margin-left: auto;
  }

  .pdp-gallery--77 .breadcrumbs {
    font-size: 10px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .pdp-visual--77 {
    min-height: 340px;
    aspect-ratio: 1 / 1;
  }

  .pdp-visual--77 img {
    width: min(78%, 290px);
    max-height: 70%;
  }

  .pdp-spin-hint {
    top: 12px;
    left: 12px;
    font-size: 10px;
  }

  .pdp-thumb-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pdp-thumb-strip .pdp-thumb {
    min-height: 78px;
    padding: 8px;
  }

  .pdp-thumb img {
    height: 56px;
  }

  .pdp-buybox--77 {
    margin-top: 30px;
    padding: 22px 16px;
    overflow: hidden;
  }

  .pdp-buybox--77 h1 {
    font-size: 32px;
  }

  .pdp-badges {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .pdp-badges span {
    max-width: 100%;
  }

  .pdp-setting-price {
    flex-direction: column;
  }

  .pdp-setting-price small {
    max-width: none;
    text-align: left;
  }

  .pdp-actions--77 {
    grid-template-columns: 1fr;
  }

  .pdp-choice__head {
    display: block;
  }

  .pdp-choice__head strong {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .pdp-price-breakdown div {
    flex-direction: column;
    gap: 3px;
  }

  .pdp-product-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pdp-service-panels {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 32px;
  }

  .pdp-mobile-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: auto;
    max-width: calc(100vw - 24px);
    overflow: hidden;
    border: 0;
    border-radius: 8px 8px 0 0;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.14);
  }

  .pdp-mobile-bar div {
    min-width: 0;
  }

  .pdp-mobile-bar .button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    white-space: nowrap;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-strong);
  font-size: 14px;
}

.category-icon {
  width: 34px;
  height: 34px;
  opacity: 0.9;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.cart-drawer.is-open {
  display: block;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: var(--lux-white);
  opacity: 0.35;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--surface-2);
  box-shadow: -20px 0 50px var(--lux-black);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer__header button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.cart-drawer__items {
  display: grid;
  gap: 12px;
  overflow: auto;
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
}

.cart-drawer__thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.cart-drawer__footer {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.auth-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
}

.auth-divider {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  color: var(--ink-muted);
}

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

.auth-form input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  background: var(--surface-2);
}

.account-shell {
  display: block;
  width: 100%;
}

.account-section {
  padding: 0;
}

.account-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.account-showcase,
.account-surface {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 0;
}

.account-showcase {
  min-height: 100%;
  padding: 42px;
  background:
    radial-gradient(circle at top left, rgba(18, 18, 18, 0.32), transparent 34%),
    linear-gradient(145deg, #111111 0%, #1f1f1f 48%, #f5f5f5 160%);
  color: #ffffff;
}

.account-showcase::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  pointer-events: none;
}

.account-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d9d9d9;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.account-showcase__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
}

.account-showcase__title {
  margin: 24px 0 14px;
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.96;
}

.account-showcase__copy {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.8;
}

.account-showcase__features {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.account-showcase__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.account-showcase__feature-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.account-showcase__feature strong,
.account-showcase__feature p {
  margin: 0;
}

.account-showcase__feature strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.account-showcase__feature p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.account-surface {
  padding: 0;
  background: #fff;
  box-shadow: none;
}

.account-status {
  width: min(100% - 48px, var(--max-width));
  margin: 24px auto 18px;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.account-status[data-state="info"] {
  background: rgba(0, 0, 0, 0.06);
  color: #111111;
}

.account-status[data-state="success"] {
  background: rgba(245, 245, 245, 0.26);
  color: #333333;
}

.account-status[data-state="error"] {
  background: rgba(245, 245, 245, 0.24);
  color: #333333;
}

.account-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.account-nav button {
  border: 1px solid rgba(18, 18, 18, 0.4);
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.account-nav button.is-active,
.account-nav button:hover {
  background: #111111;
  color: #ffffff;
  transform: translateY(-1px);
}

.account-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  min-height: 640px;
}

.account-auth-card {
  display: grid;
  align-content: start;
  padding: clamp(44px, 5vw, 70px) clamp(34px, 5vw, 70px);
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #000000;
}

.account-auth-card.is-active {
  box-shadow: none;
}

.account-auth-card[data-auth-card="login"] {
  background: #000000;
  color: #fff;
}

.account-auth-card[data-auth-card="login"] .account-auth-card__label,
.account-auth-card[data-auth-card="login"] .account-field label,
.account-auth-card[data-auth-card="login"] .account-form__hint,
.account-auth-card[data-auth-card="login"] .account-link-btn,
.account-auth-card[data-auth-card="login"] .account-check {
  color: rgba(255, 255, 255, 0.86);
}

.account-auth-card[data-auth-card="login"] .account-field input {
  border-color: rgba(255, 255, 255, 0.28);
  background: #fff;
  color: #000000;
}

.account-auth-card[data-auth-card="login"] .account-field input:focus {
  outline-color: rgba(255, 255, 255, 0.42);
}

.account-auth-card[data-auth-card="login"] .account-cta {
  border: 1px solid #fff;
  background: #fff;
  color: #000000;
}

.account-auth-card[data-auth-card="login"] .account-cta:hover {
  background: transparent;
  color: #fff;
}

.account-auth-card__label {
  margin-bottom: 14px;
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.account-auth-card h2,
.account-auth-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.15;
}

.account-auth-card h2 {
  margin-bottom: 34px;
}

.account-social {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
}

.account-social[hidden],
.account-divider[hidden] {
  display: none;
}

.account-social > span {
  color: #555555;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.account-auth-card[data-auth-card="login"] .account-social > span {
  color: rgba(255, 255, 255, 0.8);
}

.account-google-button {
  width: min(100%, 360px);
  min-height: 44px;
}

.account-apple-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 360px);
  min-height: 44px;
  border: 1px solid #111111;
  border-radius: 4px;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.account-apple-button[hidden] {
  display: none;
}

.account-apple-button:hover {
  background: #ffffff;
  color: #111111;
}

.account-apple-button__mark {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: currentColor;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
}

.account-apple-button:hover .account-apple-button__mark {
  color: #ffffff;
}

.account-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 0;
  color: #666666;
  font-size: 12px;
  font-weight: 700;
}

.account-divider::before,
.account-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.16);
}

.account-auth-card[data-auth-card="login"] .account-divider {
  color: rgba(255, 255, 255, 0.72);
}

.account-auth-card[data-auth-card="login"] .account-divider::before,
.account-auth-card[data-auth-card="login"] .account-divider::after {
  background: rgba(255, 255, 255, 0.2);
}

.account-benefits {
  display: grid;
  gap: 18px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.account-benefits li {
  position: relative;
  padding-left: 34px;
  color: #000000;
  font-size: 15px;
  line-height: 1.55;
}

.account-benefits li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 0;
  color: #000000;
  font-weight: 700;
}

.account-recovery {
  margin-top: 0;
  padding: 54px clamp(28px, 4vw, 64px);
  border: 0;
  border-radius: 0;
  background: #000000;
  color: #fff;
}

.account-recovery__back {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.account-recovery .account-field label,
.account-recovery .account-form__hint,
.account-recovery .account-link-btn {
  color: rgba(255, 255, 255, 0.86);
}

.account-recovery .account-field input {
  border-color: rgba(255, 255, 255, 0.28);
  background: #fff;
  color: #000000;
}

.account-recovery .account-cta {
  border: 1px solid #fff;
  background: #fff;
  color: #000000;
}

.account-panel__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #777777;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.account-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.04;
}

.account-panel__copy {
  margin: 12px 0 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.7;
}

.account-form {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.account-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-form-row--address {
  grid-template-columns: 0.65fr 1fr 1fr;
}

.account-field {
  display: grid;
  gap: 8px;
}

.account-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #000000;
}

.account-field input {
  min-width: 0;
  border: 1px solid #9f9f9f;
  border-radius: 0;
  padding: 14px 16px;
  background: #f7f7f7;
  color: #000000;
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.account-field input:focus {
  border-color: #000000;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.18);
  outline: none;
}

.account-form__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
}

.account-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-size: 14px;
  line-height: 1.4;
}

.account-check input {
  width: 14px;
  height: 14px;
  accent-color: currentColor;
}

.account-form__hint,
.account-link-btn {
  color: #555555;
  font-size: 13px;
  line-height: 1.6;
}

.account-link-btn {
  border: none;
  background: transparent;
  padding: 0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.account-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  border-radius: 0;
  text-transform: uppercase;
}

.account-form__heading {
  display: grid;
  gap: 4px;
}

.account-form__heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.account-dashboard {
  display: grid;
  gap: 22px;
  width: min(100% - 48px, var(--max-width));
  margin: 24px auto 56px;
}

.account-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.05);
}

.account-avatar {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111111 0%, #000000 100%);
  color: #ffffff;
  font-family: var(--display);
  font-size: 26px;
}

.account-profile__meta p,
.account-profile__meta h3 {
  margin: 0;
}

.account-profile__meta h3 {
  font-size: 28px;
  font-family: var(--display);
}

.account-profile__meta p {
  margin-top: 6px;
  color: #555555;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.18);
  color: #333333;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.account-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 18, 18, 0.28);
}

.account-metric strong,
.account-metric span,
.account-metric p {
  display: block;
  margin: 0;
}

.account-metric span {
  margin-bottom: 16px;
  color: #777777;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.account-metric strong {
  font-family: var(--display);
  font-size: 30px;
}

.account-metric p {
  margin-top: 10px;
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

.account-note {
  padding: 22px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.04);
}

.account-note strong,
.account-note p {
  margin: 0;
}

.account-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.account-note p {
  color: #555555;
  line-height: 1.7;
}

.account-profile-form {
  padding: 22px;
  border: 1px solid rgba(18, 18, 18, 0.28);
  border-radius: 24px;
  background: #fff;
}

.account-profile-data {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(18, 18, 18, 0.28);
  border-radius: 24px;
  background: #fff;
}

.account-data-table {
  display: grid;
  margin: 0;
  border: 1px solid rgba(18, 18, 18, 0.28);
  border-bottom: 0;
}

.account-data-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) 1fr;
  border-bottom: 1px solid rgba(18, 18, 18, 0.28);
}

.account-data-table dt,
.account-data-table dd {
  margin: 0;
  padding: 14px 16px;
  min-width: 0;
  line-height: 1.55;
}

.account-data-table dt {
  color: #555555;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.03);
}

.account-data-table dd {
  color: #000000;
  overflow-wrap: anywhere;
}

.account-edit-toggle {
  justify-self: start;
}

.account-form-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

@media (max-width: 1100px) {
  .account-shell {
    grid-template-columns: 1fr;
  }

  .account-showcase {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .account-showcase {
    padding: 22px;
    border-radius: 26px;
  }

  .account-surface {
    padding: 0;
    border-radius: 20px;
  }

  .account-auth-grid {
    min-height: 0;
  }

  .account-auth-card,
  .account-recovery {
    padding: 34px 22px;
  }

  .account-showcase__title,
  .account-panel h2 {
    font-size: 32px;
  }

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

  .account-form-row,
  .account-form-row--address,
  .account-auth-grid,
  .account-metrics {
    grid-template-columns: 1fr;
  }

  .account-profile {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .account-data-table div,
  .account-form-actions {
    grid-template-columns: 1fr;
  }
}

body.cookie-banner-visible {
  padding-bottom: 120px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--lux-white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -20px 60px var(--lux-black);
  opacity: 0;
  transform: translateY(120%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 45;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.cookie-banner__content strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.3px;
}

.cookie-banner__content p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.cookie-banner__content a {
  color: var(--gold-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.cookie-banner__actions .button,
.cookie-banner__actions .button-outline {
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  body.cookie-banner-visible {
    padding-bottom: 160px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Palette + Minimal Luxury Overrides */
:root {
  --lux-black: #000000;
  --lux-white: #ffffff;
  --lux-offwhite: #f5f5f5;
  --lux-accent: #000000;
  --lux-accent-dark: #000000;
  --lux-accent-soft: #ffffff;
  --lux-accent-line: rgba(0, 0, 0, 0.18);
  --lux-dark: var(--lux-black);
  --ink: var(--lux-black);
  --ink-muted: var(--lux-accent);
  --surface: var(--lux-white);
  --surface-2: var(--lux-white);
  --champagne: var(--lux-white);
  --gold: var(--lux-accent);
  --gold-strong: var(--lux-accent);
  --line: var(--lux-accent-line);
  --shadow-soft: none;
  --shadow-card: none;
}

body {
  position: relative;
  background-color: #ffffff;
  color: var(--lux-black);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.018);
  -webkit-mask-image:
    url("../img/icon.png"),
    url("../img/icon.png"),
    url("../img/icon.png"),
    url("../img/icon.png"),
    url("../img/icon.png");
  mask-image:
    url("../img/icon.png"),
    url("../img/icon.png"),
    url("../img/icon.png"),
    url("../img/icon.png"),
    url("../img/icon.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 7% 28%, 91% 17%, 78% 76%, 19% 86%, 48% 56%;
  mask-position: 7% 28%, 91% 17%, 78% 76%, 19% 86%, 48% 56%;
  -webkit-mask-size: 180px 180px, 112px 112px, 150px 150px, 84px 84px, 118px 118px;
  mask-size: 180px 180px, 112px 112px, 150px 150px, 84px 84px, 118px 118px;
}

body > * {
  position: relative;
  z-index: 1;
}

.top-bar {
  background: var(--lux-black);
  color: var(--lux-white);
}

.promo-bar {
  background: var(--lux-accent);
  color: var(--lux-white);
}

.promo-bar .promo-code {
  font-weight: 700;
}

.top-strip {
  background: var(--lux-white);
  color: var(--lux-black);
  border: none;
}

.main-nav {
  background: var(--lux-white);
  border: none;
  box-shadow: none;
  border-bottom: 1px solid var(--lux-offwhite);
}

.nav-links a {
  color: var(--lux-black);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--lux-accent);
}

.mega-menu,
.page-hero-inner,
.value-card,
.story,
.trust-item,
.info-strip,
.cart-item,
.cart-drawer__panel,
.auth-button,
.category-tile {
  background: var(--lux-white);
  border: none;
  box-shadow: none;
}

.story-panel,
.cart-drawer__thumb,
.product-media {
  background: var(--lux-white);
  border: none;
}

.card {
  background: var(--lux-white);
  border: none;
  box-shadow: none;
}

.account-form.auth-form input {
  border: 1px solid #9f9f9f;
  background: #f7f7f7;
  box-shadow: none;
}

.account-form.auth-form input:focus {
  border-color: #000000;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.18);
  outline: none;
}

.card:hover,
.category-tile:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.product-media::after {
  border: none;
}

.chip {
  background: var(--lux-accent);
  color: var(--lux-white);
}

button.chip {
  border: 1px solid var(--lux-accent);
  cursor: pointer;
  font: inherit;
}

.chip.is-active {
  background: var(--lux-accent-dark);
  color: #fff;
}

.store-product-card {
  background: #fff;
  border: 1px solid #111;
  border-radius: 8px;
  box-shadow: none;
}

.store-product-card__link {
  color: inherit;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}

.store-product-card__price {
  color: #111;
  font-weight: 700;
}

.shop-products-loading,
.shop-empty {
  grid-column: 1 / -1;
}

.shop-products-loading {
  border: 1px solid #111;
  color: #555;
  padding: 28px;
  text-align: center;
}

.shop-empty {
  background: #fff;
  border: 1px solid #111;
  padding: 34px;
  text-align: center;
}

.shop-empty h3 {
  font-family: var(--body);
  font-size: 20px;
  margin: 0 0 8px;
}

.shop-empty p {
  color: #555;
  margin: 0 auto 18px;
  max-width: 560px;
}

.pdp-option--static {
  cursor: default;
  opacity: 0.7;
}

.pdp-cart-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.cta-banner {
  background: var(--lux-white);
  color: var(--lux-black);
}

.cta-banner p {
  color: var(--lux-black);
}

.footer {
  background: var(--lux-white);
  color: var(--lux-black);
  border-top: 1px solid var(--lux-offwhite);
  padding: 64px 0 0;
  margin-top: 48px;
}

.footer a,
.footer.footer-modern .footer-col a {
  color: var(--lux-black);
}

.footer.footer-modern .footer-badge,
.footer-bottom-inner {
  color: var(--lux-black);
}

.footer.footer-modern .footer-grid,
.footer.footer-modern .footer-badge__icon,
.footer.footer-modern .footer-form,
.footer.footer-modern .social-link,
.cart-drawer__item {
  border: none;
}

.footer.footer-modern .footer-badge__icon,
.footer.footer-modern .social-link {
  color: var(--lux-black);
}

.footer.footer-modern .footer-form input {
  color: var(--lux-black);
}

.footer.footer-modern .footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--lux-offwhite);
}

.footer.footer-modern .footer-col h4 {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--lux-black);
}

.footer.footer-modern .footer-col a {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--lux-black);
}

.footer.footer-modern .footer-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--lux-offwhite);
  border-radius: 4px;
  margin-bottom: 18px;
}

.footer.footer-modern .footer-form input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  font-family: var(--body);
  background: transparent;
  color: var(--lux-black);
}

.footer.footer-modern .footer-form button {
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--lux-black);
}

.footer.footer-modern .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer.footer-modern .social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--lux-black);
}

.footer.footer-modern .footer-social .social-link {
  color: #000;
  font-size: 0;
  line-height: 0;
  margin-bottom: 0;
  position: relative;
}

.footer.footer-modern .footer-social .social-link::before {
  background: #000;
  content: "";
  display: block;
  height: 22px;
  width: 22px;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer.footer-modern .footer-social .social-link[aria-label="Instagram"]::before {
  -webkit-mask-image: url("../icons/social/instagram.svg");
  mask-image: url("../icons/social/instagram.svg");
}

.footer.footer-modern .footer-social .social-link[aria-label="Facebook"]::before {
  -webkit-mask-image: url("../icons/social/facebook.svg");
  mask-image: url("../icons/social/facebook.svg");
}

.footer.footer-modern .footer-social .social-link[aria-label="X"]::before {
  -webkit-mask-image: url("../icons/social/x.svg");
  mask-image: url("../icons/social/x.svg");
}

.footer.footer-modern .footer-social .social-link[aria-label="Pinterest"]::before {
  -webkit-mask-image: url("../icons/social/pinterest.svg");
  mask-image: url("../icons/social/pinterest.svg");
}

.footer.footer-modern .footer-social .social-link[aria-label="LinkedIn"]::before {
  -webkit-mask-image: url("../icons/social/linkedin.svg");
  mask-image: url("../icons/social/linkedin.svg");
}

.footer.footer-modern .footer-social .social-link[aria-label="YouTube"]::before {
  height: 24px;
  width: 24px;
  -webkit-mask-image: url("../icons/social/youtube.svg");
  mask-image: url("../icons/social/youtube.svg");
}

.footer.footer-modern .footer-social .social-link[aria-label="TikTok"]::before {
  height: 24px;
  width: 20px;
  -webkit-mask-image: url("../icons/social/tiktok.svg");
  mask-image: url("../icons/social/tiktok.svg");
}

.footer-bottom {
  padding: 16px 0 24px;
  border-top: 1px solid var(--lux-offwhite);
}

.footer-bottom-inner {
  font-size: 16px;
  color: var(--lux-black);
}

.footer-trust {
  color: var(--lux-black);
  display: none !important;
}

.cookie-banner {
  background: var(--lux-white);
  border: none;
  box-shadow: none;
}

.scroll-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 44;
  width: 46px;
  height: 46px;
  border: 1px solid var(--lux-offwhite);
  border-radius: 999px;
  background: var(--lux-white);
  color: var(--lux-black);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover,
.scroll-to-top:focus {
  border-color: var(--lux-black);
}

body.cookie-banner-visible .scroll-to-top {
  bottom: 150px;
}

body.has-live-chat .scroll-to-top {
  right: 92px;
}

.live-chat-widget {
  position: fixed;
  right: -166px;
  bottom: 22px;
  z-index: 60;
  font-family: var(--body);
  color: #050505;
  transition: right 0.28s ease, bottom 0.18s ease;
}

.live-chat-widget.is-open {
  right: 22px;
}

.live-chat-widget:not(.is-open) .live-chat-toggle:hover,
.live-chat-widget:not(.is-open) .live-chat-toggle:focus-visible {
  transform: translateX(-14px);
}

.live-chat-toggle {
  width: 230px;
  min-height: 62px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px 9px 9px;
  color: #050505;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.live-chat-toggle__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  color: #ffffff;
  flex: 0 0 auto;
}

.live-chat-toggle__icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.live-chat-toggle__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.live-chat-toggle__copy strong,
.live-chat-toggle__copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-chat-toggle__copy strong {
  font-size: 14px;
  line-height: 1.1;
}

.live-chat-toggle__copy small {
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
}

.live-chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(380px, calc(100vw - 32px));
  height: min(620px, calc(100vh - 110px));
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
}

.live-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 18px;
  color: #050505;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.live-chat-header__brand {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.live-chat-header__brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  object-fit: contain;
  padding: 8px;
  background: #ffffff;
}

.live-chat-header strong,
.live-chat-header small,
.live-chat-status {
  display: block;
}

.live-chat-header strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.05;
}

.live-chat-header small {
  margin-top: 6px;
  color: rgba(0, 0, 0, 0.56);
  line-height: 1.45;
}

.live-chat-status {
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-chat-status i {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 999px;
  display: inline-block;
  background: #18b66a;
  box-shadow: 0 0 0 5px rgba(24, 182, 106, 0.16);
}

.live-chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  color: #050505;
  background: #f7f7f7;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.live-chat-messages {
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 16px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.025), transparent 36%),
    #fafafa;
}

.live-chat-message {
  max-width: 84%;
  display: grid;
  gap: 5px;
}

.live-chat-message p {
  margin: 0;
  border-radius: 18px 18px 18px 5px;
  padding: 11px 13px;
  color: #0d0d0d;
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.live-chat-message span {
  padding-inline: 4px;
  color: rgba(0, 0, 0, 0.48);
  font-size: 11px;
}

.live-chat-message--customer {
  align-self: flex-end;
}

.live-chat-message--customer p {
  border-radius: 18px 18px 5px 18px;
  background: #eef8f2;
}

.live-chat-message--customer span {
  text-align: right;
}

.live-chat-form {
  display: grid;
  gap: 9px;
  padding: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.live-chat-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.live-chat-fields input,
.live-chat-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: 0;
  font: inherit;
}

.live-chat-fields input {
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
}

.live-chat-form label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: end;
}

.live-chat-form textarea {
  min-height: 42px;
  max-height: 112px;
  resize: none;
  border-radius: 21px;
  padding: 11px 14px;
  font-size: 14px;
  line-height: 1.4;
}

.live-chat-fields input:focus,
.live-chat-form textarea:focus {
  border-color: #050505;
}

.live-chat-form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #050505;
  cursor: pointer;
}

.live-chat-form button:disabled {
  opacity: 0.48;
  cursor: wait;
}

.live-chat-form button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.live-chat-form p {
  min-height: 16px;
  margin: -2px 8px 0;
  color: rgba(0, 0, 0, 0.54);
  font-size: 11px;
}

.live-chat-form p.is-success {
  color: #0d7c49;
}

.live-chat-form p.is-error {
  color: #a40000;
}

body.cookie-banner-visible .live-chat-widget {
  bottom: 150px;
}

@media (max-width: 640px) {
  .scroll-to-top {
    right: 76px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  body.cookie-banner-visible .scroll-to-top {
    bottom: 170px;
  }

  .live-chat-widget {
    right: -8px;
    bottom: 14px;
  }

  .live-chat-widget.is-open {
    right: 14px;
  }

  .live-chat-toggle {
    width: 62px;
    min-height: 62px;
    padding: 9px;
  }

  .live-chat-widget:not(.is-open) .live-chat-toggle:hover,
  .live-chat-widget:not(.is-open) .live-chat-toggle:focus-visible {
    transform: translateX(0);
  }

  .live-chat-toggle__copy {
    display: none;
  }

  .live-chat-panel {
    right: -2px;
    bottom: 74px;
    width: calc(100vw - 24px);
    height: min(620px, calc(100vh - 92px));
    border-radius: 22px;
  }

  .live-chat-fields {
    grid-template-columns: 1fr;
  }

  body.cookie-banner-visible .live-chat-widget {
    bottom: 170px;
  }
}

.locale-panel,
.locale-options {
  background: var(--lux-white);
  border: none;
  box-shadow: none;
}

.locale-label,
.breadcrumbs,
.card-muted,
.auth-divider,
.cookie-banner__content p {
  color: var(--lux-accent);
}

.button,
.button-outline {
  border: none;
  box-shadow: none;
}

.button {
  background: var(--lux-accent);
  color: var(--lux-white);
}

.button-outline {
  background: var(--lux-white);
  color: var(--lux-black);
}

.button:hover,
.button-outline:hover {
  background: var(--lux-accent-dark);
  color: var(--lux-white);
  box-shadow: none;
}

/* Mega menu icons */
.mega-col a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mega-col a::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: none;
  background: none center/contain no-repeat;
}

.mega-col a[data-icon]::before {
  display: inline-block;
  background-image: var(--mega-icon);
  filter: none;
}

.mega-col a[data-icon="diamond"] { --mega-icon: url("../icons/mega/diamond.svg"); }
.mega-col a[data-icon="setting"] { --mega-icon: url("../icons/mega/setting.svg"); }
.mega-col a[data-icon="gemstone"] { --mega-icon: url("../icons/mega/gemstone.svg"); }
.mega-col a[data-icon="round"] { --mega-icon: url("../icons/mega/round.svg"); }
.mega-col a[data-icon="oval"] { --mega-icon: url("../icons/mega/oval.svg"); }
.mega-col a[data-icon="emerald"] { --mega-icon: url("../icons/mega/emerald.svg"); }
.mega-col a[data-icon="cushion"] { --mega-icon: url("../icons/mega/cushion.svg"); }
.mega-col a[data-icon="marquise"] { --mega-icon: url("../icons/mega/marquise.svg"); }
.mega-col a[data-icon="radiant"] { --mega-icon: url("../icons/mega/radiant.svg"); }
.mega-col a[data-icon="pear"] { --mega-icon: url("../icons/shapes/pear.svg"); }
.mega-col a[data-icon="solitaire"] { --mega-icon: url("../icons/mega/solitaire.svg"); }
.mega-col a[data-icon="halo"] { --mega-icon: url("../icons/mega/halo.svg"); }
.mega-col a[data-icon="three-stone"] { --mega-icon: url("../icons/mega/three-stone.svg"); }
.mega-col a[data-icon="vintage"] { --mega-icon: url("../icons/mega/vintage.svg"); }
.mega-col a[data-icon="cathedral"] { --mega-icon: url("../icons/mega/cathedral.svg"); }
.mega-col a[data-icon="bypass"] { --mega-icon: url("../icons/mega/bypass.svg"); }
.mega-col a[data-icon="diamond-band"] { --mega-icon: url("../icons/mega/diamond-band.svg"); }
.mega-col a[data-icon="band"] { --mega-icon: url("../icons/mega/band.svg"); }
.mega-col a[data-icon="band-width"] { --mega-icon: url("../icons/mega/band-width.svg"); }
.mega-col a[data-icon="eternity"] { --mega-icon: url("../icons/mega/eternity.svg"); }
.mega-col a[data-icon="minimal"] { --mega-icon: url("../icons/mega/minimal.svg"); }
.mega-col a[data-icon="signet"] { --mega-icon: url("../icons/mega/signet.svg"); }
.mega-col a[data-icon="stacking"] { --mega-icon: url("../icons/mega/stacking.svg"); }
.mega-col a[data-icon="ring-size"] { --mega-icon: url("../icons/mega/ring-size.svg"); }
.mega-col a[data-icon="engraving"] { --mega-icon: url("../icons/mega/engraving.svg"); }
.mega-col a[data-icon="care"] { --mega-icon: url("../icons/mega/care.svg"); }
.mega-col a[data-icon="consultation"] { --mega-icon: url("../icons/mega/consultation.svg"); }
.mega-col a[data-icon="initials"] { --mega-icon: url("../icons/mega/initials.svg"); }
.mega-col a[data-icon="date"] { --mega-icon: url("../icons/mega/date.svg"); }
.mega-col a[data-icon="symbol"] { --mega-icon: url("../icons/mega/symbol.svg"); }
.mega-col a[data-icon="coordinates"] { --mega-icon: url("../icons/mega/coordinates.svg"); }
.mega-col a[data-icon="friendship"] { --mega-icon: url("../icons/mega/friendship.svg"); }
.mega-col a[data-icon="family"] { --mega-icon: url("../icons/mega/family.svg"); }
.mega-col a[data-icon="anniversary"] { --mega-icon: url("../icons/mega/anniversary.svg"); }
.mega-col a[data-icon="graduation"] { --mega-icon: url("../icons/mega/graduation.svg"); }
.mega-col a[data-icon="carat"] { --mega-icon: url("../icons/mega/carat.svg"); }
.mega-col a[data-icon="quality"] { --mega-icon: url("../icons/mega/quality.svg"); }
.mega-col a[data-icon="lab-grown"] { --mega-icon: url("../icons/mega/lab-grown.svg"); }
.mega-col a[data-icon="certificate"] { --mega-icon: url("../icons/mega/certificate.svg"); }
.mega-col a[data-icon="price"] { --mega-icon: url("../icons/mega/price.svg"); }
.mega-col a[data-icon="finance"] { --mega-icon: url("../icons/mega/finance.svg"); }
.mega-col a[data-icon="custom-design"] { --mega-icon: url("../icons/mega/custom-design.svg"); }
.mega-col a[data-icon="shipping"] { --mega-icon: url("../icons/mega/shipping.svg"); }
.mega-col a[data-icon="returns"] { --mega-icon: url("../icons/mega/returns.svg"); }
.mega-col a[data-icon="trend"] { --mega-icon: url("../icons/mega/trend.svg"); }
.mega-col a[data-icon="style"] { --mega-icon: url("../icons/mega/style.svg"); }
.mega-col a[data-icon="sets"] { --mega-icon: url("../icons/mega/sets.svg"); }
.mega-col a[data-icon="faq"] { --mega-icon: url("../icons/mega/faq.svg"); }
.mega-col a[data-icon="contact"] { --mega-icon: url("../icons/mega/contact.svg"); }
.mega-col a[data-icon="online-consultation"] { --mega-icon: url("../icons/mega/online-consultation.svg"); }
.mega-col a[data-icon="gem-sapphire"] { --mega-icon: url("../icons/mega/gem-sapphire.svg"); }
.mega-col a[data-icon="gem-ruby"] { --mega-icon: url("../icons/mega/gem-ruby.svg"); }
.mega-col a[data-icon="gem-emerald"] { --mega-icon: url("../icons/mega/gem-emerald.svg"); }
.mega-col a[data-icon="gem-morganite"] { --mega-icon: url("../icons/mega/gem-morganite.svg"); }
.mega-col a[data-icon="color-blue"] { --mega-icon: url("../icons/mega/color-blue.svg"); }
.mega-col a[data-icon="color-green"] { --mega-icon: url("../icons/mega/color-green.svg"); }
.mega-col a[data-icon="color-pink"] { --mega-icon: url("../icons/mega/color-pink.svg"); }
.mega-col a[data-icon="color-yellow"] { --mega-icon: url("../icons/mega/color-yellow.svg"); }
.mega-col a[data-icon="white-gold"] { --mega-icon: url("../icons/mega/white-gold.svg"); }
.mega-col a[data-icon="yellow-gold"] { --mega-icon: url("../icons/mega/yellow-gold.svg"); }
.mega-col a[data-icon="rose-gold"] { --mega-icon: url("../icons/mega/rose-gold.svg"); }
.mega-col a[data-icon="platinum"] { --mega-icon: url("../icons/mega/platinum.svg"); }
.mega-col a[href*="farbe=blau"][data-icon] { --mega-icon: url("../icons/mega/color-blue.svg"); }
.mega-col a[href*="farbe=gruen"][data-icon] { --mega-icon: url("../icons/mega/color-green.svg"); }
.mega-col a[href*="farbe=rosa"][data-icon] { --mega-icon: url("../icons/mega/color-pink.svg"); }
.mega-col a[href*="farbe=gelb"][data-icon] { --mega-icon: url("../icons/mega/color-yellow.svg"); }
.mega-col a[href*="edelstein=saphir"][data-icon] { --mega-icon: url("../icons/mega/gem-sapphire.svg"); }
.mega-col a[href*="edelstein=rubin"][data-icon] { --mega-icon: url("../icons/mega/gem-ruby.svg"); }
.mega-col a[href*="edelstein=smaragd"][data-icon] { --mega-icon: url("../icons/mega/gem-emerald.svg"); }
.mega-col a[href*="edelstein=morganit"][data-icon] { --mega-icon: url("../icons/mega/gem-morganite.svg"); }

.hero.hero-photo {
  color: var(--lux-white);
  min-height: 540px;
}

.hero-photo__media {
  background-position: center top;
}

.hero-photo__overlay {
  background:
    radial-gradient(circle at 67% 48%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.42) 43%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.36) 46%, rgba(0, 0, 0, 0.58));
  opacity: 1;
}

.hero-photo__inner {
  justify-content: center;
  align-items: center;
  padding: 88px 24px;
}

.hero-photo__content {
  width: min(100%, 700px);
  min-width: 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 2.4px;
  margin-bottom: 12px;
}

.hero-title {
  max-width: 700px;
  font-size: clamp(48px, 4.5vw, 76px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.hero-meta {
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
}

.hero-title,
.hero-copy,
.hero-meta {
  color: var(--lux-white);
}

.hero .button-light {
  border-color: var(--lux-white);
  color: var(--lux-white);
  background: transparent;
}

.hero .button-light.button {
  background: var(--lux-white);
  color: var(--lux-black);
}

@media (max-width: 1024px) {
  .hero.hero-photo {
    min-height: 560px;
  }

  .hero-photo__inner {
    padding: 72px 32px;
  }

  .hero-photo__content {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: clamp(42px, 7vw, 62px);
  }
}

@media (max-width: 640px) {
  .promo-bar {
    padding: 7px 12px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.7px;
  }

  .hero.hero-photo {
    min-height: 520px;
  }

  .hero-photo__media {
    background-position: 34% top;
  }

  .hero-photo__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.82));
  }

  .hero-photo__inner {
    align-items: center;
    padding: 72px 20px 58px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.08;
    text-wrap: auto;
    overflow-wrap: normal;
  }

  .hero-copy {
    max-width: 320px;
    font-size: 15px;
  }
}

/* Shop by shape */
.section-header--center {
  justify-content: center;
  text-align: center;
}

.shape-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.shape-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 6px;
  border-radius: 12px;
  color: var(--lux-black);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.shape-card:hover {
  background: var(--lux-offwhite);
  transform: translateY(-2px);
}

.shape-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.shape-card span {
  font-size: 13px;
  letter-spacing: 0.3px;
  text-align: center;
}

/* Homepage polish */
.hero.hero-photo {
  min-height: 560px;
}

.hero-photo__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 32% 50%, rgba(0, 0, 0, 0.22), transparent 30%);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.hero-photo__content {
  position: relative;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 14px;
}

.hero-photo__content::before {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  right: -64px;
  top: -36px;
  background: url("../img/icon.png") center/contain no-repeat;
  opacity: 0.13;
  filter: invert(1);
}

.hero-certifications {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-certifications span {
  min-width: 48px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-align: center;
}

.trust-section {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding-top: 28px;
  padding-bottom: 46px;
  background: #ffffff;
}

.trust-bar--home {
  gap: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background: #ffffff;
}

.trust-bar--home .trust-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 154px;
  padding: 34px 30px;
  border: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  background: #ffffff;
  color: #000000;
  line-height: 1.35;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.trust-bar--home .trust-item:last-child {
  border-right: 0;
}

.trust-bar--home .trust-item:hover {
  transform: none;
  background: #f7f7f7;
  box-shadow: none;
}

.trust-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  background: #f7f7f7;
  box-shadow: none;
}

.trust-icon span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.trust-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.trust-copy strong {
  color: #000000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-copy small {
  max-width: 290px;
  color: #555555;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.value-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stone-showcase-section {
  padding: 24px 0 30px;
  background: #ffffff;
}

.stone-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #ffffff;
}

.stone-showcase-card {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  min-height: 720px;
  overflow: hidden;
  color: #111111;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 72%);
  border-right: 4px solid #ffffff;
  outline: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, outline-color 0.22s ease;
}

.stone-showcase-card:last-child {
  border-right: 0;
}

.stone-showcase-card:hover {
  transform: translateY(-2px);
  outline-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.1);
}

.stone-showcase-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 390px;
  margin: 0;
  padding: 46px 32px 6px;
  background: #fafafa;
}

.stone-showcase-media img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

.stone-showcase-card--gemstones .stone-showcase-media img {
  transform: scale(0.95);
}

.stone-showcase-card--lab .stone-showcase-media img {
  transform: scaleX(-1);
}

.stone-showcase-copy {
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 18px clamp(28px, 3.4vw, 54px) 58px;
}

.stone-showcase-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #111111;
}

.stone-showcase-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stone-showcase-copy small {
  display: block;
  margin-top: 19px;
  color: #111111;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.stone-showcase-copy h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(24px, 1.65vw, 30px);
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.08;
  text-transform: uppercase;
  white-space: nowrap;
}

.stone-showcase-rule {
  width: 46px;
  height: 1px;
  margin: 15px 0 18px;
  background: var(--lux-accent);
}

.stone-showcase-copy p {
  max-width: 315px;
  margin: 0;
  color: #171717;
  font-size: 14px;
  line-height: 1.64;
}

.home-shop-section {
  padding-top: 54px;
  padding-bottom: 34px;
  background: #ffffff;
}

.home-shop-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
  padding: 0 18px;
}

.home-shop-heading h2 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.home-shop-heading p,
.home-section-copy {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.home-shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 18px;
}

.home-shop-card,
.shop-category-card,
.home-product-card,
.home-quick-shop a {
  border: 1px solid var(--lux-accent-line);
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-shop-card:hover,
.shop-category-card:hover,
.home-product-card:hover,
.home-quick-shop a:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.58);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.12);
}

.home-shop-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
}

.home-shop-card__media {
  margin: 0;
  aspect-ratio: 1.42 / 1;
  background: #f7f7f7;
  overflow: hidden;
}

.home-shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-shop-card--large .home-shop-card__media img {
  object-position: center 48%;
}

.home-shop-card--color .home-shop-card__media img {
  object-position: center 50%;
}

.home-shop-card__content {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
}

.home-shop-card__content small,
.shop-category-card small,
.home-product-card small,
.home-quick-shop small {
  display: block;
  color: var(--lux-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-shop-card__content h3,
.shop-category-card h3,
.home-product-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1.05;
}

.home-shop-card__content p,
.shop-category-card p,
.home-product-card p {
  margin: 0;
  color: #4f4f4f;
  line-height: 1.62;
}

.home-shop-card__content span,
.home-product-card span {
  margin-top: 8px;
  color: var(--lux-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-quick-shop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.home-quick-shop a {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.home-quick-shop a:hover strong {
  color: var(--lux-accent);
}

.home-quick-shop strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.home-quick-shop span {
  color: #555;
  font-size: 13px;
  line-height: 1.45;
}

.luxury-category-section {
  padding: 30px 0;
  background: #ffffff;
}

.luxury-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  background: #000000;
}

.luxury-category-card {
  --category-image: url("../img/editorial/oval-diamond-ice.png");
  --category-position: center;
  --category-size: 112% auto;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  min-height: 680px;
  padding: 76px 22px 42px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #060606, #000000);
}

.luxury-category-card:last-child {
  border-right: 0;
}

.luxury-category-card::before,
.luxury-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.luxury-category-card::before {
  background-image: var(--category-image);
  background-position: var(--category-position);
  background-size: var(--category-size);
  background-repeat: no-repeat;
  filter: grayscale(1) contrast(1.08) brightness(0.72);
  opacity: 0.94;
  transform: scale(1);
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
}

.luxury-category-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), transparent 35%, rgba(0, 0, 0, 0.36));
}

.luxury-category-card:hover::before {
  opacity: 1;
  filter: grayscale(1) contrast(1.16) brightness(0.8);
  transform: scale(1.015);
}

.luxury-category-card--engagement {
  --category-image: url("../img/categories/verlobungsringe.png");
  --category-position: center 64%;
  --category-size: 118% auto;
}

.luxury-category-card--wedding {
  --category-image: url("../img/categories/eheringe.png");
  --category-position: center 64%;
  --category-size: 112% auto;
}

.luxury-category-card--eternity {
  --category-image: url("../img/categories/ewigkeitsringe.png");
  --category-position: center 64%;
  --category-size: 116% auto;
}

.luxury-category-card--earrings {
  --category-image: url("../img/categories/ohrringe.png");
  --category-position: center 64%;
  --category-size: 112% auto;
}

.luxury-category-card--necklace {
  --category-image: url("../img/categories/ketten.png");
  --category-position: center 58%;
  --category-size: 102% auto;
}

.luxury-category-copy {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 240px;
}

.luxury-category-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(20px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.luxury-category-copy p {
  max-width: 210px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.45;
}

.luxury-category-icon {
  align-self: end;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #ffffff;
  opacity: 0.92;
}

.luxury-category-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-category-section,
.home-products-section {
  background: #ffffff;
}

.shop-category-section .section-header,
.home-products-section .section-header {
  align-items: end;
  padding: 0 18px;
}

.shop-category-grid,
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.shop-category-card,
.home-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
}

.shop-category-card img,
.home-product-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-category-card > img {
  height: 246px;
  background: #f7f7f7;
}

.shop-category-card > div,
.home-product-card > div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
}

.shop-category-card h3,
.home-product-card h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.shop-category-card--dark {
  background: linear-gradient(145deg, var(--lux-accent-dark), var(--lux-accent));
  color: #ffffff;
}

.shop-category-card--dark p,
.shop-category-card--dark small {
  color: rgba(255, 255, 255, 0.76);
}

.home-product-card figure {
  margin: 0;
  aspect-ratio: 1 / 0.86;
  background: #f8f8f8;
  overflow: hidden;
}

.home-product-card:nth-child(2) figure img,
.home-product-card:nth-child(3) figure img {
  object-position: center 50%;
}

.home-product-card span {
  color: var(--lux-accent);
}

.shape-section {
  padding-top: 38px;
}

.shape-grid {
  align-items: stretch;
}

.shape-card {
  min-height: 118px;
  justify-content: center;
  border: 1px solid transparent;
}

.shape-card:hover {
  border-color: rgba(18, 18, 18, 0.36);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.055);
}

.category-grid--home {
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.category-grid--home .category-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 8px;
  border-color: rgba(18, 18, 18, 0.36);
  background: #ffffff;
  color: var(--lux-black);
  padding: 24px;
}

.category-grid--home .category-tile--wide {
  grid-row: span 2;
  min-height: 538px;
  color: #ffffff;
  background: #0d0d0d;
}

.category-grid--home .category-tile--dark {
  color: #ffffff;
  background: #161616;
}

.category-grid--home .category-tile--wide::after,
.category-grid--home .category-tile--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.72));
  z-index: 1;
}

.category-grid--home .category-tile > * {
  position: relative;
  z-index: 2;
}

.category-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lux-accent);
}

.category-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
}

.category-media img {
  width: 64%;
  max-height: 74%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
}

.category-tile--wide .category-media img,
.category-tile--dark .category-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  opacity: 0.78;
}

.category-grid--home .card-title {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
}

.category-grid--home .card-muted {
  max-width: 280px;
  margin-top: 6px;
  color: currentColor;
  opacity: 0.72;
  font-size: 14px;
}

.product-grid--home .card,
.reviews .card {
  border-radius: 8px;
  border: 1px solid rgba(18, 18, 18, 0.28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.05);
}

.product-grid--home .product-media {
  height: 210px;
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(18, 18, 18, 0.14), transparent 52%),
    #ffffff;
}

.product-grid--home .product-media::after {
  display: none;
}

.product-grid--home .product-media img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.product-grid--home .product-media--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-grid--home .value-card {
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.72)),
    #ffffff;
}

.value-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 18, 18, 0.52);
  color: var(--lux-accent);
  background: #ffffff;
}

.value-grid--home .card-title {
  font-size: 17px;
}

.value-grid--home .card-muted {
  font-size: 14px;
  margin-bottom: 0;
}

.story--home {
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border-color: rgba(18, 18, 18, 0.34);
}

.story-copy {
  padding: 44px;
}

.story-copy h3 {
  margin: 10px 0 12px;
  font-family: var(--display);
  font-size: 34px;
}

.story-copy .card-muted {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 15px;
}

.story--home .story-panel {
  min-height: 300px;
  border: 0;
  border-radius: 0;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.66)),
    url("../img/hero.png") center/cover no-repeat;
  color: #ffffff;
}

.story--home .story-panel .card-muted {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.story-diamond-row {
  display: flex;
  gap: 18px;
  margin-bottom: 42px;
}

.story-diamond-row img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.review-stars {
  color: var(--lux-accent);
  letter-spacing: 2px;
  font-size: 12px;
}

.review p {
  font-size: 16px;
  line-height: 1.55;
}

.home-testimonials-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: #f5f5f5;
}

.home-testimonials {
  display: grid;
  gap: 24px;
}

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

.home-testimonials__heading p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #555555;
  line-height: 1.65;
}

.home-testimonials__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 16px;
  min-width: 0;
}

.home-testimonial,
.home-rating-card {
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
}

.home-testimonial {
  display: grid;
  gap: 24px;
  padding: 28px;
  background: #ffffff;
}

.home-testimonial--lead {
  position: relative;
  min-height: 520px;
  align-content: end;
  overflow: hidden;
  padding: 52px;
  color: #ffffff;
  background: #000000;
}

.home-testimonial--lead::before,
.home-testimonial--lead::after {
  content: "";
  position: absolute;
  inset: 0;
}

.home-testimonial--lead::before {
  background: url("../img/package.png") center 48% / cover no-repeat;
  filter: grayscale(1) contrast(1.08) brightness(0.68);
  transform: scale(1.02);
}

.home-testimonial--lead::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 58%);
}

.home-testimonial--lead > * {
  position: relative;
  z-index: 1;
}

.home-testimonial--lead .review-stars {
  color: #ffffff;
}

.home-testimonial blockquote,
.home-testimonial p {
  margin: 0;
  color: inherit;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.home-testimonial blockquote {
  max-width: 780px;
  font-size: 46px;
}

.home-testimonial p {
  font-size: 27px;
}

.home-testimonial footer {
  display: grid;
  gap: 4px;
}

.home-testimonial footer strong {
  font-size: 14px;
  font-weight: 800;
}

.home-testimonial footer span {
  color: rgba(0, 0, 0, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-testimonial--lead footer span {
  color: rgba(255, 255, 255, 0.72);
}

.home-testimonials__side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.home-rating-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  align-content: end;
  min-height: 210px;
  padding: 30px;
  background: #000000;
  color: #ffffff;
}

.home-rating-card span {
  font-family: var(--display);
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
}

.home-rating-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .home-testimonials__layout,
  .home-testimonials__heading {
    grid-template-columns: 1fr;
  }

  .home-testimonials__heading .section-action {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .home-testimonials-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .home-testimonials__side {
    grid-template-columns: 1fr;
  }

  .home-testimonial--lead {
    min-height: 440px;
    padding: 30px 24px;
  }

  .home-testimonial blockquote {
    font-size: 32px;
  }

  .home-testimonial p {
    font-size: 24px;
  }

  .home-rating-card {
    min-height: 180px;
    padding: 26px 24px;
  }

  .home-rating-card span {
    font-size: 42px;
  }
}

.home-guidance-section {
  overflow: hidden;
  padding: clamp(58px, 6vw, 96px) 0;
  background: #ffffff;
  color: #111111;
}

.home-guidance {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  width: min(100% - 48px, var(--max-width));
  min-width: 0;
  margin-inline: auto;
  padding: 0;
}

.home-guidance__intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  min-height: 430px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.06);
}

.home-guidance__intro .category-kicker,
.home-guidance__feature span,
.home-guidance__topics span {
  color: #8a6f42;
}

.home-guidance__intro .section-title {
  max-width: 520px;
  margin-top: 10px;
  margin-bottom: 18px;
  color: #111111;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 0.98;
}

.home-guidance__intro p {
  max-width: 440px;
  margin: 0;
  color: #5d5750;
  font-size: 17px;
  line-height: 1.65;
}

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

.home-guidance__actions .button {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.home-guidance__actions .button-outline {
  border-color: rgba(17, 17, 17, 0.18);
  background: #ffffff;
  color: #111111;
}

.home-guidance__feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 32px;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(28px, 3.6vw, 48px);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background:
    linear-gradient(135deg, #fbfaf7 0%, #ffffff 55%, #f5f2ec 100%);
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-guidance__feature:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.22);
  color: #111111;
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.09);
}

.home-guidance__shape-row,
.home-guidance__feature > div:last-child {
  position: relative;
  z-index: 1;
}

.home-guidance__shape-row {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 14px;
  max-width: 430px;
}

.home-guidance__shape-row img {
  width: clamp(58px, 6vw, 86px);
  height: clamp(58px, 6vw, 86px);
  object-fit: contain;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.07);
  filter: grayscale(1) contrast(1.04);
}

.home-guidance__feature > div:last-child {
  max-width: 560px;
  align-self: end;
  padding: 0;
}

.home-guidance__feature span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-guidance__feature h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  color: #111111;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 600;
  line-height: 1;
}

.home-guidance__feature p {
  max-width: 520px;
  margin: 0;
  color: #5d5750;
  font-size: 16px;
  line-height: 1.65;
}

.home-guidance__topics {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.home-guidance__topics a {
  display: grid;
  gap: 10px;
  min-height: 176px;
  padding: 26px;
  color: #111111;
  text-decoration: none;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-guidance__topics a:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.22);
  color: #111111;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.home-guidance__topics span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-guidance__topics strong {
  font-family: var(--display);
  color: #111111;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.04;
}

.home-guidance__topics small {
  max-width: 340px;
  color: #5d5750;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .home-guidance {
    grid-template-columns: 1fr;
  }

  .home-guidance__intro {
    min-height: 0;
  }

  .home-guidance__feature {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .home-guidance {
    width: min(100% - 40px, var(--max-width));
    gap: 16px;
  }

  .home-guidance__intro .section-title {
    font-size: 40px;
  }

  .home-guidance__intro p {
    font-size: 16px;
  }

  .home-guidance__actions,
  .home-guidance__actions .button,
  .home-guidance__actions .button-outline {
    width: 100%;
  }

  .home-guidance__feature {
    min-height: 0;
    gap: 26px;
  }

  .home-guidance__shape-row img {
    width: 50px;
    height: 50px;
  }

  .home-guidance__feature h3 {
    font-size: 36px;
  }

  .home-guidance__topics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-guidance__topics a {
    min-height: 0;
    padding: 22px;
  }
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 42px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  color: #111111;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92) 52%, rgba(255, 255, 255, 0.38)),
    url("../img/home/diamond-shapes-showcase.png") right center/contain no-repeat;
}

.cta-banner::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/icon.png") center/contain no-repeat;
  filter: none;
  opacity: 0.06;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cta-banner h3 {
  font-family: var(--display);
  font-size: 34px;
  margin: 0;
}

.cta-banner p {
  color: #333333;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta-banner .button,
.cta-banner .button-outline {
  min-height: 46px;
  padding: 13px 24px;
}

.cta-banner .button {
  background: var(--lux-accent);
  color: #ffffff;
}

.cta-banner .button-outline {
  border: 1px solid var(--lux-accent);
  background: rgba(255, 255, 255, 0.82);
  color: var(--lux-accent);
}

.cta-banner .button:hover,
.cta-banner .button-outline:hover {
  background: var(--lux-accent-dark);
  color: #ffffff;
}

@media (max-width: 1024px) {
  .trust-bar--home,
  .grid-4,
  .home-quick-shop,
  .shop-category-grid,
  .home-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-shop-heading,
  .home-shop-grid {
    grid-template-columns: 1fr;
  }

  .stone-showcase-grid {
    grid-template-columns: 1fr;
  }

  .stone-showcase-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 4px solid #ffffff;
  }

  .stone-showcase-card:last-child {
    border-bottom: 0;
  }

  .stone-showcase-media {
    min-height: 330px;
    padding-top: 30px;
  }

  .luxury-category-grid {
    display: flex;
    width: 100%;
    max-width: var(--max-width);
    min-height: 620px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .luxury-category-card {
    flex: 0 0 42vw;
    min-height: 620px;
    scroll-snap-align: start;
  }

  .category-grid--home {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid--home .category-tile--wide {
    grid-column: span 2;
    grid-row: auto;
    min-height: 380px;
  }

  .trust-bar--home .trust-item:nth-child(2n) {
    border-right: 0;
  }

  .trust-bar--home .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 640px) {
  .hero-photo__content::before,
  .cta-banner::after {
    display: none;
  }

  .hero-certifications {
    flex-wrap: wrap;
  }

  .hero-photo__content {
    width: 100%;
    max-width: 350px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .button,
  .hero-actions .button-outline {
    width: min(100%, 260px);
    white-space: normal;
  }

  .hero-proof {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .hero-meta {
    width: 100%;
  }

  .trust-section {
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .trust-bar--home .trust-item {
    width: 100%;
    min-width: 0;
    min-height: 132px;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .trust-bar--home .trust-item:last-child {
    border-bottom: 0;
  }

  .trust-bar--home,
  .grid-4,
  .category-grid--home,
  .story--home,
  .home-quick-shop,
  .shop-category-grid,
  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .home-shop-section {
    padding-top: 34px;
  }

  .stone-showcase-section {
    padding-top: 28px;
  }

  .stone-showcase-media {
    min-height: 260px;
    padding: 22px 24px 0;
  }

  .stone-showcase-media img {
    max-height: 270px;
  }

  .stone-showcase-copy {
    padding: 20px 28px 42px;
  }

  .stone-showcase-copy h2 {
    max-width: 100%;
    font-size: 23px;
    letter-spacing: 0.03em;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .luxury-category-grid {
    width: 100%;
    min-height: 560px;
  }

  .luxury-category-card {
    flex-basis: 82vw;
    min-height: 560px;
    padding: 56px 20px 34px;
  }

  .luxury-category-copy h2 {
    font-size: 24px;
  }

  .luxury-category-copy p {
    font-size: 14px;
  }

  .home-shop-heading,
  .shop-category-section .section-header,
  .home-products-section .section-header {
    padding: 0 20px;
  }

  .home-shop-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .home-shop-card__media {
    aspect-ratio: 1 / 0.78;
  }

  .shop-category-card > img {
    height: 230px;
  }

  .category-grid--home .category-tile,
  .category-grid--home .category-tile--wide {
    grid-column: auto;
    min-height: 260px;
  }

  .story-copy,
  .story--home .story-panel,
  .cta-banner {
    padding: 28px;
  }

  .cta-banner {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
      url("../img/home/diamond-shapes-showcase.png") right bottom/contain no-repeat;
  }

  .cta-actions,
  .cta-banner .button,
  .cta-banner .button-outline {
    width: 100%;
  }

  .story-copy h3,
  .cta-banner h3 {
    font-size: 28px;
  }
}

/* Cart drawer refresh (black & white) */
.cart-drawer__panel {
  background: var(--lux-white);
  box-shadow: none;
  border-left: 1px solid var(--lux-black);
  width: min(410px, 100vw);
  padding: 18px 14px 16px;
  gap: 14px;
}

.cart-drawer__header button {
  border: 1px solid var(--lux-black);
  color: var(--lux-black);
  font-size: 18px;
  line-height: 1;
}

.cart-drawer__items {
  flex: 1;
  min-height: 0;
  align-content: start;
  grid-auto-rows: min-content;
  gap: 10px;
  padding-right: 2px;
}

.cart-drawer__item {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  padding: 12px;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-areas:
    "thumb info"
    "thumb actions";
  gap: 8px 12px;
  align-items: center;
  background: var(--lux-white);
  min-height: 98px;
}

.cart-drawer__thumb {
  grid-area: thumb;
  width: 72px;
  height: 72px;
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--lux-black);
  overflow: hidden;
}

.cart-drawer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.cart-drawer__info {
  grid-area: info;
  min-width: 0;
}

.cart-drawer__info .card-title {
  color: var(--lux-black);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2px;
}

.cart-drawer__info .card-muted {
  color: var(--lux-black);
  opacity: 0.58;
  font-size: 10.5px;
  line-height: 1.35;
}

.cart-drawer__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.cart-drawer__price {
  color: var(--lux-black);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.cart-drawer__remove {
  border: none;
  background: transparent;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  color: var(--lux-black);
  opacity: 0.7;
  padding: 0;
  white-space: nowrap;
}

.cart-drawer__remove:hover {
  opacity: 1;
}

.cart-drawer__promo {
  display: grid;
  gap: 8px;
}

.cart-drawer__promo label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.cart-drawer__promo-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.cart-drawer__promo-form input {
  border: 1px solid var(--lux-black);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  background: var(--lux-white);
}

.cart-drawer__promo-form button {
  border: 1px solid var(--lux-black);
  background: var(--lux-black);
  color: var(--lux-white);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-drawer__promo-message {
  font-size: 12px;
  color: var(--lux-black);
  opacity: 0.7;
}

.cart-drawer__summary {
  display: grid;
  gap: 6px;
}

.cart-drawer__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer__discount {
  display: none;
}

.cart-drawer__footer .button {
  background: var(--lux-black);
  color: var(--lux-white);
  width: 100%;
  justify-content: center;
  min-height: 42px;
}

.cart-empty {
  text-align: center;
  padding: 24px 12px;
  border: 1px dashed var(--lux-black);
  border-radius: 12px;
}

.cart-empty h4 {
  margin: 0 0 6px;
}

.cart-empty p {
  margin: 0 0 12px;
  opacity: 0.7;
}

.cart-drawer.is-empty .cart-drawer__promo,
.cart-drawer.is-empty .cart-drawer__summary,
.cart-drawer.is-empty .cart-drawer__footer {
  display: none;
}

.cart-page-items {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cart-page-items .cart-drawer__item {
  grid-template-columns: 86px minmax(0, 1fr) auto;
  grid-template-areas: "thumb info actions";
  min-height: 110px;
}

.cart-page-items .cart-drawer__thumb {
  width: 86px;
  height: 86px;
}

@media (max-width: 640px) {
  .cart-drawer__panel {
    width: min(360px, 100vw);
    padding: 14px;
    gap: 12px;
  }

  .cart-drawer__item {
    grid-template-columns: 66px minmax(0, 1fr);
    min-height: 90px;
    padding: 10px;
  }

  .cart-drawer__thumb {
    width: 66px;
    height: 66px;
  }

  .cart-drawer__promo-form {
    grid-template-columns: 1fr;
  }

  .cart-page-items .cart-drawer__item {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-areas:
      "thumb info"
      "thumb actions";
    min-height: 98px;
  }

  .cart-page-items .cart-drawer__thumb {
    width: 72px;
    height: 72px;
  }
}

/* Keep supporting product assets restrained while hero and editorial imagery can carry the page. */
.mega-visual,
.hero-photo__media,
.story--home .story-panel,
.cta-banner {
  filter: grayscale(1) contrast(1.04);
}

.product-media img,
.shape-card img,
.story-diamond-row img,
.pdp-thumb img,
.category-media img {
  filter: grayscale(1) contrast(1.06);
}

.pdp-visual img {
  filter: grayscale(1) contrast(1.06) drop-shadow(0 28px 38px rgba(0, 0, 0, 0.16));
}

.pdp-visual--77 img {
  filter: grayscale(1) contrast(1.06) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.18));
}

/* Product detail UX rewrite */
.pdp-shell--77 {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding-bottom: 76px;
}

.pdp-progress {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
}

.pdp-step {
  min-height: 74px;
  padding: 18px 42px;
  border-radius: 0;
  border-right: 1px solid #e5e5e5;
  background: #ffffff;
}

.pdp-step:last-child {
  border-right: 0;
}

.pdp-step.is-active {
  background: #111111;
}

.pdp-step.is-active strong,
.pdp-step.is-active small {
  color: #ffffff;
}

.pdp-step.is-active span {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.pdp-reference-layout {
  width: min(1480px, calc(100vw - 48px));
  max-width: none;
  grid-template-columns: minmax(0, 1.26fr) minmax(420px, 0.74fr);
  gap: clamp(30px, 4vw, 70px);
  padding: 34px 0 48px;
  background: #ffffff;
}

.pdp-gallery--77 .breadcrumbs {
  margin-bottom: 14px;
  color: #777777;
  letter-spacing: 1.2px;
}

.pdp-back-link {
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
}

.pdp-visual--77 {
  min-height: clamp(460px, 38vw, 600px);
  aspect-ratio: 1.5 / 1;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.pdp-visual--77 img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
  transform: translateY(2%) scale(1.46);
  transform-origin: center bottom;
  filter: grayscale(1) contrast(1.08) drop-shadow(0 30px 42px rgba(0, 0, 0, 0.14));
  animation: none;
}

.pdp-image-scrim {
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
}

.pdp-spin-hint {
  left: 18px;
  top: 18px;
  z-index: 2;
  border-color: #111111;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  backdrop-filter: none;
}

.pdp-frame-index {
  display: none;
}

.pdp-sample-note {
  max-width: 620px;
  margin-top: 12px;
  color: #777777;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.pdp-single-media .pdp-thumb-strip {
  display: none;
}

.pdp-thumb-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.pdp-thumb-strip[hidden] {
  display: none;
}

.pdp-thumb-strip .pdp-thumb {
  min-height: 104px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #ffffff;
}

.pdp-thumb-strip .pdp-thumb.is-active {
  border-color: #111111;
  box-shadow: inset 0 0 0 1px #111111;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: grayscale(1) contrast(1.06);
}

.pdp-buybox--77 {
  position: sticky;
  top: 18px;
  border: 0;
  border-left: 1px solid #e5e5e5;
  border-radius: 0;
  background: #ffffff;
  padding: 8px 0 0 clamp(28px, 3vw, 48px);
  box-shadow: none;
}

.pdp-kicker {
  margin-bottom: 12px;
  color: #777777;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.pdp-buybox--77 h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 0.96;
}

.pdp-review {
  margin-bottom: 14px;
  color: #555555;
}

.pdp-badges {
  margin-bottom: 18px;
}

.pdp-badges span {
  border-color: #111111;
  border-radius: 8px;
  color: #111111;
}

.pdp-lead {
  max-width: 560px;
  margin-bottom: 0;
  color: #333333;
  font-size: 16px;
}

.pdp-setting-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0 10px;
  padding: 24px;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
}

.pdp-setting-price strong {
  display: block;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 0.95;
}

.pdp-setting-price small {
  max-width: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-align: right;
  text-transform: uppercase;
}

.pdp-tax-note {
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid #e5e5e5;
  color: #555555;
  font-size: 13px;
}

.pdp-price-breakdown {
  display: none;
}

.pdp-choice {
  margin-top: 20px;
  padding-top: 0;
  border-top: 0;
}

.pdp-choice__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.pdp-choice__head strong {
  font-size: 13px;
}

.pdp-options {
  gap: 8px;
}

.pdp-option,
.pdp-swatch {
  min-height: 48px;
  border: 1px solid #111111;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font-weight: 700;
}

.pdp-option.is-selected,
.pdp-swatch.is-selected {
  background: #111111;
  color: #ffffff;
}

.pdp-option--static {
  border-color: #d9d9d9;
  background: #f7f7f7;
  color: #777777;
}

.pdp-actions--77 {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  margin-top: 22px;
}

.pdp-actions--77 .button,
.pdp-actions--77 .button-outline,
.pdp-cart-button {
  min-height: 54px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.pdp-cart-button {
  width: 100%;
  margin-top: 10px;
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
}

.pdp-cart-button:not(:disabled):hover,
.pdp-actions--77 .button-outline:hover {
  background: #111111;
  color: #ffffff;
}

.pdp-selection {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #ffffff;
}

.pdp-product-details {
  margin-top: 26px;
}

.pdp-product-details h2 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.pdp-product-details dl {
  border-top: 1px solid #e5e5e5;
}

.pdp-product-details div {
  grid-template-columns: minmax(120px, 0.46fr) 1fr;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.pdp-product-details dt,
.pdp-product-details dd {
  font-size: 13px;
}

.pdp-service-panels {
  width: min(1480px, calc(100vw - 48px));
  max-width: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 10px 0 0;
}

.pdp-service-panels article {
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  box-shadow: none;
}

.pdp-mobile-bar {
  border-color: #111111;
}

@media (max-width: 1120px) {
  .pdp-reference-layout {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .pdp-buybox--77 {
    position: static;
    border-left: 0;
    padding-left: 0;
  }

  .pdp-visual--77 {
    min-height: clamp(420px, 62vw, 620px);
  }

  .pdp-service-panels {
    width: calc(100vw - 32px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pdp-progress {
    grid-template-columns: 1fr;
  }

  .pdp-step {
    min-height: 58px;
    padding: 12px 18px;
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .pdp-reference-layout {
    display: block;
    width: 100%;
    max-width: none;
    padding: 18px 12px 28px;
    overflow: visible;
  }

  .pdp-gallery--77 .breadcrumbs {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .pdp-gallery--77,
  .pdp-buybox--77 {
    width: 100%;
    max-width: none;
  }

  .pdp-visual--77 {
    min-height: 330px;
    aspect-ratio: 1 / 0.86;
  }

  .pdp-visual--77 img {
    transform: translateY(2%) scale(1.48);
  }

  .pdp-buybox--77 {
    margin-top: 26px;
    padding: 0;
  }

  .pdp-buybox--77 h1 {
    font-size: 38px;
  }

  .pdp-setting-price {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .pdp-setting-price small {
    text-align: left;
  }

  .pdp-actions--77 {
    grid-template-columns: 1fr;
  }

  .pdp-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 100%;
  }

  .pdp-badges span {
    width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .pdp-service-panels {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
  }
}

/* Finished content system */
.content-lead {
  max-width: 850px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.content-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(17, 17, 17, .12);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.content-panel,
.content-card,
.content-cta,
.content-note {
  border: 1px solid var(--line);
  background: #fff;
}

.content-panel {
  padding: clamp(24px, 4vw, 42px);
}

.content-panel h2,
.content-card h3,
.content-note h3,
.content-cta h2,
.content-cta h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.content-panel h2,
.content-cta h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.content-card h3,
.content-note h3,
.content-cta h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.content-panel p,
.content-card p,
.content-note p,
.content-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.content-panel p + p,
.content-card p + p,
.content-note p + p {
  margin-top: 12px;
}

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

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

.content-card {
  min-height: 100%;
  padding: 22px;
}

.content-card small,
.content-note small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.content-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.content-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 1px solid var(--ink);
  background: #fff;
  transform: rotate(45deg);
}

.catalog-intro-stack {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.catalog-feature-image,
.contact-inspiration {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #0f1114;
}

.catalog-feature-image {
  min-height: 340px;
  aspect-ratio: 4 / 3;
}

.contact-inspiration {
  margin-top: 26px;
  aspect-ratio: 16 / 10;
}

.catalog-feature-image img,
.contact-inspiration img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.catalog-feature-image img {
  object-position: center 52%;
}

.contact-inspiration img {
  object-position: center 54%;
}

.catalog-feature-image::after,
.contact-inspiration::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.62));
}

.catalog-feature-image figcaption,
.contact-inspiration figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.process-list {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  counter-increment: process;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.content-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background: #0f0f0f;
  color: #fff;
}

.content-cta h2,
.content-cta h3,
.content-cta p {
  color: inherit;
}

.content-cta p {
  color: rgba(255, 255, 255, .76);
}

.content-cta .button,
.content-cta .button-outline {
  white-space: nowrap;
}

.content-cta .button-outline {
  border-color: #fff;
  color: #fff;
}

.content-note {
  padding: 24px;
  background: var(--surface);
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.editorial-list {
  display: grid;
  gap: 14px;
}

.editorial-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.editorial-date {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.editorial-item h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.editorial-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.quote-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.quote-card p {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.18;
}

.quote-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.testimonials-hero {
  position: relative;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
}

.testimonials-hero::before,
.testimonials-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.testimonials-hero::before {
  background: url("../img/hero-20260510.png") center 54% / cover no-repeat;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.02);
}

.testimonials-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
}

.testimonials-hero .container {
  position: relative;
  z-index: 1;
}

.testimonials-hero .page-hero-inner {
  max-width: 980px;
  padding: 88px 70px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.testimonials-hero .breadcrumbs,
.testimonials-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.testimonials-hero h1 {
  max-width: 860px;
  color: #ffffff;
  font-size: 72px;
  line-height: 1.02;
}

.testimonials-hero p {
  max-width: 720px;
  margin-top: 14px;
  font-size: 21px;
}

.testimonials-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.18);
}

.testimonials-hero__stats span {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.38);
}

.testimonials-hero__stats strong {
  color: #ffffff;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.testimonials-hero__stats small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonials-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: 16px;
  min-width: 0;
}

.testimonial-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  min-height: 520px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  background: #ffffff;
}

.testimonial-featured__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 54px;
}

.testimonial-featured blockquote {
  margin: 18px 0 28px;
  color: #000000;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.testimonial-featured footer,
.testimonial-card footer {
  display: grid;
  gap: 3px;
}

.testimonial-featured footer strong,
.testimonial-card footer strong {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
}

.testimonial-featured footer span,
.testimonial-card footer span {
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-featured__media {
  display: grid;
  place-items: center;
  margin: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.12), transparent 56%),
    #f6f6f6;
}

.testimonial-featured__media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.06);
}

.testimonial-proof {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.testimonial-proof article {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  background: #ffffff;
}

.testimonial-proof span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid #000000;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.testimonial-proof h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.08;
}

.testimonial-proof p {
  margin: 0;
  color: #555555;
  line-height: 1.65;
}

.testimonials-header {
  align-items: end;
  margin-bottom: 22px;
}

.testimonials-header .content-kicker {
  margin-bottom: 10px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.testimonial-card {
  min-height: 360px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: #ffffff;
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #555555;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-card p {
  margin: 0;
  color: #111111;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.testimonial-card--dark {
  background: #000000;
  color: #ffffff;
}

.testimonial-card--dark p,
.testimonial-card--dark .review-stars,
.testimonial-card--dark footer strong {
  color: #ffffff;
}

.testimonial-card--dark .testimonial-card__top,
.testimonial-card--dark footer span {
  color: rgba(255, 255, 255, 0.68);
}

.testimonial-card--image {
  padding: 0;
  overflow: hidden;
}

.testimonial-card--image figure {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: 0;
  background: #f5f5f5;
}

.testimonial-card--image img {
  width: 78%;
  height: 190px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04);
}

.testimonial-card--image > div {
  display: grid;
  gap: 18px;
  padding: 28px 30px 30px;
}

.testimonials-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, .9fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
  padding: 44px;
  border-radius: 8px;
  background: #000000;
  color: #ffffff;
}

.testimonials-experience__copy {
  align-self: center;
  max-width: 720px;
  min-width: 0;
}

.testimonials-experience .content-kicker,
.testimonials-cta .content-kicker {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.72);
}

.testimonials-experience h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.06;
}

.testimonials-experience p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.testimonials-experience__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.testimonials-experience__steps div {
  display: grid;
  gap: 28px;
  min-height: 150px;
  padding: 24px;
  background: #000000;
}

.testimonials-experience__steps strong {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.testimonials-experience__steps span {
  align-self: end;
  color: #ffffff;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.08;
}

.testimonials-cta {
  border-radius: 8px;
}

.testimonials-cta .button {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #000000;
}

@media (max-width: 1180px) {
  .testimonials-intro,
  .testimonials-experience {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .content-split,
  .content-grid,
  .content-grid--2,
  .process-list,
  .info-strip-grid,
  .quote-grid,
  .content-cta {
    grid-template-columns: 1fr;
  }

  .content-cta .button,
  .content-cta .button-outline {
    width: 100%;
    text-align: center;
  }

  .testimonials-hero {
    min-height: 500px;
  }

  .testimonials-hero .page-hero-inner {
    padding: 64px 34px;
  }

  .testimonials-hero h1 {
    font-size: 54px;
  }

  .testimonials-hero p {
    font-size: 18px;
  }

  .testimonial-featured {
    grid-template-columns: 1fr;
  }

  .testimonial-featured__media {
    min-height: 360px;
  }

  .testimonials-experience {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .editorial-item {
    grid-template-columns: 1fr;
  }

  .testimonials-intro,
  .testimonial-featured,
  .testimonial-proof,
  .testimonial-grid,
  .testimonial-card,
  .testimonials-experience,
  .testimonials-experience__steps,
  .testimonials-cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .testimonials-hero {
    min-height: auto;
  }

  .testimonials-hero .page-hero-inner {
    padding: 46px 20px;
  }

  .testimonials-hero h1 {
    font-size: 42px;
  }

  .testimonials-hero p {
    font-size: 16px;
  }

  .testimonials-hero__stats,
  .testimonial-grid,
  .testimonials-experience__steps {
    grid-template-columns: 1fr;
  }

  .testimonial-featured__copy,
  .testimonial-card,
  .testimonial-proof article {
    padding: 24px;
  }

  .testimonial-featured blockquote {
    font-size: 28px;
  }

  .testimonial-featured__media {
    min-height: 280px;
  }

  .testimonial-card {
    min-height: 300px;
  }

  .testimonial-card p,
  .testimonials-experience__steps span {
    font-size: 23px;
  }

  .testimonials-header {
    display: grid;
    gap: 14px;
    align-items: start;
  }

  .testimonials-header .section-action {
    justify-self: start;
    max-width: 100%;
    white-space: normal;
  }

  .testimonials-experience {
    padding: 24px;
  }

  .testimonials-experience h2 {
    font-size: 34px;
  }
}

.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(380px, 38vw, 560px);
  padding: 0;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.contact-hero::before {
  background: url("../img/contact/ring-request-hero.png") center 54% / cover no-repeat;
  filter: grayscale(1);
  transform: scale(1.02);
}

.contact-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52) 46%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.3));
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero .page-hero-inner {
  max-width: 880px;
  padding: clamp(46px, 7vw, 92px) clamp(22px, 5vw, 70px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.72);
}

.contact-hero h1 {
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  overflow-wrap: break-word;
  hyphens: auto;
}

.contact-hero p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.7vw, 22px);
}

.contact-request {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: stretch;
}

.contact-request .content-panel {
  min-width: 0;
  border-color: rgba(17, 17, 17, 0.14);
}

.contact-assurance {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.contact-assurance strong {
  color: #111;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-assurance span {
  color: #444;
  line-height: 1.6;
}

.contact-form-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3.2vw, 46px);
}

.contact-request .content-panel h2 {
  overflow-wrap: break-word;
  hyphens: auto;
}

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

.contact-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

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

.contact-field label,
.contact-form__privacy,
.contact-form__hint {
  color: #333;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 4px;
  background: #fff;
  color: #111;
  font: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-field textarea {
  min-height: 156px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #777;
}

.contact-upload {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px dashed rgba(17, 17, 17, 0.34);
  border-radius: 4px;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.contact-upload:hover,
.contact-upload:focus-within {
  border-color: #111;
  background: #fff;
}

.contact-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.contact-upload__title {
  color: #111;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-upload__meta {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
}

.contact-upload__action {
  width: fit-content;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 4px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-file-list {
  display: grid;
  gap: 8px;
  margin: -6px 0 0;
  padding: 0;
  list-style: none;
}

.contact-file-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 13px;
}

.contact-file-list span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-form__privacy {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form__privacy input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #111;
}

.contact-form__privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-form .button {
  min-height: 48px;
  border-radius: 4px;
  background: #111;
  color: #fff;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form__hint {
  margin: 0;
  color: #555;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}

.contact-form__status {
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 4px;
  background: #f6f6f6;
  color: #222;
  line-height: 1.55;
}

.contact-form__status.is-success {
  border-color: rgba(25, 119, 65, 0.34);
  background: #f1f8f4;
  color: #14552f;
}

.contact-form__status.is-error {
  border-color: rgba(154, 49, 49, 0.34);
  background: #fff4f4;
  color: #7b2424;
}

.contact-process .process-step {
  border-color: rgba(17, 17, 17, 0.1);
}

@media (max-width: 1100px) {
  .contact-request {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    min-height: 450px;
  }

  .contact-hero::before {
    background-position: 58% center;
  }

  .contact-hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.54));
  }

  .contact-hero .page-hero-inner {
    padding: 44px 22px;
  }

  .faq-hero .page-hero-inner {
    padding-top: 74px;
    padding-bottom: 34px;
  }

  .tax-hero::before {
    background-position: 56% center;
  }

  .tax-hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.5));
  }

  .story-hero::before {
    background-position: 52% center;
  }

  .story-hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.5));
  }

  .delivery-hero::before {
    background-position: 52% bottom;
  }

  .delivery-hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.5));
  }

  .origin-hero::before {
    background-position: 52% bottom;
  }

  .origin-hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.5));
  }

  .promise-hero::before {
    background-position: 52% bottom;
  }

  .promise-hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.5));
  }

  .contact-hero h1 {
    max-width: min(100%, 330px);
    font-size: 34px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .contact-hero p {
    max-width: min(100%, 330px);
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .contact-request .content-panel {
    padding: 24px;
    overflow-wrap: anywhere;
  }

  .contact-request .content-panel h2,
  .contact-form-panel h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .contact-request > .content-panel:not(.contact-form-panel) > * {
    max-width: min(100%, 310px);
  }

  .content-list li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__actions,
  .contact-form .button {
    width: 100%;
  }

  .contact-file-list li {
    display: grid;
  }
}

.faq-hero h1 {
  max-width: 760px;
}

.faq-hero .page-hero-inner {
  padding-top: clamp(86px, 9vw, 132px);
  padding-bottom: clamp(38px, 5vw, 76px);
}

.faq-hero::before {
  background: url("../img/faqs/faq-hero.png") center 52% / cover no-repeat;
  filter: grayscale(1) contrast(1.04);
}

.faq-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58) 46%, rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.34));
}

.tax-hero h1 {
  max-width: 760px;
}

.tax-hero::before {
  background: url("../img/tax/steuern-hero.png") center 52% / cover no-repeat;
  filter: saturate(0.92) contrast(1.04);
}

.tax-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52) 45%, rgba(0, 0, 0, 0.14)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.32));
}

.story-hero h1 {
  max-width: 760px;
}

.story-hero::before {
  background: url("../img/story/geschichte-hero.png") center 54% / cover no-repeat;
  filter: saturate(0.92) contrast(1.03);
}

.story-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52) 45%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

.delivery-hero h1 {
  max-width: 760px;
}

.delivery-hero::before {
  background: url("../img/delivery/lieferung-hero.png") center bottom / cover no-repeat;
  filter: saturate(0.92) contrast(1.03);
}

.delivery-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52) 45%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

.faq-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: stretch;
}

.faq-intro .content-panel,
.faq-help-card {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.faq-help-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.faq-help-card small {
  color: #555;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-help-card h3 {
  margin: 0;
  color: #111;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.08;
}

.faq-help-card p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.faq-help-card .button {
  width: fit-content;
  border-radius: 4px;
  background: #111;
  color: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.faq-index {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.faq-index .content-kicker {
  width: fit-content;
  margin-bottom: 10px;
}

.faq-index a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: #222;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-index a:last-child {
  border-bottom: 0;
}

.faq-index a:hover,
.faq-index a:focus {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.faq-section {
  scroll-margin-top: 110px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.faq-section__head {
  padding: clamp(24px, 3.2vw, 36px) clamp(22px, 3.4vw, 42px) 18px;
}

.faq-section__head h2 {
  margin: 0;
  color: #111;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
}

.faq-item {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.faq-item summary {
  position: relative;
  display: block;
  min-height: 64px;
  padding: 22px clamp(58px, 6vw, 76px) 22px clamp(22px, 3.4vw, 42px);
  color: #111;
  cursor: pointer;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: clamp(22px, 3.4vw, 42px);
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 50%;
  color: #111;
  font-size: 19px;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 880px;
  margin: 0;
  padding: 0 clamp(58px, 6vw, 76px) 24px clamp(22px, 3.4vw, 42px);
  color: #444;
  font-size: 16px;
  line-height: 1.75;
}

.faq-item a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .faq-intro,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-index {
    position: static;
  }
}

@media (max-width: 640px) {
  .faq-intro .content-panel,
  .faq-help-card,
  .faq-index,
  .faq-section__head {
    padding: 24px;
  }

  .faq-intro,
  .faq-layout,
  .faq-intro .content-panel,
  .faq-help-card,
  .faq-index,
  .faq-section {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .faq-intro .content-panel > *,
  .faq-help-card > * {
    max-width: min(100%, 330px);
  }

  .faq-intro .content-panel h2,
  .faq-help-card h3 {
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .faq-intro .content-panel p,
  .faq-help-card p {
    overflow-wrap: anywhere;
  }

  .faq-help-card .button {
    width: 100%;
  }

  .faq-index {
    gap: 0;
  }

  .faq-section__head h2 {
    font-size: 30px;
  }

  .faq-item summary {
    min-height: 0;
    padding: 18px 58px 18px 24px;
    font-size: 17px;
  }

  .faq-item summary::after {
    right: 24px;
  }

  .faq-item p {
    padding: 0 24px 20px;
    font-size: 15px;
  }
}

.delivery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: stretch;
}

.delivery-intro .content-panel,
.delivery-support-card,
.delivery-card,
.delivery-note {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.delivery-support-card,
.delivery-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.delivery-support-card small,
.delivery-card small {
  color: #555;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-support-card h3,
.delivery-card h3,
.delivery-note h2 {
  margin: 0;
  color: #111;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
}

.delivery-support-card h3,
.delivery-note h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.delivery-card h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.delivery-support-card p,
.delivery-card p,
.delivery-note p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.delivery-support-card .button,
.delivery-note .button,
.delivery-cta .button {
  width: fit-content;
  border-radius: 4px;
  background: #111;
  color: #fff;
}

.delivery-process .process-step {
  border-color: rgba(17, 17, 17, 0.12);
}

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

.delivery-card {
  min-height: 100%;
  padding: 24px;
}

.delivery-card small {
  display: block;
  margin-bottom: 12px;
}

.delivery-card h3 {
  margin-bottom: 12px;
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: 34px;
  align-items: start;
}

.delivery-note {
  position: sticky;
  top: 92px;
}

.delivery-note .content-kicker {
  width: fit-content;
}

.delivery-accordions {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.delivery-faq {
  scroll-margin-top: 110px;
}

.delivery-cta {
  border: 0;
  border-radius: 0;
}

@media (max-width: 1100px) {
  .delivery-intro,
  .delivery-layout {
    grid-template-columns: 1fr;
  }

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

  .delivery-note {
    position: static;
  }
}

@media (max-width: 640px) {
  .delivery-intro,
  .delivery-layout,
  .delivery-grid,
  .delivery-intro .content-panel,
  .delivery-support-card,
  .delivery-card,
  .delivery-note,
  .delivery-accordions {
    min-width: 0;
    width: 100%;
  }

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

  .delivery-intro .content-panel,
  .delivery-support-card,
  .delivery-card,
  .delivery-note {
    padding: 24px;
    overflow: hidden;
  }

  .delivery-intro .content-panel > *,
  .delivery-support-card > *,
  .delivery-card > *,
  .delivery-note > * {
    max-width: min(100%, 330px);
  }

  .delivery-intro .content-panel h2,
  .delivery-support-card h3,
  .delivery-note h2 {
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .delivery-card h3 {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .delivery-support-card .button,
  .delivery-note .button,
  .delivery-cta .button {
    width: 100%;
  }
}

.tax-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 34px;
  align-items: stretch;
}

.tax-intro .content-panel,
.tax-calculator,
.tax-card,
.tax-note {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.tax-calculator,
.tax-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.tax-calculator h2,
.tax-card h3,
.tax-note h2 {
  margin: 0;
  color: #111;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
}

.tax-calculator h2,
.tax-note h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.tax-card h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.tax-calculator p,
.tax-card p,
.tax-note p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.tax-calculator__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tax-calculator__form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.tax-calculator__form label:last-child {
  grid-column: 1 / -1;
}

.tax-calculator__form span,
.tax-card small {
  color: #555;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tax-calculator__form input,
.tax-calculator__form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 4px;
  background: #fff;
  color: #111;
  font: inherit;
  padding: 12px 14px;
  outline: none;
}

.tax-calculator__form input:focus,
.tax-calculator__form select:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.tax-calculator__result {
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 4px;
  background: #f7f7f7;
  color: #222;
  line-height: 1.65;
}

.tax-calculator__result strong {
  display: block;
  margin-bottom: 4px;
  color: #111;
  font-size: 20px;
}

.tax-process .process-step {
  border-color: rgba(17, 17, 17, 0.12);
}

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

.tax-card {
  min-height: 100%;
  padding: 24px;
}

.tax-card small {
  display: block;
  margin-bottom: 12px;
}

.tax-card h3 {
  margin-bottom: 12px;
}

.tax-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  align-items: start;
}

.tax-note {
  position: sticky;
  top: 92px;
}

.tax-note .content-kicker {
  width: fit-content;
}

.tax-note .button,
.tax-cta .button {
  width: fit-content;
  border-radius: 4px;
  background: #111;
  color: #fff;
}

.tax-accordions {
  min-width: 0;
}

.tax-faq {
  scroll-margin-top: 110px;
}

.tax-faq .faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
}

.tax-faq .faq-item summary::after {
  content: none;
  display: none;
}

.tax-faq .faq-item summary > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.tax-faq .faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 50%;
  color: #111;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.tax-cta {
  border: 0;
  border-radius: 0;
}

@media (max-width: 1100px) {
  .tax-intro,
  .tax-layout {
    grid-template-columns: 1fr;
  }

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

  .tax-note {
    position: static;
  }
}

@media (max-width: 640px) {
  .tax-intro,
  .tax-layout,
  .tax-grid,
  .tax-intro .content-panel,
  .tax-calculator,
  .tax-card,
  .tax-note,
  .tax-accordions {
    min-width: 0;
    width: 100%;
  }

  .tax-grid,
  .tax-calculator__form {
    grid-template-columns: 1fr;
  }

  .tax-process {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    width: 100%;
  }

  .tax-process .process-step {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .tax-process .process-step h3,
  .tax-process .process-step p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .tax-process .process-step p {
    max-width: 30ch;
  }

  .tax-intro .content-panel,
  .tax-calculator,
  .tax-card,
  .tax-note {
    padding: 24px;
    overflow: hidden;
  }

  .tax-intro .content-panel > *,
  .tax-calculator > *,
  .tax-card > *,
  .tax-note > * {
    max-width: min(100%, 330px);
  }

  .tax-intro .content-panel h2,
  .tax-calculator h2,
  .tax-note h2 {
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .tax-card h3 {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .tax-note .button,
  .tax-cta .button {
    width: 100%;
  }

  .tax-faq .faq-item summary {
    position: relative;
    display: block;
    width: 100%;
    max-width: min(100%, 390px);
    padding: 18px 72px 18px 24px;
    overflow-wrap: anywhere;
  }

  .tax-faq .faq-item summary::after {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    transform: none;
    justify-self: end;
  }

  .tax-faq .faq-item summary::before {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    border: 1px solid rgba(17, 17, 17, 0.24);
    border-radius: 50%;
    color: #111;
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
  }

  .tax-faq .faq-item[open] summary::before {
    content: "-";
  }

  .tax-faq .faq-item summary > span:first-child {
    display: block;
    min-width: 0;
    max-width: 30ch;
    overflow-wrap: anywhere;
  }

  .tax-faq .faq-toggle {
    display: none;
  }

.tax-faq .faq-item p {
    width: calc(100% - 48px);
    max-width: 30ch;
    margin: 0 0 0 24px;
    padding: 0 0 20px;
    overflow-wrap: anywhere;
  }
}

.offers-hero h1 {
  max-width: 900px;
}

.offers-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 34px;
  align-items: stretch;
}

.offers-intro .content-panel,
.offers-spotlight,
.offers-card,
.offers-note,
.offers-form-panel {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.offers-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(260px, 0.76fr);
  min-height: 100%;
  overflow: hidden;
}

.offers-spotlight__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.offers-spotlight__copy h2,
.offers-card h3,
.offers-note h2,
.offers-form-panel h2 {
  margin: 0;
  color: #111;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
}

.offers-spotlight__copy h2 {
  font-size: clamp(38px, 4vw, 58px);
  overflow-wrap: anywhere;
}

.offers-card h3,
.offers-note h2,
.offers-form-panel h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.offers-spotlight__copy p,
.offers-card p,
.offers-note p,
.offers-form-panel p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.offers-code {
  width: fit-content;
  padding: 12px 16px;
  border: 1px solid rgba(17, 17, 17, 0.28);
  border-radius: 4px;
  background: #f8f8f8;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

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

.offers-actions .button,
.offers-actions .button-outline,
.offers-note .button,
.offers-cta .button {
  width: fit-content;
  border-radius: 4px;
}

.offers-actions .button,
.offers-note .button,
.offers-cta .button {
  background: #111;
  color: #fff;
}

.offers-actions .button-outline {
  border: 1px solid rgba(17, 17, 17, 0.28);
  background: #fff;
  color: #111;
}

.offers-spotlight__media {
  min-height: 100%;
  margin: 0;
  background: #fafafa;
}

.offers-spotlight__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 58%;
}

.offers-process .process-step {
  border-color: rgba(17, 17, 17, 0.12);
}

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

.offers-card {
  min-height: 100%;
  padding: 24px;
}

.offers-card--featured {
  background: #111;
  color: #fff;
}

.offers-card small {
  display: block;
  margin-bottom: 12px;
  color: #555;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offers-card--featured small,
.offers-card--featured h3,
.offers-card--featured p {
  color: inherit;
}

.offers-card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.offers-card h3 {
  margin-bottom: 12px;
}

.offers-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 34px;
  align-items: start;
}

.offers-note {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.offers-note .content-kicker,
.offers-form-panel .content-kicker {
  width: fit-content;
}

.offers-panel {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.offers-form-panel {
  padding: clamp(24px, 4vw, 42px);
}

.offers-form-panel h2 {
  margin-bottom: 14px;
}

.offers-form {
  margin-top: 22px;
}

.offers-faq {
  scroll-margin-top: 110px;
}

.offers-cta {
  border: 0;
  border-radius: 0;
}

@media (max-width: 1100px) {
  .offers-intro,
  .offers-layout,
  .offers-spotlight {
    grid-template-columns: 1fr;
  }

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

  .offers-note {
    position: static;
  }

  .offers-spotlight__media img {
    max-height: 420px;
  }
}

@media (max-width: 640px) {
  .offers-intro,
  .offers-layout,
  .offers-grid,
  .offers-panel,
  .offers-intro .content-panel,
  .offers-spotlight,
  .offers-card,
  .offers-note,
  .offers-form-panel {
    min-width: 0;
    width: 100%;
  }

  .offers-grid,
  .offers-form .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .offers-intro .content-panel,
  .offers-spotlight__copy,
  .offers-card,
  .offers-note,
  .offers-form-panel {
    padding: 24px;
    overflow: hidden;
  }

  .offers-intro .content-panel > *,
  .offers-spotlight__copy > *,
  .offers-card > *,
  .offers-note > *,
  .offers-form-panel > * {
    max-width: min(100%, 330px);
  }

  .offers-intro .content-panel h2,
  .offers-card h3,
  .offers-note h2,
  .offers-form-panel h2 {
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .offers-spotlight__copy h2 {
    font-size: 42px;
    overflow-wrap: anywhere;
  }

  .offers-actions,
  .offers-actions .button,
  .offers-actions .button-outline,
  .offers-note .button,
  .offers-cta .button,
  .offers-form .button {
    width: 100%;
  }

  .offers-spotlight__media img {
    min-height: 260px;
    max-height: 300px;
  }

  .offers-process {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    width: 100%;
  }

  .offers-process .process-step {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .offers-process .process-step h3,
  .offers-process .process-step p {
    max-width: 30ch;
    overflow-wrap: anywhere;
  }

  .offers-faq .faq-item summary {
    position: relative;
    display: block;
    width: 100%;
    max-width: min(100%, 390px);
    padding-right: 58px;
    overflow-wrap: anywhere;
  }

  .offers-faq .faq-item summary::after {
    right: 24px;
  }

  .offers-faq .faq-item p {
    width: calc(100% - 48px);
    max-width: 30ch;
    margin: 0 0 0 24px;
    padding: 0 0 20px;
    overflow-wrap: anywhere;
  }

  .offers-cta {
    overflow: hidden;
  }

  .offers-cta > * {
    max-width: min(100%, 330px);
  }

  .offers-cta h2,
  .offers-cta p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .footer.footer-modern .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px 32px;
  }

  .footer.footer-modern .footer-col h4,
  .footer.footer-modern .footer-col a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    padding-inline: 20px;
  }
}

.careers-hero h1 {
  max-width: 760px;
}

.careers-hero::before {
  background: url("../img/careers/karriere-hero.png") center 52% / cover no-repeat;
  filter: saturate(0.9) contrast(1.02);
}

.careers-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.5) 44%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.32));
}

.careers-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.careers-intro .content-panel,
.careers-visual,
.careers-card,
.careers-note,
.careers-form-panel {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.careers-visual {
  display: grid;
  grid-template-rows: minmax(0, auto) minmax(260px, 1fr);
  min-height: 100%;
  overflow: hidden;
}

.careers-visual__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.careers-visual__copy h2,
.careers-card h3,
.careers-note h2,
.careers-form-panel h2 {
  margin: 0;
  color: #111;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
}

.careers-visual__copy h2,
.careers-note h2,
.careers-form-panel h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.careers-card h3 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.careers-visual__copy p,
.careers-card p,
.careers-note p,
.careers-form-panel p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.careers-visual__copy .button,
.careers-note .button,
.careers-cta .button {
  width: fit-content;
  border-radius: 4px;
  background: #111;
  color: #fff;
}

.careers-visual__media {
  margin: 0;
  background: #111;
}

.careers-visual__media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center;
}

.careers-process .process-step {
  border-color: rgba(17, 17, 17, 0.12);
}

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

.careers-card {
  min-height: 100%;
  padding: 24px;
}

.careers-card--featured {
  background: #111;
  color: #fff;
}

.careers-card small {
  display: block;
  margin-bottom: 12px;
  color: #555;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.careers-card--featured small,
.careers-card--featured h3,
.careers-card--featured p {
  color: inherit;
}

.careers-card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.careers-card h3 {
  margin-bottom: 12px;
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 34px;
  align-items: start;
}

.careers-note {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.careers-note .content-kicker,
.careers-form-panel .content-kicker {
  width: fit-content;
}

.careers-form-panel {
  padding: clamp(24px, 4vw, 42px);
}

.careers-form-panel h2 {
  margin-bottom: 14px;
}

.careers-form {
  margin-top: 22px;
}

.careers-cta {
  border: 0;
  border-radius: 0;
}

@media (max-width: 1100px) {
  .careers-intro,
  .careers-layout {
    grid-template-columns: 1fr;
  }

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

  .careers-note {
    position: static;
  }
}

@media (max-width: 640px) {
  .careers-hero::before {
    background-position: 56% center;
  }

  .careers-hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.5));
  }

  .careers-intro,
  .careers-layout,
  .careers-grid,
  .careers-intro .content-panel,
  .careers-visual,
  .careers-card,
  .careers-note,
  .careers-form-panel {
    min-width: 0;
    width: 100%;
  }

  .careers-grid,
  .careers-form .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .careers-intro .content-panel,
  .careers-visual__copy,
  .careers-card,
  .careers-note,
  .careers-form-panel {
    padding: 24px;
    overflow: hidden;
  }

  .careers-intro .content-panel > *,
  .careers-visual__copy > *,
  .careers-card > *,
  .careers-note > *,
  .careers-form-panel > * {
    max-width: min(100%, 330px);
  }

  .careers-intro .content-panel h2,
  .careers-visual__copy h2,
  .careers-card h3,
  .careers-note h2,
  .careers-form-panel h2 {
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .careers-visual__copy .button,
  .careers-note .button,
  .careers-cta .button,
  .careers-form .button {
    width: 100%;
  }

  .careers-visual__media img {
    min-height: 240px;
    max-height: 300px;
  }

  .careers-process {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    width: 100%;
  }

  .careers-process .process-step {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .careers-process .process-step h3,
  .careers-process .process-step p {
    max-width: 30ch;
    overflow-wrap: anywhere;
  }

  .careers-cta {
    overflow: hidden;
  }

  .careers-cta > * {
    max-width: min(100%, 330px);
  }

  .careers-cta h2,
  .careers-cta p {
    overflow-wrap: anywhere;
  }
}

.filters button.chip {
  border-color: #111;
  background: #fff;
  color: #111;
}

.filters button.chip.is-active,
.filters button.chip:hover {
  background: #111;
  color: #fff;
}

.origin-hero h1 {
  max-width: 980px;
}

.origin-hero::before {
  background: url("../img/origin/verantwortungsvolle-herkunft-hero.png") center bottom / cover no-repeat;
  filter: saturate(0.92) contrast(1.03);
}

.origin-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52) 45%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

.origin-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 34px;
  align-items: stretch;
}

.origin-intro .content-panel,
.origin-spotlight,
.origin-card,
.origin-note,
.origin-standard {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.origin-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(270px, 0.78fr);
  min-height: 100%;
  overflow: hidden;
}

.origin-spotlight__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.origin-spotlight__copy h2,
.origin-card h3,
.origin-note h2,
.origin-standard h2,
.origin-cta h2 {
  margin: 0;
  color: #111;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
}

.origin-spotlight__copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.origin-card h3,
.origin-note h2,
.origin-standard h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.origin-spotlight__copy p,
.origin-card p,
.origin-note p,
.origin-standard p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.origin-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.origin-checks span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 4px;
  background: #f8f8f8;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.origin-spotlight__media {
  min-height: 100%;
  margin: 0;
  background: #f7f7f7;
}

.origin-spotlight__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.origin-process .process-step {
  border-color: rgba(17, 17, 17, 0.12);
}

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

.origin-card {
  min-height: 100%;
  padding: 24px;
}

.origin-card--featured {
  background: #111;
  color: #fff;
}

.origin-card small {
  display: block;
  margin-bottom: 12px;
  color: #555;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.origin-card--featured small,
.origin-card--featured h3,
.origin-card--featured p {
  color: inherit;
}

.origin-card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.origin-card h3 {
  margin-bottom: 12px;
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  align-items: start;
}

.origin-note {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.origin-note .content-kicker {
  width: fit-content;
}

.origin-note .button,
.origin-cta .button {
  width: fit-content;
  border-radius: 4px;
  background: #111;
  color: #fff;
}

.origin-panel {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.origin-standard {
  padding: clamp(24px, 4vw, 42px);
}

.origin-standard h2 {
  margin-bottom: 24px;
}

.origin-standard__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.origin-standard__grid div {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fafafa;
}

.origin-standard__grid strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-size: 15px;
}

.origin-faq {
  scroll-margin-top: 110px;
}

.origin-faq .faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
}

.origin-faq .faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 50%;
  color: #111;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.origin-faq .faq-item[open] summary::after {
  content: "-";
}

.origin-faq .faq-item summary > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.origin-cta {
  border: 0;
  border-radius: 0;
}

.origin-cta .content-kicker {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.72);
}

.origin-cta h2 {
  color: #fff;
}

.origin-cta .button {
  background: #fff;
  color: #111;
}

@media (max-width: 1100px) {
  .origin-intro,
  .origin-layout,
  .origin-spotlight {
    grid-template-columns: 1fr;
  }

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

  .origin-note {
    position: static;
  }

  .origin-spotlight__media img {
    max-height: 430px;
  }
}

@media (max-width: 640px) {
  .origin-intro,
  .origin-layout,
  .origin-grid,
  .origin-panel,
  .origin-intro .content-panel,
  .origin-spotlight,
  .origin-card,
  .origin-note,
  .origin-standard {
    min-width: 0;
    width: 100%;
  }

  .origin-grid,
  .origin-standard__grid {
    grid-template-columns: 1fr;
  }

  .origin-intro .content-panel,
  .origin-spotlight__copy,
  .origin-card,
  .origin-note,
  .origin-standard {
    padding: 24px;
    overflow: hidden;
  }

  .origin-intro .content-panel > *,
  .origin-spotlight__copy > *,
  .origin-card > *,
  .origin-note > *,
  .origin-standard > *,
  .origin-cta > * {
    max-width: min(100%, 330px);
  }

  .origin-intro .content-panel h2,
  .origin-card h3,
  .origin-note h2,
  .origin-standard h2 {
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .origin-hero h1 {
    font-size: 38px;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .origin-spotlight__copy h2 {
    font-size: 42px;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .origin-note .button,
  .origin-cta .button {
    width: 100%;
  }

  .origin-spotlight__media img {
    min-height: 260px;
    max-height: 300px;
  }

  .origin-process {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    width: 100%;
  }

  .origin-process .process-step {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .origin-process .process-step h3,
  .origin-process .process-step p {
    max-width: 30ch;
    overflow-wrap: anywhere;
  }

  .origin-faq .faq-item summary {
    position: relative;
    display: block;
    width: 100%;
    max-width: min(100%, 390px);
    padding-right: 58px;
    overflow-wrap: anywhere;
  }

  .origin-faq .faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
  }

  .origin-faq .faq-item p {
    width: calc(100% - 48px);
    max-width: 30ch;
    margin: 0 0 0 24px;
    padding: 0 0 20px;
    overflow-wrap: anywhere;
  }

  .origin-cta {
    overflow: hidden;
  }

.origin-cta h2,
.origin-cta p {
    overflow-wrap: anywhere;
  }
}

.promise-hero h1 {
  max-width: 900px;
}

.promise-hero::before {
  background: url("../img/promise/unsere-versprechen-hero.png") center bottom / cover no-repeat;
  filter: saturate(0.92) contrast(1.03);
}

.promise-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52) 45%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

.promise-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.promise-intro .content-panel,
.promise-spotlight,
.promise-card,
.promise-note,
.promise-standard {
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #fff;
}

.promise-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(270px, 0.84fr);
  min-height: 100%;
  overflow: hidden;
}

.promise-spotlight__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.promise-spotlight__copy h2,
.promise-card h3,
.promise-note h2,
.promise-standard h2,
.promise-cta h2 {
  margin: 0;
  color: #111;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
}

.promise-spotlight__copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.promise-card h3,
.promise-note h2,
.promise-standard h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.promise-spotlight__copy p,
.promise-card p,
.promise-note p,
.promise-standard p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

.promise-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promise-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 4px;
  background: #f8f8f8;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.promise-spotlight__media {
  min-height: 100%;
  margin: 0;
  background: #fafafa;
}

.promise-spotlight__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center 56%;
}

.promise-process .process-step {
  border-color: rgba(17, 17, 17, 0.12);
}

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

.promise-card {
  min-height: 100%;
  padding: 24px;
}

.promise-card--featured {
  background: #111;
  color: #fff;
}

.promise-card small {
  display: block;
  margin-bottom: 12px;
  color: #555;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promise-card--featured small,
.promise-card--featured h3,
.promise-card--featured p {
  color: inherit;
}

.promise-card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.promise-card h3 {
  margin-bottom: 12px;
}

.promise-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  align-items: start;
}

.promise-note {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.promise-note .content-kicker {
  width: fit-content;
}

.promise-note .button {
  width: fit-content;
  border-radius: 4px;
  background: #111;
  color: #fff;
}

.promise-panel {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.promise-standard {
  padding: clamp(24px, 4vw, 42px);
}

.promise-standard h2 {
  margin-bottom: 24px;
}

.promise-standard__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.promise-standard__grid div {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fafafa;
}

.promise-standard__grid strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-size: 15px;
}

.promise-faq {
  scroll-margin-top: 110px;
}

.promise-faq .faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
}

.promise-faq .faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(17, 17, 17, 0.24);
  border-radius: 50%;
  color: #111;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.promise-faq .faq-item[open] summary::after {
  content: "-";
}

.promise-faq .faq-item summary > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.promise-cta {
  border: 0;
  border-radius: 0;
}

.promise-cta .content-kicker {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.72);
}

.promise-cta h2 {
  color: #fff;
}

.promise-cta .button {
  width: fit-content;
  border-radius: 4px;
  background: #fff;
  color: #111;
}

@media (max-width: 1100px) {
  .promise-intro,
  .promise-layout,
  .promise-spotlight {
    grid-template-columns: 1fr;
  }

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

  .promise-note {
    position: static;
  }

  .promise-spotlight__media img {
    max-height: 430px;
  }
}

@media (max-width: 640px) {
  .promise-intro,
  .promise-layout,
  .promise-grid,
  .promise-panel,
  .promise-intro .content-panel,
  .promise-spotlight,
  .promise-card,
  .promise-note,
  .promise-standard {
    min-width: 0;
    width: 100%;
  }

  .promise-grid,
  .promise-standard__grid {
    grid-template-columns: 1fr;
  }

  .promise-intro .content-panel,
  .promise-spotlight__copy,
  .promise-card,
  .promise-note,
  .promise-standard {
    padding: 24px;
    overflow: hidden;
  }

  .promise-intro .content-panel > *,
  .promise-spotlight__copy > *,
  .promise-card > *,
  .promise-note > *,
  .promise-standard > *,
  .promise-cta > * {
    max-width: min(100%, 330px);
  }

  .promise-intro .content-panel h2,
  .promise-card h3,
  .promise-note h2,
  .promise-standard h2 {
    font-size: 28px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .promise-spotlight__copy h2 {
    font-size: 42px;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .promise-note .button,
  .promise-cta .button {
    width: 100%;
  }

  .promise-spotlight__media img {
    min-height: 260px;
    max-height: 300px;
  }

  .promise-process {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    width: 100%;
  }

  .promise-process .process-step {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .promise-process .process-step h3,
  .promise-process .process-step p {
    max-width: 30ch;
    overflow-wrap: anywhere;
  }

  .promise-faq .faq-item summary {
    position: relative;
    display: block;
    width: 100%;
    max-width: min(100%, 390px);
    padding-right: 58px;
    overflow-wrap: anywhere;
  }

  .promise-faq .faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
  }

  .promise-faq .faq-item p {
    width: calc(100% - 48px);
    max-width: 30ch;
    margin: 0 0 0 24px;
    padding: 0 0 20px;
    overflow-wrap: anywhere;
  }

  .promise-cta {
    overflow: hidden;
  }

  .promise-cta h2,
  .promise-cta p {
    overflow-wrap: anywhere;
  }
}

/* Final responsive overrides: keep this last. */
@media (min-width: 1px) {
  :root {
    --page-gutter: clamp(16px, 3vw, 42px);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .container,
  .main-nav-inner,
  .top-strip-inner,
  .footer-bottom-inner,
  .footer.footer-modern .footer-grid,
  .cookie-banner__inner {
    width: min(100% - (var(--page-gutter) * 2), var(--max-width));
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 0;
  }

  .page-hero-inner {
    padding: clamp(28px, 5vw, 54px);
  }

  .section-header > *,
  .content-panel,
  .content-card,
  .content-note,
  .content-cta,
  .page-hero-inner,
  .card,
  .value-card,
  .trust-item,
  .store-product-card,
  .home-product-card,
  .shop-category-card,
  .faq-section,
  .delivery-card,
  .tax-card,
  .offers-card,
  .careers-card,
  .origin-card,
  .promise-card,
  .cart-drawer__item {
    min-width: 0;
  }

  h1,
  h2,
  h3,
  h4,
  p,
  li,
  a,
  button,
  summary,
  label,
  span,
  strong,
  small,
  dd,
  dt {
    overflow-wrap: anywhere;
  }

  .grid-4,
  .process-list,
  .info-strip-grid,
  .home-product-grid,
  .shop-category-grid,
  .delivery-grid,
  .tax-grid,
  .offers-grid,
  .careers-grid,
  .testimonial-grid,
  .quote-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  }

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

  .content-grid--2,
  .split,
  .content-split,
  .faq-intro,
  .delivery-intro,
  .tax-intro,
  .offers-intro,
  .careers-intro,
  .origin-intro,
  .promise-intro {
    grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr));
  }

  .filters,
  .chip-row {
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .filters .chip,
  .chip-row .chip {
    white-space: nowrap;
  }

  .mega-menu__inner {
    width: min(100% - (var(--page-gutter) * 2), var(--max-width));
    grid-template-columns: repeat(4, minmax(150px, 1fr)) minmax(220px, 1.1fr);
    padding-inline: 0;
  }

  .hero.hero-photo {
    min-height: clamp(460px, 52vw, 680px);
  }

  .hero-photo__inner {
    width: min(100% - (var(--page-gutter) * 2), var(--max-width));
    margin-inline: auto;
    padding-inline: 0;
  }

  .hero-title {
    font-size: clamp(36px, 5.8vw, 76px);
  }

  .hero-copy {
    font-size: clamp(15px, 1.6vw, 18px);
  }

  .trust-bar--home,
  .stone-showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  }

  .stone-showcase-card {
    min-height: clamp(520px, 48vw, 720px);
  }

  .stone-showcase-media {
    min-height: clamp(260px, 28vw, 390px);
  }

  .stone-showcase-copy h2,
  .luxury-category-copy h2 {
    white-space: normal;
    text-wrap: balance;
  }

  .pdp-reference-layout,
  .pdp-service-panels,
  .pdp-container {
    width: min(100% - (var(--page-gutter) * 2), var(--max-width));
  }

  .pdp-reference-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(min(420px, 100%), 0.8fr);
  }

  .pdp-progress {
    padding-inline: var(--page-gutter);
  }

  .footer.footer-modern .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  }

  .footer.footer-modern .footer-form,
  .footer.footer-modern .footer-form input {
    min-width: 0;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 14px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .mega-menu__inner {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }

  .mega-visual {
    min-height: 180px;
    grid-column: 1 / -1;
  }

  .pdp-reference-layout {
    grid-template-columns: 1fr;
  }

  .pdp-buybox--77,
  .pdp-buybox {
    position: static;
    border-left: 0;
    padding-left: 0;
  }

  .pdp-service-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: 20px;
  }

  .top-strip-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand-logo {
    max-width: min(210px, 44vw);
    height: auto;
    max-height: 46px;
  }

  .main-nav-inner {
    justify-content: flex-end;
    min-height: 54px;
  }

  .mobile-toggle {
    align-items: center;
    min-height: 40px;
  }

  .mobile-menu {
    gap: 0;
    width: min(100% - 32px, 520px);
    margin-inline: auto;
    padding: 8px 0 14px;
  }

  .mobile-menu a {
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .section-header,
  .home-testimonials__heading,
  .content-cta,
  .footer-bottom-inner,
  .home-testimonials__layout,
  .home-testimonials__side,
  .testimonial-featured,
  .testimonials-experience,
  .offers-spotlight,
  .origin-spotlight,
  .home-guidance {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-guidance {
    width: min(100% - (var(--page-gutter) * 2), var(--max-width));
    padding-block: 0;
    gap: 16px;
  }

  .home-guidance__intro {
    min-height: 0;
    padding: 26px;
    border: 1px solid rgba(17, 17, 17, 0.1);
  }

  .pdp-progress {
    grid-template-columns: 1fr;
  }

  .pdp-step {
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 16px;
  }

  body::before {
    opacity: 0.5;
    -webkit-mask-size: 96px 96px, 70px 70px, 80px 80px, 56px 56px, 72px 72px;
    mask-size: 96px 96px, 70px 70px, 80px 80px, 56px 56px, 72px 72px;
  }

  .top-strip {
    padding-block: 10px;
  }

  .top-strip-inner {
    gap: 10px;
  }

  .top-help,
  .locale-trigger {
    font-size: 10px;
    letter-spacing: 0.7px;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
  }

  .page-hero h1,
  .contact-hero h1,
  .testimonials-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.06;
  }

  .page-hero p,
  .contact-hero p,
  .testimonials-hero p {
    font-size: 16px;
  }

  .hero.hero-photo {
    min-height: 520px;
  }

  .hero-photo__inner {
    padding-block: 64px 48px;
  }

  .hero-actions,
  .cta-actions,
  .offers-actions,
  .contact-form__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .button-outline,
  .cta-actions .button,
  .cta-actions .button-outline,
  .contact-form__actions .button,
  .offers-actions .button,
  .offers-actions .button-outline {
    width: 100%;
    min-width: 0;
  }

  .trust-bar--home,
  .grid-3,
  .grid-4,
  .content-grid,
  .content-grid--2,
  .process-list,
  .info-strip-grid,
  .quote-grid,
  .delivery-grid,
  .tax-grid,
  .offers-grid,
  .careers-grid,
  .testimonial-grid,
  .shop-category-grid,
  .home-product-grid,
  .contact-form__grid,
  .tax-calculator__form,
  .account-form-row,
  .account-form-row--address,
  .account-auth-grid,
  .account-metrics,
  .luxury-category-grid {
    grid-template-columns: 1fr;
  }

  .stone-showcase-card,
  .luxury-category-grid {
    min-height: auto;
  }

  .stone-showcase-media {
    min-height: 235px;
  }

  .luxury-category-card {
    min-height: 430px;
    padding: 46px 18px 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .luxury-category-card:last-child {
    border-bottom: 0;
  }

  .content-panel,
  .content-card,
  .content-note,
  .content-cta,
  .faq-help-card,
  .delivery-support-card,
  .tax-calculator,
  .offers-form-panel,
  .careers-form-panel {
    padding: 22px;
  }

  .pdp-reference-layout,
  .pdp-container,
  .pdp-service-panels {
    width: calc(100vw - (var(--page-gutter) * 2));
  }

  .pdp-visual--77 {
    min-height: 320px;
  }

  .pdp-buybox--77 h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .pdp-setting-price,
  .pdp-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .pdp-actions--77,
  .pdp-actions,
  .pdp-service-panels {
    grid-template-columns: 1fr;
  }

  .cart-drawer__panel {
    width: 100vw;
    max-width: 100vw;
    border-left: 0;
  }

  .cookie-banner__actions,
  .cookie-banner__actions .button,
  .cookie-banner__actions .button-outline {
    width: 100%;
  }

  body.cookie-banner-visible {
    padding-bottom: 220px;
  }
}

@media (max-width: 420px) {
  .promo-bar {
    font-size: 9px;
    letter-spacing: 0.4px;
  }

  .brand-logo {
    max-width: 160px;
  }

  .top-strip-left {
    max-width: 112px;
  }

  .top-strip-right {
    gap: 4px;
  }

  .hero-title {
    font-size: 32px;
  }

  .button,
  .button-outline {
    min-height: 44px;
    padding-inline: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .pdp-reference-layout {
    padding-inline: 0;
  }
}

/* Last-mile mobile overflow fixes. */
@media (max-width: 420px) {
  .catalog-feature-image,
  .catalog-feature-image img,
  .catalog-feature-image figcaption {
    max-width: 100%;
  }

  .catalog-feature-image {
    width: 100%;
    min-width: 0;
  }

  .live-chat-widget,
  .live-chat-widget.is-open {
    right: 12px;
  }
}

/* Mobile header text fit. */
@media (max-width: 420px) {
  .top-help,
  .locale-current {
    white-space: nowrap;
  }

  .locale-trigger {
    gap: 4px;
  }
}

/* Absolute last overflow guard after legacy mobile rules. */
@media (min-width: 1px) {
  .luxury-category-grid {
    width: 100%;
    max-width: var(--max-width);
  }

  .live-chat-widget:not(.is-open) {
    right: 22px;
    width: 62px;
    overflow: hidden;
  }

  .live-chat-widget:not(.is-open) .live-chat-toggle {
    width: 62px;
    padding: 9px;
  }

  .live-chat-widget:not(.is-open) .live-chat-toggle__copy {
    display: none;
  }
}

@media (max-width: 900px) {
  .live-chat-widget:not(.is-open) {
    right: 14px;
  }
}

@media (max-width: 760px) {
  .container,
  .page-hero,
  .content-split,
  .catalog-intro-stack,
  .contact-request,
  .offers-intro,
  .tax-intro,
  .delivery-intro,
  .careers-intro,
  .origin-intro,
  .promise-intro {
    width: calc(100vw - (var(--page-gutter) * 2)) !important;
    max-width: calc(100vw - (var(--page-gutter) * 2)) !important;
    margin-inline: auto;
  }

  .page-hero-inner,
  .content-panel,
  .content-card,
  .content-note,
  .content-cta,
  .contact-form-panel,
  .faq-help-card,
  .delivery-support-card,
  .tax-calculator,
  .offers-form-panel,
  .careers-form-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea,
  .account-field input,
  .tax-calculator__form input,
  .tax-calculator__form select {
    max-width: 100%;
    min-width: 0;
  }

  .contact-form__trap {
    width: 1px !important;
  }
}

/* Keep header and footer content away from laptop/desktop viewport edges. */
@media (min-width: 761px) {
  .top-strip-inner,
  .main-nav-inner,
  .mega-menu__inner,
  .footer.footer-modern .footer-grid,
  .footer-bottom-inner {
    width: min(calc(100vw - clamp(48px, 7vw, 128px)), var(--max-width)) !important;
    max-width: min(calc(100vw - clamp(48px, 7vw, 128px)), var(--max-width)) !important;
    margin-inline: auto;
  }

  .footer.footer-modern .footer-grid {
    padding-inline: 0;
  }
}

/* Header and footer mobile hardening. */
@media (max-width: 760px) {
  .top-strip-inner,
  .main-nav-inner,
  .mobile-menu,
  .footer.footer-modern .footer-grid,
  .footer-bottom-inner {
    width: calc(100vw - (var(--page-gutter) * 2)) !important;
    max-width: calc(100vw - (var(--page-gutter) * 2)) !important;
  }

  .top-strip-inner {
    grid-template-columns: minmax(0, auto) minmax(96px, 1fr) auto;
  }

  .top-strip-left,
  .top-strip-center,
  .top-strip-right,
  .main-nav-inner,
  .footer.footer-modern .footer-col,
  .footer-bottom-inner > * {
    min-width: 0;
  }

  .top-help {
    display: none;
  }

  .brand-logo {
    width: clamp(118px, 36vw, 190px);
    max-width: 100%;
    height: auto;
  }

  .top-strip-right {
    gap: 2px;
  }

  .icon-btn {
    width: 32px;
    height: 32px;
  }

  .locale-panel {
    width: min(220px, calc(100vw - 32px));
  }

  .footer {
    padding-top: 40px;
  }

  .footer.footer-modern .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 26px;
  }

  .footer.footer-modern .footer-form {
    width: 100%;
  }

  .footer.footer-modern .footer-social,
  .footer-bottom-inner {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .promo-bar {
    padding-inline: 10px;
  }

  .locale-trigger {
    max-width: 76px;
    overflow: hidden;
  }

  .brand-logo {
    width: clamp(108px, 34vw, 132px);
  }

  .footer.footer-modern .footer-form {
    display: grid;
    grid-template-columns: 1fr auto;
  }
}

/* Tablet layout polish. */
@media (min-width: 901px) and (max-width: 1100px) {
  .trust-bar--home,
  .home-product-grid,
  .value-grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .luxury-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: min(calc(100vw - clamp(48px, 7vw, 96px)), var(--max-width));
    min-height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .luxury-category-card {
    flex: initial;
    min-height: clamp(500px, 54vw, 600px);
    border-bottom: 0;
    scroll-snap-align: none;
  }

  .luxury-category-card:last-child {
    border-right: 0;
  }

  .luxury-category-copy {
    max-width: 190px;
  }

  .luxury-category-copy h2 {
    font-size: clamp(18px, 1.7vw, 21px);
  }

  .luxury-category-copy p {
    max-width: 176px;
    font-size: 13px;
  }

  .home-guidance__feature {
    min-height: 0;
    gap: 28px;
  }

  .home-guidance__shape-row img {
    width: 68px;
    height: 68px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .trust-bar--home,
  .home-product-grid,
  .value-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stone-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stone-showcase-card {
    grid-template-rows: minmax(230px, auto) 1fr;
    min-height: 540px;
  }

  .stone-showcase-media {
    min-height: 250px;
    padding: 28px 18px 0;
  }

  .stone-showcase-media img {
    max-height: 250px;
  }

  .stone-showcase-copy {
    padding: 18px 16px 34px;
  }

  .stone-showcase-copy small {
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .stone-showcase-copy h2 {
    font-size: 21px;
    letter-spacing: 0.025em;
  }

  .stone-showcase-copy p {
    font-size: 13px;
    line-height: 1.55;
  }

  .luxury-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(calc(100vw - 40px), var(--max-width));
    min-height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .luxury-category-card {
    flex: initial;
    min-height: 500px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    scroll-snap-align: none;
  }

  .luxury-category-card:nth-child(2n) {
    border-right: 0;
  }

  .luxury-category-card:last-child {
    grid-column: 1 / -1;
    min-height: 430px;
    border-right: 0;
    border-bottom: 0;
  }

  .home-guidance__feature {
    min-height: 0;
    gap: 24px;
  }

  .home-guidance__shape-row img {
    width: 58px;
    height: 58px;
  }
}

/* Logged-in account dashboard refresh. */
.account-section {
  background: #f5f5f5;
}

.account-dashboard {
  display: grid;
  gap: 24px;
  width: min(calc(100vw - 48px), 1480px);
  margin: 28px auto 64px;
}

.account-dashboard__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr) auto;
  gap: 20px;
  align-items: stretch;
  min-height: 310px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 52px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.78) 52%, rgba(0, 0, 0, 0.5)),
    url("../img/package.png") center 46% / cover no-repeat;
  color: #ffffff;
}

.account-dashboard__hero > * {
  position: relative;
  z-index: 1;
}

.account-dashboard .account-panel__eyebrow {
  margin: 0;
  color: currentColor;
  opacity: 0.62;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-profile--hero {
  align-self: end;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
}

.account-profile--hero .account-avatar {
  width: clamp(82px, 8vw, 116px);
  height: clamp(82px, 8vw, 116px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-size: clamp(30px, 3vw, 42px);
}

.account-profile--hero .account-profile__meta {
  min-width: 0;
}

.account-profile--hero .account-profile__meta h3 {
  margin: 8px 0 8px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.96;
}

.account-profile--hero .account-profile__meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

.account-dashboard .account-badge {
  min-height: 32px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.account-hero-panel {
  align-self: end;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
}

.account-hero-panel strong {
  display: block;
  color: #ffffff;
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.account-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.account-progress {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.account-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
  transition: width 0.24s ease;
}

.account-dashboard .account-actions {
  align-self: start;
  justify-self: end;
  display: flex;
  gap: 10px;
}

.account-dashboard .account-actions .button,
.account-dashboard .account-actions .button-outline,
.account-dashboard .button,
.account-dashboard .button-outline {
  min-height: 42px;
  border-radius: 4px;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.account-dashboard__hero .button {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}

.account-dashboard__hero .button-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.account-dashboard__layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.account-sidebar,
.account-main {
  min-width: 0;
}

.account-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 84px;
}

.account-quick-actions {
  display: grid;
  gap: 10px;
}

.account-quick-action {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.account-quick-action:hover,
.account-quick-action:focus-visible {
  border-color: #111111;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.account-quick-action__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
}

.account-quick-action__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-quick-action strong,
.account-quick-action small {
  display: block;
  min-width: 0;
}

.account-quick-action strong {
  font-size: 14px;
}

.account-quick-action small {
  margin-top: 3px;
  color: #666666;
  font-size: 12px;
  line-height: 1.45;
}

.account-support-panel,
.account-note,
.account-profile-data,
.account-profile-form,
.account-metric,
.account-work-card {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.account-support-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.account-support-panel h3,
.account-work-card h3,
.account-profile-data h3,
.account-profile-form h3 {
  margin: 0;
  color: #111111;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.account-support-panel p,
.account-work-card p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  line-height: 1.65;
}

.account-main {
  display: grid;
  gap: 16px;
}

.account-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.account-metric {
  display: grid;
  align-content: start;
  min-height: 170px;
  padding: 20px;
}

.account-metric span {
  margin-bottom: 20px;
  color: #777777;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.account-metric strong {
  color: #111111;
  font-size: 44px;
  line-height: 0.9;
}

.account-metric p {
  margin-top: 18px;
  color: #555555;
  font-size: 13px;
  line-height: 1.55;
}

.account-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.8fr) minmax(230px, 0.8fr);
  gap: 14px;
}

.account-work-card {
  display: grid;
  gap: 14px;
  align-content: end;
  min-height: 260px;
  padding: 24px;
}

.account-work-card--image {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82)),
    url("../img/editorial/heart-diamond-ring.png") center 56% / cover no-repeat;
}

.account-work-card--image .account-panel__eyebrow,
.account-work-card--image h3,
.account-work-card--image p {
  color: #ffffff;
}

.account-work-card--image p {
  color: rgba(255, 255, 255, 0.82);
}

.account-work-card--image .button {
  justify-self: start;
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}

.account-note {
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px 20px;
  background: #111111;
  color: #ffffff;
}

.account-note strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.account-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.account-profile-data,
.account-profile-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.account-data-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  border: 0;
}

.account-data-table div {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 88px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #fafafa;
}

.account-data-table dt,
.account-data-table dd {
  padding: 0 14px;
}

.account-data-table dt {
  align-self: end;
  padding-top: 14px;
  background: transparent;
  color: #777777;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.account-data-table dd {
  padding-bottom: 14px;
  color: #111111;
  font-size: 15px;
}

.account-edit-toggle {
  justify-self: start;
}

.account-support-panel .button-outline,
.account-edit-toggle {
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  box-shadow: none;
}

.account-support-panel .button-outline {
  justify-self: start;
}

.account-support-panel .button-outline:hover,
.account-edit-toggle:hover {
  background: #111111;
  color: #ffffff;
}

.account-dashboard .account-field input {
  border-color: rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  background: #ffffff;
}

.account-dashboard .account-cta {
  width: auto;
}

@media (max-width: 1180px) {
  .account-dashboard__hero,
  .account-dashboard__layout,
  .account-work-grid {
    grid-template-columns: 1fr;
  }

  .account-dashboard .account-actions {
    justify-self: start;
  }

  .account-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  }
}

@media (max-width: 760px) {
  .account-dashboard {
    width: calc(100vw - 32px);
    margin: 18px auto 44px;
    gap: 16px;
  }

  .account-dashboard__hero {
    min-height: 0;
    padding: 24px;
  }

  .account-profile--hero {
    grid-template-columns: 1fr;
  }

  .account-profile--hero .account-avatar {
    width: 74px;
    height: 74px;
    font-size: 28px;
  }

  .account-profile--hero .account-profile__meta h3 {
    font-size: 40px;
  }

  .account-sidebar,
  .account-metrics,
  .account-data-table,
  .account-note {
    grid-template-columns: 1fr;
  }

  .account-metric,
  .account-work-card {
    min-height: 0;
  }

  .account-profile-data,
  .account-profile-form,
  .account-support-panel,
  .account-work-card {
    padding: 20px;
  }

  .account-form-actions {
    grid-template-columns: 1fr;
  }

  .account-dashboard .account-cta,
  .account-dashboard .button,
  .account-dashboard .button-outline {
    width: 100%;
  }
}

/* Classic category shop layout. */
.shop-page {
  background: #ffffff;
}

.shop-category-hero {
  padding: 34px 0 26px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: #f7f7f7;
}

.shop-category-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 24px;
  align-items: stretch;
}

.shop-category-hero__copy {
  display: grid;
  align-content: center;
  min-height: 390px;
  padding: 44px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
}

.shop-category-hero .breadcrumbs {
  margin-bottom: 24px;
}

.shop-kicker,
.shop-eyebrow,
.classic-product-card small {
  color: #646464;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.shop-category-hero h1 {
  max-width: 760px;
  margin: 10px 0 16px;
  color: #111111;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.shop-category-hero p {
  max-width: 680px;
  margin: 0;
  color: #555555;
  font-size: 17px;
  line-height: 1.7;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.shop-hero-actions .button,
.shop-hero-actions .button-outline {
  min-width: 180px;
  justify-content: center;
  text-align: center;
}

.shop-category-hero__media {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #111111;
}

.shop-category-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.shop-layout-section {
  padding: 30px 0 54px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
}

.shop-sidebar__group {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.shop-sidebar__group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.shop-sidebar h2 {
  margin: 0 0 4px;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-sidebar p {
  margin: 0;
  color: #555555;
  font-size: 13px;
  line-height: 1.6;
}

.shop-type-tabs {
  display: grid;
  gap: 8px;
}

.shop-type-tabs a,
.shop-filter-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 6px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.shop-type-tabs a::after,
.shop-filter-button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.shop-type-tabs a:hover,
.shop-type-tabs a:focus,
.shop-filter-button:hover,
.shop-filter-button:focus,
.shop-type-tabs a.is-active,
.shop-filter-button.is-active {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.shop-results {
  min-width: 0;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.shop-toolbar__copy {
  min-width: 0;
}

.shop-toolbar h2 {
  margin: 5px 0 4px;
  color: #111111;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.shop-toolbar p {
  margin: 0;
  color: #555555;
  font-size: 13px;
  font-weight: 700;
}

.shop-sort {
  display: grid;
  gap: 6px;
  min-width: 190px;
  color: #555555;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-sort select {
  min-height: 42px;
  padding: 0 38px 0 12px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 6px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.shop-category-note {
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #f7f7f7;
  color: #555555;
  font-size: 13px;
  line-height: 1.55;
}

.classic-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}

.classic-product-card {
  min-width: 0;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.classic-product-card:hover {
  border-color: #111111;
  transform: translateY(-2px);
}

.classic-product-card__link {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.classic-product-card__media {
  position: relative;
  aspect-ratio: 1 / 0.92;
  margin: 0;
  overflow: hidden;
  background: #f3f3f3;
}

.classic-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.classic-product-card:hover .classic-product-card__media img {
  transform: scale(1.035);
}

.classic-product-card__media span {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.classic-product-card__body {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
}

.classic-product-card h3 {
  margin: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.classic-product-card p {
  min-height: 66px;
  margin: 0;
  color: #555555;
  font-size: 13px;
  line-height: 1.55;
}

.classic-product-card__attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.classic-product-card__attributes span {
  min-height: 28px;
  padding: 6px 8px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  color: #333333;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.classic-product-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.classic-product-card__footer strong {
  color: #111111;
  font-size: 15px;
}

.classic-product-card__footer em {
  color: #111111;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.classic-product-grid .shop-products-loading,
.classic-product-grid .shop-empty {
  grid-column: 1 / -1;
}

.shop-service-band {
  padding: 0 0 58px;
}

.shop-service-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shop-service-band__grid > div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
}

.shop-service-band span {
  display: block;
  margin-bottom: 14px;
  color: #777777;
  font-size: 12px;
  font-weight: 800;
}

.shop-service-band h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 18px;
}

.shop-service-band p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .shop-category-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  }

  .shop-category-hero__copy {
    padding: 34px;
  }

  .shop-category-hero h1 {
    font-size: 54px;
  }

  .shop-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 22px;
  }

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

@media (max-width: 860px) {
  .shop-category-hero {
    padding-top: 22px;
  }

  .shop-category-hero__inner,
  .shop-layout,
  .shop-service-band__grid {
    grid-template-columns: 1fr;
  }

  .shop-category-hero__copy,
  .shop-category-hero__media {
    min-height: 0;
  }

  .shop-category-hero__media {
    aspect-ratio: 16 / 9;
  }

  .shop-sidebar {
    position: static;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .shop-sidebar__group {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .shop-sidebar__group--service {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px solid rgba(17, 17, 17, 0.1);
  }
}

@media (max-width: 620px) {
  .shop-category-hero__copy {
    padding: 24px;
  }

  .shop-category-hero h1 {
    font-size: 42px;
  }

  .shop-category-hero p {
    font-size: 15px;
  }

  .shop-hero-actions,
  .shop-toolbar,
  .classic-product-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-hero-actions .button,
  .shop-hero-actions .button-outline,
  .shop-sort {
    width: 100%;
  }

  .shop-sidebar {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .shop-type-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-type-tabs a,
  .shop-filter-button {
    min-height: 46px;
    font-size: 12px;
  }

  .shop-toolbar {
    align-items: stretch;
  }

  .shop-toolbar h2 {
    font-size: 32px;
  }

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

  .classic-product-card p {
    min-height: 0;
  }
}

/* Education knowledge hub. */
.education-hub {
  background: #ffffff;
  color: #111111;
}

.education-hero {
  position: relative;
  min-height: min(680px, calc(100vh - 132px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111111;
  color: #ffffff;
}

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

.education-hero__media {
  background: url("../img/menu/wissenswertes-menu.png") center 52% / cover no-repeat;
}

.education-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.68));
}

.education-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: inherit;
  padding-top: 86px;
  padding-bottom: 70px;
}

.education-hero .breadcrumbs {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.education-kicker {
  color: #1f5f52;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.education-hero .education-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.education-hero h1 {
  max-width: 860px;
  margin: 10px 0 18px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 76px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.education-hero p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.education-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.education-hero__actions .button,
.education-hero__actions .button-outline {
  min-width: 160px;
  justify-content: center;
}

.education-control-band {
  position: sticky;
  top: 0;
  z-index: 7;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.education-control-band__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  align-items: end;
  padding-top: 16px;
  padding-bottom: 16px;
}

.education-search {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.education-search label {
  color: #555555;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.education-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 14px;
}

.education-search input:focus {
  border-color: #111111;
  outline: 2px solid rgba(31, 95, 82, 0.18);
  outline-offset: 0;
}

.education-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  padding-right: 76px;
}

.education-filter-bar button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.education-filter-bar button:hover,
.education-filter-bar button:focus,
.education-filter-bar button.is-active {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.education-section {
  padding: 64px 0;
}

.education-section--start {
  padding-top: 54px;
}

.education-section--library {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #f7f8f7;
}

.education-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.education-section-head h2 {
  margin: 8px 0 0;
  color: #111111;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.education-section-head p {
  margin: 0;
  color: #555555;
  line-height: 1.65;
}

.education-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(260px, 0.62fr);
  gap: 16px;
}

.education-feature-card {
  min-width: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.education-feature-card a {
  display: grid;
  min-height: 100%;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}

.education-feature-card--large {
  grid-row: span 2;
}

.education-feature-card--large a {
  grid-template-rows: minmax(240px, 1fr) auto;
  padding: 0;
}

.education-feature-card figure {
  margin: 0;
  overflow: hidden;
  background: #eeeeee;
}

.education-feature-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.education-feature-card--large div {
  padding: 26px;
}

.education-feature-card span,
.education-article-card span,
.education-roadmap-grid span {
  display: block;
  margin-bottom: 10px;
  color: #1f5f52;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.education-feature-card h3 {
  margin: 0 0 10px;
  color: #111111;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.08;
}

.education-feature-card--large h3 {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0;
}

.education-feature-card p {
  margin: 0 0 18px;
  color: #555555;
  line-height: 1.6;
}

.education-feature-card em {
  color: #111111;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.education-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.education-topic-card {
  display: grid;
  gap: 10px;
  min-height: 214px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.education-topic-card:hover,
.education-topic-card:focus {
  border-color: #111111;
  transform: translateY(-2px);
}

.education-topic-card span {
  color: #777777;
  font-size: 12px;
  font-weight: 900;
}

.education-topic-card h3 {
  margin: 0;
  color: #111111;
  font-size: 23px;
  font-weight: 850;
}

.education-topic-card p {
  margin: 0;
  color: #555555;
  line-height: 1.6;
}

.education-topic-card strong {
  align-self: end;
  color: #1f5f52;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.education-library-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.education-library-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.education-library-sidebar h2 {
  margin: 0;
  color: #111111;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.education-library-sidebar p {
  margin: 0;
  color: #555555;
  font-size: 13px;
  font-weight: 800;
}

.education-library-sidebar nav {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.education-library-sidebar a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: #111111;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.education-library-sidebar a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.education-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.education-article-card {
  min-width: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.education-article-card[hidden] {
  display: none;
}

.education-article-card a {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 226px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
}

.education-article-card h3 {
  margin: 0;
  color: #111111;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.18;
}

.education-article-card p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  line-height: 1.58;
}

.education-article-card small {
  align-self: end;
  color: #777777;
  font-size: 12px;
  font-weight: 850;
}

.education-empty {
  grid-column: 1 / -1;
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #555555;
  text-align: center;
}

.education-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.education-roadmap-grid > div {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.education-roadmap-grid h3 {
  margin: 0 0 10px;
  color: #111111;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.18;
}

.education-roadmap-grid p {
  margin: 0;
  color: #555555;
  line-height: 1.6;
}

.education-cta {
  padding: 0 0 68px;
}

.education-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
}

.education-cta h2 {
  margin: 8px 0 8px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.education-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.education-cta .button {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .education-hero h1 {
    font-size: 62px;
  }

  .education-topic-grid,
  .education-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .education-hero {
    min-height: 620px;
  }

  .education-hero__overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12));
  }

  .education-control-band {
    position: static;
  }

  .education-control-band__inner,
  .education-section-head,
  .education-feature-grid,
  .education-library-layout,
  .education-roadmap-grid,
  .education-cta__inner {
    grid-template-columns: 1fr;
  }

  .education-filter-bar {
    justify-content: flex-start;
  }

  .education-library-sidebar {
    position: static;
  }

  .education-library-sidebar nav {
    grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
    gap: 6px;
  }

  .education-library-sidebar a {
    min-height: 42px;
    padding: 10px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 6px;
  }

  .education-cta .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .education-hero {
    min-height: 580px;
  }

  .education-hero__inner {
    padding-top: 70px;
    padding-bottom: 42px;
  }

  .education-hero h1 {
    font-size: 44px;
  }

  .education-hero p {
    font-size: 15px;
  }

  .education-hero__actions,
  .education-hero__actions .button,
  .education-hero__actions .button-outline,
  .education-cta .button {
    width: 100%;
  }

  .education-control-band__inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .education-filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-filter-bar button {
    width: 100%;
  }

  .education-section {
    padding: 44px 0;
  }

  .education-section-head h2,
  .education-cta h2 {
    font-size: 34px;
  }

  .education-feature-card--large a {
    grid-template-rows: minmax(210px, 0.8fr) auto;
  }

  .education-feature-card--large h3 {
    font-size: 34px;
  }

  .education-topic-grid,
  .education-article-grid,
  .education-library-sidebar nav {
    grid-template-columns: 1fr;
  }

  .education-topic-card,
  .education-article-card a,
  .education-roadmap-grid > div {
    min-height: 0;
  }

  .education-cta__inner {
    padding: 26px;
  }
}

/* Education hub redesign: brighter editorial knowledge system. */
.education-hub--journal {
  background: #fbfbfa;
}

.education-hero--journal {
  min-height: 0;
  padding: 38px 0 34px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background:
    linear-gradient(180deg, #f4f6f5 0%, #fbfbfa 100%);
  color: #111111;
}

.education-hero--journal .education-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.education-hero--journal .education-hero__copy {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.education-hero--journal .breadcrumbs {
  margin-bottom: 24px;
  color: #777777;
}

.education-hero--journal .education-kicker {
  color: #1f5f52;
}

.education-hero--journal h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: #111111;
  font-size: clamp(48px, 6vw, 78px);
}

.education-hero--journal p {
  max-width: 700px;
  color: #555555;
}

.education-hero--journal .education-hero__actions .button-light {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.education-hero--journal .education-hero__actions .button-outline.button-light {
  border-color: rgba(17, 17, 17, 0.22);
  background: #ffffff;
  color: #111111;
}

.education-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 34px 0 0;
}

.education-hero__stats div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #f7f8f7;
}

.education-hero__stats dt,
.education-hero__stats dd {
  margin: 0;
}

.education-hero__stats dt {
  color: #111111;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.education-hero__stats dd {
  margin-top: 7px;
  color: #666666;
  font-size: 12px;
  font-weight: 800;
}

.education-hero__feature {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
}

.education-hero__feature figure {
  margin: 0;
  overflow: hidden;
  background: #eeeeee;
}

.education-hero__feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.education-hero__feature > div {
  padding: 26px;
}

.education-hero__feature span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.education-hero__feature h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.education-hero__feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.education-hero__feature a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 20px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.education-hub--journal .education-control-band {
  top: 0;
  background: rgba(255, 255, 255, 0.98);
}

.education-hub--journal .education-control-band__inner {
  align-items: center;
}

.education-hub--journal .education-search label {
  color: #1f5f52;
}

.education-hub--journal .education-filter-bar {
  padding-right: 76px;
}

.education-topic-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.education-topic-panel {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 238px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.education-topic-panel:hover,
.education-topic-panel:focus {
  border-color: #111111;
  transform: translateY(-2px);
}

.education-topic-panel--image {
  grid-row: span 2;
  min-height: 490px;
  color: #ffffff;
  background: #111111;
}

.education-topic-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.education-topic-panel--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78));
}

.education-topic-panel span,
.education-topic-panel h3,
.education-topic-panel p,
.education-topic-panel strong {
  position: relative;
  z-index: 1;
}

.education-topic-panel span {
  color: #1f5f52;
  font-size: 12px;
  font-weight: 900;
}

.education-topic-panel--image span,
.education-topic-panel--image strong {
  color: rgba(255, 255, 255, 0.84);
}

.education-topic-panel h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.08;
}

.education-topic-panel--image h3 {
  color: #ffffff;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0;
}

.education-topic-panel p {
  margin: 0;
  color: #555555;
  line-height: 1.55;
}

.education-topic-panel--image p {
  color: rgba(255, 255, 255, 0.78);
}

.education-topic-panel strong {
  color: #1f5f52;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.education-hub--journal .education-feature-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(220px, 0.55fr));
}

.education-hub--journal .education-feature-card--large {
  grid-row: span 2;
}

.education-hub--journal .education-feature-card {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.035);
}

.education-hub--journal .education-feature-card:not(.education-feature-card--large) a {
  min-height: 236px;
  align-content: end;
}

.education-hub--journal .education-section--library {
  background: #f1f3f2;
}

.education-hub--journal .education-library-layout {
  grid-template-columns: 280px minmax(0, 1fr);
}

.education-hub--journal .education-library-sidebar {
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.035);
}

.education-hub--journal .education-article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.education-hub--journal .education-article-card {
  border-color: rgba(17, 17, 17, 0.09);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.032);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.education-hub--journal .education-article-card:hover {
  border-color: rgba(17, 17, 17, 0.28);
  transform: translateY(-2px);
}

.education-hub--journal .education-article-card a {
  min-height: 216px;
}

.education-hub--journal .education-article-card h3 {
  font-size: 19px;
}

.education-section--editorial {
  background: #ffffff;
}

.education-hub--journal .education-roadmap-grid > div {
  border-color: rgba(17, 17, 17, 0.09);
  background: #fbfbfa;
}

@media (max-width: 1120px) {
  .education-hero--journal .education-hero__grid,
  .education-hub--journal .education-feature-grid,
  .education-hub--journal .education-library-layout {
    grid-template-columns: 1fr;
  }

  .education-hero__feature,
  .education-hero--journal .education-hero__copy {
    min-height: 0;
  }

  .education-topic-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .education-hub--journal .education-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .education-hero--journal {
    padding-top: 20px;
  }

  .education-hero--journal .education-hero__copy {
    padding: 28px;
  }

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

  .education-hero__feature {
    grid-template-rows: minmax(220px, 0.8fr) auto;
  }

  .education-hub--journal .education-filter-bar {
    padding-right: 70px;
  }
}

@media (max-width: 620px) {
  .education-hero--journal {
    min-height: 0;
    padding: 14px 0 24px;
  }

  .education-hero--journal .education-hero__grid {
    gap: 14px;
  }

  .education-hero--journal .education-hero__copy {
    padding: 22px;
  }

  .education-hero--journal h1 {
    font-size: 40px;
  }

  .education-hero__stats,
  .education-topic-mosaic,
  .education-hub--journal .education-article-grid {
    grid-template-columns: 1fr;
  }

  .education-hero__feature h2,
  .education-topic-panel--image h3 {
    font-size: 32px;
  }

  .education-topic-panel,
  .education-topic-panel--image {
    min-height: 220px;
  }

  .education-hub--journal .education-filter-bar {
    padding-right: 68px;
  }

  .education-hub--journal .education-feature-card:not(.education-feature-card--large) a,
  .education-hub--journal .education-article-card a {
    min-height: 0;
  }
}

.education-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 740px;
  margin: 18px 0 0;
}

.education-byline span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #f7f8f7;
  color: #434343;
  font-size: 12px;
  font-weight: 800;
}

.education-section--deep-guides {
  background: #fbfbfa;
}

.education-guide-stack {
  display: grid;
  gap: 18px;
}

.education-guide {
  display: grid;
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 0.55fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.035);
  scroll-margin-top: 130px;
}

.education-guide:nth-child(even) {
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
}

.education-guide:nth-child(even) .education-guide__media {
  order: 2;
}

.education-guide__media {
  min-height: 100%;
  margin: 0;
  background: #eeeeee;
}

.education-guide__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.education-guide__content {
  display: grid;
  align-content: center;
  gap: 16px;
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
}

.education-guide__content--wide {
  grid-column: 1 / -1;
  max-width: 980px;
  padding-right: clamp(24px, 7vw, 86px);
}

.education-guide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.education-guide__meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef3f1;
  color: #1f5f52;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.education-guide h2 {
  margin: 0;
  color: #111111;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.education-guide__lead {
  color: #222222;
  font-size: 17px;
  line-height: 1.72;
}

.education-guide p {
  margin: 0;
  color: #555555;
  line-height: 1.72;
}

.education-guide__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.education-guide__list li {
  position: relative;
  padding-left: 22px;
  color: #333333;
  line-height: 1.6;
}

.education-guide__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1f5f52;
}

.education-guide__advice {
  display: grid;
  gap: 6px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.education-guide__advice strong {
  color: #111111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.education-guide__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.education-guide__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid #111111;
  border-radius: 4px;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.education-guide__links a:first-child {
  background: #111111;
  color: #ffffff;
}

.education-section--faq {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #f1f3f2;
}

.education-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: 28px;
  align-items: start;
}

.education-faq-layout h2 {
  margin: 8px 0 12px;
  color: #111111;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.education-faq-layout p {
  margin: 0;
  color: #555555;
  line-height: 1.65;
}

.education-faq-list {
  display: grid;
  gap: 10px;
}

.education-faq-list details {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.education-faq-list summary {
  min-height: 58px;
  padding: 18px 20px;
  color: #111111;
  font-weight: 900;
  cursor: pointer;
}

.education-faq-list details p {
  padding: 0 20px 20px;
}

@media (max-width: 980px) {
  .education-guide,
  .education-guide:nth-child(even),
  .education-faq-layout {
    grid-template-columns: 1fr;
  }

  .education-guide:nth-child(even) .education-guide__media {
    order: 0;
  }

  .education-guide__media img {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .education-byline {
    display: grid;
  }

  .education-guide__content,
  .education-guide__content--wide {
    padding: 22px;
  }

  .education-guide__media img {
    min-height: 230px;
  }

  .education-guide h2,
  .education-faq-layout h2 {
    font-size: 34px;
  }

  .education-guide__lead {
    font-size: 15px;
  }

  .education-guide__links,
  .education-guide__links a {
    width: 100%;
  }
}

/* Individual Wissenswertes guide pages. */
.guide-page {
  background: #fbfbfa;
  color: #111111;
}

.guide-hero {
  padding: 46px 0 38px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: #f5f2ec;
}

.guide-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.guide-hero__content {
  min-width: 0;
}

.guide-hero__side {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.guide-hero__media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #e8e5dd;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

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

.guide-hero .breadcrumbs {
  margin-bottom: 26px;
  color: #777777;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-hero .breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.content-kicker {
  display: inline-block;
  color: #1f5f52;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-hero h1 {
  max-width: 860px;
  margin: 12px 0 18px;
  color: #111111;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

.guide-hero p {
  max-width: 760px;
  margin: 0;
  color: #3e3e3e;
  font-size: 18px;
  line-height: 1.7;
}

.guide-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.guide-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #333333;
  font-size: 12px;
  font-weight: 800;
}

.guide-quick-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.05);
}

.guide-quick-card span {
  color: #1f5f52;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-quick-card ul,
.guide-checklist ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-quick-card li,
.guide-checklist li {
  position: relative;
  padding-left: 22px;
  color: #333333;
  line-height: 1.55;
}

.guide-quick-card li::before,
.guide-checklist li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1f5f52;
}

.guide-layout-section {
  padding: 54px 0 72px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.guide-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 12px;
}

.guide-back,
.guide-nav {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.032);
}

.guide-back {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  color: #111111;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.guide-nav {
  display: grid;
  max-height: calc(100vh - 168px);
  overflow: auto;
  padding: 8px;
}

.guide-nav a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #333333;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.guide-nav a:hover,
.guide-nav a:focus,
.guide-nav a.is-active {
  background: #111111;
  color: #ffffff;
}

.guide-article {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.guide-article-section,
.guide-checklist,
.guide-intro-panel,
.guide-depth-section,
.guide-practice-section,
.guide-topic-panel,
.guide-link-panel,
.guide-faq-section,
.guide-related,
.guide-next {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.032);
}

.guide-article-section,
.guide-checklist,
.guide-intro-panel,
.guide-depth-section,
.guide-practice-section,
.guide-topic-panel,
.guide-link-panel,
.guide-faq-section,
.guide-related {
  padding: clamp(24px, 4vw, 40px);
}

.guide-article h2 {
  margin: 0 0 12px;
  color: #111111;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.guide-article p {
  margin: 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.78;
}

.guide-checklist {
  background: #f4f6f5;
}

.guide-intro-panel {
  display: grid;
  gap: 10px;
  background: #111111;
}

.guide-intro-panel p {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.guide-intro-panel .content-kicker {
  color: #cdb58a;
}

.guide-depth-section {
  display: grid;
  gap: 18px;
}

.guide-rich-copy {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.guide-rich-copy p {
  font-size: 17px;
  line-height: 1.82;
}

.guide-depth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.guide-depth-grid div {
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #fbfbfa;
}

.guide-depth-grid h3 {
  margin: 0 0 10px;
  color: #111111;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.guide-depth-grid p {
  font-size: 14px;
  line-height: 1.68;
}

.guide-topic-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
  background: #f4f6f5;
}

.guide-topic-panel p {
  max-width: 520px;
}

.guide-term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-term-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(31, 95, 82, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #1f5f52;
  font-size: 12px;
  font-weight: 900;
}

.guide-link-panel {
  display: grid;
  gap: 18px;
}

.guide-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #fbfbfa;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.guide-link-grid a:hover,
.guide-link-grid a:focus {
  transform: translateY(-2px);
  border-color: rgba(31, 95, 82, 0.36);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.guide-link-grid strong {
  color: #111111;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.02;
}

.guide-link-grid span {
  color: #555555;
  font-size: 13px;
  line-height: 1.5;
}

.guide-practice-section {
  display: grid;
  gap: 18px;
  background: #ffffff;
}

.guide-practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-practice-grid div {
  min-height: 240px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfbfa, #ffffff);
}

.guide-practice-grid h2 {
  font-size: clamp(28px, 2.4vw, 38px);
}

.guide-practice-grid p {
  font-size: 16px;
  line-height: 1.82;
}

.guide-faq-section {
  display: grid;
  gap: 16px;
}

.guide-faq-list {
  display: grid;
  gap: 10px;
}

.guide-faq-list details {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #fbfbfa;
}

.guide-faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #111111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.guide-faq-list p {
  padding: 0 18px 18px;
}

.guide-related {
  display: grid;
  gap: 18px;
}

.guide-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-related__grid a {
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #fbfbfa;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.guide-related__grid a:hover,
.guide-related__grid a:focus {
  transform: translateY(-2px);
  border-color: rgba(31, 95, 82, 0.36);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.guide-related__grid span {
  color: #1f5f52;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-related__grid strong {
  color: #111111;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.02;
}

.guide-related__grid small {
  color: #555555;
  font-size: 13px;
  line-height: 1.48;
}

.guide-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  background: #111111;
  color: #ffffff;
}

.guide-next h2,
.guide-next p {
  color: inherit;
}

.guide-next p {
  color: rgba(255, 255, 255, 0.74);
}

.guide-next__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.guide-next .button {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

.guide-next .button-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

@media (max-width: 980px) {
  .guide-hero__inner,
  .guide-layout,
  .guide-next {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
  }

  .guide-nav {
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-related__grid {
    grid-template-columns: 1fr;
  }

  .guide-depth-grid,
  .guide-topic-panel,
  .guide-practice-grid,
  .guide-link-grid {
    grid-template-columns: 1fr;
  }

  .guide-next__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .guide-hero {
    padding: 24px 0;
  }

  .guide-hero h1 {
    font-size: 40px;
  }

  .guide-hero p {
    font-size: 16px;
  }

  .guide-nav,
  .guide-next__actions {
    grid-template-columns: 1fr;
  }

  .guide-next .button,
  .guide-next .button-outline {
    width: 100%;
  }
}

/* Account dashboard redesign: guided customer workspace. */
.account-section,
.account-surface {
  background: #f4f1eb;
}

.account-dashboard {
  gap: 22px;
  width: min(calc(100vw - 48px), 1420px);
  margin: 22px auto 72px;
  color: #141414;
}

.account-dashboard__hero {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  min-height: 360px;
  padding: clamp(30px, 4vw, 56px);
  padding-top: clamp(72px, 8vw, 104px);
  align-items: end;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.96) 0%, rgba(19, 18, 16, 0.82) 48%, rgba(19, 18, 16, 0.4) 100%),
    url("../img/contact/ring-request-hero.png") center 48% / cover no-repeat;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

.account-profile--hero {
  align-self: end;
  gap: 24px;
}

.account-profile--hero .account-avatar {
  width: clamp(78px, 7vw, 104px);
  height: clamp(78px, 7vw, 104px);
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
}

.account-profile__intro {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.5;
}

.account-profile--hero .account-profile__meta h3 {
  max-width: 10ch;
  margin: 8px 0 14px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.92;
}

.account-profile__inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
}

.account-profile__inline > span:first-child {
  overflow-wrap: anywhere;
}

.account-dashboard .account-badge {
  margin-top: 0;
}

.account-hero-panel {
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.account-hero-panel strong {
  color: #111111;
}

.account-hero-panel p {
  color: #505050;
}

.account-hero-panel .account-progress {
  background: #ded9cf;
}

.account-hero-panel .account-progress span {
  background: #63715b;
}

.account-hero-panel .button {
  justify-content: center;
  width: 100%;
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.account-dashboard .account-actions {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  justify-self: auto;
  align-self: auto;
}

.account-dashboard__hero > .account-actions .button,
.account-dashboard__hero > .account-actions .button-outline {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.account-dashboard__hero > .account-actions .button:hover,
.account-dashboard__hero > .account-actions .button-outline:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

.account-dashboard__layout {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 22px;
}

.account-sidebar {
  gap: 14px;
}

.account-dossier-card,
.account-trust-panel,
.account-value-card,
.account-planner,
.account-profile-data,
.account-profile-form,
.account-note {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.account-dossier-card,
.account-trust-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.account-dossier-card h3,
.account-trust-panel h3,
.account-value-card h3,
.account-planner h3,
.account-profile-data h3,
.account-profile-form h3 {
  margin: 0;
  color: #111111;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.account-dossier-card p,
.account-trust-panel p,
.account-value-card p,
.account-planner p,
.account-profile-data__head p {
  margin: 0;
  color: #555555;
  font-size: 14px;
  line-height: 1.65;
}

.account-dossier-list {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.account-dossier-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.account-dossier-list li > span,
.account-checklist__mark {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #b8b0a3;
  border-radius: 999px;
}

.account-dossier-list li > span::after,
.account-checklist__mark::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: inherit;
  background: transparent;
}

.account-dossier-list li.is-complete > span,
.account-checklist li.is-complete .account-checklist__mark {
  border-color: #63715b;
  background: #63715b;
}

.account-dossier-list li.is-complete > span::after,
.account-checklist li.is-complete .account-checklist__mark::after {
  width: 8px;
  height: 5px;
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  border-radius: 0;
  background: transparent;
  transform: rotate(-45deg) translateY(-1px);
}

.account-dossier-list strong {
  min-width: 0;
  color: #171717;
  font-size: 13px;
}

.account-dossier-list small,
.account-checklist small {
  color: #777777;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-dossier-list li.is-complete small,
.account-checklist li.is-complete small {
  color: #63715b;
}

.account-trust-panel {
  background: #1b1b18;
  color: #ffffff;
}

.account-trust-panel h3,
.account-trust-panel p {
  color: inherit;
}

.account-trust-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.account-quick-actions {
  gap: 10px;
}

.account-quick-action {
  min-height: 78px;
  border-color: rgba(17, 17, 17, 0.12);
  background: #ffffff;
}

.account-quick-action__icon {
  background: #f1eee7;
  color: #111111;
}

.account-main {
  gap: 16px;
}

.account-note {
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 1fr);
  padding: 18px 20px;
  background: #111111;
}

.account-note strong {
  overflow-wrap: anywhere;
}

.account-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.account-value-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 188px;
  padding: 20px;
}

.account-value-card span {
  color: #63715b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.account-value-card h3 {
  font-size: 25px;
}

.account-planner {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
}

.account-planner__visual {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 430px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.82)),
    url("../img/editorial/heart-diamond-ring.png") center 58% / cover no-repeat;
  color: #ffffff;
}

.account-planner__visual h3,
.account-planner__visual p,
.account-planner__visual .account-panel__eyebrow {
  color: #ffffff;
}

.account-planner__visual p {
  color: rgba(255, 255, 255, 0.82);
}

.account-planner__visual .button {
  justify-self: start;
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

.account-planner__body {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
}

.account-checklist {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-checklist li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.account-checklist li:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.account-checklist strong {
  display: block;
  color: #111111;
  font-size: 15px;
}

.account-checklist p {
  margin-top: 4px;
  font-size: 13px;
}

.account-checklist__mark {
  margin-top: 1px;
}

.account-checklist__mark--next {
  border-color: #111111;
}

.account-checklist__mark--next::after {
  content: "";
  width: 7px;
  height: 7px;
  background: #111111;
}

.account-profile-data {
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  align-items: stretch;
  padding: 24px;
}

.account-profile-data__head {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding-right: 22px;
}

.account-profile-data__head h3 {
  font-size: 30px;
}

.account-profile-data__head .account-edit-toggle {
  justify-self: start;
  margin-top: 6px;
}

.account-data-table {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-data-table div {
  min-height: 96px;
  border-color: rgba(17, 17, 17, 0.1);
  background: #f8f6f1;
}

.account-data-table dt {
  color: #6f6b62;
  font-weight: 800;
}

.account-data-table dd {
  overflow-wrap: anywhere;
}

.account-profile-form {
  gap: 18px;
  margin-top: 0;
  padding: 26px;
  background: #ffffff;
}

.account-profile-form .account-form__heading {
  padding-bottom: 2px;
}

.account-dashboard .account-field input {
  border-color: rgba(17, 17, 17, 0.16);
  background: #fbfaf7;
}

.account-dashboard .account-field input:focus {
  border-color: #111111;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(99, 113, 91, 0.18);
}

.account-dashboard .account-cta,
.account-dashboard .button,
.account-dashboard .button-outline {
  border-radius: 4px;
}

@media (max-width: 1180px) {
  .account-dashboard__hero,
  .account-dashboard__layout {
    grid-template-columns: 1fr;
  }

  .account-dashboard__hero {
    min-height: 0;
  }

  .account-dashboard .account-actions {
    position: static;
    justify-self: start;
    order: -1;
  }

  .account-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    align-items: start;
  }

  .account-quick-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .account-trust-panel {
    min-height: 100%;
  }

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

@media (max-width: 900px) {
  .account-sidebar,
  .account-quick-actions,
  .account-planner,
  .account-profile-data,
  .account-data-table {
    grid-template-columns: 1fr;
  }

  .account-profile-data__head {
    padding-right: 0;
  }

  .account-planner__visual {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .account-dashboard {
    width: calc(100vw - 32px);
    margin: 18px auto 48px;
    gap: 16px;
  }

  .account-dashboard__hero {
    padding: 24px;
  }

  .account-profile--hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .account-profile--hero .account-profile__meta h3 {
    max-width: none;
    font-size: 42px;
  }

  .account-profile__inline,
  .account-dashboard .account-actions {
    align-items: stretch;
    width: 100%;
  }

  .account-dashboard .account-actions,
  .account-profile__inline {
    flex-direction: column;
  }

  .account-dashboard .account-actions .button,
  .account-dashboard .account-actions .button-outline,
  .account-hero-panel .button,
  .account-planner__visual .button,
  .account-profile-data__head .account-edit-toggle {
    width: 100%;
  }

  .account-value-grid {
    grid-template-columns: 1fr;
  }

  .account-value-card {
    min-height: 0;
  }

  .account-note,
  .account-checklist li,
  .account-dossier-list li {
    grid-template-columns: 1fr;
  }

  .account-checklist li {
    gap: 8px;
  }

  .account-dossier-list li {
    gap: 6px;
    align-items: start;
    padding: 14px 0;
  }

  .account-dossier-list li > span,
  .account-checklist__mark {
    margin-bottom: 2px;
  }

  .account-profile-data,
  .account-profile-form,
  .account-dossier-card,
  .account-trust-panel,
  .account-planner__body,
  .account-planner__visual {
    padding: 20px;
  }
}
