/* ============================================================
   FOTOECKE — Design System
   Dunkel & luxuriös · Champagner-Gold · Playfair + Inter
   Self-hosted fonts, keine externen Requests (DSGVO)
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/playfair-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/playfair-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/playfair-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/baloo2-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal; font-weight: 800; font-display: swap;
  src: url('../fonts/baloo2-800.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  /* Surfaces — warm near-black, never #000 */
  --bg:            oklch(0.145 0.008 66);
  --bg-deep:       oklch(0.118 0.008 66);
  --surface:       oklch(0.185 0.010 68);
  --surface-2:     oklch(0.225 0.012 70);

  /* Champagner-Gold — the committed accent */
  --gold:          oklch(0.820 0.095 86);
  --gold-soft:     oklch(0.760 0.080 82);
  --gold-deep:     oklch(0.640 0.070 78);
  --gold-glow:     oklch(0.820 0.095 86 / 0.14);

  /* Ink — warm off-whites */
  --ink:           oklch(0.960 0.008 84);
  --ink-muted:     oklch(0.760 0.014 78);
  --ink-faint:     oklch(0.585 0.012 74);

  /* Lines */
  --line:          oklch(0.320 0.012 72);
  --line-soft:     oklch(0.260 0.010 70);
  --line-gold:     oklch(0.820 0.095 86 / 0.32);

  /* Type */
  --serif: 'Playfair Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Rhythm */
  --pad-x: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1220px;
  --maxw-text: 62ch;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);      /* ease-out-quint-ish */
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Subtle film grain for luxe texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 1; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--bg-deep); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(4.5rem, 11vw, 9rem); position: relative; z-index: 2; }
.section--tight { padding-block: clamp(3rem, 7vw, 5.5rem); }

/* Eyebrow / overline label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-soft);
}
.eyebrow::before {
  content: ""; width: 2rem; height: 1px;
  background: var(--line-gold);
}
.eyebrow--center::after {
  content: ""; width: 2rem; height: 1px; background: var(--line-gold);
}
.eyebrow--center { justify-content: center; }

/* Headings */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; }
.display {
  font-size: clamp(2.9rem, 1.6rem + 6vw, 6.4rem);
  font-weight: 600; line-height: 0.98; letter-spacing: -0.028em;
}
.h2 { font-size: clamp(2rem, 1.3rem + 3vw, 3.6rem); }
.h3 { font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.9rem); }
.lead { font-size: clamp(1.1rem, 1.02rem + 0.4vw, 1.3rem); color: var(--ink-muted); max-width: 52ch; }
.italic-gold { font-style: italic; color: var(--gold); }

