/* Dianova – Stylesheet
   Erzeugt aus der Entwurfsfassung. Farben und Masse stehen als Variablen
   ganz oben im :root-Block – dort anpassen, nicht weiter unten suchen. */

*, *::before, *::after{ box-sizing: border-box; }
img, svg, video{ max-width: 100%; height: auto; }
[hidden]{ display: none !important; }
/* ============================================================
   DIANOVA — Diana Hamza, Waldeckweg 19, 3053 Münchenbuchsee
   Einfarbig-warme Palette. Bogenform als Signatur.
   Farben und Masse stehen gesammelt im :root-Block.
   ============================================================ */

:root{
  color-scheme: light;

  /* Tiefschwarz, Reinweiss und Grauton stammen aus den Druckdaten der
     Visitenkarte. Die Beigetoene liegen als Flaechen darueber. */
  --paper:   #FBFAF7;
  --linen:   #F2EDE4;
  --shell:   #EAE3D7;
  --sand:    #DCD2C2;
  --clay:    #948C7C;
  --mocha:   #6A6353;
  --text:    #4A4437;   /* Fliesstext: weicher als Tiefschwarz, klarer als der Grauton */
  --akzent:  #5A5243;   /* betontes Wort in Ueberschriften */
  --ink:     #16140F;

  --rule:    rgba(22, 20, 15, .16);
  --rule-soft: rgba(22, 20, 15, .09);

  --shadow-soft: 0 28px 60px -38px rgba(30,27,20,.42), 0 4px 14px -8px rgba(30,27,20,.13);
  --shadow-lift: 0 40px 80px -44px rgba(30,27,20,.52), 0 6px 18px -10px rgba(30,27,20,.15);

  --display: "Italiana", "Cormorant Garamond", Didot, "Bodoni MT", Georgia, serif;
  --sans: "Outfit", "Jost", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;

  --arch: 46% 46% 12px 12px / 34% 34% 12px 12px;
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

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

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.03rem, .32vw + .96rem, 1.12rem);
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Italiana gibt es nur in einem Schnitt und ohne Kursive. Betonungen
   laufen deshalb ueber Farbe, nicht ueber Neigung. */
h1,h2,h3{
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
  line-height: 1.12;
  letter-spacing: .012em;
}

/* Italiana hat nur einen Schnitt und sehr feine Striche - ohne Hilfe wiegt
   eine Ueberschrift darin weniger als der Fliesstext darunter, die Rangfolge
   steht auf dem Kopf. Eine schmale Konturlinie verdickt die Striche
   gleichmaessig, ohne die Buchstabenform anzutasten. */
.h2, .hero__sub, .diana__name, .diana__quote, .panel__big,
.cta h2, .legal h1, .legal__body h2, .notfound .num{
  -webkit-text-stroke: .55px currentColor;
  letter-spacing: -.004em;
}
@media (max-width: 700px){
  .h2, .hero__sub, .diana__name, .diana__quote, .panel__big,
  .cta h2, .legal h1, .legal__body h2, .notfound .num{
    -webkit-text-stroke: .4px currentColor;
  }
}

/* Italiana ist eine Didone: gross grossartig, klein schwer lesbar.
   Alles Kleine und alle Zahlen laufen deshalb in Outfit. */
.service h3, .pricelist h3, .steps h3, .panel h3{
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .004em;
  line-height: 1.3;
}
p{ margin: 0; }
a{ color: inherit; }

:focus-visible{ outline: 2px solid var(--mocha); outline-offset: 3px; border-radius: 3px; }

.skip{
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip:focus{ left: 0; }

/* ---------- Hintergrund: fliegende Haare ---------------------- */

#hairfield{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 78% 6%, rgba(220,210,194,.55) 0%, rgba(220,210,194,0) 58%),
    radial-gradient(90% 70% at 8% 92%, rgba(234,227,215,.7) 0%, rgba(234,227,215,0) 60%);
}

.page{ position: relative; z-index: 1; }

/* ---------- Grundraster ---------------------------------------- */

