@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("assets/fonts/bodoni-moda-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("assets/fonts/bodoni-moda-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  /* palette inspired by the 2026 studio interior: the blue-grey wall as the
     base accent, plus white, near-black and a restrained sand tone.
     variable names are legacy (wine = primary accent, rose = light accent,
     champagne = warm metal accent). */
  --paper: #f4f3f0;
  --paper-deep: #e8e7e3;
  --paper-light: #fbfbf9;
  --ink: #1e2126;
  --ink-hover: #30363d;
  --ink-soft: #555f6a;
  --wine: #475f75;
  --wine-hover: #58738a;
  --wine-deep: #1f2b38;
  --rose: #a9bcc9;
  --rose-light: #ccd8e0;
  --champagne: #ab9478;
  --white: #fbfbf8;
  --line: rgba(30, 33, 38, 0.18);
  --line-light: rgba(251, 251, 248, 0.22);
  --font-display: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 5rem);
  --section-space: clamp(6.5rem, 11vw, 11.5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --header-height: 88px;
  /* Höhe des kondensierten Headers – der Scroller rechnet Ankerziele damit */
  --header-height-condensed: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  overflow-anchor: none;
  background: var(--paper);
  /* the subset Bodoni Moda file has broken opsz variation data for N/M/W
     (letters collapse to hairlines); pin the intact default optical size */
  font-optical-sizing: none;
}

/* Der JS-Scroller übernimmt auf Desktop die Bewegung. Ohne JavaScript,
   auf Touch-Geräten und bei reduzierter Bewegung bleibt natives Scrollen. */
html.smooth-scroll-enabled {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(169, 188, 201, 0.28), transparent 26rem),
    var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  content: "";
  opacity: 0.045;
  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");
}

/* --scrollbar-comp (script.js) gleicht die verschwindende Browser-Scrollbar
   aus, damit Header und Inhalt beim Öffnen nicht zur Seite springen */
body.menu-open,
body.dialog-open {
  overflow: hidden;
  padding-right: var(--scrollbar-comp, 0px);
}

body.menu-open .site-header,
body.dialog-open .site-header {
  padding-right: calc(var(--gutter) + var(--scrollbar-comp, 0px));
}

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

img {
  height: auto;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

address {
  font-style: normal;
}

a[href^="tel:"] {
  white-space: nowrap;
}

p,
h1,
h2,
h3,
blockquote,
figure {
  margin-top: 0;
}

::selection {
  color: var(--white);
  background: var(--wine);
}

/* display headings and decorative labels are design elements, not copy —
   selecting them looks broken (huge selection boxes at line-height < 1).
   body text, prices and contact details stay selectable. */
.hero h1,
.error-card h1,
.voucher-strip h2,
.qualification-heading h3,
.studio-image-band-heading h3,
.material-card h3,
.display-heading,
.contact-main h2,
.service-card h3,
.services-closing strong,
.services-closing span,
.section-index,
.section-kicker,
.eyebrow,
.hero-statement,
.marquee-track,
.gallery-item span,
.hero-badge,
.contact-orbit,
.scroll-cue,
.page-loader {
  -webkit-user-select: none;
  user-select: none;
}

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1001;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--white);
  background: var(--wine-deep);
  transition: opacity 0.6s var(--ease-in-out), visibility 0.6s;
}

.page-loader::before,
.page-loader::after {
  position: absolute;
  width: min(70vw, 850px);
  height: min(70vw, 850px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.page-loader::after {
  width: min(45vw, 520px);
  height: min(45vw, 520px);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.skip-loader .page-loader {
  display: none;
}

.loader-logo {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(108px, 22vw, 156px);
  height: clamp(108px, 22vw, 156px);
  place-items: center;
  animation: loader-settle 0.7s 1.35s var(--ease-out) both;
}

.loader-logo svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.25;
}

.loader-edge {
  stroke-dasharray: 142;
  stroke-dashoffset: 142;
  animation: loader-draw 1.05s 0.2s var(--ease-in-out) both;
}

/* proportions taken from the original logo file: letters span 259/511 of the
   diamond width, D is 120px and N 126px wide at 145px height, 13px apart */
.loader-dn {
  display: flex;
  gap: 5%;
  width: 50.7%;
}

.loader-dn span {
  display: block;
  flex: 120;
  aspect-ratio: 120 / 145;
  overflow: hidden;
  color: transparent;
  background: var(--white);
  -webkit-mask: url("assets/images/optimized/logo-d.png") center / contain no-repeat;
  mask: url("assets/images/optimized/logo-d.png") center / contain no-repeat;
  animation: loader-dn-left 0.75s 0.62s var(--ease-out) both;
}

.loader-dn span:last-child {
  flex: 126;
  aspect-ratio: 126 / 145;
  -webkit-mask-image: url("assets/images/optimized/logo-n.png");
  mask-image: url("assets/images/optimized/logo-n.png");
  animation-name: loader-dn-right;
}

.page-loader p {
  position: relative;
  z-index: 1;
  margin: 1.6rem 0 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  animation: loader-fade 0.7s 1.05s var(--ease-out) both;
}

.loader-line {
  position: relative;
  z-index: 1;
  display: block;
  width: 8rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  animation: loader-fade 0.5s 1.05s var(--ease-out) both;
}

.loader-line::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  content: "";
  transform: translateX(-100%);
  animation: loader-line 1.4s 1.15s var(--ease-in-out) both;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 502;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  background-color: transparent;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  transition: height 0.35s var(--ease-out), background-color 0.35s, border-color 0.35s, box-shadow 0.35s, -webkit-backdrop-filter 0.35s, backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  height: var(--header-height-condensed);
  border-bottom-color: rgba(30, 33, 38, 0.1);
  background-color: rgba(244, 243, 240, 0.88);
  box-shadow: 0 10px 35px rgba(27, 34, 43, 0.04);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 44px;
}

/* the DN mark uses the original logo artwork (assets/images/source/0266) as a
   mask, so the lettering always matches the real logo typeface */
.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  color: transparent;
  background: var(--ink);
  -webkit-mask: url("assets/images/optimized/logo-full.png") center / contain no-repeat;
  mask: url("assets/images/optimized/logo-full.png") center / contain no-repeat;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
}

.brand-name small {
  margin-top: 0.32rem;
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2.3rem);
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transition: width 0.4s var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  width: 100%;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 52px;
  padding: 0.85rem 1rem 0.85rem 1.35rem;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.35s, background 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}

.header-cta svg,
.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.35s var(--ease-out);
}

.header-cta:hover {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

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

.header-cta:hover svg,
.button:hover svg {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
}

.menu-toggle span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.45s var(--ease-in-out), background-color 0.35s;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 490;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) var(--gutter) 4rem;
  color: var(--white);
  background: var(--wine-deep);
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.65s var(--ease-in-out), opacity 0.35s, visibility 0.65s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0);
}

.mobile-menu nav {
  display: grid;
  gap: 0.25rem;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  line-height: 1.08;
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.4s, transform 0.5s var(--ease-out);
}