.measure { max-width: var(--maxw-text); }
.muted { color: var(--ink-muted); }
.faint { color: var(--ink-faint); }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad: 1rem 1.9rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: var(--btn-pad);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em;
  border-radius: 2px;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--gold {
  background: var(--gold); color: oklch(0.20 0.02 70);
  font-weight: 600;
}
.btn--gold:hover { background: var(--ink); }
.btn--ghost {
  border: 1px solid var(--line); color: var(--ink);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn__arrow { transition: transform 0.5s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Text link with underline sweep */
.tlink {
  position: relative; color: var(--gold); font-weight: 500;
  padding-bottom: 2px;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: oklch(0.130 0.008 66 / 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand {
  font-family: 'Baloo 2', system-ui, sans-serif; font-size: 1.6rem; font-weight: 800;
  letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 0.1em;
  line-height: 1; color: var(--ink);
}
.brand__txt { position: relative; top: -0.04em; }
.brand__lens { display: inline-flex; align-items: center; }
.brand__lens svg { width: 1.02em; height: 1.02em; display: block; }
.brand .dot { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.88rem; color: var(--ink-muted); letter-spacing: 0.01em;
  transition: color 0.3s var(--ease); position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: inline-flex; align-items: center; gap: 1.4rem; }
.nav-phone { font-size: 0.88rem; color: var(--ink-muted); }
.nav-phone strong { color: var(--gold); font-weight: 600; }

.nav-toggle { display: none; position: relative; z-index: 60; width: 48px; height: 48px; margin-right: -8px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; -webkit-tap-highlight-color: transparent; }
.nav-toggle span { display: block; width: 26px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.45s var(--ease), opacity 0.25s var(--ease); transform-origin: center; }
.nav-toggle span:nth-child(2) { width: 20px; align-self: center; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta > .btn { display: none; }
  .nav-cta { gap: 0; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .nav { height: 68px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: var(--bg-deep);
  flex-direction: column; justify-content: center; align-items: center; gap: 1.6rem;
  transform: translateY(-100%); transition: transform 0.6s var(--ease);
  display: none;
}
.mobile-menu.is-open { transform: translateY(0); }
.mm-link { font-family: var(--serif); font-size: clamp(1.6rem, 7vw, 2rem); color: var(--ink); transition: color 0.3s var(--ease); }
.mm-link:hover, .mm-link:active { color: var(--gold); }
.mm-cta { margin-top: 1.4rem; font-size: 1rem; padding: 1rem 2.2rem; }
.mm-phone { font-family: var(--sans); font-size: 1.05rem; color: var(--ink-muted); letter-spacing: 0.03em; }
.mm-phone:hover { color: var(--gold); }
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 78px; overflow: hidden;
}
.hero__glow {
  position: absolute; z-index: 0; inset: 0;
  background:
    radial-gradient(60% 55% at 72% 18%, var(--gold-glow), transparent 62%),
    radial-gradient(70% 60% at 12% 92%, oklch(0.30 0.03 60 / 0.5), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 1.8rem; }
.hero__title { margin-bottom: 1.6rem; }
.hero__title .line { display: block; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lead { margin-bottom: 2.4rem; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__meta {
  margin-top: 3.2rem; display: flex; gap: 2.6rem; flex-wrap: wrap;
  border-top: 1px solid var(--line-soft); padding-top: 1.8rem;
}
.hero__meta .stat { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__meta .stat b { font-family: var(--serif); font-size: 1.8rem; color: var(--gold); font-weight: 600; }
.hero__meta .stat span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }

/* Hero visual — layered frame with 'photostrip' */
.hero__visual { position: relative; aspect-ratio: 4 / 5; }
.frame {
  position: absolute; inset: 0;
  border: 1px solid var(--line-gold);
  border-radius: 3px;
  overflow: hidden;
  background:
    linear-gradient(150deg, oklch(0.24 0.02 70) 0%, oklch(0.16 0.012 66) 55%, oklch(0.20 0.03 60) 100%);
}
.frame::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, transparent 30%, oklch(0.12 0.01 66 / 0.55)), radial-gradient(80% 60% at 50% 20%, var(--gold-glow), transparent 70%);
}
.frame__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: saturate(0.96) brightness(0.9) contrast(1.02); }
.frame__label {
  position: absolute; bottom: 1.4rem; left: 1.6rem; z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft);
}
.frame__mark {
  position: absolute; top: 1.4rem; right: 1.6rem; z-index: 2;
  font-family: var(--serif); font-style: italic; color: var(--ink); opacity: 0.8;
}
.photostrip {
  position: absolute; z-index: 4; right: -8%; bottom: -6%;
  width: 34%; rotate: 5deg;
  background: var(--ink); padding: 0.5rem 0.5rem 1.6rem;
  border-radius: 2px;
  box-shadow: 0 30px 60px -20px oklch(0 0 0 / 0.7);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.photostrip .cell {
  aspect-ratio: 1; border-radius: 1px;
  background: linear-gradient(135deg, oklch(0.55 0.06 70), oklch(0.32 0.03 60));
  background-size: cover; background-position: center;
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { min-height: auto; padding-block: 8rem 5rem; }
}

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.strip {
  border-block: 1px solid var(--line-soft);
  padding-block: 1.4rem; overflow: hidden;
  display: flex; gap: 3.5rem; align-items: center;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.strip__track { display: inline-flex; gap: 3.5rem; align-items: center; animation: marquee 34s linear infinite; }
.strip:hover .strip__track { animation-play-state: paused; }
.strip__item { display: inline-flex; align-items: center; gap: 0.8rem; color: var(--ink-faint); font-size: 0.95rem; letter-spacing: 0.02em; }
.strip__item::before { content: "✦"; color: var(--gold-soft); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADS
   ============================================================ */
.sec-head { display: grid; gap: 1.2rem; margin-bottom: clamp(2.6rem, 5vw, 4.2rem); }
.sec-head__top { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; }
.sec-head .lead { margin-top: 0.4rem; }

/* ============================================================
   ANLÄSSE (occasions) — editorial split rows
   ============================================================ */
.occasions { display: grid; gap: 1px; background: var(--line-soft); border-block: 1px solid var(--line-soft); }
.occasion {
  background: var(--bg);
  display: grid; grid-template-columns: 5rem 1fr auto; gap: clamp(1rem, 4vw, 3rem); align-items: center;
  padding-block: clamp(1.6rem, 3.5vw, 2.6rem);
  transition: background 0.5s var(--ease);
}
.occasion:hover { background: var(--surface); }
.occasion__num { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-soft); }
.occasion__body h3 { margin-bottom: 0.4rem; }
.occasion__body p { color: var(--ink-muted); max-width: 54ch; }
.occasion__tag {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); border: 1px solid var(--line); border-radius: 100px; padding: 0.45rem 1rem;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.occasion:hover .occasion__tag { color: var(--gold); border-color: var(--line-gold); }
@media (max-width: 720px) {
  .occasion { grid-template-columns: 2.5rem 1fr; }
  .occasion__tag { display: none; }
}

/* ============================================================
   STEPS (so funktioniert's)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: 3px; overflow: hidden; }
.step { background: var(--bg); padding: clamp(1.8rem, 3vw, 2.6rem); position: relative; min-height: 240px; display: flex; flex-direction: column; }
.step__n { font-family: var(--serif); font-size: 3.4rem; font-weight: 600; color: var(--surface-2); line-height: 1; margin-bottom: auto; }
.step:hover .step__n { color: var(--gold-deep); transition: color 0.5s var(--ease); }
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.94rem; color: var(--ink-muted); }
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } .step { min-height: 0; } }

/* ============================================================
   PACKAGES / PREISE
   ============================================================ */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.pkg {
  position: relative; background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: 4px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex; flex-direction: column;
  transition: transform 0.6s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.pkg:hover { transform: translateY(-6px); border-color: var(--line-gold); }
.pkg--featured {
  background: linear-gradient(180deg, oklch(0.22 0.02 74), oklch(0.17 0.012 68));
  border-color: var(--line-gold);
}
.pkg__flag {
  position: absolute; top: -1px; right: 1.6rem;
  background: var(--gold); color: oklch(0.2 0.02 70);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 0 0 3px 3px;
}
.pkg__name { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; margin-bottom: 0.3rem; }
.pkg__desc { font-size: 0.9rem; color: var(--ink-muted); margin-bottom: 1.6rem; min-height: 2.6em; }
.pkg__price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.3rem; }
.pkg__price .amt { font-family: var(--serif); font-size: 3rem; font-weight: 600; color: var(--ink); line-height: 1; }
.pkg__price .cur { font-size: 1.4rem; color: var(--gold); }
.pkg__price-note { font-size: 0.8rem; color: var(--ink-faint); margin-bottom: 1.6rem; }
.pkg__list { list-style: none; padding: 0; display: grid; gap: 0.75rem; margin-bottom: 1.8rem; }
.pkg__list li { display: flex; gap: 0.7rem; font-size: 0.92rem; color: var(--ink-muted); align-items: flex-start; }
.pkg__list li svg { flex: none; margin-top: 0.25rem; color: var(--gold); }
.pkg .btn { margin-top: auto; justify-content: center; }
@media (max-width: 860px) { .packages { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 130px; gap: 0.8rem; }
.gtile { position: relative; overflow: hidden; border-radius: 3px; border: 1px solid var(--line-soft); }
.gtile__inner { position: absolute; inset: 0; transition: transform 0.9s var(--ease); background-size: cover; background-position: center; }
.gtile:hover .gtile__inner { transform: scale(1.06); }
.gtile__cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 0.9rem 1rem; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); opacity: 0; transform: translateY(6px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.gtile:hover .gtile__cap { opacity: 0.9; transform: translateY(0); }
.gtile::after { content:""; position:absolute; inset:0; z-index:1; background: linear-gradient(to top, oklch(0.1 0.01 66 / 0.7), transparent 55%); opacity:0; transition: opacity 0.5s var(--ease); }
.gtile:hover::after { opacity: 1; }
.g-a { grid-column: span 2; grid-row: span 2; }
.g-b { grid-column: span 2; }
.g-c { grid-column: span 2; grid-row: span 2; }
.g-d { grid-column: span 2; }
.g-e { grid-column: span 3; }
.g-f { grid-column: span 3; }
.gtile .ph { position:absolute; inset:0; }
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f { grid-column: span 1; grid-row: span 1; }
  .g-a { grid-column: span 2; grid-row: span 2; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.quote { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 4px; padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: 1.4rem; }
.quote__stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.9rem; }
.quote__text { font-family: var(--serif); font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem); line-height: 1.4; color: var(--ink); }
.quote__who { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.quote__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); display: grid; place-items: center; color: var(--bg-deep); font-weight: 600; font-size: 0.9rem; }
.quote__who b { font-weight: 600; font-size: 0.95rem; }
.quote__who span { color: var(--ink-faint); font-size: 0.82rem; }
@media (max-width: 720px) { .quotes { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; z-index: 2; border-block: 1px solid var(--line-soft); overflow: hidden; }
.cta-band__glow { position: absolute; inset: 0; background: radial-gradient(50% 120% at 50% 120%, var(--gold-glow), transparent 60%); }
.cta-band__inner { position: relative; text-align: center; display: grid; gap: 1.6rem; place-items: center; padding-block: clamp(4rem, 8vw, 7rem); }
.cta-band h2 { max-width: 16ch; }
.cta-band .btn { margin-top: 0.6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--line-soft); padding-block: clamp(3.5rem, 6vw, 5rem) 2.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
.footer__brand .brand { font-size: 1.6rem; margin-bottom: 1rem; }
.footer__brand p { color: var(--ink-muted); max-width: 32ch; font-size: 0.94rem; }
.footer col, .footer__col { display: block; }
.footer__col h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: 1.2rem; }
.footer__col a, .footer__col p { display: block; color: var(--ink-muted); font-size: 0.94rem; margin-bottom: 0.7rem; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--line-soft); font-size: 0.84rem; color: var(--ink-faint); }
.footer__bottom a { color: var(--ink-faint); }
.footer__bottom a:hover { color: var(--gold); }
.footer__credit { text-align: center; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); font-size: 0.8rem; color: var(--ink-faint); letter-spacing: 0.02em; }
.footer__credit a { color: var(--ink-muted); font-weight: 500; transition: color 0.3s var(--ease); }
.footer__credit a:hover { color: var(--gold); }
.footer__credit .spark { color: var(--gold-soft); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }

/* ============================================================
   PAGE HEADER (subpages)
   ============================================================ */
.page-head { padding-top: calc(78px + clamp(3rem, 8vw, 6rem)); padding-bottom: clamp(2.5rem, 5vw, 4rem); position: relative; z-index: 2; }
.page-head__glow { position: absolute; z-index:-1; inset: 0; background: radial-gradient(50% 80% at 78% 0%, var(--gold-glow), transparent 60%); }
.page-head h1 { margin-block: 1.2rem 1rem; }
.crumbs { font-size: 0.82rem; color: var(--ink-faint); }
.crumbs a:hover { color: var(--gold); }

/* ============================================================
   BOOKING / KONFIGURATOR
   ============================================================ */
.book { display: grid; grid-template-columns: 1fr 380px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.book__main { display: grid; gap: 2.8rem; }
.fieldset { border: none; padding: 0; }
.fieldset > legend { display: flex; align-items: center; gap: 0.9rem; font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 1.4rem; }
.fieldset > legend .fn { width: 1.9rem; height: 1.9rem; flex: none; border: 1px solid var(--line-gold); border-radius: 50%; display: grid; place-items: center; font-family: var(--sans); font-size: 0.82rem; color: var(--gold); }

/* option cards (radios) */
.opts { display: grid; gap: 0.9rem; }
.opts--row { grid-template-columns: 1fr 1fr; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.opt__box {
  display: flex; gap: 1rem; align-items: flex-start; justify-content: space-between;
  border: 1px solid var(--line); border-radius: 4px; padding: 1.15rem 1.3rem;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.opt__box .t b { display: block; font-weight: 600; font-size: 1rem; margin-bottom: 0.2rem; }
.opt__box .t span { font-size: 0.85rem; color: var(--ink-muted); }
.opt__box .p { font-family: var(--serif); font-size: 1.15rem; color: var(--gold); white-space: nowrap; }
.opt__box .p small { color: var(--ink-faint); font-family: var(--sans); font-size: 0.72rem; display:block; text-align:right; }
.opt input:checked + .opt__box { border-color: var(--gold); background: var(--gold-glow); }
.opt input:focus-visible + .opt__box { outline: 2px solid var(--gold); outline-offset: 2px; }
.opt__box .tick { width: 1.2rem; height: 1.2rem; border: 1px solid var(--line); border-radius: 50%; flex: none; display: grid; place-items: center; transition: border-color 0.3s; }
.opt input:checked + .opt__box .tick { border-color: var(--gold); background: var(--gold); }
.opt input:checked + .opt__box .tick::after { content: ""; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--bg-deep); }

/* add-ons (checkboxes) */
.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.addon { position: relative; }
.addon input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.addon__box { display: flex; justify-content: space-between; align-items: center; gap: 0.8rem; border: 1px solid var(--line); border-radius: 4px; padding: 0.95rem 1.1rem; transition: border-color 0.4s var(--ease), background 0.4s var(--ease); }
.addon__box b { font-weight: 500; font-size: 0.92rem; }
.addon__box .p { color: var(--gold); font-size: 0.9rem; white-space: nowrap; }
.addon input:checked + .addon__box { border-color: var(--gold); background: var(--gold-glow); }
.addon input:focus-visible + .addon__box { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 560px) { .addons, .opts--row { grid-template-columns: 1fr; } }

/* inputs */
.field { display: grid; gap: 0.5rem; }
.field label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.field input, .field textarea {
  background: var(--bg-deep); border: 1px solid var(--line); border-radius: 4px;
  padding: 0.9rem 1rem; transition: border-color 0.3s var(--ease);
  width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .grid-2 { grid-template-columns: 1fr; } }

/* summary rail */
.summary { position: sticky; top: 100px; background: var(--surface); border: 1px solid var(--line-gold); border-radius: 5px; padding: 1.8rem; }
.summary h3 { font-size: 1.3rem; margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line-soft); }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; margin-bottom: 0.85rem; }
.summary__row span:first-child { color: var(--ink-muted); }
.summary__row span:last-child { color: var(--ink); font-weight: 500; text-align: right; }
.summary__row--save span { color: var(--gold-soft); }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft); }
.summary__total .lbl { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.summary__total .amt { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--gold); }
.summary__note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 1rem; line-height: 1.5; }
.summary .btn { width: 100%; justify-content: center; margin-top: 1.4rem; }
@media (max-width: 900px) { .book { grid-template-columns: 1fr; } .summary { position: static; } }

