:root {
  --red: #ee2737;
  --ink: #11110f;
  --paper: #f2efe9;
  --acid: #d8d3c9;
  --muted: #6e6d66;
  --line: rgba(17, 17, 15, 0.16);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}
body::selection {
  background: var(--red);
  color: #fff;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.section-inner {
  width: min(1240px, calc(100% - 64px));
  margin: auto;
}
.topline {
  margin: 0 0 24px;
  font: 700 11px/1 var(--display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.topline::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin: 0 12px 3px 0;
  background: currentColor;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.055em;
}
h1 {
  font-size: clamp(58px, 8.2vw, 126px);
  line-height: 0.88;
  margin: 0 0 34px;
  max-width: 1100px;
}
h2 {
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
  margin: 0;
}
h3 {
  font-size: 28px;
  line-height: 1.05;
}
em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.16);
}
.primary-button {
  background: var(--red);
  color: #fff;
}
.secondary-button {
  background: var(--acid);
}
.ghost-button {
  border: 1px solid var(--line);
  background: transparent;
}
.text-link {
  border-bottom: 1px solid currentColor;
  padding: 12px 0;
  font-weight: 600;
}
.text-link span {
  margin-left: 24px;
}
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
  background: #171715;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  --hero-image: url("./assets/hero-store.jpg");
  --parallax-bg-y: 0px;
  background: var(--hero-image) center calc(50% + var(--parallax-bg-y)) / cover
    no-repeat;
  filter: saturate(0.82) contrast(1.05);
  will-change: background-position;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 7, 0.88) 0%,
      rgba(8, 8, 7, 0.55) 46%,
      rgba(8, 8, 7, 0.08) 78%
    ),
    linear-gradient(0deg, rgba(8, 8, 7, 0.58), transparent 40%);
}
.site-nav {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  margin: 20px auto 0;
  padding: 11px 12px 11px 20px;
  border-radius: 100px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}
.brand img {
  width: 148px;
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.3s;
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  justify-self: end;
  padding: 13px 20px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 64px));
  margin: auto;
  padding: 130px 0 110px;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}
.hero .topline {
  color: var(--acid);
}
.hero-copy {
  max-width: 590px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  pointer-events: none;
}
.orbit-one {
  right: -8vw;
  top: 17vh;
  width: 36vw;
  height: 36vw;
}
.orbit-two {
  right: 11vw;
  top: 33vh;
  width: 18vw;
  height: 18vw;
}
.hero-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-cue i {
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: relative;
}
.scroll-cue i::after {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 1px;
  height: 14px;
  content: "";
  background: #fff;
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  0% {
    transform: translateY(-4px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(5px);
    opacity: 0;
  }
}
.hero-facts {
  display: none;
}
.hero-promo {
  position: absolute;
  z-index: 12;
  right: 6vw;
  bottom: 110px;
  width: min(350px, 85vw);
  padding: 25px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--red);
  transform: rotate(1deg);
}
.hero-promo[hidden] {
  display: none;
}
.hero-promo p {
  margin: 0 0 8px;
}
.hero-promo h3 {
  margin: 0 0 12px;
}

/* Editorial event card managed through the CMS. */
.hero-promo {
  right: max(32px, calc((100vw - 1320px) / 2));
  bottom: 92px;
  width: clamp(340px, 28vw, 420px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(242, 239, 233, 0.96);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  transform: none;
  backdrop-filter: blur(18px);
}
.hero-promo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.hero-promo-header {
  padding: 18px 22px 15px;
  border-bottom: 1px solid var(--line);
}
.hero-promo .hero-promo-topline {
  margin: 0;
  color: var(--muted);
  font: 700 10px/1.25 var(--display);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-promo-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(238, 39, 55, 0.2);
}
.hero-promo-body {
  padding: 23px 22px 25px;
}
.hero-promo .hero-promo-date {
  display: inline-block;
  margin: 0 0 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--red);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-promo .hero-promo-headline {
  margin: 0 0 15px;
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}
.hero-promo .hero-promo-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .hero-promo {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(680px, calc(100% - 48px));
    margin: -45px auto 42px;
  }
}
@media (max-width: 620px) {
  .hero:has(.hero-promo:not([hidden])) {
    min-height: 0;
  }
  .hero-promo {
    width: calc(100% - 36px);
    margin: -20px auto 28px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
  }
  .hero-promo-header {
    align-items: flex-start;
    padding: 16px 18px 14px;
  }
  .hero-promo .hero-promo-topline {
    max-width: 19ch;
  }
  .hero-promo-body {
    padding: 20px 18px 22px;
  }
  .hero-promo .hero-promo-headline {
    font-size: clamp(25px, 8vw, 32px);
  }
  .hero-promo .hero-promo-copy {
    font-size: 13px;
  }

}
.manifesto {
  position: relative;
  overflow: hidden;
  padding: 160px 0 180px;
}
.manifesto-number {
  position: absolute;
  right: -0.03em;
  top: -0.18em;
  color: rgba(17, 17, 15, 0.045);
  font: 800 420px/1 var(--display);
  letter-spacing: -0.05em;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}
.intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 40px;
}
.intro-grid .topline {
  grid-column: 1;
}
.intro-grid h2 {
  grid-column: 2;
}
.intro-copy {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  max-width: 820px;
  margin-top: 46px;
}
.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.lookbook {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) 1.38fr;
  gap: 7vw;
  padding: 140px max(32px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: #fff;
}
.lookbook-sticky {
  position: sticky;
  top: 60px;
  align-self: start;
  padding-bottom: 180px;
}
.lookbook-sticky .topline {
  color: var(--acid);
}
.lookbook-sticky h2 {
  font-size: clamp(52px, 5.2vw, 84px);
  margin-bottom: 30px;
}
.lookbook-sticky > p:not(.topline) {
  max-width: 310px;
  color: #98978f;
}
.chapter {
  position: absolute;
  bottom: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lookbook-stream {
  display: grid;
  gap: 170px;
  padding: 90px 0;
}
.look-card {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}
.look-card figure {
  margin: 0 0 26px;
  overflow: hidden;
  background: #2a2a27;
}
.look-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.look-card:hover img {
  transform: scale(1.045);
}
.look-card-wide figure {
  aspect-ratio: 1.08;
}
.look-card-offset {
  width: 76%;
  margin-left: auto;
}
.look-card-offset figure {
  aspect-ratio: 0.78;
}
.look-card > div > span,
.offer-card > span {
  color: var(--acid);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.look-card h3 {
  margin: 10px 0 8px;
  font-size: 38px;
}
.look-card p {
  max-width: 510px;
  margin: 0;
  color: #98978f;
}
.offer-grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.offer-card {
  padding: 38px 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    background 0.3s,
    color 0.3s;
}
.offer-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.offer-card:hover {
  background: var(--acid);
  color: var(--ink);
}
.offer-card:hover > span {
  color: var(--red);
}
.offer-card h3 {
  margin: 70px 0 12px;
}
.offer-card p {
  margin: 0;
  color: #98978f;
}
.offer-card:hover p {
  color: var(--ink);
}
.beratung-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 900px;
  background: #dcd8cf;
}
.team-slider {
  position: relative;
  min-width: 0;
  min-height: 900px;
  overflow: hidden;
  background: #222;
  color: #fff;
}
.team-slider-viewport {
  position: absolute;
  inset: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.team-slider-viewport::-webkit-scrollbar {
  display: none;
}
.team-slider-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.team-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
}
.team-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.team-slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}
.team-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.team-slide figcaption {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 30px;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 150px);
  padding-left: 14px;
  border-left: 3px solid var(--red);
}
.team-slide figcaption strong {
  font: 700 24px/1.1 var(--display);
  letter-spacing: -0.035em;
}
.team-slide figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.team-slider-arrows {
  position: absolute;
  z-index: 4;
  right: 24px;
  top: 24px;
  display: flex;
  gap: 8px;
}
.team-slider-arrows button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 0.25s,
    background 0.25s;
}
.team-slider-arrows button:hover {
  transform: scale(1.07);
  background: #fff;
}
.team-slider-dots {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 32px;
  display: flex;
  gap: 8px;
}
.team-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    width 0.25s,
    background 0.25s;
}
.team-slider-dots button[aria-current="true"] {
  width: 26px;
  border-radius: 10px;
  background: #fff;
}
.team-slider:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}
.beratung-copy {
  align-self: center;
  padding: 100px clamp(38px, 6vw, 100px);
}
.beratung-copy > .topline {
  color: var(--red);
}
.beratung-copy > p:not(.topline) {
  max-width: 530px;
  margin: 34px 0 50px;
  color: #6a6862;
  font-size: 18px;
}
.steps {
  border-top: 1px solid var(--line);
}
.steps > div {
  display: grid;
  grid-template-columns: 42px 150px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.steps span {
  color: var(--red);
  font-size: 10px;
}
.steps h3 {
  margin: 0;
  font-size: 20px;
}
.steps p {
  margin: 0;
  color: #6a6862;
  font-size: 14px;
}
.brand-section {
  overflow: hidden;
  background: var(--red);
  color: #fff;
  padding: 0 0 140px;
}
.brand-marquee {
  width: max-content;
  padding: 34px 0 44px;
  white-space: nowrap;
  font: 600 clamp(70px, 10vw, 150px) / 1 var(--display);
  letter-spacing: -0.07em;
  color: rgba(255, 255, 255, 0.14);
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  to {
    transform: translateX(-35%);
  }
}
.brand-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.brand-header .topline {
  color: var(--acid);
}
.brand-header > p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}
.brand-logo-viewport {
  position: relative;
  margin-block: -10px;
  padding-block: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  cursor: grab;
}
.brand-logo-viewport::-webkit-scrollbar {
  display: none;
}
.brand-logo-viewport.is-dragging {
  cursor: grabbing;
}
.brand-logo-viewport:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: -2px;
}
.brand-logo-grid {
  display: flex;
  width: max-content;
  user-select: none;
}
.brand-logo {
  display: grid;
  place-items: center;
  width: 220px;
  height: 130px;
  margin-right: 14px;
  background: #fff;
  padding: 26px;
  transition: transform 0.3s;
}
.brand-logo:hover {
  transform: translateY(-8px) rotate(-1deg);
}
.brand-logo img {
  max-height: 65px;
  pointer-events: none;
  -webkit-user-drag: none;
}
.appointment-section {
  position: relative;
  overflow: hidden;
  background: var(--acid);
  padding: 150px 0;
}
.appointment-art {
  position: absolute;
  inset: -70px auto auto 0;
  display: grid;
  color: rgba(17, 17, 15, 0.06);
  font: 800 280px/0.72 var(--display);
  letter-spacing: -0.1em;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}