/* Menüpunkte folgen dem Vorhang gestaffelt von oben nach unten */
.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open nav a:nth-child(1) { transition-delay: 0.18s; }
.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 0.24s; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu.is-open nav a:nth-child(5) { transition-delay: 0.42s; }
.mobile-menu.is-open nav a:nth-child(6) { transition-delay: 0.48s; }

.mobile-menu nav a span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.mobile-menu-meta {
  display: grid;
  align-self: end;
  gap: 0.55rem;
  width: 16rem;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.4s, transform 0.5s var(--ease-out);
}

.mobile-menu.is-open .mobile-menu-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.mobile-menu-meta p {
  margin: 1rem 0 0;
  color: rgba(255, 250, 247, 0.62);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 100svh;
  max-width: 1800px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 3.5rem) var(--gutter) clamp(3.5rem, 6vw, 5.5rem);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: 2rem clamp(1rem, 4vw, 4rem) 1rem 0;
}

.eyebrow,
.section-index,
.section-kicker {
  margin-bottom: 1.6rem;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  width: 2.4rem;
  height: 1px;
  background: var(--wine);
  content: "";
}

.hero h1 {
  max-width: 830px;
  margin: 0 0 1.9rem;
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 8.3vw, 9rem);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.075em;
}

.hero h1 em,
.display-heading em,
.contact-main h2 em {
  color: var(--wine);
  font-weight: 450;
}

/* kursive Glyphen ragen links über ihre Box hinaus — kleiner Ausgleich,
   damit Kursiv-Zeilen optisch bündig mit den geraden Zeilen beginnen */
.display-heading br + em {
  margin-left: 0.05em;
}

.hero h1 em {
  display: inline-block;
  margin-left: 0.16em;
  font-size: 0.8em;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 2.2rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.hero-actions .text-link {
  min-height: 52px;
}

.hero-buttons {
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-buttons .button {
  width: 100%;
}

.button-dark {
  min-width: 255px;
  color: var(--white);
  background: var(--ink);
}

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

/* Telefon ist der bevorzugte Kontaktweg: auf hellen Flächen trägt der
   Anruf-CTA die gefüllte Studiofarbe, WhatsApp bleibt bewusst sekundär. */
.button-phone {
  color: var(--white);
  border-color: var(--wine);
  background: var(--wine);
}

.button.button-phone:hover {
  color: var(--white);
  border-color: var(--wine-hover);
  background: var(--wine-hover);
}

.button-whatsapp {
  color: var(--wine-deep);
  border-color: var(--ink);
  background: transparent;
  white-space: nowrap;
}

.button-whatsapp svg {
  flex-shrink: 0;
  fill: currentColor;
  stroke: none;
}

.button.button-whatsapp:hover {
  color: var(--wine-deep);
  border-color: var(--wine);
  background: rgba(71, 95, 117, 0.1);
}

.button-whatsapp:hover svg {
  transform: scale(1.06);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.text-link:hover::after {
  transform: scaleX(0.35);
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
  margin-top: clamp(2.6rem, 6vh, 5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.hero-details div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-details div + div {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.hero-details small,
.contact-grid small {
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-details strong {
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-hours-note {
  margin-top: 0.1rem;
  color: var(--wine);
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  align-self: center;
  height: min(79vh, 890px);
  min-height: 620px;
}

/* layered top-left anchor: wall-blue block behind image and badge — same
   motif as the deco block behind the FAQ image; offsets match ::after */
.hero-visual::before {
  position: absolute;
  top: -1.8rem;
  left: -1.8rem;
  width: 46%;
  height: 45%;
  background: var(--rose);
  content: "";
}

/* thin sand corner line bottom right under the statement, echoing the
   portrait frame; same 1.8rem offset as the block */
.hero-visual::after {
  position: absolute;
  right: -1.8rem;
  bottom: -1.8rem;
  width: 26%;
  height: 30%;
  border-right: 1px solid var(--champagne);
  border-bottom: 1px solid var(--champagne);
  content: "";
  pointer-events: none;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: 0 35px 80px rgba(25, 33, 42, 0.12);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 31, 41, 0.2));
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.035);
}

.hero-statement {
  position: absolute;
  right: 1.4rem;
  bottom: 1.3rem;
  z-index: 2;
  display: grid;
  justify-items: end;
  max-width: 12rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-style: italic;
  line-height: 1.25;
  text-align: right;
}

.hero-badge {
  position: absolute;
  top: -2.4rem;
  left: 2%;
  z-index: 3;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--wine);
  box-shadow: 0 15px 35px rgba(23, 32, 42, 0.22);
}

.hero-badge svg {
  position: absolute;
  inset: 8px;
  width: 100px;
  height: 100px;
  animation: badge-spin 18s linear infinite;
}

.hero-badge text {
  fill: currentColor;
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: 1.5px;
}

.hero-badge > span {
  display: block;
  width: 46px;
  aspect-ratio: 1;
  overflow: hidden;
  color: transparent;
  background: var(--white);
  -webkit-mask: url("assets/images/optimized/logo-full.png") center / contain no-repeat;
  mask: url("assets/images/optimized/logo-full.png") center / contain no-repeat;
}


.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left center;
}

.scroll-cue span {
  display: block;
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

.service-marquee {
  padding: 1rem 0;
  color: var(--white);
  background: var(--wine);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 68s linear infinite;
}

.marquee-track span {
  padding: 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-style: italic;
  white-space: nowrap;
}

.marquee-track i {
  color: var(--rose);
  font-size: 0.72rem;
  font-style: normal;
}

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-space) var(--gutter);
}

.section-head,
.contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.section-head p,
.contact-top p {
  margin: 0;
}

.section-kicker {
  color: var(--ink-soft);
}

.display-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7.5vw, 7.4rem);
  font-weight: 450;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.studio-section {
  padding-top: clamp(4rem, 6vw, 6.5rem);
  overflow: hidden;
}

.studio-section::before {
  position: absolute;
  top: 13%;
  right: -18rem;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(71, 95, 117, 0.12);
  border-radius: 50%;
  content: "";
}

.studio-services-shortcut {
  display: none;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.studio-copy .lead-copy {
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 1.25rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 550;
}

.body-copy {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.body-copy p {
  margin-bottom: 1.15rem;
}

.studio-copy blockquote {
  max-width: 690px;
  margin: 2.5rem 0 0;
  padding: 1.6rem 0 0 2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--wine);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.7vw, 2.3rem);
  font-style: italic;
  line-height: 1.3;
}

.portrait-composition {
  position: relative;
  min-height: 700px;
}

.portrait-frame {
  position: absolute;
  inset: 0 8% 7% 6%;
  margin: 0;
}

.portrait-frame::before {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 7rem;
  height: 7rem;
  border-top: 1px solid var(--champagne);
  border-left: 1px solid var(--champagne);
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.75) sepia(0.08) contrast(0.98);
}

.portrait-frame figcaption {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  /* keep clear of the overlapping experience card at bottom right */
  max-width: calc(100% - 10.5rem);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.experience-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 190px;
  min-height: 190px;
  justify-content: space-between;
  padding: 1.35rem;
  color: var(--white);
  background: var(--wine);
}

