/* ==========================================================================
   OMARI Event and Wedding Planner GmbH
   Stylesheet – Struktur & Look nach Vorbild vonaspern-weddings.de
   Selbst geschrieben, keine fremden Dateien kopiert.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Schriften
   Standardmäßig werden systemnahe Schriften genutzt (DSGVO-sicher, kein
   Google-Fonts-Aufruf). Wer die Original-Anmutung will: Cormorant Garamond +
   Jost bei Google Fonts herunterladen, als .woff2 in den Ordner /fonts legen
   und die folgenden vier Blöcke einkommentieren.
   -------------------------------------------------------------------------- */
/*
@font-face { font-family:'Cormorant Garamond'; src:url('../fonts/cormorant-garamond-400.woff2') format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'Cormorant Garamond'; src:url('../fonts/cormorant-garamond-600.woff2') format('woff2'); font-weight:600; font-display:swap; }
@font-face { font-family:'Jost'; src:url('../fonts/jost-300.woff2') format('woff2'); font-weight:300; font-display:swap; }
@font-face { font-family:'Jost'; src:url('../fonts/jost-500.woff2') format('woff2'); font-weight:500; font-display:swap; }
*/

/* --------------------------------------------------------------------------
   Design-Tokens
   -------------------------------------------------------------------------- */
:root {
  --white:        #ffffff;
  --cream:        #faf7f3;
  --beige:        #f2ece4;
  --beige-deep:   #e8dfd4;
  --line:         #ddd2c4;
  --ink:          #2b2724;
  --ink-soft:     #33302c;
  --muted:        #655d54;
  --accent:       #a8927a;
  --accent-dark:  #8a7460;

  --serif: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --sans:  'Jost', 'Avenir Next', 'Century Gothic', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap: 1240px;
  --wrap-narrow: 880px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --topbar-h: 42px;
  --nav-h: 88px;
}

/* --------------------------------------------------------------------------
   Intro / Preloader
   -------------------------------------------------------------------------- */
.intro { position: fixed; inset: 0; z-index: 9999; }
.intro.done { display: none; }

/* Zwei Hälften, die sich am Ende nach oben/unten öffnen */
.intro-panel { position: absolute; left: 0; right: 0; height: 50.5%; background: var(--cream); }
.intro-top    { top: 0;    animation: introPanelUp   1.15s var(--ease) 3s forwards; }
.intro-bottom { bottom: 0; animation: introPanelDown 1.15s var(--ease) 3s forwards; }

/* Emblem, Schriftzug + Linie mittig – nacheinander */
.intro-inner {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-content: center; justify-items: center; gap: 1.1rem;
  animation: introInnerOut .8s var(--ease) 3.7s forwards;
}
/* 1) Emblem zuerst */
.intro-mark {
  width: min(26vw, 108px);
  opacity: 0;
  transform: translateY(6px) scale(.82);
  animation: introMarkIn 1.3s var(--ease) .35s forwards;
}
/* 2) Schriftzug danach */
.intro-word {
  width: min(70vw, 420px);
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
  animation: introWordIn 1.2s var(--ease) 1.5s forwards;
}
/* 3) Goldlinie zuletzt */
.intro-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: introLine 1.3s var(--ease) 2.5s forwards;
}
@keyframes introMarkIn   { to { opacity: 1; transform: none; } }
@keyframes introWordIn   { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes introLine     { to { width: min(58vw, 320px); } }
@keyframes introInnerOut { to { opacity: 0; } }
@keyframes introPanelUp   { to { transform: translateY(-100%); } }
@keyframes introPanelDown { to { transform: translateY(100%); } }

/* Panels öffnen sich später (längere, aufwendigere Sequenz) */
.intro-top    { animation-delay: 4.2s; }
.intro-bottom { animation-delay: 4.2s; }

body.intro-lock { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .intro-mark, .intro-word { animation: none; opacity: 1; transform: none; filter: none; }
  .intro-line { animation: none; width: min(58vw, 320px); }
  .intro-inner { animation: introInnerOut .4s ease 1s forwards; }
  .intro-top, .intro-bottom { animation: introInnerOut .4s ease 1s forwards; }
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 10px);
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.05rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.25rem; }

