/* ============ Bogner Aste — design tokens ============ */
:root {
  --cream:        #F1ECE0;
  --cream-soft:   #F7F3EA;
  --paper:        #FFFFFF;
  --olive:        #7C8559;
  --olive-light:  #95A06D;
  --olive-dark:   #5E6644;
  --olive-deep:   #4A5236;
  --olive-button: #242521;
  --yellow:       #f6a004;
  --ink:          #2A2A28;
  --ink-soft:     #4A4A45;
  --orange:       #E89B2A;
  --line:         #D8D0BE;
  --shadow:       0 8px 30px rgba(46, 50, 30, .08);
}

/* ============ Reset + base ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============ Type ============ */
.display, .h1, .h2, .h3 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--olive-dark);
}
.h1 { font-size: clamp(40px, 5.6vw, 88px); }
.h2 { font-size: clamp(34px, 4.2vw, 64px); }
.h3 { font-size: clamp(22px, 1.9vw, 32px); }

.subtitle {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--ink);
}
.eyebrow {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--olive-dark);
}
.tagline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
}
.tagline-list button.tab {
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  opacity: .55;
  transition: opacity .15s ease;
}
.tagline-list button.tab.active { opacity: 1; color: var(--olive-dark); }
.tagline-list button.tab:hover { opacity: .9; }

p { margin: 0 0 .9em; }
p:last-child { margin-bottom: 0; }

/* ============ Layout ============ */
.wrap   { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; position: relative; }
.section.alt { background: var(--cream-soft); }

/* Antler watermark */
.antler-bg {
  position: absolute;
  pointer-events: none;
  opacity: .35;
  z-index: 0;
}
.antler-bg svg { width: 100%; height: 100%; }
.section > .wrap, .section > .wrap-narrow { position: relative; z-index: 1; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 16px 30px;
  border-radius: 8px;
  background: var(--olive-button);
  color: var(--yellow);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 14px rgba(46,50,30,.18);
}
.btn:hover { background: var(--olive-dark); transform: translateY(-1px); }
.btn.lg { padding: 22px 44px; font-size: 16px; border-radius: 10px; }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.btn.ghost:hover { background: var(--ink); color: var(--cream); }
.btn.dark { background: #3C3F35; color: var(--cream); }
.btn.dark:hover { background: var(--ink); }
.btn.outline {
  background: transparent;
  color: var(--olive-dark);
  border: 1.5px solid var(--olive-dark);
  box-shadow: none;
}
.btn.outline:hover { background: var(--olive-dark); color: var(--cream); }

/* ============ Header ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 36px;
  background: rgba(20, 22, 16, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s ease;
}
.header.scrolled { background: rgba(20, 22, 16, .82); }
.burger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #fff;
  cursor: pointer;
}
.burger-lines { display: flex; flex-direction: column; gap: 7px; }
.burger-lines span { display:block; width:31px; height:3px; background:#fff; border-radius:2px; }
.burger-label {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
}
.header-logo {
  text-align: center;
}
.header-logo img { height: 38px; width: auto; margin: 0 auto; }
.header-tools {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.icon-pill {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  transition: background .2s ease;
}
.icon-pill:hover { background: rgba(255,255,255,.25); }
.icon-pill svg { width: 18px; height: 18px; }

/* Side menu */
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(15,16,11,.6);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }
.side-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: min(420px, 90vw);
  background: var(--olive-dark);
  z-index: 160;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.5,.05,.2,1);
  padding: 80px 48px 48px;
  color: #fff;
  overflow-y: auto;
}
.side-menu.open { transform: translateX(0); }
.side-menu .close {
  position: absolute; top: 22px; right: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 22px;
}
.side-menu nav { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.side-menu nav a {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: padding .2s ease, color .2s ease;
}
.side-menu nav a:hover { padding-left: 8px; color: var(--yellow); }
.side-menu .menu-meta {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
}
.side-menu .menu-meta a { display: block; padding: 4px 0; }
.side-menu .menu-meta a:hover { color: var(--yellow); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 130px 24px 140px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-card {
  position: relative; z-index: 1;
  background: rgb(241 236 224 / 40%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 48px 56px;
  max-width: 769px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
}
.hero-card-logo {
  width: 160px;
  margin-bottom: 28px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 {
  color: var(--ink);
  font-size: clamp(26px, 3vw, 48px);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0 0 18px;
  text-shadow: none;
}
.hero .lead {
  font-size: clamp(15px, 1.2vw, 19px);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 0;
  color: var(--ink-soft);
  font-weight: 400;
}
.hero .keyline {
  display: inline-block;
  background: rgba(0,0,0,.35);
  padding: 18px 36px;
  border-radius: 6px;
  border-left: 3px solid var(--yellow);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 500;
  letter-spacing: .01em;
  margin: 0 0 46px;
  max-width: 900px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  width: 100%;
  pointer-events: none;
}
.hero-buttons a { pointer-events: auto; }
.btn.hero-btn { padding: 13px 28px; font-size: 13px; border-radius: 8px; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Playfair Display', serif;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: 10px;
  z-index: 1;
  animation: gentleBob 2.4s ease-in-out infinite;
}
@keyframes gentleBob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
.hero-scroll svg { width: 18px; height: 18px; }

/* ============ Section heading block ============ */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 56px;
  max-width: 900px;
}
.section-head .subtitle { color: var(--ink); }
.section-head .lead {
  font-size: clamp(18px, 1.3vw, 22px);
  font-style: italic;
  max-width: 720px;
  color: var(--ink-soft);
  margin-top: 18px;
  line-height: 1.5;
}

/* ============ Hochzeiten layout ============ */
.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.split.reverse { grid-template-columns: 1fr 1.4fr; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 48px; }
}

.feature-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.feature-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 14px; height: 2px;
  background: var(--olive-dark);
}

.vidframe {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1c14 center/cover no-repeat;
  box-shadow: var(--shadow);
}
.vidframe::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-size: 38px;
  color: #fff;
  background: rgba(0,0,0,.25);
  transition: background .2s ease;
  cursor: pointer;
}
.vidframe:hover::after { background: rgba(0,0,0,.15); }
.vidframe .label {
  position: absolute;
  bottom: 18px; left: 22px;
  z-index: 2;
  color: #fff;
  font-family: 'Playfair Display', serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}