.experience-card strong {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-display);
  font-size: 3.65rem;
  font-weight: 500;
  line-height: 0.92;
}

.experience-card strong .experience-prefix {
  margin-bottom: 0.35rem;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 450;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.experience-card .experience-label {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.portrait-line {
  position: absolute;
  top: 25%;
  right: -3rem;
  width: 12rem;
  height: 1px;
  background: var(--champagne);
  transform: rotate(90deg);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 10vw, 10rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-strip article {
  position: relative;
  padding: clamp(1.7rem, 3vw, 3rem);
}

.value-strip article + article {
  border-left: 1px solid var(--line);
}

.value-strip article > span {
  display: block;
  margin-bottom: 2rem;
  color: var(--wine);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.value-strip h3 {
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 550;
}

.value-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.strip-pagination {
  display: none;
}

.qualification-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 8rem);
  margin-top: clamp(5rem, 10vw, 9rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  background: var(--wine-deep);
}

.qualification-seal {
  position: absolute;
  top: 0;
  right: clamp(1.4rem, 3.5vw, 3.5rem);
  z-index: 2;
  display: block;
  width: clamp(92px, 7.5vw, 116px);
  transform: translateY(-50%);
  filter: drop-shadow(0 0.65rem 1rem rgba(11, 19, 31, 0.28));
  transition: transform 180ms ease;
}

.qualification-seal img {
  display: block;
  width: 100%;
  height: auto;
}

.qualification-seal:hover {
  transform: translateY(-53%);
}

.qualification-seal:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 5px;
  transform: translateY(-53%);
}

.qualification-heading .section-index {
  margin-bottom: 2rem;
  color: var(--rose);
}

.qualification-heading h3,
.studio-image-band-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 450;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.qualification-heading h3 em,
.studio-image-band-heading h3 em {
  color: var(--rose);
}

.qualification-list {
  border-top: 1px solid var(--line-light);
}

.qualification-list article {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line-light);
}

.qualification-list article > span {
  color: var(--rose);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qualification-list strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 500;
}

.qualification-list p {
  margin: 0;
  color: rgba(251, 251, 248, 0.62);
  font-size: 0.86rem;
}

.qualification-proof-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(251, 251, 248, 0.42);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.qualification-proof-link::after {
  content: "↗";
  font-size: 0.85rem;
  line-height: 1;
}

.qualification-proof-link:hover,
.qualification-proof-link:focus-visible {
  border-color: var(--rose);
  color: var(--rose);
}

.studio-image-band {
  margin-top: clamp(5rem, 10vw, 10rem);
}

.studio-image-band-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.studio-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* dieselbe Abstandsstufe wie die Hauptnavigation – die 1rem der kleinen
     Galeriekacheln wirken zwischen den grossen Studiobildern zu gedrängt */
  gap: clamp(1rem, 2vw, 2.3rem);
}

/* Quadrat als ruhiges Raster fuer die drei hochformatigen Studiofotos (3:4) –
   margin: 0, weil sonst der Browserstandard von 40px je Seite die Kacheln
   einschnürt */
.studio-image-grid figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
}

.studio-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 0.9s var(--ease-out), filter 0.6s;
}

/* same hover treatment as the gallery tiles */
.studio-image-grid figure:hover img {
  filter: saturate(1);
  transform: scale(1.045);
}

/* Die Bildaussage sitzt bei den beiden Raumaufnahmen nicht in der Bildmitte:
   beim Raumblick oben (Regal, Fenster), beim Maniküretisch unten. Der
   Quadratcrop wird deshalb je Kachel verschoben, damit das Motiv nicht
   angeschnitten wird. */
.studio-image-grid figure:first-child img {
  object-position: center 46%;
}

.studio-image-grid figure:nth-child(2) img {
  object-position: center 68%;
}