.appointment-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 10vw;
  align-items: start;
}
.appointment-copy {
  position: sticky;
  top: 90px;
}
.appointment-copy .topline {
  color: var(--red);
}
.appointment-copy > p:not(.topline) {
  max-width: 480px;
  margin: 30px 0;
  color: #55544e;
  font-size: 18px;
}
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
}
.check-list li::before {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}
.appointment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  background: var(--paper);
  padding: clamp(26px, 4vw, 52px);
  box-shadow: 20px 20px 0 var(--red);
}
.form-row {
  display: grid;
  gap: 8px;
}
.full {
  grid-column: 1/-1;
}
label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid #aaa79e;
  border-radius: 0;
  background: transparent;
  padding: 12px 2px;
  color: var(--ink);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 2px 0 var(--red);
}
textarea {
  resize: vertical;
}
.submit-button {
  width: 100%;
  margin-top: 12px;
}
.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-weight: 600;
}
.contact-section {
  padding: 150px 0;
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
}
.contact-section .topline {
  color: var(--red);
}
.contact-lead {
  max-width: 420px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 18px;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.contact-panel > div {
  padding: 28px 10px;
  border-bottom: 1px solid var(--line);
}
.contact-panel span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
.contact-panel p {
  margin: 8px 0 0;
}
.contact-panel a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.contact-actions {
  grid-column: 1/-1;
  display: flex;
  gap: 12px;
}
.site-footer {
  padding: 30px 0;
  background: var(--ink);
  color: #fff;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner img {
  width: 130px;
  filter: brightness(0) invert(1);
}
.footer-inner p {
  margin: 0;
  color: #888;
}
.footer-inner > div {
  display: flex;
  gap: 26px;
  font-size: 12px;
}
.js-enabled [data-reveal] {
  opacity: 0;
  translate: 0 36px;
  transition:
    opacity 0.8s,
    translate 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.js-enabled [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}
.site-nav {
  animation: navIn 0.8s 0.1s both;
}
@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@media (max-width: 900px) {
  .hero-media {
    background-position: center center !important;
    will-change: auto;
  }
  .section-inner,
  .hero-content,
  .hero-footer {
    width: min(100% - 36px, 1240px);
  }
  .site-nav {
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
  }
  .nav-links {
    display: none;
  }
  .hero-content {
    padding-top: 150px;
  }
  .hero-footer > span {
    display: none;
  }
  .hero-footer {
    justify-content: center;
  }
  .manifesto {
    padding: 110px 0;
  }
  .manifesto-number {
    font-size: 250px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-grid h2,
  .intro-copy {
    grid-column: 1;
  }
  .intro-copy {
    grid-template-columns: 1fr;
  }
  .lookbook {
    display: block;
    padding: 110px 18px;
  }
  .lookbook-sticky {
    position: relative;
    top: auto;
    padding-bottom: 30px;
  }
  .chapter {
    position: static;
    display: block;
    margin-top: 40px;
  }
  .lookbook-stream {
    gap: 110px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-card,
  .offer-card:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  .offer-card:last-child {
    border-bottom: 0;
  }
  .beratung-section {
    grid-template-columns: 1fr;
  }
  .team-slider {
    min-height: 70svh;
  }
  .beratung-copy {
    padding: 90px 24px;
  }
  .brand-header,
  .appointment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .brand-header {
    gap: 32px;
  }
  .appointment-copy {
    position: relative;
    top: auto;
  }
  .appointment-grid {
    gap: 60px;
  }
  .contact-grid {
    gap: 60px;
  }
}
@media (max-width: 620px) {
  h1 {
    font-size: clamp(52px, 16vw, 76px);
  }
  h2 {
    font-size: clamp(44px, 13vw, 66px);
  }
  .hero {
    min-height: 920px;
  }
  .brand img {
    width: 120px;
  }
  .nav-cta {
    padding: 10px 15px;
  }
  .hero-content {
    padding: 130px 0 70px;
  }
  .hero-copy {
    font-size: 17px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .orbit-one {
    width: 70vw;
    height: 70vw;
  }
  .look-card-offset {
    width: 88%;
  }
  .offer-card h3 {
    margin-top: 45px;
  }
  .steps > div {
    grid-template-columns: 32px 1fr;
  }
  .steps p {
    grid-column: 2;
  }
  .brand-section {
    padding-bottom: 100px;
  }
  .brand-logo {
    width: 170px;
    height: 105px;
  }
  .appointment-section,
  .contact-section {
    padding: 100px 0;
  }
  .appointment-form {
    grid-template-columns: 1fr;
    box-shadow: 10px 10px 0 var(--red);
  }
  .form-row,
  .full {
    grid-column: 1;
  }
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .contact-actions {
    grid-column: 1;
    flex-direction: column;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner > div {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-media {
    background-position: center !important;
  }
  [data-parallax] {
    transform: none !important;
  }
  .js-enabled [data-reveal] {
    opacity: 1 !important;
    translate: 0 0 !important;
  }
}
/* Mobile and sticky-flow refinements */
.lookbook-sticky {
  position: relative;
  top: auto;
  padding-bottom: 0;
}
.lookbook-sticky .chapter {
  position: static;
  display: block;
  margin-top: 56px;
}
section[id] {
  scroll-margin-top: 24px;
}
@media (max-width: 1100px) {
  .lookbook {
    display: block;
    padding: 110px max(24px, calc((100vw - 920px) / 2));
  }
  .lookbook-sticky {
    padding-bottom: 64px;
  }
  .lookbook-sticky .chapter {
    margin-top: 34px;
  }
  .lookbook-stream {
    padding: 0;
    gap: 110px;
  }
  .offer-grid {
    margin-top: 110px;
  }
}
@media (max-width: 620px) {
  .section-inner,
  .hero-content,
  .hero-footer {
    width: calc(100% - 36px);
  }
  .hero {
    min-height: max(760px, 100svh);
  }
  .site-nav {
    top: 0;
  }
  .hero-content {
    margin: auto;
    padding: 118px 0 54px;
  }
  .hero-content h1 {
    font-size: clamp(49px, 14.5vw, 58px);
    line-height: 0.91;
    letter-spacing: -0.065em;
  }
  .hero-copy {
    max-width: 34ch;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .primary-button {
    min-height: 54px;
  }
  .hero-footer {
    display: none;
  }
  .orbit-one {
    right: -18vw;
    top: 24vh;
  }
  .orbit-two {
    display: none;
  }
  .manifesto {
    padding: 88px 0 100px;
  }
  .manifesto-number {
    top: -0.08em;
    font-size: clamp(118px, 36vw, 140px);
  }
  .intro-grid {
    gap: 20px;
  }
  .intro-grid h2 {
    font-size: clamp(42px, 11.8vw, 52px);
    line-height: 0.96;
  }
  .intro-copy {
    gap: 22px;
    margin-top: 22px;
  }
  .intro-copy p {
    font-size: 16px;
  }
  .lookbook {
    padding: 82px 18px 92px;
  }
  .lookbook-sticky {
    padding-bottom: 52px;
  }
  .lookbook-sticky h2 {
    margin-bottom: 22px;
    font-size: 48px;
  }
  .lookbook-sticky > p:not(.topline) {
    font-size: 15px;
  }
  .lookbook-sticky .chapter {
    margin-top: 28px;
  }
  .lookbook-stream {
    gap: 80px;
    padding: 0;
  }
  .look-card,
  .look-card[data-parallax] {
    transform: none !important;
  }
  .look-card-offset {
    width: 100%;
    margin-left: 0;
  }
  .look-card figure {
    margin-bottom: 20px;
  }
  .look-card-wide figure,
  .look-card-offset figure {
    aspect-ratio: 4/5;
  }
  .look-card h3 {
    font-size: 32px;
  }
  .look-card p {
    font-size: 15px;
  }
  .offer-grid {
    margin-top: 88px;
  }
  .offer-card {
    padding: 30px 10px;
  }
  .offer-card h3 {
    margin-top: 38px;
  }
  .beratung-section {
    min-height: 0;
  }
  .team-slider {
    min-height: 58svh;
  }
  .beratung-copy {
    padding: 76px 18px 86px;
  }
  .beratung-copy h2 {
    font-size: clamp(42px, 11.8vw, 52px);
  }
  .beratung-copy > p:not(.topline) {
    margin: 26px 0 38px;
    font-size: 16px;
  }
  .steps > div {
    padding: 18px 0;
  }
  .brand-section {
    padding-bottom: 88px;
  }
  .brand-marquee {
    padding: 26px 0 36px;
    font-size: 68px;
  }
  .brand-header {
    margin-bottom: 48px;
  }
  .brand-header h2 {
    font-size: clamp(42px, 11.8vw, 52px);
  }
  .brand-header > p {
    font-size: 16px;
  }
  .appointment-section {
    padding: 88px 0;
  }
  .appointment-art {
    font-size: 140px;
  }
  .appointment-grid {
    gap: 48px;
  }
  .appointment-copy h2 {
    font-size: clamp(42px, 11.8vw, 52px);
  }
  .appointment-copy > p:not(.topline) {
    font-size: 16px;
  }
  .check-list {
    margin-top: 28px;
  }
  .appointment-form {
    gap: 18px;
    padding: 22px;
    box-shadow: 8px 8px 0 var(--red);
  }
  .contact-section {
    padding: 88px 0;
  }
  .contact-grid {
    gap: 44px;
  }
  .contact-section h2 {
    font-size: clamp(46px, 13vw, 58px);
  }
  .contact-lead {
    margin-top: 24px;
    font-size: 16px;
  }
  .contact-panel > div {
    padding: 22px 4px;
  }
  .footer-inner {
    gap: 18px;
  }
  .footer-inner > div {
    gap: 18px;
  }
}
@media (max-width: 360px) {
  .brand img {
    width: 108px;
  }
  .nav-cta {
    font-size: 12px;
  }
  .hero-content h1 {
    font-size: 47px;
  }
  .topline {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .lookbook-sticky h2 {
    font-size: 44px;
  }
  .appointment-form {
    padding: 18px;
  }
  .button {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Narrow-device overflow fixes */
.lookbook-stream {
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}
.look-card {
  min-width: 0;
  max-width: 100%;
}
.check-list li::before {
  content: "";
}
@media (max-width: 620px) {
  .lookbook-stream {
    width: 100%;
  }
  .look-card,
  .look-card-offset {
    width: 100%;
    margin-left: 0;
  }
  .look-card img {
    max-width: 100%;
  }
  .hero {
    min-height: max(760px, 100svh);
  }
  .hero-content {
    padding: 118px 0 54px;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 700px;
  }
  .hero-content {
    padding: 82px 0 36px;
  }
  .hero-content h1 {
    font-size: 46px;
  }
  .hero-copy {
    font-size: 15px;
    line-height: 1.45;
  }
  .hero-actions {
    gap: 12px;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 640px;
  }
  .hero-content {
    padding: 50px 0 20px;
  }
}

/* Legal pages */
.legal-page {
  background: var(--paper);
  color: var(--ink);
}
.legal-page .legal-header {
  position: relative;
  z-index: 20;
  padding: 18px 0;
  background: var(--ink);
  color: #fff;
}
.legal-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  margin: auto;
  padding: 10px 12px 10px 20px;
  border-radius: 100px;
  background: #fff;
  color: var(--ink);
}
.legal-nav .brand img {
  width: 145px;
}
.legal-nav > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-back {
  justify-self: end;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.legal-back b {
  font-size: 16px;
}
.legal-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 58svh;
  overflow: hidden;
  padding: 100px 0;
  background: var(--ink);
  color: #fff;
}
.legal-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -14vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  content: "";
  background: var(--red);
  opacity: 0.92;
}
.legal-hero-data::after {
  background: var(--acid);
}
.legal-hero-orbit {
  position: absolute;
  z-index: 1;
  right: 12vw;
  top: 10%;
  width: 25vw;
  height: 25vw;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}
.legal-hero-orbit::after {
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}
.legal-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 64px));
  margin: auto;
}
.legal-hero .topline {
  color: var(--acid);
}
.legal-hero h1 {
  margin: 0;
  font-size: clamp(74px, 11vw, 170px);
  line-height: 0.78;
  letter-spacing: -0.075em;
}
.legal-hero h1 span {
  color: var(--red);
}
.legal-hero-data h1 span {
  color: var(--acid);
}
.legal-hero-inner > p:last-child {
  max-width: 650px;
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
}
.legal-content-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 850px);
  gap: 9vw;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0 150px;
}
.legal-toc {
  position: sticky;
  top: 34px;
  align-self: start;
}
.legal-toc > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.legal-toc nav {
  display: grid;
  border-top: 1px solid var(--line);
}
.legal-toc a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  transition:
    color 0.2s,
    padding 0.2s;
}
.legal-toc a:hover,
.legal-toc a:focus-visible {
  padding-left: 6px;
  color: var(--red);
}
.legal-toc a span {
  font-size: 9px;
  color: var(--red);
}
.legal-content {
  min-width: 0;
}
.legal-section {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 32px;
}
.legal-section:first-child {
  padding-top: 0;
}
.legal-number {
  padding-top: 10px;
  color: var(--red);
  font: 700 10px var(--display);
  letter-spacing: 0.12em;
}
.legal-section h2 {
  margin: 0 0 26px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
}
.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.legal-section strong {
  color: var(--ink);
}
.legal-kicker {
  margin: 0 0 9px !important;
  color: var(--red) !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.legal-card {
  margin-bottom: 18px;
  padding: 40px 36px;
  background: var(--acid);
  border: 0;
}
.legal-card .legal-number {
  color: var(--ink);
}
.legal-card p {
  color: rgba(17, 17, 15, 0.72);
}
.legal-card a {
  text-decoration-color: var(--red);
}
.legal-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.legal-list li {
  position: relative;
  padding-left: 28px;
}
.legal-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--red);
}
.legal-note {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  margin: 70px 0 0;
  padding: 28px 30px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
}
.legal-note span {
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.legal-footer [aria-current="page"] {
  color: var(--acid);
}
@media (max-width: 900px) {
  .legal-hero {
    min-height: 48svh;
    padding: 80px 0;
  }
  .legal-content-shell {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 86px 0 110px;
  }
  .legal-toc {
    position: relative;
    top: auto;
  }
  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
  }
  .legal-hero-orbit {
    right: -8vw;
    width: 42vw;
    height: 42vw;
  }
}
@media (max-width: 620px) {
  .legal-page .legal-header {
    padding: 12px 0;
  }
  .legal-nav {
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
    padding: 8px 8px 8px 14px;
  }
  .legal-nav .brand img {
    width: 116px;
  }
  .legal-nav > span {
    display: none;
  }
  .legal-back {
    padding: 9px 13px;
    font-size: 11px;
  }
  .legal-hero {
    min-height: 410px;
    padding: 70px 0 64px;
  }
  .legal-hero-inner {
    width: calc(100% - 36px);
  }
  .legal-hero h1 {
    font-size: clamp(62px, 20vw, 88px);
    line-height: 0.83;
  }
  .legal-hero-inner > p:last-child {
    margin-top: 30px;
    font-size: 16px;
  }
  .legal-hero::after {
    right: -34vw;
    bottom: -22vw;
    width: 82vw;
    height: 82vw;
  }
  .legal-hero-orbit {
    right: -15vw;
    top: 16%;
    width: 64vw;
    height: 64vw;
  }
  .legal-content-shell {
    width: calc(100% - 36px);
    padding: 68px 0 88px;
  }
  .legal-toc nav {
    grid-template-columns: 1fr;
  }
  .legal-toc a {
    padding: 13px 0;
  }
  .legal-section,
  .legal-card {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 42px 0;
  }
  .legal-card {
    margin: 0 -18px 12px;
    padding: 34px 18px;
  }
  .legal-section h2 {
    margin-bottom: 20px;
    font-size: 32px;
    overflow-wrap: anywhere;
  }
  .legal-section p,
  .legal-section li {
    font-size: 15.5px;
    line-height: 1.68;
  }
  .legal-note {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 48px;
    padding: 24px;
  }
  .legal-footer {
    padding-top: 32px;
  }
}

/* Desktop collection sticky restored; bounded by the collection grid row. */
@media (min-width: 1101px) {
  .lookbook-sticky {
    position: sticky;
    top: 64px;
    align-self: start;
    z-index: 2;
  }
  .lookbook-sticky .chapter {
    margin-top: 56px;
  }
}

/* Constrain the desktop sticky headline to the editorial cards only. */
.lookbook {
  display: block;
}
.lookbook-main {
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) 1.38fr;
  gap: 7vw;
  align-items: start;
}
.lookbook-main + .offer-grid {
  margin-top: 120px;
}
@media (max-width: 1100px) {
  .lookbook-main {
    display: block;
  }
  .lookbook-main + .offer-grid {
    margin-top: 110px;
  }
}
@media (max-width: 620px) {
  .lookbook-main + .offer-grid {
    margin-top: 88px;
  }
}

/* Font-independent vector arrows for consistent rendering on iOS and other platforms. */
.icon-arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  font-size: 0;
  line-height: 0;
}
.icon-arrow::before,
.icon-arrow::after {
  position: absolute;
  content: "";
  box-sizing: border-box;
}
.icon-arrow::before {
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center;
}
.icon-arrow::after {
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.icon-arrow-up-right::before {
  left: 2px;
  top: 7px;
  width: 13px;
  transform: rotate(-45deg);
}
.icon-arrow-up-right::after {
  right: 1px;
  top: 1px;
}
.icon-arrow-right::before {
  left: 1px;
  top: 7px;
  width: 13px;
}
.icon-arrow-right::after {
  right: 1px;
  top: 4.5px;
  transform: rotate(45deg);
}
.icon-arrow-up::before {
  left: 1.5px;
  top: 7px;
  width: 13px;
  transform: rotate(-90deg);
}
.icon-arrow-up::after {
  left: 4.5px;
  top: 1px;
  transform: rotate(-45deg);
}
.icon-arrow-left::before {
  left: 2px;
  top: 7px;
  width: 13px;
}
.icon-arrow-left::after {
  left: 1px;
  top: 4.5px;
  transform: rotate(-135deg);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.legal-back .icon-arrow {
  flex-basis: 14px;
  width: 14px;
  height: 14px;
}
.footer-inner a .icon-arrow {
  margin-left: 7px;
}

/* The small appointment markers use the same font-independent geometry. */
.check-list li {
  position: relative;
  padding-left: 40px;
}
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  display: block;
  margin: 0;
  content: "";
  background: var(--ink);
}
.check-list li::after {
  position: absolute;
  left: 9px;
  top: 8px;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  background: linear-gradient(
    135deg,
    transparent 43%,
    #fff 44%,
    #fff 54%,
    transparent 55%
  );
}

/* WIDR me VR consultation */
.vr-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: var(--ink);
  color: #fff;
}
.vr-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 8 / 3;
  margin-bottom: 82px;
  overflow: hidden;
  --vr-image: url("./assets/widr-header-easyoptix.jpg");
  --parallax-bg-y: 0px;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.12), rgba(17, 17, 15, 0) 55%),
    var(--vr-image) center calc(50% + var(--parallax-bg-y)) / cover no-repeat;
}
.vr-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
  pointer-events: none;
}
.vr-exclusive {
  position: absolute;
  z-index: 1;
  right: 28px;
  top: 28px;
  width: min(360px, calc(100% - 56px));
  padding: 24px 26px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 10px 10px 0 var(--red);
}
.vr-exclusive span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font: 700 10px/1 var(--display);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.vr-exclusive strong {
  display: block;
  font: 700 20px/1.25 var(--display);
  letter-spacing: -0.025em;
}
.vr-credit {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 18px;
  padding: 7px 10px;
  background: rgba(17, 17, 15, 0.72);
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.vr-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 9vw;
  align-items: start;
}
.vr-heading .topline {
  color: var(--acid);
}
.vr-heading h2 {
  font-size: clamp(54px, 6.3vw, 96px);
}
.vr-details {
  padding-top: 35px;
}
.vr-lead {
  max-width: 720px;
  margin: 0 0 48px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.65;
}
.vr-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.vr-step {
  display: grid;
  grid-template-columns: 42px minmax(150px, 0.6fr) 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.vr-step > span {
  color: var(--acid);
  font-size: 10px;
  letter-spacing: 0.12em;
}
.vr-step h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.035em;
}
.vr-step p {
  margin: 0;
  color: #aaa9a2;
  font-size: 14px;
}
.vr-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}
.vr-source {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.vr-source .icon-arrow {
  margin-left: 8px;
}
@media (max-width: 900px) {
  .vr-section {
    padding: 110px 0;
  }
  .vr-visual {
    margin-bottom: 64px;
  }
  .vr-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .vr-details {
    padding-top: 0;
  }
}
@media (max-width: 620px) {
  .vr-section {
    padding: 88px 0;
  }
  .vr-visual {
    min-height: 390px;
    margin-bottom: 54px;
    background-position: center !important;
  }
  .vr-exclusive {
    left: 16px;
    right: 16px;
    top: 16px;
    width: auto;
    padding: 19px 20px;
    box-shadow: 7px 7px 0 var(--red);
  }
  .vr-exclusive strong {
    font-size: 17px;
  }
  .vr-credit {
    left: 12px;
    bottom: 12px;
  }
  .vr-grid {
    gap: 30px;
  }
  .vr-heading h2 {
    font-size: clamp(48px, 14vw, 62px);
  }
  .vr-lead {
    margin-bottom: 34px;
    font-size: 16px;
  }
  .vr-step {
    grid-template-columns: 30px 1fr;
    gap: 8px;
    padding: 20px 0;
  }
  .vr-step p {
    grid-column: 2;
    font-size: 14px;
  }
  .vr-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 34px;
  }
  .vr-actions .button {
    width: 100%;
  }
}