p + p { margin-top: 1.05em; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 1.1rem;
}

.lead { font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   Layout-Helfer
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 3rem, var(--wrap-narrow)); margin-inline: auto; }

section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.sec-cream { background: var(--cream); }
.sec-beige { background: var(--beige); }

.sec-head { max-width: 780px; margin: 0 auto clamp(2.8rem, 5vw, 4.5rem); text-align: center; }
.sec-head h2 { margin-bottom: 1.1rem; }
.sec-head.left { margin-inline: 0; text-align: left; }

.center { text-align: center; }
.mt-l { margin-top: 2.5rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.15rem 2.4rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  text-align: center;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.btn-light { background: transparent; border-color: var(--white); color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn-sm { padding: .85rem 1.6rem; font-size: .7rem; }

.link-arrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--line);
  padding-bottom: .35rem;
  display: inline-block;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow::after { content: ' \2192'; }
.link-arrow:hover { color: var(--ink); border-color: var(--ink); }

/* --------------------------------------------------------------------------
   Topbar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  letter-spacing: .06em;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.topbar-info { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.topbar-info a:hover { color: var(--white); }
.topbar-social { display: flex; align-items: center; gap: 1.15rem; }
.topbar-social a { display: inline-flex; opacity: .82; transition: opacity .3s var(--ease); }
.topbar-social a:hover { opacity: 1; }
.topbar-social svg { width: 21px; height: 21px; fill: currentColor; }

@media (max-width: 900px) {
  .topbar { display: none; }
  :root { --topbar-h: 0px; }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(43,39,36,.07); }
.nav .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.nav-logo img { height: 56px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 2.1rem; }
.nav-menu > li > a,
.nav-menu > li > button {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .5rem 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .3s var(--ease);
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .35s var(--ease);
}
.nav-menu > li > a:hover::after { width: 100%; }
.nav-menu > li > a:hover,
.nav-menu > li > button:hover { color: var(--accent-dark); }

/* Dropdown */
.has-sub { position: relative; }
.has-sub > button::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s var(--ease);
}
.has-sub[aria-expanded='true'] > button::after { transform: rotate(-135deg) translateY(0); }

.sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 268px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: .6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  box-shadow: 0 18px 44px rgba(43,39,36,.10);
}
.has-sub:hover .sub,
.has-sub[aria-expanded='true'] .sub { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.sub a {
  display: block;
  padding: .72rem 1.5rem;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  transition: background .25s var(--ease), color .25s var(--ease), padding-left .25s var(--ease);
}
.sub a:hover { background: var(--cream); color: var(--ink); padding-left: 1.8rem; }

.nav-cta { flex-shrink: 0; }

.burger { display: none; width: 30px; height: 22px; position: relative; }
.burger span {
  position: absolute; left: 0;
  width: 100%; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  :root { --nav-h: 74px; }
  .burger { display: block; z-index: 110; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 2rem 1.75rem 4rem;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .4s var(--ease), visibility .4s var(--ease);
  }
  .nav-menu.open { transform: translateX(0); visibility: visible; }
  .nav-menu > li { border-bottom: 1px solid var(--line); }
  .nav-menu > li > a,
  .nav-menu > li > button { display: flex; justify-content: space-between; width: 100%; padding: 1.15rem 0; font-size: .85rem; }
  .nav-menu > li > a::after { display: none; }
  .sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    box-shadow: none;
    background: var(--cream);
    min-width: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
  }
  .has-sub[aria-expanded='true'] .sub { max-height: 340px; padding: .5rem 0; }
  .has-sub:hover .sub { max-height: 0; }
  .has-sub[aria-expanded='true']:hover .sub { max-height: 340px; }
  .nav-mobile-cta { display: block; margin-top: 2rem; }
}
@media (min-width: 1081px) { .nav-mobile-cta { display: none; } }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - var(--topbar-h));
  display: flex;
  align-items: center;
  padding: 6rem 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img,
.hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(26,23,20,.74) 0%, rgba(26,23,20,.40) 42%, rgba(26,23,20,.12) 100%),
    linear-gradient(180deg, rgba(26,23,20,.18) 0%, rgba(26,23,20,.15) 45%, rgba(26,23,20,.55) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 880px; }
.hero h1 { color: var(--white); margin-bottom: 1.6rem; }
.hero p { color: rgba(255,255,255,.9); font-size: 1.12rem; max-width: 640px; margin-bottom: 2.6rem; }
.hero .eyebrow { color: rgba(255,255,255,.78); }

.scroll-hint {
  position: absolute;
  left: 50%; bottom: 2.2rem;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(rgba(255,255,255,.7), transparent);
  animation: hint 2.2s var(--ease) infinite;
}
@keyframes hint { 0%,100% { opacity: .25; transform: scaleY(.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@media (max-width: 780px) { .scroll-hint { display: none; } }

/* --------------------------------------------------------------------------
   Split (Bild + Text)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.split-body h2 { margin-bottom: 1.4rem; }
.split-body h3 { color: var(--muted); font-style: italic; margin-bottom: 1.6rem; }
.split-body .btn { margin-top: 2.2rem; }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 4/5; }
}

/* Bildreihe „Einblicke in die Arbeit“ (Über mich) */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.work-grid figure { overflow: hidden; }
.work-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .8s var(--ease); }
.work-grid figure:hover img { transform: scale(1.05); }
@media (max-width: 760px) { .work-grid { grid-template-columns: 1fr 1fr; } }

/* Aufklappbarer Text + Aktionsreihe (Über mich) */
.more-text[hidden] { display: none; }
.split-actions { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; margin-top: 2.2rem; }
.more-toggle { background: none; cursor: pointer; }

/* --------------------------------------------------------------------------
   Cineastisches Video-Band
   -------------------------------------------------------------------------- */
.video-band {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.video-band-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,25,22,.82) 0%, rgba(28,25,22,.5) 45%, rgba(28,25,22,.25) 100%);
}
.video-band-overlay { position: relative; z-index: 2; width: 100%; padding: clamp(4rem, 8vw, 7rem) 0; }
.video-band-overlay .eyebrow { color: rgba(255,255,255,.8); }
.video-band-overlay h2 { color: var(--white); margin: .4rem 0 1.2rem; }
.video-band-overlay p { color: rgba(255,255,255,.9); max-width: 520px; margin-bottom: 2.2rem; }

/* --------------------------------------------------------------------------
   Zitat-Banner
   -------------------------------------------------------------------------- */
.quote {
  background: var(--beige);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.35;
  color: var(--ink);
  max-width: 900px;
  margin-inline: auto;
  font-style: italic;
}
.quote cite {
  display: block;
  margin-top: 1.8rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Galerie
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform .8s var(--ease); }
.gallery figure { overflow: hidden; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery .tall { grid-row: span 2; }
.gallery .tall img { aspect-ratio: 3/5; }

@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery .tall { grid-row: span 1; } .gallery .tall img { aspect-ratio: 3/4; } }

/* Bildstreifen */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.strip img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .8s var(--ease); }
.strip img:hover { transform: scale(1.03); }
@media (max-width: 760px) { .strip { grid-template-columns: repeat(2, 1fr); gap: .7rem; } }

/* Destination Weddings */
.destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 232px;
  gap: 1rem;
  grid-template-areas:
    "dubai dubai split"
    "dubai dubai split"
    "cesme como istanbul";
}
.d-dubai    { grid-area: dubai; }
.d-cesme    { grid-area: cesme; }
.d-como     { grid-area: como; }
.d-split    { grid-area: split; }
.d-istanbul { grid-area: istanbul; }