.studio-image-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.5rem 1rem 1rem;
  color: var(--white);
  background: linear-gradient(transparent, rgba(31, 43, 56, 0.82));
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-preview-note {
  display: inline-block;
  margin: 0.7rem 0 0;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.testimonials-section {
  position: relative;
  background: var(--paper-light);
  overflow: hidden;
}

/* quarter ring in the top right corner — the circle motif used in the
   studio, contact and loader sections */
.testimonials-section::before {
  position: absolute;
  top: -14rem;
  right: -14rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(71, 95, 117, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.testimonials-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.testimonials-heading .display-heading {
  grid-column: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(1.8rem, 3.5vw, 3.5rem);
}

.testimonial-card + .testimonial-card {
  border-left: 1px solid var(--line);
}

.testimonial-card blockquote {
  margin: 0 0 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-style: italic;
  line-height: 1.35;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.testimonial-card figcaption strong {
  font-size: 0.78rem;
}

.testimonial-card figcaption span {
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.services-section,
.gallery-section {
  max-width: none;
  color: var(--white);
  background: var(--ink);
}

.services-section > *,
.gallery-section > * {
  max-width: calc(var(--max) - 2 * var(--gutter));
  margin-right: auto;
  margin-left: auto;
}

.section-head-light,
.contact-top {
  border-bottom-color: var(--line-light);
}

.section-head-light .section-kicker {
  color: rgba(255, 250, 247, 0.55);
}

.services-intro,
.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(4.5rem, 8vw, 8rem);
}

.display-heading-light em {
  color: var(--rose);
}

.services-intro > p,
.gallery-heading > p {
  max-width: 440px;
  margin-bottom: 0.65rem;
  color: rgba(255, 250, 247, 0.63);
}

.services-list {
  border-top: 1px solid var(--line-light);
}

.services-closing {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.services-closing > p {
  margin: 0;
  color: rgba(255, 250, 247, 0.6);
  font-size: 0.9rem;
}

.services-closing div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.services-closing strong,
.services-closing span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 3.1rem);
  font-weight: 450;
  line-height: 1.08;
}

.services-closing span {
  color: var(--rose);
  font-style: italic;
}

.conversion-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  background: rgba(169, 188, 201, 0.14);
}

.conversion-bridge-dark {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.035);
}

.conversion-bridge-kicker {
  margin: 0 0 0.65rem;
  color: var(--wine);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.conversion-bridge-dark .conversion-bridge-kicker {
  color: var(--rose);
}

.conversion-bridge h3 {
  max-width: 790px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.75rem);
  font-weight: 450;
  line-height: 1.08;
}

.conversion-bridge-actions {
  display: grid;
  gap: 0.75rem;
  min-width: min(100%, 285px);
}

.conversion-bridge-actions .button {
  width: 100%;
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-light:hover {
  color: var(--wine-deep);
  border-color: var(--white);
  background: var(--white);
}

/* Auf dunklen CTA-Flächen wird die Hierarchie kontrastgerecht invertiert:
   heller Anruf-Button, ruhiger transparenter WhatsApp-Button. */
.conversion-bridge-dark .button-phone {
  color: var(--wine-deep);
  border-color: var(--rose);
  background: var(--rose);
}

.conversion-bridge-dark .button.button-phone:hover {
  color: var(--wine-deep);
  border-color: var(--white);
  background: var(--white);
}

.conversion-bridge-dark .button-whatsapp {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.conversion-bridge-dark .button.button-whatsapp:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.16fr 0.92fr 1fr auto;
  gap: clamp(1rem, 3vw, 3.5rem);
  align-items: center;
  min-height: 235px;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
  transition: color 0.4s;
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--wine);
  content: "";
  transform: translateX(-102%);
  transition: transform 0.65s var(--ease-out);
}

/* hover shifts children via transform (not padding) so text never rewraps
   and the row height stays perfectly stable */
.service-card > * {
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover > * {
  transform: translateX(1.5rem);
}

.service-card:hover > a {
  transform: translateX(-1.5rem);
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-number {
  align-self: start;
  padding-top: 0.7rem;
  color: var(--rose);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.service-tag {
  margin-bottom: 0.4rem;
  color: var(--rose);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.3vw, 4.5rem);
  font-weight: 450;
  line-height: 0.87;
  letter-spacing: -0.045em;
}

.service-card h3 em {
  color: var(--rose);
  font-weight: 450;
}

.service-card > p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 250, 247, 0.62);
  font-size: 0.92rem;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.techniques-heading,
.prices-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(4.5rem, 8vw, 8rem);
}

.techniques-intro {
  color: var(--ink-soft);
}

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

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: clamp(5rem, 10vw, 10rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.material-card {
  position: relative;
  min-height: 430px;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: var(--paper);
  overflow: hidden;
}

.material-card > span {
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.material-card h3 {
  margin: 4.5rem 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 450;
  line-height: 1;
}

.material-card p {
  position: relative;
  z-index: 1;
  max-width: 410px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.material-card i {
  position: absolute;
  right: -6rem;
  bottom: -9rem;
  width: 19rem;
  height: 19rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.8s var(--ease-out);
}

.material-card:hover i {
  transform: scale(1.2);
}

.material-card-featured {
  color: var(--white);
  background: var(--wine);
}

.material-card-featured p {
  color: rgba(255, 250, 247, 0.72);
}

.material-card-featured i {
  border-color: rgba(255, 255, 255, 0.18);
}

.treatment-accordion {
  border-top: 1px solid var(--line);
  overflow-anchor: none;
}

.treatment-item {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.treatment-item h3,
.faq-item h3 {
  margin: 0;
}

.treatment-item h3 button {
  display: grid;
  grid-template-columns: 0.17fr 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 112px;
  padding: 1rem 0;
  text-align: left;
}

.treatment-no {
  color: var(--wine);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.treatment-item h3 button > span:nth-child(2) {
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.7vw, 3.4rem);
  font-weight: 480;
  overflow-wrap: break-word;
  hyphens: auto;
}

.treatment-item h3 i,
.faq-item h3 i {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.treatment-item h3 i::before,
.treatment-item h3 i::after,
.faq-item h3 i::before,
.faq-item h3 i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out);
}

.treatment-item h3 i::after,
.faq-item h3 i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.treatment-item h3 button[aria-expanded="true"] i::after,
.faq-item h3 button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.treatment-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding: 1rem 0 clamp(3rem, 7vw, 6rem) 17%;
}

.treatment-panel[hidden],
.faq-panel[hidden] {
  display: none;
}

.treatment-copy {
  color: var(--ink-soft);
}

.treatment-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 2rem;
  padding: 0;
  list-style: none;
}

.treatment-copy li {
  position: relative;
  padding-left: 1.2rem;
}

.treatment-copy li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wine);
  content: "";
}

.treatment-panel figure {
  margin: 0;
}

.treatment-panel figure img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  filter: saturate(0.75) sepia(0.06);
}

.treatment-panel figcaption {
  padding-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.treatment-panel-double {
  grid-template-columns: 1fr 0.55fr 0.55fr;
}

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

.gallery-grid {
  display: grid;
  grid-auto-rows: clamp(130px, 14vw, 210px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.25vw, 1.35rem);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-reveal[hidden] {
  display: none;
}

.gallery-reveal {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: -11rem;
  padding: 12rem 1rem 1rem;
  background: linear-gradient(180deg, rgba(30, 33, 38, 0), var(--ink) 58%);
  pointer-events: none;
}

.gallery-reveal-button {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.85rem;
  align-items: center;
  min-width: min(100%, 340px);
  min-height: 58px;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(31, 43, 56, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition: color 0.35s, background 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}

.gallery-reveal-button small {
  color: var(--rose);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.gallery-reveal-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.4s var(--ease-out);
}

.gallery-reveal-button:hover {
  border-color: var(--rose);
  color: var(--wine-deep);
  background: var(--rose);
  transform: translateY(-2px);
}

.gallery-reveal-button:hover small {
  color: var(--wine-deep);
}

.gallery-section.gallery-expanded .gallery-reveal {
  margin-top: 2rem;
  padding: 0;
  background: none;
}

.gallery-section.gallery-expanded .gallery-reveal-button svg {
  transform: rotate(180deg);
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  margin: 0;
  color: var(--white);
  background: #292d32;
  overflow: hidden;
  text-align: left;
}

.gallery-item-wide {
  grid-column: span 8;
}

.gallery-item-tall {
  grid-row: span 3;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 14, 18, 0.74));
  content: "";
  opacity: 0.75;
  transition: opacity 0.5s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(0.98);
  transition: transform 0.9s var(--ease-out), filter 0.6s;
}

.gallery-item span {
  position: absolute;
  right: 1rem;
  bottom: 0.85rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-item:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.045);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.gallery-social p {
  margin: 0;
  color: rgba(255, 250, 247, 0.55);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  font-style: italic;
}

.gallery-social .icon-instagram {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s var(--ease-out);
}

.gallery-social .external-arrow {
  font-family: var(--font-sans);
  font-size: 0.72em;
  font-style: normal;
  line-height: 1;
  transition: transform 0.3s var(--ease-out);
}

.gallery-social a:hover .icon-instagram {
  transform: scale(1.06);
}

.gallery-social a:hover .external-arrow {
  transform: translate(2px, -2px);
}

.price-notice {
  padding: 1.5rem;
  border: 1px solid rgba(71, 95, 117, 0.3);
  background: rgba(169, 188, 201, 0.24);
}

.price-notice span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--wine);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.price-notice p + p {
  margin-top: 0.85rem;
}

.price-list {
  border-top: 1px solid var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 90px;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.3s, transform 0.3s, padding 0.3s, background 0.3s;
}

.price-row:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(169, 188, 201, 0.22);
}

.price-row div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: baseline;
}

.price-row span {
  color: var(--wine);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.price-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 520;
}

.price-row strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 520;
  white-space: nowrap;
}

.care-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding-top: clamp(2rem, 4vw, 4rem);
}

.care-image {
  position: relative;
  height: min(72vw, 760px);
  max-height: 760px;
}

.care-image::before {
  position: absolute;
  top: -2rem;
  left: -2rem;
  z-index: -1;
  width: 58%;
  height: 58%;
  background: var(--rose);
  content: "";
}