/* Dedicated mobile composition for the VR campaign image. */
.vr-media {
  position: relative;
  margin-bottom: 82px;
}
.vr-media .vr-visual {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .vr-media {
    margin-bottom: 64px;
  }
}
@media (max-width: 620px) {
  .vr-media {
    margin-bottom: 54px;
  }
  .vr-media .vr-visual {
    min-height: 0;
    aspect-ratio: 4/5;
    --vr-mobile-image: url("./assets/widr-header-easyoptix-mobile.jpg");
    background-image:
      linear-gradient(0deg, rgba(17, 17, 15, 0.08), rgba(17, 17, 15, 0) 45%),
      var(--vr-mobile-image);
    background-position:
      center,
      center top !important;
    background-size: cover;
  }
  .vr-media .vr-exclusive {
    position: relative;
    inset: auto;
    width: auto;
    margin: 0;
    padding: 20px;
    background: var(--acid);
    box-shadow: 7px 7px 0 var(--red);
  }
  .vr-credit {
    left: 10px;
    bottom: 10px;
    font-size: 8px;
  }
}

/* Bot trap: intentionally present in the DOM but inaccessible to human visitors. */
.form-trap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Direct contact dialog */
.dialog-open {
  overflow: hidden;
}
.contact-actions button {
  font: inherit;
}
.contact-dialog {
  width: min(820px, calc(100% - 36px));
  max-width: none;
  max-height: calc(100svh - 36px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
}
.contact-dialog::backdrop {
  background: rgba(17, 17, 15, 0.78);
  backdrop-filter: blur(8px);
}
.contact-dialog-card {
  position: relative;
  max-height: calc(100svh - 36px);
  overflow: auto;
  padding: clamp(28px, 5vw, 62px);
  background: var(--paper);
  box-shadow: 16px 16px 0 var(--red);
}
.contact-dialog-close {
  position: absolute;
  right: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.contact-dialog .topline {
  margin-bottom: 20px;
  color: var(--red);
}
.contact-dialog h2 {
  font-size: clamp(48px, 7vw, 78px);
}
.contact-dialog-intro {
  max-width: 540px;
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 17px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  gap: 7px;
}
.contact-form .optional {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}
.contact-message-field,
.contact-consent,
.contact-submit,
.contact-form-status {
  grid-column: 1/-1;
}
.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}
.contact-consent input {
  flex: 0 0 18px;
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}
.contact-consent a {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}
.contact-submit {
  width: 100%;
  margin-top: 4px;
}
.contact-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}
.contact-form-status {
  min-height: 24px;
  margin: 0;
  color: var(--red);
  font-weight: 600;
}
@media (max-width: 620px) {
  .contact-dialog {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
  }
  .contact-dialog-card {
    max-height: calc(100svh - 20px);
    padding: 30px 20px 24px;
    box-shadow: 7px 7px 0 var(--red);
  }
  .contact-dialog-close {
    right: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
  }
  .contact-dialog h2 {
    font-size: 48px;
  }
  .contact-dialog-intro {
    margin: 20px 0 26px;
    font-size: 15px;
  }
  .contact-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-message-field,
  .contact-consent,
  .contact-submit,
  .contact-form-status {
    grid-column: 1;
  }
  .contact-form textarea {
    min-height: 110px;
  }
}

