:root {
  --ink: #1d1b19;
  --ink-soft: #3c3834;
  --paper: #eee9e1;
  --paper-light: #fffdfa;
  --brand-color: #766a5e;
  --brand-dark: #51483f;
  --brand-light: #b9ada0;
  --white: #fffdfa;
  --muted: #716a63;
  --line: rgba(29, 27, 25, 0.15);
  --line-light: rgba(255, 253, 250, 0.28);
  --shadow-sm: 0 10px 30px rgba(46, 39, 32, 0.1);
  --shadow-lg: 0 28px 80px rgba(46, 39, 32, 0.18);
  --shell: min(calc(100% - 64px), 1420px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-height: 78px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd,
ul,
fieldset {
  margin-top: 0;
}

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family: var(--serif);
}

h1 {
  font-size: clamp(4.7rem, 9vw, 9rem);
}

h2 {
  font-size: clamp(3.4rem, 6.6vw, 7rem);
}

h3 {
  font-size: clamp(1.75rem, 2.4vw, 2.6rem);
}

em {
  color: var(--brand-color);
  font-weight: 400;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.icon,
.nav-icon {
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
}

.nav-icon {
  width: 1.1rem;
  height: 1.1rem;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 1rem;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 250, 0.94);
  box-shadow: var(--shadow-sm);
}

.surface--light {
  background: rgba(255, 253, 250, 0.93);
}

.button,
.icon-button,
.quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.button {
  min-height: 52px;
  gap: 0.7rem;
  padding: 0.86rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: var(--brand-color);
}

.button--light {
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  background: var(--paper);
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

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

.button--outline-light {
  border-color: rgba(255, 253, 250, 0.65);
  background: transparent;
  color: var(--white);
}

.button--whatsapp {
  background: var(--brand-color);
  color: var(--white);
}

.button--full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.icon-button {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 28px), 1500px);
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.65rem 0.55rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: 0 8px 30px rgba(38, 32, 27, 0.1);
  transform: translateX(-50%);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  box-shadow: 0 12px 38px rgba(38, 32, 27, 0.16);
}

.brand {
  width: 122px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.1rem, 0.5vw, 0.55rem);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.56rem 0.56rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: clamp(0.58rem, 0.64vw, 0.7rem);
  font-weight: 760;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: var(--paper);
  color: var(--brand-dark);
}

.site-nav .nav-cta {
  margin-left: 0.25rem;
  padding: 0.82rem 1rem;
  background: var(--brand-color);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.mobile-quick-actions,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: var(--brand-dark);
}

.hero__video,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
}

.hero__veil {
  background: linear-gradient(90deg, rgba(20, 17, 15, 0.55), rgba(20, 17, 15, 0.12) 60%, rgba(20, 17, 15, 0.28));
}

.hero__stage {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: max(720px, 100svh);
  align-items: flex-end;
  padding: 8rem 0 4rem;
}

.hero__content {
  width: min(690px, 100%);
  padding: clamp(1.6rem, 3vw, 3rem);
}

.hero__content h1 {
  font-size: clamp(4.8rem, 9.2vw, 8.6rem);
}

.hero__intro {
  max-width: 52ch;
  margin: 1.3rem 0 1.6rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero__address {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.texture-section {
  position: relative;
  isolation: isolate;
  background: var(--paper);
}

.texture-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(238, 233, 225, 0.89), rgba(238, 233, 225, 0.91)), var(--section-bg-image, url("../images/background/flex-hintergrund.jpg"));
  background-position: center;
  background-size: cover;
  content: "";
}