.destinations figure { position: relative; overflow: hidden; }
.destinations img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.destinations figure:hover img { transform: scale(1.06); }
.destinations figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,27,24,0) 42%, rgba(30,27,24,.62) 100%);
}
.destinations figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.2rem 1.4rem;
  color: var(--white);
  display: grid;
  gap: .15rem;
}
.dest-city { font-family: var(--serif); font-size: 1.6rem; line-height: 1; }
.dest-country { font-family: var(--sans); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; opacity: .9; }

@media (max-width: 760px) {
  .destinations {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
    grid-template-areas:
      "dubai dubai"
      "dubai dubai"
      "split cesme"
      "split como"
      "istanbul istanbul";
  }
}

/* Tags */
.tags { display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 4.5rem); flex-wrap: wrap; margin-top: 3rem; }
.tags li {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-style: italic;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   Leistungen
   -------------------------------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.service {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(43,39,36,.09); }
.service-media { overflow: hidden; }
.service-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s var(--ease); }
.service:hover .service-media img { transform: scale(1.06); }
.service-body { padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; flex: 1; }
.service-body h3 { margin-bottom: 1rem; }
.service-body p { flex: 1; font-size: .96rem; }
.service-body .link-arrow { margin-top: 1.8rem; align-self: flex-start; }

@media (max-width: 880px) { .services { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Karten-Raster (Gründe / USP)
   -------------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(2rem, 3.5vw, 2.9rem);
}
.card h3 { margin-bottom: .9rem; }
.card p { font-size: .96rem; }

@media (max-width: 900px) { .cards, .cards.three { grid-template-columns: 1fr; } }

/* Nummerierte Liste */
.numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.4rem); }
.number-item { border-top: 1px solid var(--line); padding-top: 1.8rem; }
.number-item .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.number-item h3 { font-size: 1.35rem; margin-bottom: .8rem; }
.number-item p { font-size: .94rem; }