.care-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) sepia(0.05);
}

.care-copy .section-index {
  margin-bottom: 2rem;
}

.care-copy .display-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.faq-list {
  border-top: 1px solid var(--line);
  overflow-anchor: none;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 0.8rem 0;
  font-size: 0.92rem;
  font-weight: 650;
  text-align: left;
}

.faq-item h3 i {
  width: 38px;
  height: 38px;
}

.faq-panel {
  padding: 0 3.5rem 1.5rem 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.faq-panel p {
  margin: 0;
}

.faq-panel a {
  color: var(--wine);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.voucher-strip {
  display: grid;
  /* Die Ueberschriftenspalte bekommt weniger Anteil, damit die Gutscheinkarte
     naeher an die Ueberschrift rueckt. min-content als Untergrenze, weil die
     Ueberschrift feste Zeilenumbrueche hat und sonst auf schmalen Viewports
     aus der Spalte laufen wuerde. */
  grid-template-columns: minmax(min-content, 0.7fr) auto minmax(260px, 0.72fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  color: var(--ink);
  background: var(--rose-light);
}

.voucher-strip-action {
  display: grid;
  gap: 1.4rem;
  justify-items: start;
}

.voucher-strip-action p {
  margin: 0;
  color: var(--ink-soft);
}

/* decorative gift-voucher card */
.voucher-card {
  position: relative;
  display: flex;
  flex-direction: column;
  /* gestrecktes Format wie eine echte Gutscheinkarte – die Breite waechst
     mit, das flachere Seitenverhaeltnis verhindert, dass die Karte dabei
     ebenso hoch wird */
  width: clamp(270px, 29vw, 410px);
  aspect-ratio: 21 / 10;
  padding: clamp(1.1rem, 1.8vw, 1.6rem);
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: 0 24px 55px rgba(31, 43, 56, 0.18);
  transform: rotate(-3.5deg);
  transition: transform 0.5s var(--ease-out);
}

.voucher-strip:hover .voucher-card {
  transform: rotate(-1.5deg) translateY(-4px);
}

.voucher-card::before {
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(30, 33, 38, 0.14);
  content: "";
  pointer-events: none;
}

.voucher-card-mark {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: auto;
  background: var(--wine);
  -webkit-mask: url("assets/images/optimized/logo-full.png") center / contain no-repeat;
  mask: url("assets/images/optimized/logo-full.png") center / contain no-repeat;
}

.voucher-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.voucher-card em {
  color: var(--wine);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.voucher-card-perforation {
  display: block;
  height: 1px;
  margin: 0.8rem 0 0.55rem;
  background-image: linear-gradient(90deg, var(--line) 55%, transparent 55%);
  background-size: 9px 1px;
}

.voucher-card small {
  color: var(--ink-soft);
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voucher-strip h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 450;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.voucher-strip h2 em {
  color: var(--wine);
}

.voucher-strip > p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-section {
  position: relative;
  padding: var(--section-space) var(--gutter) clamp(4rem, 7vw, 7rem);
  color: var(--white);
  background: var(--wine-deep);
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  top: -20%;
  left: -15%;
  width: 45vw;
  height: 45vw;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.contact-section > *:not(.contact-orbit) {
  position: relative;
  z-index: 1;
  max-width: calc(var(--max) - 2 * var(--gutter));
  margin-right: auto;
  margin-left: auto;
}

.contact-top .section-kicker {
  color: rgba(255, 250, 247, 0.55);
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.contact-main h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 450;
  line-height: 0.74;
  letter-spacing: -0.075em;
}

.contact-main h2 em {
  color: var(--rose);
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
  min-width: min(100%, 310px);
}

.contact-call {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 74px;
  padding: 0 0 0 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.35s, background 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}

.contact-call i {
  display: grid;
  align-self: stretch;
  width: 72px;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-call svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.contact-call:hover {
  color: var(--wine-deep);
  background: var(--rose);
  transform: translateY(-4px);
}

.contact-call-primary {
  color: var(--wine-deep);
  border-color: var(--rose);
  background: var(--rose);
}

.contact-call-primary:hover,
.contact-call-primary:focus-visible {
  color: var(--wine-deep);
  border-color: var(--white);
  background: var(--white);
}

.contact-call-primary i {
  border-left-color: rgba(31, 43, 56, 0.24);
}

.contact-call-whatsapp {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.contact-call-whatsapp:hover,
.contact-call-whatsapp:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.contact-call-whatsapp i {
  border-left-color: rgba(255, 255, 255, 0.32);
}

.contact-call svg.icon-whatsapp {
  fill: currentColor;
  stroke: none;
}

.faq-panel a[href^="https://wa.me/"] {
  color: var(--wine);
  font-weight: 700;
}

.mobile-menu-meta a[href^="https://wa.me/"],
.contact-grid a[href^="https://wa.me/"] {
  color: var(--rose);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact-content {
  display: block;
}

.location-card {
  position: relative;
  display: block;
  width: 100%;
  height: 150px;
  min-height: 0;
  margin-top: 1.1rem;
  border: 1px solid var(--line-light);
  overflow: hidden;
}

.location-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.35s;
}

.location-card > span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--white);
  background: rgba(31, 43, 56, 0.86);
  backdrop-filter: blur(6px);
}

.contact-grid .location-card strong {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.location-card:hover > span {
  color: var(--wine-deep);
  background: var(--rose);
}

.location-card:hover img {
  filter: saturate(1.1);
  transform: scale(1.02);
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: var(--gutter);
}

.error-card {
  width: min(900px, 100%);
  padding: clamp(2rem, 7vw, 6rem);
  border: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: 0 30px 100px rgba(31, 43, 56, 0.1);
}

.error-code {
  color: var(--wine);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.error-card h1 {
  margin: 1rem 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 450;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.error-card h1 em {
  color: var(--wine);
}

.error-card p {
  max-width: 40rem;
  color: var(--ink-soft);
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 90% 0%, rgba(169, 188, 201, 0.3), transparent 30rem),
    var(--paper);
}

.legal-page-header,
.legal-page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem var(--gutter);
}

.legal-page-header {
  border-bottom: 1px solid var(--line);
  background: rgba(244, 243, 240, 0.88);
  backdrop-filter: blur(12px);
}

.legal-page-main {
  width: min(980px, calc(100% - 2 * var(--gutter)));
  margin: clamp(2rem, 7vw, 7rem) auto;
}

.legal-page-card {
  padding: clamp(2rem, 7vw, 6rem);
  border: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: 0 30px 100px rgba(31, 43, 56, 0.1);
}

.legal-page-card h1 {
  margin: 0.8rem 0 clamp(3rem, 7vw, 5rem);
  font-family: var(--font-display);
  /* „Datenschutzerklärung“ als Seitentitel: kleiner starten und im Notfall
     trennen, statt aus der Karte zu laufen */
  font-size: clamp(2.6rem, 10vw, 8.5rem);
  font-weight: 450;
  line-height: 0.85;
  letter-spacing: -0.07em;
  overflow-wrap: break-word;
  hyphens: auto;
}

.legal-page-card h2 {
  margin: 2.5rem 0 0.75rem;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-transform: uppercase;
}

.legal-page-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* aufeinanderfolgende Absätze ohne Zwischenüberschrift (z. B. Cookie-Info) */
.legal-page-card p + p {
  margin-top: 1rem;
}

.legal-page-card a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-page-footer p {
  margin: 0;
}

.contact-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  min-height: 250px;
  padding: 2rem clamp(1rem, 2.2vw, 2.2rem);
}

.contact-grid > div + div {
  border-left: 1px solid var(--line-light);
}

.contact-grid small {
  margin-bottom: 1.2rem;
  color: var(--rose);
}

.contact-grid address,
.contact-grid strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.45;
}

.contact-grid address {
  white-space: nowrap;
}

.contact-grid a {
  font-size: 0.8rem;
  transition: color 0.2s;
}

.contact-grid a:hover {
  color: var(--rose);
}

.contact-grid p {
  margin: 0.5rem 0 0;
  color: rgba(255, 250, 247, 0.55);
  font-size: 0.72rem;
}

.contact-orbit {
  position: absolute;
  top: 38%;
  right: -7vw;
  display: grid;
  width: min(31vw, 520px);
  height: min(31vw, 520px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-orbit::before {
  inset: 18%;
}

.contact-orbit::after {
  inset: 36%;
}

.contact-orbit span {
  display: block;
  width: clamp(9rem, 18vw, 20rem);
  aspect-ratio: 1;
  overflow: hidden;
  color: transparent;
  background: rgba(255, 255, 255, 0.1);
  -webkit-mask: url("assets/images/optimized/logo-full.png") center / contain no-repeat;
  mask: url("assets/images/optimized/logo-full.png") center / contain no-repeat;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter) 1.8rem;
  background: var(--paper-deep);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.footer-brand small {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav,
.footer-legal {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  font-size: 0.78rem;
}

.footer-nav a,
.footer-legal a,
.footer-legal button {
  display: flex;
  align-items: center;
  justify-self: start;
  min-height: 32px;
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--wine);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

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

dialog {
  border: 0;
  padding: 0;
}

dialog::backdrop {
  background: rgba(13, 16, 20, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  color: var(--white);
  background: transparent;
  overflow: hidden;
}

.lightbox-dialog[open] {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  place-items: center;
}

.lightbox-dialog figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(82vw, 1160px);
  height: min(86dvh, 900px);
  margin: 0;
  place-items: center;
}

.lightbox-dialog figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox-dialog figcaption {
  padding-top: 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-close,
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 4;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
}

.lightbox-nav {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  transition: color 0.25s, background 0.25s;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  color: var(--ink);
  background: var(--white);
}

.lightbox-count {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.legal-dialog {
  width: min(820px, calc(100vw - 2rem));
  max-height: min(88dvh, 900px);
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25);
}

.legal-dialog-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 249, 0.94);
  backdrop-filter: blur(12px);
}

.legal-dialog-head p {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-dialog-head button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.5rem;
}

.legal-dialog-body {
  padding: clamp(2rem, 6vw, 5rem);
}

.legal-dialog-body h2 {
  margin-bottom: 3rem;
  font-family: var(--font-display);
  /* „Datenschutzerklärung“ ist sehr lang — kleiner starten und im Notfall
     trennen, statt rechts aus dem Dialog zu laufen */
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 450;
  line-height: 0.95;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
  hyphens: auto;
}

.legal-dialog-body h3 {
  margin: 2.2rem 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-dialog-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-dialog-body a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  padding: 1rem;
  border-left: 2px solid var(--champagne);
  background: rgba(171, 148, 120, 0.14);
}

.noscript-note {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 900;
  padding: 1rem;
  color: var(--white);
  background: var(--wine-deep);
  font-size: 0.8rem;
  text-align: center;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.js [data-reveal="image"] {
  opacity: 1;
  transform: none;
  transition: none;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js [data-reveal="image"].is-visible {
  opacity: 1;
}

.js [data-delay="1"] { transition-delay: 0.08s; }
.js [data-delay="2"] { transition-delay: 0.16s; }
.js [data-delay="3"] { transition-delay: 0.24s; }
.js [data-delay="4"] { transition-delay: 0.32s; }

@keyframes loader-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes loader-dn-left {
  from { opacity: 0; transform: translateX(-1.1em); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes loader-dn-right {
  from { opacity: 0; transform: translateX(1.1em); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes loader-settle {
  0% { transform: scale(1); }
  45% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@keyframes loader-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loader-line {
  0% { transform: translateX(-100%); }
  55%, 75% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

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

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1220px) {
  :root {
    --gutter: clamp(1.25rem, 3.4vw, 3rem);
  }

  .desktop-nav {
    gap: 1.2rem;
  }

  .desktop-nav a {
    font-size: 0.61rem;
  }

  .header-cta {
    padding-left: 1rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .hero h1 {
    font-size: clamp(4.2rem, 8.5vw, 7.2rem);
  }

  .service-card {
    grid-template-columns: 0.12fr 0.9fr 0.95fr auto;
  }

  .service-card > p {
    font-size: 0.84rem;
  }

  .gallery-grid {
    grid-auto-rows: 150px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 76px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .menu-toggle {
    display: grid;
  }

  .site-header.menu-active {
    color: var(--white);
    background: transparent;
  }

  /* Logo- und Markenfarben wechseln im selben Tempo wie der Burger-Morph,
     statt hart umzuspringen */
  .brand .brand-mark {
    transition: background-color 0.35s;
  }

  .brand-name {
    transition: color 0.35s;
  }

  .site-header.menu-active .brand .brand-mark {
    background: var(--white);
  }

  .site-header.menu-active .menu-toggle span {
    background: var(--white);
  }

  .site-header.menu-active .brand-name {
    color: var(--white);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 4rem);
  }

  .hero-copy {
    max-width: 830px;
    padding-right: 0;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(5.2rem, 13.5vw, 9rem);
  }

  .hero-intro {
    max-width: 670px;
  }

  .hero-visual {
    width: 92%;
    height: min(86vw, 780px);
    min-height: 580px;
    justify-self: end;
    margin-left: 0;
  }

  .hero-badge {
    top: -2rem;
    left: 0;
  }

  .scroll-cue {
    display: none;
  }

  .studio-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 3.5rem;
  }

  .portrait-composition {
    min-height: 620px;
  }

  .service-card {
    grid-template-columns: 0.12fr 1fr 0.85fr;
  }

  .service-card > a {
    grid-column: 2;
  }

  .service-card:hover > a {
    transform: translateX(1.5rem);
  }

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

  .material-card {
    min-height: auto;
  }

  .material-card h3 {
    margin-top: 2.5rem;
  }

  .treatment-panel {
    padding-left: 0;
  }

  .treatment-panel-double {
    grid-template-columns: 1fr 0.5fr 0.5fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-item {
    grid-column: span 3;
  }

  .gallery-item-wide {
    grid-column: span 6;
  }

  .contact-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-actions {
    justify-self: start;
  }

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

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

  .voucher-strip > div:first-child {
    grid-column: 1 / -1;
  }

  .voucher-strip .button {
    justify-self: start;
  }

  .contact-grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .contact-grid > div:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 1.2rem;
    --section-space: 6rem;
    /* schmale Fenster kondensieren nicht mehr – Header bleibt auf 68px */
    --header-height-condensed: 68px;
  }

  body {
    padding-bottom: 65px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-name small {
    font-size: 0.46rem;
  }

  .mobile-menu {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }

  .mobile-menu nav a {
    font-size: clamp(2.45rem, 12.5vw, 4.4rem);
  }

  .mobile-menu-meta {
    align-self: end;
    width: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 8.5rem;
    padding-bottom: 3rem;
  }

  .hero-copy {
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 1.3rem;
  }

  .hero h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(4.3rem, 20vw, 6.2rem);
    line-height: 0.82;
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    width: min(100%, 20.5rem);
  }

  .button-dark,
  .button-whatsapp {
    width: min(100%, 20.5rem);
  }

  .hero-details {
    margin-top: 2.7rem;
  }

  .hero-details strong {
    font-size: 0.73rem;
  }

  .hero-visual {
    width: min(86vw, 420px);
    height: min(112vw, 560px);
    min-height: 0;
    margin: 3.5rem auto 0;
  }

  .hero-image-wrap {
    border-radius: 2px;
  }

  .hero-visual::before {
    top: -1rem;
    left: -1rem;
  }

  /* skip the sand corner line on small screens — too little air around it */
  .hero-visual::after {
    display: none;
  }

  .hero-badge {
    top: -1.6rem;
    left: 0;
    width: 98px;
    height: 98px;
  }

  .hero-badge svg {
    inset: 7px;
    width: 84px;
    height: 84px;
  }

  .hero-statement {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .section-head,
  .contact-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 4rem;
  }

  .section-head .section-index,
  .contact-top .section-index {
    margin-bottom: 0.4rem;
  }

  .display-heading {
    font-size: clamp(3.55rem, 17vw, 5.6rem);
  }

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

  .studio-copy blockquote {
    padding-left: 1.2rem;
  }

  .portrait-composition {
    width: min(88vw, 380px);
    min-height: min(125vw, 530px);
    margin: 1.5rem auto 0;
  }

  .portrait-frame {
    inset: 0 5% 7% 0;
  }

  .experience-card {
    width: 150px;
    min-height: 150px;
  }

  .experience-card strong {
    font-size: 2.9rem;
  }

  .studio-services-shortcut {
    display: inline-flex;
    margin-top: 2.75rem;
  }

  .value-strip {
    grid-template-columns: repeat(3, minmax(78vw, 1fr));
    margin-top: 4.5rem;
    margin-right: calc(-1 * var(--gutter));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--rose) transparent;
    scrollbar-width: thin;
  }

  .js .value-strip,
  .js .studio-image-grid {
    scrollbar-width: none;
  }

  .js .value-strip::-webkit-scrollbar,
  .js .studio-image-grid::-webkit-scrollbar {
    display: none;
  }

  .strip-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0.35rem 0 0;
  }

  .strip-pagination[hidden] {
    display: none;
  }

  /* Pille springt pro Karte um (--dot-i aus script.js). Der Flüssigkeits-
     Effekt entsteht, weil die vordere Kante schneller wandert als die
     hintere: die Pille streckt sich zum Ziel und zieht sich dort zusammen. */
  .strip-pagination::after {
    position: absolute;
    top: 50%;
    left: calc(50% + (var(--dot-i, 0) - (var(--dot-count, 3) - 1) / 2) * 36px - 12px);
    right: calc(50% - (var(--dot-i, 0) - (var(--dot-count, 3) - 1) / 2) * 36px - 12px);
    height: 7px;
    border-radius: 99px;
    background: var(--wine);
    content: "";
    pointer-events: none;
    transform: translateY(-50%);
    transition: right 0.3s var(--ease-out), left 0.55s var(--ease-out) 0.06s;
  }

  .strip-pagination[data-dir="back"]::after {
    transition: left 0.3s var(--ease-out), right 0.55s var(--ease-out) 0.06s;
  }

  .strip-pagination button {
    position: relative;
    width: 36px;
    min-height: 44px;
  }

  .strip-pagination button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border: 1px solid var(--wine);
    border-radius: 99px;
    background: transparent;
    content: "";
    transform: translate(-50%, -50%);
    transition: background-color 0.3s, border-color 0.3s;
  }

  .strip-pagination button:hover::before {
    border-color: var(--wine-hover);
    background: var(--rose);
  }

  .value-strip article {
    min-height: 235px;
    scroll-snap-align: start;
  }

  .value-strip article + article {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .qualification-block {
    grid-template-columns: 1fr;
    margin-top: 3.25rem;
    padding: 1.8rem 1.4rem;
  }

  .qualification-seal {
    right: 1rem;
    width: 82px;
  }

  .qualification-heading .section-index {
    padding-right: 4.75rem;
  }

  .qualification-list article {
    grid-template-columns: 4rem 1fr;
    padding: 1.15rem 0;
  }

  .studio-image-band {
    margin-top: 2.25rem;
  }

  .studio-image-band-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.6rem;
  }

  .studio-image-grid {
    grid-template-columns: repeat(3, minmax(82vw, 1fr));
    margin-right: calc(-1 * var(--gutter));
    padding-bottom: 0.8rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--rose) transparent;
    scrollbar-width: thin;
  }

  .js .studio-image-grid {
    padding-bottom: 0;
  }

  /* Quadratisch wie am Desktop, damit mobil derselbe Bildausschnitt zu sehen
     ist. Das frühere 3:2 stammte von den beiden querformatigen KI-Beispielen,
     die es nicht mehr gibt – bei den hochformatigen Studiofotos zeigte es
     einen anderen Ausschnitt als die Desktop-Ansicht. */
  .studio-image-grid figure {
    aspect-ratio: 1;
    scroll-snap-align: start;
  }

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

  /* gestapelt braucht die Karte keine feste Höhe — sonst drückt
     space-between den Namen weit vom Zitat weg; mehr vertikales Polster,
     damit Zitat + Name klar als Paar lesbar sind, bevor das nächste beginnt */
  .testimonial-card {
    min-height: 0;
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }

  .testimonial-card blockquote {
    margin-bottom: 1.6rem;
  }

  .testimonial-card + .testimonial-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .value-strip::-webkit-scrollbar,
  .studio-image-grid::-webkit-scrollbar {
    height: 4px;
  }

  .value-strip::-webkit-scrollbar-thumb,
  .studio-image-grid::-webkit-scrollbar-thumb {
    background: var(--rose);
  }

  .services-intro,
  .gallery-heading,
  .techniques-heading,
  .prices-heading,
  .testimonials-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4.5rem;
  }

  /* „Wiederkommen.“ ist das längste Display-Wort der Seite — kleiner setzen,
     damit es auf schmalen Screens nicht angeschnitten wird */
  .testimonials-heading .display-heading {
    font-size: clamp(2.6rem, 12vw, 5.6rem);
  }

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

  .conversion-bridge {
    grid-template-columns: 1fr;
  }

  .conversion-bridge-actions {
    width: min(100%, 20.5rem);
    min-width: 0;
    justify-self: start;
  }

  .service-card {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    min-height: auto;
    padding: 2.5rem 0;
  }

  .service-number {
    grid-row: span 3;
  }

  .service-card > p,
  .service-card > a {
    grid-column: 2;
  }

  .service-card:hover > *,
  .service-card:hover > a {
    transform: translateX(0.75rem);
  }

  .service-card h3 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .material-card {
    padding: 1.5rem;
  }

  .treatment-item h3 button {
    grid-template-columns: 3rem 1fr auto;
    min-height: 94px;
  }

  /* small enough that „Naturnagelverstärkung“ stays on one line */
  .treatment-item h3 button > span:nth-child(2) {
    font-size: clamp(1.15rem, 5.4vw, 2rem);
  }

  .treatment-item h3 i {
    width: 38px;
    height: 38px;
  }

  .treatment-panel,
  .treatment-panel-double {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .treatment-panel figure img {
    max-height: 340px;
  }

  .treatment-panel figure {
    width: min(82vw, 360px);
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-grid {
    grid-auto-rows: 56vw;
    grid-auto-flow: dense;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .gallery-item,
  .gallery-item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-tall {
    grid-row: span 2;
  }

  .gallery-item:nth-child(3n) {
    grid-column: span 2;
  }

  .gallery-social {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .price-row {
    gap: 1rem;
  }

  .price-row div {
    grid-template-columns: 2.2rem 1fr;
  }

  .price-row h3 {
    font-size: 1.12rem;
    line-height: 1.35;
  }

  .price-row strong {
    font-size: 1.18rem;
  }

  .care-section {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .voucher-strip {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .voucher-strip .voucher-card {
    justify-self: center;
    /* volle Spaltenbreite: Bei der schmaleren Desktop-Breite (270px) braucht der
       Karteninhalt mehr Hoehe als die 21/10 vorgeben und staucht die Karte auf
       1,97. Mit voller Breite liegt die rechnerische Hoehe ueber der
       Inhaltshoehe, das Seitenverhaeltnis haelt also auch mobil. */
    width: 100%;
    margin: 0.5rem 0;
  }

  .voucher-strip .button {
    width: min(100%, 20.5rem);
  }

  .care-image {
    width: min(82vw, 380px);
    height: min(82vw, 380px);
    max-height: none;
    margin: 0 auto 2rem;
  }

  .care-image::before {
    top: -1rem;
    left: -1rem;
  }

  .contact-main h2 {
    font-size: clamp(5rem, 24vw, 8.5rem);
  }

  .contact-actions {
    width: min(100%, 20.5rem);
    min-width: 0;
    justify-self: start;
  }

  .contact-call {
    width: 100%;
  }

  .contact-call {
    justify-content: space-between;
  }

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

  .contact-grid address {
    white-space: normal;
  }

  .location-card img {
    height: 145px;
    min-height: 0;
  }

  .location-card {
    height: 145px;
  }

  .contact-grid > div,
  .contact-grid > div + div {
    min-height: 210px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .contact-grid > div:first-child {
    border-top: 0;
  }

  .contact-orbit {
    top: 25%;
    right: -32vw;
    width: 90vw;
    height: 90vw;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    /* Platz für das schwebende Dock, damit „Nach oben“ bedienbar bleibt */
    padding-bottom: calc(2.2rem + 84px + env(safe-area-inset-bottom, 0px));
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }

  /* schwebendes Dock statt Vollbreiten-Leiste: Milchglas, feine Kontur,
     Abstand zum Rand; taucht nach den Hero-Kontaktbuttons auf (script.js) */
  .mobile-action-bar {
    position: fixed;
    right: 0.8rem;
    bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
    left: 0.8rem;
    z-index: 450;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
    padding: 0.3rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(30, 33, 38, 0.78);
    box-shadow: 0 18px 45px rgba(13, 16, 20, 0.35);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  /* ohne JavaScript bleibt das Dock einfach sichtbar */
  .js .mobile-action-bar {
    transform: translateY(calc(100% + 1.8rem));
    opacity: 0;
    transition: transform 0.55s var(--ease-out), opacity 0.4s;
  }

  .js .mobile-action-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.18rem;
    min-height: 56px;
    border-radius: 13px;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-action-bar a:active {
    background: rgba(255, 255, 255, 0.12);
  }

  /* Anrufen ist der Hauptkontaktweg und bekommt die Akzentfläche */
  .mobile-action-bar a:first-child {
    color: var(--white);
    background: var(--wine);
  }

  .mobile-action-bar svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-action-bar svg.icon-whatsapp {
    fill: currentColor;
    stroke: none;
  }

  .lightbox-dialog[open] {
    grid-template-columns: 1fr;
  }

  .lightbox-dialog figure {
    width: 92vw;
    height: 79dvh;
  }

  .lightbox-nav {
    position: fixed;
    bottom: 1.3rem;
  }

  .lightbox-prev {
    left: calc(50% - 62px);
  }

  .lightbox-next {
    right: calc(50% - 62px);
  }

  .lightbox-count {
    display: none;
  }

  .legal-dialog {
    width: calc(100vw - 1rem);
    max-height: 94dvh;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 19vw;
  }

  .hero-details {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero-details div + div {
    padding-top: 0.8rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .gallery-grid {
    grid-auto-rows: 62vw;
  }

  .gallery-item:nth-child(3n) {
    grid-column: auto;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .price-row span {
    display: none;
  }

  .price-row div {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: 1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 900;
  max-width: 26.5rem;
  margin-left: auto;
  padding: 1.35rem 1.5rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--paper-light);
  box-shadow: 0 18px 48px rgba(30, 33, 38, 0.18);
  animation: cookie-banner-in 0.45s var(--ease-out) both;
}

@keyframes cookie-banner-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--wine);
}

.cookie-banner p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-banner-actions button {
  flex: 1 1 auto;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.cookie-banner-accept {
  background: var(--ink);
  color: var(--white);
}

.cookie-banner-accept:hover,
.cookie-banner-accept:focus-visible {
  background: var(--ink-hover);
}

.cookie-banner-decline {
  background: transparent;
  color: var(--ink);
}

.cookie-banner-decline:hover,
.cookie-banner-decline:focus-visible {
  background: var(--paper-deep);
}

@media (max-width: 760px) {
  .cookie-banner {
    /* über der mobilen Schnellaktionsleiste bleiben */
    inset: auto 0.75rem calc(5.4rem + env(safe-area-inset-bottom, 0px)) 0.75rem;
    max-width: none;
  }
}

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

  .js [data-reveal],
  .js [data-reveal="image"] {
    clip-path: none;
    opacity: 1;
    transform: none;
  }
}