.section-intro,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-intro__copy,
.section-heading > p {
  max-width: 46ch;
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.section-intro__copy p:last-child {
  margin-bottom: 0;
  color: var(--brand-color);
  font-weight: 750;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.service-card {
  position: relative;
  display: flex;
  min-height: clamp(360px, 38vw, 520px);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:nth-child(1) {
  background: var(--brand-dark);
  color: var(--white);
}

.service-card:nth-child(2) {
  background: var(--white);
  color: var(--ink);
}

.service-card:nth-child(3) {
  background: var(--brand-color);
  color: var(--white);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.service-card__icon {
  position: absolute;
  top: clamp(1.6rem, 3vw, 3rem);
  left: clamp(1.6rem, 3vw, 3rem);
  width: clamp(70px, 7vw, 102px);
  height: clamp(70px, 7vw, 102px);
}

.service-card__number {
  position: absolute;
  top: clamp(1.8rem, 3vw, 3.2rem);
  right: clamp(1.6rem, 3vw, 3rem);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  max-width: 31ch;
  margin-bottom: 0;
  color: currentColor;
  opacity: 0.76;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(380px, 1.16fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.editorial-image {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.editorial-image figcaption,
.luxx__media figcaption,
.route-sketch figcaption,
.sale-dialog__media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.felix__content > p:not(.eyebrow) {
  max-width: 55ch;
  margin: 2rem 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.fact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 750;
}

.quote-card {
  margin: 2rem 0 0;
  padding: 1.6rem;
  border-left: 3px solid var(--brand-color);
  background: rgba(255, 253, 250, 0.55);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-style: italic;
}

.team-carousel {
  position: relative;
}

.team-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  overflow-x: auto;
  padding: 0.5rem calc((100% - min(31vw, 420px)) / 2) 1.2rem;
  scroll-behavior: smooth;
  scroll-padding-inline: calc((100% - min(31vw, 420px)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.team-track::-webkit-scrollbar,
.review-viewport::-webkit-scrollbar {
  display: none;
}

.team-card {
  position: relative;
  width: min(31vw, 420px);
  height: min(46vw, 610px);
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--brand-color);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: center;
}

.team-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.team-card:hover > img {
  transform: scale(1.025);
}

.team-card__caption {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(81, 72, 63, 0.94);
  color: var(--white);
}

.team-card__caption h3 {
  margin-bottom: 0.35rem;
  font-size: 1.7rem;
}

.team-card__caption p {
  margin-bottom: 0;
  color: rgba(255, 253, 250, 0.76);
  font-size: 0.78rem;
}

.team-card--join {
  display: grid;
  place-items: center;
  padding: clamp(1.6rem, 3vw, 3rem);
  color: var(--white);
}

.team-card--join h3 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6vw, 6rem);
}

.team-card--join p:not(.eyebrow) {
  margin-bottom: 1.8rem;
  color: rgba(255, 253, 250, 0.82);
}

.team-card__join-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 2rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.carousel-controls > span {
  min-width: 4.1rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.team-carousel__controls {
  margin-top: 1.25rem;
}

.luxx {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--brand-dark);
  color: var(--white);
}

.luxx::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(59, 51, 44, 0.82), rgba(82, 72, 63, 0.7)), var(--section-bg-image, url("../images/background/luxx-hintergrund.jpg"));
  background-position: center;
  background-size: cover;
  content: "";
}

.luxx__panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(380px, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.luxx__media {
  position: relative;
  height: min(68vw, 720px);
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

.luxx__logo {
  width: min(230px, 48%);
  height: auto;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

.luxx__content h2 em {
  color: var(--white);
  font-style: italic;
}

.luxx__content > p {
  max-width: 56ch;
  margin: 2rem 0;
  color: rgba(255, 253, 250, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.review-carousel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.review-viewport {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-slide {
  display: grid;
  width: 100%;
  min-height: 390px;
  flex: 0 0 100%;
  align-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  scroll-snap-align: start;
}

.review-slide__stars {
  margin-bottom: 1.4rem;
  color: var(--brand-color);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

.review-slide blockquote {
  max-width: 40ch;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.7vw, 2.55rem);
  line-height: 1.25;
}

.review-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-bottom: 0;
}

.review-slide__meta span {
  color: var(--muted);
}

.reviews__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.reviews__footer > .button:first-child {
  justify-self: start;
}

.reviews__footer > .button:last-child {
  justify-self: end;
}

.instagram {
  overflow: hidden;
  background: var(--paper-light);
}

.looks-marquee {
  display: grid;
  gap: 1rem;
  width: 100%;
  overflow: hidden;
}

.looks-row {
  overflow: hidden;
}

.looks-row-track {
  display: flex;
  width: max-content;
  animation: looks-flow 72s linear infinite;
}

.looks-row:nth-child(2) .looks-row-track {
  animation-delay: -36s;
}

.looks-sequence {
  display: flex;
  flex: none;
  gap: 1rem;
  padding-right: 1rem;
}

.look-card {
  width: clamp(180px, 20vw, 300px);
  height: clamp(230px, 26vw, 390px);
  flex: 0 0 auto;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-lg);
  background: var(--brand-light);
  box-shadow: var(--shadow-sm);
}

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

.looks-marquee:hover .looks-row-track,
.looks-marquee:focus-within .looks-row-track {
  animation-play-state: paused;
}

@keyframes looks-flow {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.instagram__footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.visit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 2.4rem);
}

.route-sketch {
  position: relative;
  min-width: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.contact-card__block {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.contact-card address {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.55rem;
  color: var(--brand-dark);
  font-weight: 720;
}

.hours {
  margin-bottom: 0;
}

.hours div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(29, 27, 25, 0.08);
}

.hours div.is-today {
  color: var(--brand-color);
  font-weight: 800;
}

.hours dt,
.hours dd {
  margin: 0;
}

.privacy-note,
.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.closing {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.closing__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 17, 15, 0.46), rgba(20, 17, 15, 0.06));
  content: "";
}

.closing__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  align-items: flex-end;
}

.closing__content {
  width: min(720px, 100%);
  padding: clamp(1.8rem, 4vw, 3.5rem);
}

.closing__content h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.3rem, 6.4vw, 6.8rem);
}

.site-footer {
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding-block: clamp(4rem, 7vw, 7rem);
}

.site-footer__brand img {
  width: min(200px, 80%);
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  margin-top: 1rem;
  color: rgba(255, 253, 250, 0.58);
  font-family: var(--serif);
}

.site-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__column a,
.site-footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 253, 250, 0.72);
  font-size: 0.9rem;
  text-align: left;
  text-decoration: none;
}

.site-footer__column a:hover,
.site-footer button:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-heading {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(255, 253, 250, 0.16);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 253, 250, 0.58);
}