/* ============ Tile / Card grid ============ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
@media (max-width: 1100px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tile-grid { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1c14 center/cover no-repeat;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .3s ease;
}
.tile:hover { transform: translateY(-4px); }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.78) 100%);
  transition: background .25s ease;
}
.tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 24px 22px;
  color: #fff;
}
.tile h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 22px;
  margin: 0 0 4px;
  color: #fff;
}
.tile .tile-sub {
  font-style: italic;
  font-size: 14px;
  opacity: .88;
}
.tile .tile-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 700;
}
.tile .tile-cta::after { content: "→"; transition: transform .2s ease; }
.tile:hover .tile-cta::after { transform: translateX(4px); }
.tile .tile-count {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  color: var(--olive-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  padding: 5px 10px;
  border-radius: 20px;
}

/* ============ Olive card ============ */
.olive-card {
  background: var(--olive);
  color: #fff;
  padding: 40px 44px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.olive-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: .02em;
}
.olive-card p { font-size: 17px; opacity: .94; }
.olive-card .quote {
  font-style: italic;
  margin-top: 18px;
  padding: 16px 20px;
  border-left: 3px solid var(--yellow);
  background: rgba(0,0,0,.1);
  border-radius: 4px;
}

/* ============ Hochzeit popup-launcher buttons row ============ */
.popup-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 900px) { .popup-row { grid-template-columns: repeat(2, 1fr); } }
.popup-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--olive-dark);
  transition: all .2s ease;
  text-align: left;
}
.popup-btn:hover {
  background: var(--olive-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.popup-btn::after {
  content: "→";
  margin-left: 14px;
  font-size: 16px;
  transition: transform .2s ease;
}
.popup-btn:hover::after { transform: translateX(4px); }

/* ============ Iconed list (Aktive section style) ============ */
.icon-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.icon-row:last-child { border-bottom: none; }
.icon-row .icon {
  width: 80px; height: 80px;
  display: grid; place-items: center;
  color: var(--olive-dark);
}
.icon-row .icon svg { width: 64px; height: 64px; stroke: currentColor; }
.icon-row h4 {
  color: #2A5C9E;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
}

/* ============ Modal ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,17,10,.78);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  max-width: 1100px;
  max-height: 88vh;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform .3s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-head {
  padding: 28px 40px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.modal-head .titles h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .015em;
  color: var(--olive-dark);
  font-size: clamp(26px, 2.5vw, 38px);
  margin: 0 0 8px;
  line-height: 1.1;
}
.modal-head .titles .subtitle { color: var(--ink-soft); }
.modal-close {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--olive-dark);
  color: #fff;
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.modal-close:hover { background: var(--olive-deep); }
.modal-body {
  padding: 32px 40px 40px;
  overflow-y: auto;
}
.modal-body p { font-size: 17px; line-height: 1.6; }
.modal-body h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 14px;
  color: var(--olive-dark);
  margin: 24px 0 8px;
}
.modal-body ul {
  margin: 14px 0;
  padding: 0;
  list-style: none;
}
.modal-body ul li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 17px;
}
.modal-body ul li::before {
  content: "—";
  position: absolute; left: 0; top: 6px;
  color: var(--olive);
  font-weight: 700;
}
.modal-quote {
  background: var(--olive);
  color: #fff;
  padding: 26px 32px;
  border-radius: 10px;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  margin: 24px 0;
}
.modal-quote .attribution {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .85;
}

/* Modal: gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery .gphoto {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--line) center/cover no-repeat;
  border-radius: 6px;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform .25s ease;
}
.gallery .gphoto:hover { transform: scale(1.02); }
.gallery .gphoto.tall { aspect-ratio: 3 / 4; }
.gallery .gphoto.wide { grid-column: span 2; }

/* Modal: room card grid (Raumübersicht) */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
@media (max-width: 700px) { .room-grid { grid-template-columns: 1fr 1fr; } }
.room-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.room-card .photo { aspect-ratio: 4 / 3; background: var(--line) center/cover no-repeat; }
.room-card .body {
  padding: 16px 18px 18px;
}
.room-card h5 {
  margin: 0 0 4px;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 15px;
  color: var(--olive-dark);
}
.room-card .cap {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ============ Contact / form ============ */
.kontakt-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .kontakt-wrap { grid-template-columns: 1fr; gap: 40px; }
}
.map-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--olive-dark);
  color: #fff;
}
.map-card .iframe-holder { aspect-ratio: 16 / 11; background: #d8d5c8 center/cover no-repeat; }
.map-card .body { padding: 28px 32px; }
.map-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--yellow);
  margin: 0 0 6px;
}

