:root {
  --plum: #662382;
  --plum-dark: #291032;
  --teal: #3fabb5;
  --teal-dark: #176b73;
  --lilac: #d2beda;
  --mint: #c5e4e7;
  --champagne: #cbb994;
  --warm: #e8dcc8;
  --ink: #1e1822;
  --muted: #6b626e;
  --paper: #fdfbf9;
  --soft: #f5f0f6;
  --line: #e8e0e9;
  --white: #fff;
  --success: #176b52;
  --danger: #a52a3b;
  --shadow: 0 30px 80px rgba(41, 16, 50, 0.14);
  --shadow-sm: 0 14px 40px rgba(41, 16, 50, 0.09);
  --radius: 1.75rem;
  --radius-sm: 1.1rem;
  --max: 1240px;
  --mobile-menu-top: 7.75rem;
  --mobile-menu-height: calc(100dvh - var(--mobile-menu-top));
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html.nav-open,
body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--plum);
  text-underline-offset: 0.2em;
}
a:hover {
  color: var(--plum-dark);
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  top: -6rem;
  left: 1rem;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}
.skip-link:focus {
  top: 1rem;
  color: var(--white);
}
.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}
.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}
.section--soft {
  background: var(--soft);
}
.section--dark {
  color: var(--white);
  background: var(--plum-dark);
}
.section--tight {
  padding: 2.8rem 0;
}
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section--dark .eyebrow {
  color: #8ed7dd;
}
h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  color: inherit;
  font-family:
    "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.45rem, 5.5vw, 4.75rem);
}
h2 {
  font-size: clamp(1.9rem, 3.7vw, 3.1rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.03em;
}
p {
  margin: 0 0 1rem;
}
.lead {
  max-width: 48rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.section--dark .lead {
  color: #eadfee;
}
.narrow {
  max-width: 760px;
}
.muted {
  color: var(--muted);
}
.text-small {
  font-size: 0.9rem;
}
.stack > * + * {
  margin-top: 1rem;
}
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(102, 35, 130, 0.08);
  background: rgba(253, 251, 249, 0.92);
  backdrop-filter: blur(22px);
}
.topbar {
  color: var(--white);
  background: linear-gradient(90deg, var(--plum-dark), #4a175e);
  font-size: 0.82rem;
  font-weight: 700;
}
.topbar__inner {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar a {
  color: var(--white);
  text-decoration: none;
}
.nav {
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 215px;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav__links > a {
  color: var(--ink);
  padding: 0.65rem 0.72rem;
  border-radius: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.nav__links > a:hover,
.nav__links > a[aria-current="page"] {
  color: var(--plum);
  background: var(--soft);
}
.nav__links > a.button,
.nav__links > a.button:hover,
.nav__links > a.button[aria-current="page"] {
  color: var(--white);
  background: var(--plum);
}
.nav__links > a.button:hover {
  background: var(--plum-dark);
}
.nav-toggle {
  display: none;
  position: relative;
  z-index: 140;
  min-width: 4.7rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(41, 16, 50, 0.08);
}
.nav-toggle__icon {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 1rem;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after,
.nav-toggle__icon > span {
  content: "";
  position: absolute;
  left: 0;
  width: 1.35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle__icon::before { top: 0; }
.nav-toggle__icon > span { top: 0.45rem; }
.nav-toggle__icon::after { top: 0.9rem; }
.nav-toggle__text {
  font-size: 0.78rem;
  font-weight: 800;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  top: 0.45rem;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon > span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  top: 0.45rem;
  transform: rotate(-45deg);
}

.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--plum);
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.button:hover {
  color: var(--white);
  background: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(102, 35, 130, 0.2);
}
.button--secondary {
  color: var(--plum-dark) !important;
  border-color: var(--lilac);
  background: var(--white);
}
.button--secondary:hover {
  color: var(--plum-dark) !important;
  background: var(--soft);
}
.button--teal {
  color: var(--white) !important;
  background: #176b73;
}
.button--teal:hover {
  background: #10555c;
}
.button--small {
  min-height: 2.65rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(
      circle at 86% 18%,
      rgba(63, 171, 181, 0.18),
      transparent 28%
    ),
    linear-gradient(145deg, #fff 0%, #faf5fb 55%, #edf7f6 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  right: -14rem;
  top: -18rem;
  border: 6rem solid rgba(63, 171, 181, 0.08);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__title em {
  color: var(--plum);
  font-style: normal;
}
.hero__title {
  max-width: 10ch;
}
.hero__copy {
  max-width: 42rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}
.fact {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}
.fact strong {
  display: block;
  color: var(--plum);
  font-size: 0.98rem;
}
.fact span {
  color: var(--muted);
  font-size: 0.8rem;
}
.hero__visual {
  position: relative;
  min-height: 540px;
}
.hero__visual-main {
  width: 82%;
  height: 510px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 10rem 1.5rem 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}
.hero__visual-card {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: min(17rem, 62%);
  padding: 1.2rem;
  border: 1px solid rgba(102, 35, 130, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}
.hero__visual-card strong {
  display: block;
  color: var(--plum);
  font-size: 1.1rem;
}

.icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  color: var(--plum);
}
.icon-badge {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  color: var(--plum);
  background: var(--soft);
}
.icon-badge .icon {
  width: 1.9rem;
  height: 1.9rem;
}

.carousel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 2.2rem 2.2rem 2.2rem 7rem;
  background: var(--plum-dark);
  box-shadow: var(--shadow);
}
.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}
.carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.carousel__slide--contain img {
  object-fit: contain;
  padding: clamp(1.5rem, 4vw, 4rem);
  background: #fff;
}
.carousel__slide::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(37, 21, 44, 0.9));
}
.carousel__caption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 4.5rem;
  left: 1.5rem;
  color: var(--white);
}
.carousel__caption h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}
.carousel__caption p {
  max-width: 31rem;
  margin: 0;
  color: #f3eaf5;
}
.carousel__controls {
  position: absolute;
  z-index: 3;
  right: 1.25rem;
  bottom: 1.15rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.carousel__arrows {
  display: flex;
  gap: 0.45rem;
}
.carousel__button {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(37, 21, 44, 0.66);
  font-size: 1.3rem;
  line-height: 1;
}
.carousel__button:hover {
  background: var(--plum);
}
.carousel__dots {
  display: flex;
  gap: 0.45rem;
}
.carousel__dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
}
.carousel__dot[aria-current="true"] {
  background: var(--white);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.quick-fact {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.quick-fact strong,
.quick-fact span {
  display: block;
}
.quick-fact span {
  color: var(--muted);
  font-size: 0.88rem;
}
.color-dots {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.65rem;
}
.color-dots span {
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(37, 29, 41, 0.12);
}

.product-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--plum-dark);
  box-shadow: var(--shadow-sm);
}
.product-card img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover img {
  transform: scale(1.025);
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(37, 21, 44, 0.94));
}
.product-card__body {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
}
.product-card__body h3 {
  color: var(--white);
}
.product-card__body p {
  margin: 0;
  color: #f1e8f3;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.comparison-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) 1.2fr;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.comparison-card > img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}
.comparison-card__body {
  padding: 1.5rem;
}
.comparison-card__body ul {
  padding-left: 1.15rem;
  margin-bottom: 0;
}
.comparison-card__body li + li {
  margin-top: 0.35rem;
}

.visual-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}
.visual-strip img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}