@media (max-width: 620px) {
  .contact-form input:not([type="checkbox"]):not([type="hidden"]),
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    line-height: 1.35;
  }
}

@media (max-width: 620px) {
  .team-slide figcaption {
    left: 18px;
    bottom: 20px;
    max-width: calc(100% - 105px);
  }
  .team-slide figcaption strong {
    font-size: 20px;
  }
  .team-slide figcaption span {
    font-size: 9px;
  }
  .team-slider-arrows {
    right: 14px;
    top: 14px;
  }
  .team-slider-arrows button {
    width: 42px;
    height: 42px;
  }
  .team-slider-dots {
    right: 18px;
    bottom: 22px;
  }
}

.catalog-slider {
  position: relative;
}
.catalog-slider-viewport {
  position: absolute;
  inset: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.catalog-slider-viewport::-webkit-scrollbar {
  display: none;
}
.catalog-slider-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.catalog-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
}
.catalog-slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}
.catalog-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.catalog-slider-arrows {
  position: absolute;
  z-index: 4;
  right: 18px;
  top: 18px;
  display: flex;
  gap: 8px;
}
.catalog-slider-arrows[hidden],
.catalog-slider-dots[hidden] {
  display: none;
}
.catalog-slider-arrows button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 0.25s,
    background 0.25s;
}
.catalog-slider-arrows button:hover {
  transform: scale(1.07);
  background: #fff;
}
.catalog-slider-dots {
  position: absolute;
  z-index: 4;
  left: 20px;
  bottom: 20px;
  display: flex;
  gap: 8px;
}
.catalog-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.2);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition:
    width 0.25s,
    background 0.25s;
}
.catalog-slider-dots button[aria-current="true"] {
  width: 26px;
  border-radius: 10px;
  background: #fff;
}
.catalog-slider:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
@media (max-width: 620px) {
  .catalog-slider-arrows {
    right: 12px;
    top: 12px;
  }
  .catalog-slider-arrows button {
    width: 40px;
    height: 40px;
  }
  .catalog-slider-dots {
    left: 14px;
    bottom: 14px;
  }
}
.contact-actions .ghost-button {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}
.contact-actions .ghost-button:hover,
.contact-actions .ghost-button:focus-visible {
  background: var(--ink);
  color: #fff;
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.contact-dialog-close {
  -webkit-tap-highlight-color: transparent;
}
.contact-dialog-close:hover,
.contact-dialog-close:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
/* Individuelle, im CMS gepflegte Bereichsfarben */
[data-cms-tone="dark"] {
  --line: rgba(255, 255, 255, 0.22);
  color: #fff;
}
[data-cms-tone="light"] {
  --line: rgba(17, 17, 15, 0.14);
  color: var(--ink);
}
.hero[data-cms-tone] .hero-wash {
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--cms-section-background) 92%, transparent) 0%,
      color-mix(in srgb, var(--cms-section-background) 62%, transparent) 46%,
      color-mix(in srgb, var(--cms-section-background) 10%, transparent) 78%
    ),
    linear-gradient(
      0deg,
      color-mix(in srgb, var(--cms-section-background) 62%, transparent),
      transparent 40%
    );
}
[data-cms-tone="dark"] .intro-copy p,
[data-cms-tone="dark"] .lookbook-sticky > p:not(.topline),
[data-cms-tone="dark"] .offer-card p,
[data-cms-tone="dark"] .beratung-copy > p:not(.topline),
[data-cms-tone="dark"] .steps p,
[data-cms-tone="dark"] .vr-lead,
[data-cms-tone="dark"] .vr-step p,
[data-cms-tone="dark"] .brand-header > p,
[data-cms-tone="dark"] .appointment-copy > p:not(.topline),
[data-cms-tone="dark"] .contact-lead,
[data-cms-tone="dark"].site-footer .footer-inner p {
  color: rgba(255, 255, 255, 0.72);
}
[data-cms-tone="light"] .hero-copy,
[data-cms-tone="light"] .intro-copy p,
[data-cms-tone="light"] .lookbook-sticky > p:not(.topline),
[data-cms-tone="light"] .offer-card p,
[data-cms-tone="light"] .beratung-copy > p:not(.topline),
[data-cms-tone="light"] .steps p,
[data-cms-tone="light"] .vr-lead,
[data-cms-tone="light"] .vr-step p,
[data-cms-tone="light"] .brand-header > p,
[data-cms-tone="light"] .appointment-copy > p:not(.topline),
[data-cms-tone="light"] .contact-lead,
[data-cms-tone="light"].site-footer .footer-inner p {
  color: rgba(17, 17, 15, 0.68);
}
[data-cms-tone="light"].hero .topline,
[data-cms-tone="light"].lookbook .topline,
[data-cms-tone="light"].vr-section .topline,
[data-cms-tone="light"].brand-section .topline {
  color: var(--red);
}
[data-cms-tone="light"].brand-section .brand-marquee {
  color: rgba(17, 17, 15, 0.09);
}
[data-cms-tone="dark"].appointment-section .appointment-art {
  color: rgba(255, 255, 255, 0.07);
}
[data-cms-tone="light"].site-footer .footer-inner img {
  filter: none;
}