.site-footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
}

.modal {
  width: min(calc(100% - 32px), 760px);
  max-height: min(90svh, 900px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius-xl);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.modal::backdrop,
.mobile-menu::backdrop {
  background: rgba(19, 16, 14, 0.68);
}

.modal__close {
  position: absolute;
  z-index: 5;
  top: 1rem;
  right: 1rem;
  background: var(--white);
  color: var(--ink);
  font-size: 1.5rem;
}

.privacy-dialog {
  padding: clamp(1.7rem, 4vw, 3rem);
}

.privacy-dialog h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.sale-dialog {
  width: min(calc(100% - 32px), 1120px);
}

.sale-dialog__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  min-height: 660px;
}

.sale-dialog__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--brand-light);
}

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

.sale-dialog__media figcaption {
  right: auto;
  left: 1rem;
}

.sale-dialog__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.sale-dialog__icon,
.career-dialog__icon {
  width: 76px;
  height: 76px;
  margin-bottom: 1.5rem;
  color: var(--brand-color);
}

.sale-dialog h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 5vw, 5rem);
}

.sale-dialog__content > p:not(.eyebrow, .sale-stock) {
  color: var(--muted);
}

.sale-benefits,
.sale-products {
  width: 100%;
  padding: 0;
  list-style: none;
}

.sale-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.sale-benefits li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 730;
}

.sale-benefits li .icon {
  color: var(--brand-color);
}

.sale-products {
  margin-bottom: 1.1rem;
  border-block: 1px solid var(--line);
}

.sale-products li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.sale-products li:last-child {
  border-bottom: 0;
}

.sale-products small {
  display: block;
  color: var(--muted);
}

.sale-price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 0.15rem 1rem;
  margin-bottom: 1rem;
}

.sale-price > span {
  color: var(--muted);
}

.sale-price strong {
  grid-row: span 2;
  color: var(--brand-color);
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 0.95;
}

.sale-price small {
  font-weight: 800;
}