.form-card {
  background: var(--paper);
  padding: 38px 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 28px;
  color: var(--olive-dark);
  margin: 0 0 6px;
}
.form-card .lead { color: var(--ink-soft); font-style: italic; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
  color: var(--olive-dark);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--olive);
  color: #fff;
  border: none;
  border-radius: 6px;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: background .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.7); }
.field input:focus, .field textarea:focus, .field select:focus { background: var(--olive-dark); }
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ============ Footer ============ */
.footer {
  background: var(--olive-dark);
  color: rgba(255,255,255,.92);
  padding: 80px 0 30px;
  position: relative;
}
.footer-wood {
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--olive-deep), var(--olive-light), var(--olive-deep));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  color: var(--yellow);
  margin: 0 0 18px;
}
.footer .logo-block img { height: 56px; margin-bottom: 18px; }
.footer .footer-link {
  display: block;
  padding: 5px 0;
  font-size: 16px;
  opacity: .88;
  transition: padding .15s ease, color .15s ease;
}
.footer .footer-link:hover { padding-left: 6px; color: var(--yellow); opacity: 1; }
.footer .copy {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  opacity: .7;
  letter-spacing: .05em;
}
.footer-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.footer-cta-row .btn { background: var(--yellow); color: var(--olive-dark); box-shadow: none; }
.footer-cta-row .btn.outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }

/* ============ Quote highlight (Brennen/Ausbrennen) ============ */
.highlight-quote {
  margin-top: 28px;
  padding: 28px 32px;
  background: #2C3024;
  color: var(--cream);
  border-radius: 12px;
  border-left: 4px solid var(--yellow);
}
.highlight-quote .label {
  font-family: 'Playfair Display', serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--yellow);
  margin-bottom: 8px;
}
.highlight-quote .title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.15;
}

/* ============ Center button ============ */
.center-btn { display: flex; justify-content: center; margin: 60px 0 20px; }

/* ============ Small utilities ============ */
.muted { color: var(--ink-soft); }
.italic { font-style: italic; }
.hr-thin { border: none; border-top: 1px solid var(--line); margin: 28px 0; }

/* Inline tag-cloud (event occasion list) */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.chip-list span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--olive-dark);
  border-radius: 100px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--olive-dark);
  background: var(--paper);
}

/* Vertical bullet rail (carousel indicator look) */
.bullet-rail {
  position: absolute;
  left: 14px; top: 18%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.bullet-rail span {
  width: 12px; height: 12px;
  background: rgba(255,255,255,.55);
  border-radius: 3px;
}
.bullet-rail span.on { background: #fff; }
.carousel-arrow {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  background: #fff;
  width: 54px; height: 42px;
  display: grid; place-items: center;
  border-radius: 8px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.carousel-arrow.up { top: 8px; }
.carousel-arrow.down { bottom: 8px; }
.carousel-arrow svg { width: 21px; height: 15px; }

/* Hero overlay marquee strip */
.hero-quote-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(15,18,10,.55);
  color: #fff;
  padding: 14px 24px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  letter-spacing: .25em;
  font-size: 11px;
  text-transform: uppercase;
  z-index: 1;
}

/* Bullet rail + arrows inside .tt-frame */
.tt-frame .bullet-rail {
  position: absolute;
  left: 14px; top: 18%;
  display: flex; flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.tt-frame .bullet-rail span {
  width: 12px; height: 12px;
  background: rgba(255,255,255,.55);
  border-radius: 3px;
  transition: background .2s ease;
}
.tt-frame .bullet-rail span.on { background: #fff; }

.tt-frame .carousel-arrow {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  background: #fff;
  width: 54px; height: 42px;
  display: grid; place-items: center;
  border-radius: 8px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  border: none;
}
.tt-frame .carousel-arrow.up   { top: 10px; }
.tt-frame .carousel-arrow.down { bottom: 10px; }
.tt-frame .carousel-arrow:hover { background: var(--cream); }
.tt-frame .carousel-arrow svg { width: 21px; height: 15px; }

/* Ken Burns slide layers — give the frame a video-like feel */
.tt-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
  will-change: transform, opacity;
  transform: scale(1.08);
}
.tt-slide.on { opacity: 1; }
.tt-slide.kb-0.on { animation: kb0 7s ease-in-out forwards; }
.tt-slide.kb-1.on { animation: kb1 7s ease-in-out forwards; }
.tt-slide.kb-2.on { animation: kb2 7s ease-in-out forwards; }
.tt-slide.kb-3.on { animation: kb3 7s ease-in-out forwards; }
@keyframes kb0 {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.18) translate(-2%, -3%); }
}
@keyframes kb1 {
  from { transform: scale(1.18) translate(-3%, 2%); }
  to   { transform: scale(1.04) translate(0%, 0%); }
}
@keyframes kb2 {
  from { transform: scale(1.06) translate(2%, -2%); }
  to   { transform: scale(1.20) translate(-1%, 3%); }
}
@keyframes kb3 {
  from { transform: scale(1.20) translate(-2%, -2%); }
  to   { transform: scale(1.06) translate(2%, 1%); }
}
.tt-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, transparent 55%, rgba(0,0,0,.25) 100%),
    radial-gradient(120% 80% at 50% 100%, transparent 55%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.tt-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1c14;
  box-shadow: var(--shadow);
}
.tt-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #1a1c14 center/cover no-repeat;
  display: block;
}
.tt-caption-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 38px 22px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  font-family: 'Playfair Display', serif;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}