@media (max-width: 980px) { .numbers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .numbers { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Prozess (3 Schritte)
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); counter-reset: step; }
.step { text-align: center; position: relative; }
.step .step-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.6rem);
  color: var(--beige-deep);
  line-height: 1;
  display: block;
  margin-bottom: .6rem;
}
.step h3 { margin-bottom: .9rem; }
.step p { font-size: .95rem; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Gründe mit Bild
   -------------------------------------------------------------------------- */
.reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.reason-media { overflow: hidden; margin-bottom: 1.6rem; }
.reason-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .8s var(--ease); }
.reason:hover .reason-media img { transform: scale(1.05); }
.reason h3 { margin-bottom: .8rem; }
.reason p { font-size: .96rem; }
@media (max-width: 880px) { .reasons { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Weitere Anlässe
   -------------------------------------------------------------------------- */
.occasions { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.occasion {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.occasion:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(43,39,36,.09); }
.occasion-media { overflow: hidden; }
.occasion-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s var(--ease); }
.occasion:hover .occasion-media img { transform: scale(1.06); }
.occasion-body { padding: clamp(1.6rem, 2.6vw, 2.2rem); }
.occasion-body h3 { margin-bottom: .8rem; }
.occasion-body p { font-size: .95rem; }
@media (max-width: 860px) { .occasions { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* --------------------------------------------------------------------------
   Love Notes / Testimonials
   -------------------------------------------------------------------------- */
.notes { position: relative; }
.notes-track { display: flex; overflow: hidden; }
.note {
  min-width: 100%;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.note.active { opacity: 1; }
.note-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.note-body p { font-size: 1.04rem; }
.note-body p + p { margin-top: 1em; }
.note-author {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
}
.note-author span { display: block; letter-spacing: .06em; text-transform: none; color: var(--muted); margin-top: .4rem; font-size: .82rem; }

.notes-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
.notes-nav button {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.notes-nav button:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.notes-dots { display: flex; gap: .55rem; }
.notes-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; padding: 0; transition: background .3s var(--ease), transform .3s var(--ease); }
.notes-dots button.active { background: var(--accent); transform: scale(1.4); }
.notes-dots button:hover { background: var(--accent); }

@media (max-width: 880px) {
  .note { grid-template-columns: 1fr; text-align: left; }
  .note-media { max-width: 260px; }
}

/* Platzhalter-Markierung */
.placeholder {
  border-left: 3px solid var(--accent);
  background: #fdf8f1;
  padding: .5rem .9rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-block;
  margin-bottom: 1.1rem;
}

/* --------------------------------------------------------------------------
   Terminbuchung
   -------------------------------------------------------------------------- */
.booking-box {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 640px;
  padding: 1rem;
}
.booking-fallback {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 600px;
  padding: 2rem;
  background: var(--cream);
}
.booking-fallback h3 { margin-bottom: 1rem; }
.booking-fallback p { max-width: 480px; margin-inline: auto; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 900px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.9vw, 1.42rem);
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--accent-dark); }
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform .35s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 0 1.9rem; max-width: 760px; }

/* --------------------------------------------------------------------------
   Kontakt
   -------------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2.5rem, 6vw, 5.5rem); }
.contact-info h2 { margin-bottom: 1.4rem; }
.contact-list { margin-top: 2.6rem; display: grid; gap: 1.6rem; }
.contact-list li { display: grid; gap: .3rem; }
.contact-list .label {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact-list .value { font-size: 1.02rem; color: var(--ink); }
.contact-list a.value:hover { color: var(--accent-dark); }

.form { display: grid; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { display: grid; gap: .5rem; }
.field label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: .98rem;
  padding: .95rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  width: 100%;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168,146,122,.13);
}
.field-check { display: flex; align-items: flex-start; gap: .75rem; }
.field-check input { width: 18px; height: 18px; flex-shrink: 0; margin-top: .25rem; padding: 0; }
.field-check label { font-size: .84rem; letter-spacing: 0; text-transform: none; color: var(--ink-soft); line-height: 1.6; }
.field-check a { text-decoration: underline; text-underline-offset: 3px; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-msg { font-size: .92rem; padding: 1rem 1.2rem; border-radius: var(--radius); display: none; }
.form-msg.ok { display: block; background: #eef4ee; color: #2f5d3a; border: 1px solid #cfe3d2; }
.form-msg.err { display: block; background: #fbeeee; color: #8a3a3a; border: 1px solid #eecfcf; }

@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Instagram
   -------------------------------------------------------------------------- */
.insta { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.insta-avatar img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.insta-body h3 { margin-bottom: .3rem; }
.insta-handle { color: var(--ink); font-size: .9rem; letter-spacing: .1em; }
.insta-body .btn { margin-top: 1.2rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255,255,255,.68); padding: clamp(4rem, 7vw, 6rem) 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
.footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.footer-logo img { height: 58px; width: auto; margin-bottom: 1.8rem; }
.footer p { font-size: .93rem; max-width: 420px; }
.footer li { margin-bottom: .8rem; font-size: .93rem; }
.footer a { transition: color .3s var(--ease); }
.footer a:hover { color: var(--white); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.6rem; }
.footer-social a {
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.footer-social a:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }

.footer-bottom {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(255,255,255,.13);
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .82rem;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Rechtsseiten (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */
.legal { padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.legal h1 { margin-bottom: 2.5rem; }
.legal h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); margin: 3rem 0 1rem; }
.legal h3 { font-size: 1.2rem; margin: 2rem 0 .7rem; }
.legal p, .legal li { font-size: .98rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin: 1rem 0; }
.legal li { margin-bottom: .5rem; }
.legal a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal .note {
  background: var(--cream);
  border-left: 3px solid var(--accent);
  padding: 1.3rem 1.6rem;
  margin: 2rem 0;
  font-size: .92rem;
}

/* --------------------------------------------------------------------------
   Scroll-Animation
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Cookie-Banner */
.cookie {
  position: fixed;
  left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
  z-index: 200;
  max-width: 520px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(43,39,36,.16);
  padding: 1.6rem 1.8rem;
  display: none;
}
.cookie.show { display: block; }
.cookie p { font-size: .88rem; margin-bottom: 1.2rem; }
.cookie-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