.sale-stock {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.career-dialog {
  width: min(calc(100% - 32px), 900px);
  padding: clamp(1.8rem, 4vw, 4rem);
}

.career-dialog__heading {
  max-width: 660px;
  margin-bottom: 2rem;
}

.career-dialog__heading h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.career-dialog__heading > p:last-child {
  color: var(--muted);
}

.career-form,
.career-form label:not(.choice-group label) {
  display: grid;
  gap: 0.5rem;
}

.career-form {
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.career-form label,
.choice-group legend {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.career-form input[type="text"],
.career-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-light);
  color: var(--ink);
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

.career-form textarea {
  resize: vertical;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  border: 0;
}

.choice-group legend {
  width: 100%;
  margin-bottom: 0.55rem;
}

.choice-group input {
  position: absolute;
  opacity: 0;
}

.choice-group span {
  display: block;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.choice-group input:checked + span {
  border-color: var(--brand-color);
  background: var(--brand-color);
  color: var(--white);
}

.choice-group input:focus-visible + span {
  outline: 3px solid var(--brand-color);
  outline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.career-alternatives {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.career-alternatives > a:last-child {
  color: var(--muted);
  font-size: 0.75rem;
}

.form-status {
  min-height: 1.5em;
  margin-bottom: 0;
  color: var(--brand-dark);
  font-weight: 700;
}

.noscript-note {
  padding: 1rem;
  border: 1px solid var(--line);
}

/* Rechtliche Seiten, vorbereitete Unterseiten und Fehlerseite */
.legal-page,
.feature-page,
.error-page {
  padding-top: 104px;
}

.legal-hero,
.feature-preview__hero {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.legal-hero {
  background: var(--brand-color);
  color: var(--white);
}

.legal-hero em,
.feature-preview em {
  color: var(--brand-color);
}

.legal-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 3rem;
}

.legal-hero h1,
.feature-preview h1 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  text-decoration: none;
}

.legal-content {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
}

.legal-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 0.45rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.legal-toc p {
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.legal-prose {
  max-width: 800px;
}

.legal-prose section {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-prose h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.legal-prose h3 {
  margin: 1.6rem 0 0.7rem;
  font-size: 1.25rem;
}

.placeholder,
.status-box {
  display: block;
  padding: 1rem;
  border-left: 3px solid var(--brand-color);
  background: rgba(118, 106, 94, 0.1);
}

.status-box strong {
  display: block;
}

.feature-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  min-height: 66svh;
}

.feature-preview__grid > div > p:not(.eyebrow) {
  max-width: 55ch;
  margin: 2rem 0;
}

.feature-preview__media,
.feature-preview__shop-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--brand-color);
}

.feature-preview__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.feature-preview__shop-card {
  display: grid;
  place-items: center;
  padding: 3rem;
  color: var(--white);
  text-align: center;
}

.feature-preview__shop-card strong,
.feature-preview__shop-card i {
  display: block;
}

.feature-preview__shop-card strong {
  font-family: var(--serif);
  font-size: 3rem;
}

main.error-page {
  display: grid;
  min-height: 72svh;
  place-items: center;
  padding: 3rem;
  text-align: center;
}

main.error-page h1 {
  color: var(--brand-color);
}

@media (max-width: 1180px) {
  .site-nav a {
    padding-inline: 0.4rem;
  }

  .site-nav .nav-icon {
    display: none;
  }

  .split-layout,
  .luxx__panel {
    gap: 3.5rem;
  }

  .visit__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(calc(100% - 44px), 760px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    top: 10px;
    width: auto;
    min-height: 0;
    padding: 6px;
    border-radius: 999px;
    background: var(--brand-color);
    color: var(--white);
  }

  .site-header.is-scrolled {
    min-height: 0;
  }

  .brand,
  .site-nav {
    display: none;
  }

  .mobile-quick-actions {
    display: flex;
    gap: 4px;
  }

  .quick-action {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--white);
  }

  .quick-action:hover {
    background: rgba(255, 255, 255, 0.13);
  }

  .quick-action .icon {
    width: 24px;
    height: 24px;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    padding: 0;
    border: 0;
    background: var(--brand-color);
    color: var(--white);
  }

  .mobile-menu[open] {
    display: block;
  }

  .mobile-menu__inner {
    width: min(calc(100% - 44px), 560px);
    min-height: 100%;
    margin-inline: auto;
    padding: max(2rem, env(safe-area-inset-top)) 0 max(2rem, env(safe-area-inset-bottom));
  }

  .mobile-menu__logo {
    width: 150px;
    height: auto;
    margin: 0 auto 2.5rem;
    filter: brightness(0) invert(1);
  }

  .mobile-menu__close {
    position: fixed;
    z-index: 2;
    top: max(1rem, env(safe-area-inset-top));
    right: 1.2rem;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
  }

  .mobile-menu__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line-light);
  }

  .mobile-menu__links a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 0.4rem;
    border-bottom: 1px solid var(--line-light);
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.3rem;
    text-decoration: none;
  }

  .mobile-menu__links a:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--line-light);
  }

  .mobile-menu__links a:nth-child(even) {
    padding-left: 1rem;
  }

  .mobile-menu__links .icon {
    width: 24px;
    height: 24px;
  }

  .mobile-menu__contact {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
  }

  .today-hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
    text-decoration: none;
  }

  .today-hours span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .all-hours {
    padding: 0 1rem 1rem;
    border-bottom: 1px solid var(--line-light);
  }

  .all-hours summary {
    cursor: pointer;
    font-size: 0.78rem;
  }

  .all-hours dl {
    margin: 0.8rem 0 0;
  }

  .all-hours div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.2rem 0;
    font-size: 0.78rem;
  }

  .all-hours dd {
    margin: 0;
  }

  .mobile-menu__contact address {
    display: grid;
    gap: 0.5rem;
    font-size: 0.92rem;
  }

  .section-intro,
  .section-heading,
  .split-layout,
  .luxx__panel,
  .visit__grid,
  .legal-hero__inner,
  .feature-preview__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-intro,
  .section-heading {
    align-items: start;
    gap: 2rem;
  }

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

  .service-card {
    min-height: 320px;
  }

  .split-layout,
  .luxx__panel {
    gap: 3rem;
  }

  .editorial-image {
    min-height: 620px;
  }

  .luxx__media {
    width: min(100%, 520px);
    height: min(105vw, 680px);
    justify-self: center;
  }

  .reviews__footer {
    grid-template-columns: 1fr auto 1fr;
  }

  .visit__grid {
    gap: 1.5rem;
  }

  .route-sketch {
    min-height: 0;
    aspect-ratio: 1651 / 953;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .sale-dialog__layout {
    grid-template-columns: minmax(240px, 0.72fr) minmax(340px, 1.28fr);
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 44px);
    --radius-xl: 26px;
    --radius-lg: 21px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(4.2rem, 20vw, 6rem);
  }

  h2 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .section {
    padding-block: 5.5rem;
  }

  .hero,
  .hero__stage {
    min-height: 100svh;
  }

  .hero__stage {
    align-items: flex-end;
    padding: 7rem 0 1.5rem;
  }

  .hero__content {
    padding: 1.4rem;
  }

  .hero__content h1 {
    font-size: clamp(4rem, 19vw, 5.6rem);
  }

  .hero__content .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__content .button {
    width: 100%;
  }

  .services-grid {
    gap: 1rem;
  }

  .service-card {
    min-height: 300px;
    padding: 1.6rem;
  }

  .service-card__icon {
    top: 1.6rem;
    left: 1.6rem;
    width: 76px;
    height: 76px;
  }

  .service-card__number {
    top: 1.8rem;
    right: 1.6rem;
  }

  .editorial-image {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .team .section-heading {
    margin-bottom: 2.5rem;
  }

  .team-carousel {
    width: 100%;
  }

  .team-track {
    gap: 14px;
    padding: 0.5rem 11vw 1rem;
    scroll-padding-inline: 11vw;
  }

  .team-card {
    width: 78vw;
    height: min(118vw, 520px);
  }

  .team-card__caption {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .team-carousel__controls {
    justify-content: space-between;
    width: var(--shell);
    margin: 1.2rem auto 0;
  }

  .luxx::before {
    background-image: linear-gradient(180deg, rgba(71, 61, 53, 0.72), rgba(48, 41, 36, 0.86)), var(--section-bg-image, url("../images/background/luxx-hintergrund.jpg"));
  }

  .luxx__media {
    width: min(84vw, 420px);
    height: min(112vw, 570px);
  }

  .luxx__content .button-row {
    flex-direction: column;
  }

  .luxx__content .button {
    width: 100%;
  }

  .review-slide {
    min-height: 430px;
    padding: 1.6rem;
  }

  .review-slide blockquote {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

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

  .reviews__footer > .button,
  .reviews__footer > .button:first-child,
  .reviews__footer > .button:last-child {
    width: 100%;
    justify-self: stretch;
  }

  .reviews__controls {
    width: 100%;
    justify-content: space-between;
  }

  .look-card {
    width: 42vw;
    height: 54vw;
  }

  .looks-row-track {
    animation-duration: 84s;
  }

  .instagram-button {
    width: 100%;
  }

  .route-sketch {
    width: 100%;
    max-width: 100%;
  }

  .route-sketch img {
    object-fit: contain;
  }

  .contact-card {
    padding: 1.4rem;
  }

  .closing {
    min-height: 680px;
  }

  .closing__inner {
    min-height: 440px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .modal {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
    border-radius: 22px;
  }

  .sale-dialog__layout {
    grid-template-columns: 1fr;
  }

  .sale-dialog__media {
    min-height: 240px;
    max-height: 34svh;
  }

  .sale-dialog__content {
    padding: 1.5rem;
  }

  .sale-dialog__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .sale-dialog h2 {
    font-size: 2.7rem;
  }

  .career-dialog {
    padding: 1.4rem;
  }

  .career-dialog__icon {
    width: 56px;
    height: 56px;
  }

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

  .form-actions,
  .career-alternatives {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button,
  .career-alternatives .button {
    width: 100%;
  }

  .feature-preview__media,
  .feature-preview__shop-card {
    min-height: 380px;
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .mobile-menu__inner {
    width: calc(100% - 36px);
  }

  .mobile-menu__links a {
    font-size: 1.08rem;
  }

  .quick-action {
    width: 39px;
    height: 39px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  .team-track,
  .review-viewport {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .legal-toc,
  .button,
  .modal,
  .mobile-menu {
    display: none !important;
  }

  body,
  .legal-page {
    padding-top: 0;
    background: #fff;
    color: #000;
  }

  .section,
  .legal-hero {
    padding-block: 2rem;
  }

  .legal-content {
    display: block;
  }
}