.page-hero {
  padding: clamp(3.8rem, 7vw, 6.4rem) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 92% 20%,
      rgba(63, 171, 181, 0.2),
      transparent 27%
    ),
    linear-gradient(145deg, #f8f1f9, #edf7f6);
}
.page-hero .lead {
  margin-top: 1rem;
}
.breadcrumbs {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.breadcrumbs a {
  color: inherit;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.2rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}
.section-heading > div {
  max-width: 760px;
}
.card {
  height: 100%;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.card--accent {
  border-top: 4px solid var(--teal);
}
.card__icon {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  color: var(--plum);
  background: var(--soft);
  font-size: 1.2rem;
  font-weight: 900;
}
.card ul {
  padding-left: 1.15rem;
}
.card li + li {
  margin-top: 0.45rem;
}
.media-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(41, 16, 50, 0.14);
}
.media-card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}
.media-card__body {
  flex: 1;
  padding: 1.35rem;
}
.media-card__body p:last-child {
  margin-bottom: 0;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}
.tag {
  padding: 0.35rem 0.65rem;
  border-radius: 100px;
  color: var(--plum-dark);
  background: #f2ebf4;
  font-size: 0.8rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split__image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.checklist {
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin: 0.7rem 0;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 900;
}
.notice {
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--teal);
  border-radius: 0.4rem var(--radius-sm) var(--radius-sm) 0.4rem;
  background: #eef8f9;
}
.notice--warning {
  border-left-color: #d69a28;
  background: #fff8e8;
}
.notice strong {
  display: block;
  margin-bottom: 0.2rem;
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.step {
  counter-increment: steps;
  position: relative;
  padding: 4.2rem 1.35rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.step::before {
  content: "0" counter(steps);
  position: absolute;
  top: 1.15rem;
  left: 1.3rem;
  color: var(--teal-dark);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}
.step::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 4rem;
  right: 1.3rem;
  height: 1px;
  background: var(--line);
}

.process-list {
  border-top: 1px solid var(--line);
}
.process-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.3rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.process-row strong {
  color: var(--plum);
}

.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  position: relative;
  padding: 1.25rem 3rem 1.25rem 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.5rem;
  top: 1rem;
  color: var(--plum);
  font-size: 1.7rem;
  font-weight: 400;
}
.faq details[open] summary::after {
  content: "–";
}
.faq__answer {
  max-width: 880px;
  padding: 0 3rem 1.4rem 0;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.filter-button {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}
.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: var(--white);
  border-color: var(--plum);
  background: var(--plum);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--soft);
}
.gallery__item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery__item:hover img {
  transform: scale(1.025);
}
.gallery__caption {
  padding: 1rem;
}
.gallery__item[hidden] {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--plum-dark);
}
.contact-card a {
  color: var(--white);
}
.contact-card dl {
  margin: 1.2rem 0 0;
}
.contact-card dt {
  margin-top: 0.9rem;
  color: #c9edf0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-card dd {
  margin: 0.1rem 0 0;
}
.form {
  padding: clamp(1.3rem, 4vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field--full {
  grid-column: 1 / -1;
}
.field label,
.field legend {
  font-weight: 750;
}
.field small {
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #cfc3d2;
  border-radius: 0.65rem;
  color: var(--ink);
  background: var(--white);
}
.field textarea {
  min-height: 10rem;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-dark);
  outline: 3px solid rgba(63, 171, 181, 0.17);
}
.checkbox {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.65rem;
  align-items: start;
}
.checkbox input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.25rem;
  accent-color: var(--plum);
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.6rem;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-error {
  color: #721c24;
  background: #f8d7da;
}
.form-status.is-success {
  color: #155724;
  background: #d4edda;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.7rem, 5vw, 3rem);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(63, 171, 181, 0.36),
      transparent 32%
    ),
    linear-gradient(120deg, var(--plum-dark), var(--plum));
  box-shadow: var(--shadow);
}
.cta-band h2 {
  max-width: 700px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.cta-band p {
  margin-bottom: 0;
  color: #eadfee;
}

.site-footer {
  color: #ded4e2;
  background: #1d1022;
}

.availability-bar {
  color: var(--white);
  background: var(--teal-dark);
}
.availability-bar__inner {
  min-height: 2.75rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 750;
}
.availability-bar__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #9af0ce;
  box-shadow: 0 0 0 5px rgba(154, 240, 206, 0.16);
}