.wrap{
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Die Flächen sind absichtlich durchlässig: so treiben die Haarsträhnen
   hinter der ganzen Seite und nicht nur hinter dem Hero. */
.section{ padding-block: clamp(72px, 9vw, 132px); position: relative; }
.section--paper{ background: rgba(251,250,247,.58); }
.section--linen{ background: rgba(238,232,222,.64); }
.section--edge{ border-top: 1px solid var(--rule-soft); }

.eyebrow{
  font-size: .72rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}
.eyebrow::after{
  content: "";
  height: 1px;
  flex: 1 1 auto;
  max-width: 84px;
  background: linear-gradient(90deg, var(--rule), transparent);
}

.h2{ font-size: clamp(2.05rem, 4.4vw, 3.35rem); }
.h2 em{ font-style: normal; color: var(--akzent); }

.lede{
  color: var(--text);
  max-width: 58ch;
  font-size: clamp(1.03rem, .5vw + .92rem, 1.16rem);
}

/* ---------- Kopfzeile ------------------------------------------ */

.topbar{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251,250,247,.74);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, background .4s ease;
}
.topbar[data-scrolled="true"]{
  border-bottom-color: var(--rule-soft);
  background: rgba(251,250,247,.92);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}
/* Der Schriftzug ist das Originallogo als Vektor – gleiche Datei wie auf
   der Visitenkarte, deshalb immer randscharf. */
.brand{ display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
.brand svg{ display: block; width: clamp(124px, 13vw, 164px); height: auto; }

.vh{
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.nav{ display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.nav a{
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mocha);
  padding-block: 6px;
  position: relative;
}
.nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22,.8,.3,1);
}
.nav a:hover::after, .nav a:focus-visible::after{ transform: scaleX(1); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background .4s ease, color .4s ease, transform .4s ease, border-color .4s ease;
}
.btn:hover{ background: var(--mocha); border-color: var(--mocha); transform: translateY(-2px); }
.btn--ghost{ background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--light{ background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover{ background: var(--linen); border-color: var(--linen); color: var(--ink); }
.btn--sm{ padding: 12px 22px; font-size: .74rem; }

.navtoggle{
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.navtoggle span{ display: block; width: 17px; height: 1px; background: var(--ink); position: relative; }
.navtoggle span::before, .navtoggle span::after{
  content: ""; position: absolute; left: 0; width: 17px; height: 1px; background: var(--ink);
}
.navtoggle span::before{ top: -5px; }
.navtoggle span::after{ top: 5px; }

.mobilenav{ display: none; }

@media (max-width: 960px){
  .nav, .topbar .btn{ display: none; }
  .navtoggle{ display: inline-flex; }
  .mobilenav{
    display: block;
    border-top: 1px solid var(--rule-soft);
    background: rgba(251,250,247,.97);
  }
  .mobilenav[hidden]{ display: none; }
  .mobilenav ul{ list-style: none; margin: 0; padding: 14px 0 26px; }
  .mobilenav a{
    display: block;
    padding: 12px 0;
    text-decoration: none;
    font-size: .95rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--rule-soft);
  }
  .mobilenav .btn{ margin-top: 20px; width: 100%; }
}

/* ---------- Hero ------------------------------------------------ */

.hero{ position: relative; padding-block: clamp(52px, 8vw, 96px) clamp(40px, 6vw, 76px); }
.hero__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
  margin-top: clamp(24px, 3.4vw, 44px);
  padding-top: clamp(24px, 3.4vw, 40px);
  border-top: 1px solid var(--rule-soft);
}
.hero__mark{ margin: 0; color: var(--ink); display: block; }
.hero__mono{
  display: block;
  width: clamp(76px, 10.5vw, 124px);
  height: auto;
  margin-bottom: clamp(18px, 2.6vw, 34px);
}
.hero__wort{ display: block; width: 100%; max-width: 900px; height: auto; }
.hero__sub{
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.25;
  color: var(--akzent);
  margin: 0 0 20px;
  max-width: 20ch;
}
.hero__text{ max-width: 46ch; color: var(--text); }
.hero__actions{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta{
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
}
.hero__figure{ position: relative; }
.hero__figure .frame{ aspect-ratio: 4 / 4.3; }

/* Ladebewegung: nur Verschiebung, nie Transparenz – die Seite ist ab der
   ersten Sekunde vollständig lesbar. */
.rise{ animation: rise 1s cubic-bezier(.22,.8,.3,1) both; }
.rise--2{ animation-delay: .08s; }
.rise--3{ animation-delay: .16s; }
.rise--4{ animation-delay: .24s; }
@keyframes rise{ from{ transform: translateY(16px); } to{ transform: none; } }

/* ---------- Bildrahmen / Platzhalter ---------------------------- */

.frame{
  position: relative;
  overflow: hidden;
  background-color: var(--shell);
  box-shadow: var(--shadow-soft);
  --ph:
    radial-gradient(120% 90% at 28% 10%, rgba(252,251,248,.92) 0%, rgba(252,251,248,0) 52%),
    linear-gradient(152deg, #EFE9DE 0%, #DBD0BE 48%, #C7BAA4 100%);
}
/* Das Bild liegt im ::before und fährt langsam durch den Rahmen –
   eine ruhige Kamerafahrt statt eines Standbilds. */
.frame::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--src, none), var(--ph);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  transform: scale(1.08);
  animation: kenburns 42s ease-in-out infinite alternate;
}
@keyframes kenburns{
  from{ transform: scale(1.06) translate3d(-1.3%, 1%, 0); }
  to  { transform: scale(1.13) translate3d(1.5%, -1.2%, 0); }
}
.hero__figure  .frame::before{ animation-delay: -5s;  animation-duration: 48s; }
.about__figure .frame::before{ animation-delay: -17s; animation-duration: 52s; }
/* Ein Porträt vertraegt weniger Kamerafahrt als ein Raumbild –
   das Gesicht soll ruhig stehen. */
.diana__figure .frame::before{
  animation-name: kenburns-portraet;
  animation-duration: 52s;
  animation-delay: -29s;
}
@keyframes kenburns-portraet{
  from{ transform: scale(1.02) translate3d(-.5%, .4%, 0); }
  to  { transform: scale(1.055) translate3d(.6%, -.6%, 0); }
}
.wedding__figure .frame::before{ animation-delay: -11s; animation-duration: 56s; }

.frame::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, transparent 44%, rgba(255,255,255,.34) 50%, transparent 56%),
    linear-gradient(74deg, transparent 61%, rgba(140,114,86,.09) 65%, transparent 69%);
  pointer-events: none;
}
.frame--arch{ border-radius: var(--arch); }
.frame--soft{ border-radius: 18px; }