/* Cookie consent */
.footer-cookie-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner {
  position: fixed;
  z-index: 160;
  right: clamp(16px, 3vw, 48px);
  bottom: clamp(16px, 3vw, 40px);
  left: clamp(16px, 3vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(17, 17, 15, 0.18);
  border-top: 5px solid var(--red);
  background: var(--paper, #ebe8e0);
  color: var(--ink, #11110f);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}
.cookie-banner .topline {
  margin: 0 0 12px;
  color: var(--red);
}
.cookie-banner h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
}
.cookie-banner__copy > p:not(.topline) {
  max-width: 760px;
  margin: 0;
  color: rgba(17, 17, 15, 0.72);
  line-height: 1.55;
}
.cookie-banner__copy .cookie-banner__detail {
  margin-top: 12px;
  font-size: 13px;
}
.cookie-banner__detail a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.cookie-banner .cookie-choice-button {
  width: 100%;
  min-height: 52px;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}
.cookie-banner .cookie-choice-button:hover,
.cookie-banner .cookie-choice-button:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.cookie-banner .cookie-choice-button:disabled {
  cursor: wait;
  opacity: 0.58;
}
.cookie-banner__status {
  min-height: 18px;
  margin: 0;
  color: var(--red);
  font-size: 12px;
  line-height: 1.4;
}
@media (max-width: 760px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    padding: 22px 18px 18px;
  }
  .cookie-banner h2 {
    font-size: clamp(27px, 9vw, 38px);
  }
  .cookie-banner__copy > p:not(.topline) {
    font-size: 14px;
  }
}