.hero--luxury .hero__grid {
  grid-template-columns: 0.88fr 1.12fr;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(102, 35, 130, 0.16);
  border-radius: 999px;
  color: var(--plum-dark);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 750;
}
.hero-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #28a875;
  box-shadow: 0 0 0 5px rgba(40, 168, 117, 0.14);
}
.hero-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-note strong {
  color: var(--ink);
}

.stock-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.stock-ribbon__item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 1.25rem;
}
.stock-ribbon__item + .stock-ribbon__item {
  border-left: 1px solid var(--line);
}
.stock-ribbon__item .icon {
  width: 1.7rem;
  height: 1.7rem;
}
.stock-ribbon__item strong,
.stock-ribbon__item span {
  display: block;
}
.stock-ribbon__item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.collection-card {
  position: relative;
  grid-column: span 4;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--plum-dark);
  box-shadow: var(--shadow-sm);
}
.collection-card--wide {
  grid-column: span 8;
}
.collection-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.collection-card:hover img {
  transform: scale(1.035);
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(transparent, rgba(29, 16, 34, 0.94));
}
.collection-card__body {
  position: absolute;
  z-index: 1;
  right: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
}
.collection-card__body h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.collection-card__body p {
  max-width: 35rem;
  margin: 0;
  color: #f1e9f2;
}
.stock-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  color: #1d3f31;
  background: #bff1dc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}
.game-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}
.game-card:hover {
  transform: translateY(-4px);
}
.game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.65rem;
  background: #fff;
}
.game-card__body {
  padding: 0.95rem;
  border-top: 1px solid var(--line);
}
.game-card__body strong {
  display: block;
  line-height: 1.25;
}
.game-card__body span {
  display: block;
  margin-top: 0.35rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 750;
}