/* ---------- Laufband ------------------------------------------- */

.ticker{
  border-block: 1px solid var(--rule-soft);
  background: rgba(238,232,222,.58);
  overflow: hidden;
  padding-block: 15px;
}
.ticker__track{ display: flex; width: max-content; animation: slide 46s linear infinite; }
.ticker__group{ display: flex; align-items: center; }
.ticker span{
  font-family: var(--display);
  font-size: clamp(.92rem, 1.15vw, 1.08rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  padding-inline: clamp(18px, 2.4vw, 34px);
  white-space: nowrap;
}
.ticker i{ font-style: normal; color: var(--sand); }
@keyframes slide{ from{ transform: translate3d(0,0,0); } to{ transform: translate3d(-50%,0,0); } }
@media (prefers-reduced-motion: reduce){ .ticker__track{ animation: none; } }

/* ---------- Salon und Diana ------------------------------------- */

.about{
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.about__figure .frame{ aspect-ratio: 4 / 4.8; }
.about__body p + p{ margin-top: 18px; }
.about__facts{
  list-style: none;
  margin: 40px 0 0;
  padding: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
  border-top: 1px solid var(--rule-soft);
}
.about__facts .k{
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 6px;
}
.about__facts .v{
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  color: var(--ink);
  line-height: 1.35;
}

.diana{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.diana__figure .frame{ aspect-ratio: 4 / 4.6; }
.diana__name{ font-size: clamp(2rem, 4vw, 3rem); margin-top: 4px; }
.diana__role{
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 12px;
}
.diana__body p + p{ margin-top: 18px; }
.diana__quote{
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  line-height: 1.45;
  color: var(--akzent);
  margin-top: 28px;
  padding-left: 22px;
  border-left: 1px solid var(--sand);
  max-width: 34ch;
}

/* ---------- Leistungen ------------------------------------------ */

/* 300px als Mindestbreite ergibt bei der Seitenbreite hoechstens drei
   Spalten - so gehen die sechs Karten immer glatt auf und es bleibt kein
   leeres Rasterfeld stehen, durch das die Trennfarbe scheint. */
.services{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  border-radius: 20px;
  overflow: hidden;
  margin-top: clamp(38px, 5vw, 58px);
}
.service{
  background: rgba(251,250,247,.80);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .45s ease;
}
.service:hover{ background: rgba(251,250,247,.95); }
.service svg{ width: 34px; height: 34px; color: var(--mocha); }
.service h3{ font-size: clamp(1.16rem, 1.35vw, 1.3rem); }
.service p{ color: var(--text); font-size: 1rem; line-height: 1.68; }
.service__foot{
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clay);
  font-variant-numeric: tabular-nums;
}
.service__foot span{ min-width: 0; }
.service__foot b{ color: var(--ink); font-weight: 400; white-space: nowrap; }

/* ---------- Preislisten ----------------------------------------- */

.prices{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(34px, 5vw, 70px);
  margin-top: clamp(38px, 5vw, 56px);
  align-items: start;
}
.pricecol{ display: flex; flex-direction: column; gap: clamp(34px, 4vw, 46px); }
.pricelist h3{
  font-size: 1.24rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 8px;
}
.pricelist ul{ list-style: none; margin: 0; padding: 0; }
.pricelist li{
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-block: 13px;
  border-bottom: 1px solid var(--rule-soft);
}
.pricelist .name{ flex: 0 1 auto; }
.pricelist .name small{
  display: block;
  font-size: .86rem;
  letter-spacing: .005em;
  color: var(--mocha);
  text-transform: none;
  line-height: 1.55;
}
.pricelist .dots{
  flex: 1 1 auto;
  height: 1px;
  min-width: 18px;
  align-self: baseline;
  background-image: radial-gradient(circle, var(--sand) 1px, transparent 1.3px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
}
.pricelist .amt{
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
}
.pricelist .amt em{ font-style: normal; font-weight: 400; font-size: .8em; color: var(--clay); margin-right: 4px; }
.pricenote{ margin-top: 34px; font-size: .92rem; color: var(--clay); max-width: 66ch; }
.pricenote li{ margin-top: 6px; }
.pricenote ul{ padding-left: 18px; margin: 8px 0 0; }

/* ---------- Hochzeit -------------------------------------------- */

.wedding__intro{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(34px, 4vw, 50px);
}
.wedding__figure .frame{ aspect-ratio: 4 / 3.4; }

.steps{
  list-style: none;
  margin: clamp(38px, 5vw, 58px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  border-radius: 20px;
  overflow: hidden;
}
.steps li{ background: rgba(251,250,247,.80); padding: clamp(24px, 2.6vw, 34px); }
.steps .when{
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
}
.steps h3{ font-size: 1.2rem; margin-top: 10px; }
.steps p{ color: var(--text); font-size: 1rem; margin-top: 10px; }
.steps .from{
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* Anfahrtszonen: Ringdiagramm plus Tabelle */
.zones{
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(30px, 4.5vw, 64px);
  align-items: center;
  margin-top: clamp(34px, 4vw, 48px);
}
.radius{
  --ring: rgba(110,90,71,.22);
  --dot: #7C7565;
  width: 100%;
  height: auto;
  display: block;
}
.radius .rk{
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  fill: #948C7C;
  text-anchor: middle;
}
.radius .ro{
  font-family: "Jost", sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
  fill: #6A6353;
}
.radius .here{ font-family: "Jost", sans-serif; font-size: 12px; letter-spacing: .18em; fill: #16140F; text-anchor: middle; }
.radius .puls{ transform-box: fill-box; transform-origin: center; animation: puls 3.6s ease-out infinite; }
@keyframes puls{
  0%{ transform: scale(.3); opacity: .45; }
  70%{ opacity: 0; }
  100%{ transform: scale(1.7); opacity: 0; }
}
.radius__caption{ margin-top: 10px; font-size: .8rem; color: var(--clay); text-align: center; }

.zonetable{ width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.zonetable caption{
  text-align: left;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  padding-bottom: 14px;
}
.zonetable th, .zonetable td{
  text-align: left;
  padding-block: 12px;
  border-bottom: 1px solid var(--rule-soft);
  font-weight: 300;
}
.zonetable thead th{
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
  border-bottom-color: var(--rule);
}
.zonetable thead th:last-child{ text-align: right; }
.zonetable tbody td:last-child{ text-align: right; font-family: var(--sans); font-weight: 500; font-size: 1.06rem; color: var(--ink); }
.zonetable tr[data-frei="true"] td:last-child{ color: var(--mocha); }

/* Mehrspaltiger Textfluss statt Raster: die Hinweise sind unterschiedlich
   lang und würden im Raster grosse Lücken reissen. */
.hinweise{
  margin-top: clamp(38px, 5vw, 56px);
  padding: 28px 0 0;
  border-top: 1px solid var(--rule-soft);
  list-style: none;
  columns: 310px 3;
  column-gap: clamp(28px, 3.5vw, 52px);
}
.hinweise li{
  color: var(--text);
  font-size: 1rem;
  line-height: 1.66;
  padding-left: 20px;
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
}
.hinweise li::before{
  content: "";
  position: absolute;
  left: 2px; top: .72em;
  width: 6px; height: 1px;
  background: var(--sand);
}
.offerte{
  margin-top: clamp(34px, 4vw, 48px);
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--rule-soft);
  border-radius: 20px;
  background: rgba(251,250,247,.80);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
.offerte p{ font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.6rem); max-width: 40ch; }

/* ---------- Kontakt --------------------------------------------- */

.visit{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 4.5vw, 64px);
  margin-top: clamp(38px, 5vw, 56px);
  align-items: start;
}
.panel{
  background: rgba(251,250,247,.82);
  border: 1px solid var(--rule-soft);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 38px);
}
.panel h3{ font-size: 1.22rem; margin-bottom: 4px; }
.panel__big{
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-top: 14px;
}
.panel__note{ margin-top: 14px; color: var(--text); font-size: 1rem; }

.contact dl{ margin: 24px 0 0; }
.contact .row{
  display: flex;
  gap: 18px;
  padding-block: 14px;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
}
.contact .row:last-of-type{ border-bottom: 0; }
.contact dt{
  flex: 0 0 92px;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
}
.contact dd{ margin: 0; flex: 1 1 auto; }
.contact dd a{ text-decoration: none; border-bottom: 1px solid var(--sand); padding-bottom: 2px; }
.contact dd a:hover{ border-bottom-color: var(--ink); }

/* Lageskizze */
.karte{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  aspect-ratio: 400 / 260;
  background: linear-gradient(158deg, #F1EDE4 0%, #E7E0D2 58%, #DCD4C3 100%);
}
.karte svg{ position: absolute; inset: 0; width: 100%; height: 100%; }
.karte .kl{
  font-family: "Jost", sans-serif;
  font-size: 9px;
  letter-spacing: .14em;
  fill: #8A8272;
  text-transform: uppercase;
}
.routen{ margin-top: 26px; }
.routen dt{
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 18px;
}
.routen dd{ margin: 6px 0 0; color: var(--text); font-size: 1rem; }

/* ---------- Terminband ------------------------------------------- */

.cta{
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #35312A 0%, #201E17 58%, #16140F 100%);
  color: var(--linen);
  text-align: center;
}
.cta canvas{ position: absolute; inset: 0; width: 100%; height: 100%; }
.cta__inner{ position: relative; z-index: 1; }
.cta h2{ font-size: clamp(2rem, 4.6vw, 3.4rem); color: #F8F5EE; }
.cta h2 em{ font-style: normal; color: #DCD2BC; }
.cta p{ color: rgba(243,236,226,.74); margin: 20px auto 0; max-width: 52ch; }
.cta .actions{ display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.cta .btn--ghost{ color: #F2EDE4; border-color: rgba(243,236,226,.42); }
.cta .btn--ghost:hover{ color: #fff; border-color: rgba(243,236,226,.9); }
.cta .eyebrow{ color: rgba(243,236,226,.62); justify-content: center; }
.cta .eyebrow::after{ display: none; }

/* ---------- Fusszeile -------------------------------------------- */

.footer{
  background: rgba(234,227,215,.74);
  border-top: 1px solid var(--rule-soft);
  padding-block: clamp(48px, 6vw, 76px) 28px;
}
.footer__top{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 34px;
}
.footer .brand svg{ width: clamp(118px, 12vw, 148px); }
.footer h4{
  font-family: var(--sans);
  font-weight: 400;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 14px;
}
.footer ul{ list-style: none; margin: 0; padding: 0; }
.footer li{ padding-block: 5px; }
.footer a{ text-decoration: none; color: var(--mocha); }
.footer a:hover{ color: var(--ink); }
.footer__bottom{
  margin-top: clamp(34px, 4vw, 54px);
  padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--clay);
}

/* ---------- Solange noch keine Fotos da sind ----------------------
   Hero, Salon und Hochzeit laufen einspaltig, ihre leeren Rahmen sind
   abgeschaltet. Das Markup steht unveraendert da: Kommen die Fotos in
   den Ordner bilder/, genuegt es, diesen einen Block zu loeschen.
   ------------------------------------------------------------------ */

.hero__figure,
.about__figure,
.wedding__figure{ display: none; }

.hero__grid,
.about,
.wedding__intro{ grid-template-columns: minmax(0, 1fr); }

/* Ohne Bildspalte darf die Ueberschrift etwas mehr Raum nehmen. */
.about .h2, .wedding__intro + .steps{ margin-top: 0; }
.about__body .lede, .wedding__intro .lede{ max-width: 54ch; }

/* ---------- Responsiv -------------------------------------------- */

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; align-items: start; }
  .hero__figure{ max-width: 420px; }
  .about, .diana, .wedding__intro, .zones{ grid-template-columns: 1fr; }
  .about__figure, .wedding__figure{ max-width: 460px; }
  .diana{ grid-template-columns: 1fr; }
  .diana__figure{ max-width: 420px; order: -1; }
}
@media (max-width: 720px){
  .about__facts{ grid-template-columns: 1fr; gap: 16px; }
  .hero__meta{ flex-direction: column; gap: 6px; }
  .offerte{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px){
  .contact dt{ flex-basis: 76px; }
}


/* ---------- Rechtstexte (Impressum, Datenschutz, 404) ------------ */

.legal{ padding-block: clamp(52px, 7vw, 104px) clamp(64px, 8vw, 120px); }
.legal h1{ font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
.legal__lead{ margin-top: 18px; max-width: 62ch; color: var(--mocha); font-size: 1.08rem; }
.legal__body{ max-width: 68ch; margin-top: clamp(30px, 4vw, 48px); }
.legal__body h2{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  margin-top: 46px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule-soft);
}
.legal__body h2:first-child{ margin-top: 0; }
.legal__body h3{
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: .02em;
  margin-top: 26px;
}
.legal__body p, .legal__body ul, .legal__body ol{ margin-top: 14px; color: var(--mocha); }
.legal__body ul, .legal__body ol{ padding-left: 20px; }
.legal__body li{ margin-top: 7px; }
.legal__body a{ color: var(--ink); text-underline-offset: 3px; }
.legal__body address{ font-style: normal; margin-top: 14px; color: var(--mocha); }
.todo{
  background: rgba(226,212,194,.55);
  border-radius: 4px;
  padding: 1px 7px;
  color: var(--ink);
  font-size: .94em;
  white-space: nowrap;
}
.legal__updated{
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-soft);
  font-size: .85rem;
  color: var(--clay);
}
.legal__back{ margin-top: 34px; }

/* 404 */
.notfound{ text-align: left; padding-block: clamp(80px, 12vw, 160px); }
.notfound .num{
  font-family: var(--display);
  font-size: clamp(4.5rem, 16vw, 11rem);
  line-height: .9;
  letter-spacing: .04em;
  color: var(--sand);
}