/* Booking confirmation toast */
.toast { position: fixed; z-index: 80; left: 50%; bottom: 2rem; transform: translate(-50%, 140%); background: var(--surface-2); border: 1px solid var(--line-gold); border-radius: 5px; padding: 1rem 1.4rem; display: flex; gap: 0.8rem; align-items: center; box-shadow: 0 20px 50px -20px oklch(0 0 0 / 0.7); transition: transform 0.7s var(--ease); max-width: 90vw; }
.toast.is-show { transform: translate(-50%, 0); }
.toast svg { color: var(--gold); flex: none; }

/* ============================================================
   LEGAL / PROSE
   ============================================================ */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); margin-top: 3rem; margin-bottom: 1rem; padding-top: 2rem; border-top: 1px solid var(--line-soft); }
.prose h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin-top: 1.8rem; margin-bottom: 0.6rem; color: var(--gold-soft); }
.prose p { color: var(--ink-muted); margin-bottom: 1rem; }
.prose a { color: var(--gold); }
.prose a:hover { text-decoration: underline; }
.prose ul { color: var(--ink-muted); padding-left: 1.2rem; margin-bottom: 1rem; display: grid; gap: 0.4rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.legal-toc { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 5px; padding: 1.6rem 1.8rem; margin-bottom: 3rem; }
.legal-toc h4 { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; }
.legal-toc ol { columns: 2; column-gap: 2rem; padding-left: 1.1rem; color: var(--ink-muted); font-size: 0.92rem; }
.legal-toc a:hover { color: var(--gold); }
@media (max-width: 560px) { .legal-toc ol { columns: 1; } }

.info-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 5px; padding: 1.6rem 1.8rem; margin-bottom: 1.4rem; }
.info-card h3 { color: var(--ink); font-family: var(--serif); margin-bottom: 0.8rem; margin-top: 0; }
.info-card p { margin-bottom: 0.3rem; }

/* Utilities */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.hidden { display: none !important; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.skip { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--gold); color: var(--bg-deep); padding: 0.8rem 1.2rem; }
.skip:focus { left: 1rem; top: 1rem; }