.prepared-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.prepared-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--plum-dark);
  box-shadow: var(--shadow);
}
.prepared-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.prepared-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.prepared-card__body h3 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.prepared-card__body p {
  color: #e9deec;
}
.prepared-card__body .stock-label {
  align-self: flex-start;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0 3rem;
}
.footer__brand img {
  width: 190px;
  padding: 0.65rem;
  border-radius: 0.5rem;
  background: var(--white);
}
.footer__brand p {
  max-width: 340px;
  margin-top: 1rem;
}
.footer__title {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__links {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__links li + li {
  margin-top: 0.45rem;
}
.footer__links a {
  color: #ded4e2;
  text-decoration: none;
}
.footer__links a:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.83rem;
}

.legal h2 {
  margin-top: 2.4rem;
  font-size: 1.65rem;
}
.legal h3 {
  margin-top: 1.7rem;
  font-family: inherit;
  font-size: 1.05rem;
}
.legal ul {
  padding-left: 1.2rem;
}
.legal code {
  padding: 0.1rem 0.3rem;
  border-radius: 0.2rem;
  background: var(--soft);
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  color: var(--plum-dark);
  background: var(--soft);
}

/* Startseite 2026: schnelle Orientierung und echte Produktbilder */
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.hero-proof__item {
  padding: 0.85rem;
  border: 1px solid rgba(102, 35, 130, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
}
.hero-proof__item strong,
.hero-proof__item span { display: block; }
.hero-proof__item strong { color: var(--plum); font-size: 1.02rem; }
.hero-proof__item span { color: var(--muted); font-size: 0.78rem; line-height: 1.4; }
.section--gradient {
  background: radial-gradient(circle at 4% 10%, rgba(63, 171, 181, 0.16), transparent 25%), linear-gradient(145deg, #fff, #f8f1fa 54%, #edf8f8);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.spotlight {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 2rem;
  color: var(--white);
  background: var(--plum-dark);
  box-shadow: var(--shadow);
}
.spotlight img { width: 100%; height: 510px; object-fit: cover; }
.spotlight::after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgba(29, 16, 34, 0.97));
}
.spotlight__body {
  position: absolute;
  z-index: 1;
  right: clamp(1.2rem, 4vw, 2rem);
  bottom: clamp(1.2rem, 4vw, 2rem);
  left: clamp(1.2rem, 4vw, 2rem);
}
.spotlight__body h3 { max-width: 17ch; color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.spotlight__body p { max-width: 34rem; color: #f0e8f2; }
.spec-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.spec-chip {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.package-shop {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3.2rem);
  overflow: hidden;
  border-radius: 2rem;
  color: var(--white);
  background: radial-gradient(circle at 10% 10%, rgba(63, 171, 181, 0.34), transparent 34%), linear-gradient(125deg, #1d1022, #4e1b5f);
  box-shadow: var(--shadow);
}
.package-shop h2 { color: var(--white); }
.package-shop p { color: #eadfee; }
.carrier-list { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.carrier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}
.carrier-badge .icon { width: 1.35rem; height: 1.35rem; color: #93e0e5; }
.privacy-callout {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}
.privacy-callout strong { display: block; margin-bottom: 0.45rem; color: #b7edf0; font-size: 1.05rem; }
.privacy-callout p:last-of-type { margin-bottom: 1rem; }
.tracking-links { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.tracking-links a { color: var(--white); font-weight: 800; }
.home-contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.home-contact__intro { position: sticky; top: 9rem; }
.home-contact__quick { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.home-contact__quick a,
.home-contact__quick span { display: flex; gap: 0.7rem; align-items: center; color: var(--ink); text-decoration: none; font-weight: 750; }
.home-contact__quick .icon { width: 1.35rem; height: 1.35rem; }
.form button:disabled { cursor: wait; opacity: 0.72; transform: none; }
.mobile-quickbar { display: none; }

@media (max-width: 1120px) {
  /*
   * backdrop-filter creates a containing block for fixed descendants in
   * Safari. Without this reset the off-canvas navigation is clipped to the
   * sticky header instead of using the full viewport height.
   */
  .site-header {
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  body::before {
    content: "";
    position: fixed;
    z-index: 90;
    inset: var(--mobile-menu-top) 0 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(21, 11, 25, 0.58);
    backdrop-filter: blur(3px);
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }
  body.nav-open::before { opacity: 1; visibility: visible; }
  .nav__links {
    position: fixed;
    z-index: 120;
    top: var(--mobile-menu-top);
    right: 0;
    bottom: auto;
    height: calc(100vh - var(--mobile-menu-top));
    height: var(--mobile-menu-height);
    max-height: var(--mobile-menu-height);
    width: min(86vw, 24rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1.25rem 1.25rem max(2rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    box-shadow: -22px 24px 60px rgba(29, 16, 34, 0.26);
    transform: translateX(104%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.2s ease, visibility 0.24s ease;
  }
  .nav__links.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__links > a {
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 1px solid transparent;
    font-size: 1.03rem;
  }
  .nav__links > a[aria-current="page"] { border-color: var(--line); }
  .nav__links .button {
    margin-top: 0.5rem;
  }
  .hero__grid,
  .split,
  .contact-grid,
  .comparison-card {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 460px;
  }
  .hero__visual-main {
    height: 430px;
  }
  .grid-4,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .stock-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
  .stock-ribbon__item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .stock-ribbon__item:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .collection-card,
  .collection-card--wide {
    grid-column: span 6;
  }
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .prepared-grid {
    grid-template-columns: 1fr;
  }
  .carousel,
  .carousel__slide img {
    min-height: 520px;
  }
  .comparison-card > img {
    height: 280px;
    min-height: 0;
  }
  .package-shop,
  .home-contact { grid-template-columns: 1fr; }
  .home-contact__intro { position: static; }
}

@media (max-width: 660px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max));
  }
  .topbar__inner {
    justify-content: center;
    text-align: center;
  }
  .topbar__inner span {
    display: none;
  }
  .topbar__inner > :last-child {
    display: none;
  }
  .brand img {
    width: 165px;
  }
  .nav { min-height: 5rem; }
  .nav-toggle { min-width: 3rem; width: 3rem; padding: 0; }
  .nav-toggle__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  body::before { inset: var(--mobile-menu-top) 0 0; }
  .nav__links { top: var(--mobile-menu-top); width: min(90vw, 22rem); }
  .hero {
    padding-top: 2.5rem;
  }
  h1 {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
  }
  h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }
  .hero__facts,
  .quick-facts,
  .grid-2,
  .grid-3,
  .grid-4,
  .steps,
  .gallery,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 410px;
  }
  .hero__visual-main {
    width: 92%;
    height: 390px;
  }
  .hero__visual-card {
    bottom: 1rem;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .media-card img {
    height: 250px;
  }
  .process-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .gallery__item img {
    height: 320px;
  }
  .field--full {
    grid-column: auto;
  }
  .cta-band {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .hero__actions .button,
  .cluster .button {
    width: 100%;
  }
  .carousel,
  .carousel__slide img {
    min-height: 480px;
  }
  .carousel {
    border-radius: 1.4rem 1.4rem 1.4rem 4rem;
  }
  .carousel__caption {
    bottom: 4.3rem;
  }
  .product-card,
  .product-card img {
    min-height: 360px;
    height: 360px;
  }
  .comparison-grid,
  .visual-strip {
    grid-template-columns: 1fr;
  }
  .visual-strip img {
    height: 280px;
  }
  .availability-bar__inner {
    min-height: 3.4rem;
    padding-block: 0.55rem;
    font-size: 0.82rem;
  }
  .hero--luxury .hero__grid {
    grid-template-columns: 1fr;
  }
  .stock-ribbon,
  .game-grid,
  .prepared-card {
    grid-template-columns: 1fr;
  }
  .stock-ribbon__item + .stock-ribbon__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .collection-card,
  .collection-card--wide {
    grid-column: 1 / -1;
    min-height: 350px;
  }
  .collection-card img {
    min-height: 350px;
  }
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prepared-card img {
    min-height: 320px;
    max-height: 390px;
  }
  .hero-proof,
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight,
  .spotlight img { min-height: 450px; height: 450px; }
  .package-shop { border-radius: 1.4rem; }
  .tracking-links { flex-direction: column; align-items: flex-start; }
  .mobile-quickbar {
    position: fixed;
    z-index: 85;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0.65rem max(0.65rem, env(safe-area-inset-right)) max(0.65rem, env(safe-area-inset-bottom)) max(0.65rem, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 -12px 32px rgba(29, 16, 34, 0.12);
  }
  .mobile-quickbar .button { min-height: 2.85rem; padding: 0.65rem 0.6rem; font-size: 0.84rem; }
  body { padding-bottom: calc(4.4rem + env(safe-area-inset-bottom)); }
}

@media (max-width: 430px) {
  .hero__title { max-width: 12ch; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button,
  .cta-band {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
  .section,
  .page-hero {
    padding: 1.5rem 0;
  }
}
