/* ==========================================================================
   HAUS FLIEDERBUSCH – Corporate Design Stylesheet
   Matching index.html class conventions
   ========================================================================== */

/* ==========================================================================
   0. SELF-HOSTED WEB FONTS
   ========================================================================== */
@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-display-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-display-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-display-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Primary palette */
  --color-nacht:      #1C2A24;
  --color-leinen:     #F4F0E8;
  --color-gold:       #B08A4F;
  --color-gruen:      #A8B5A0;
  --color-flieder:    #6B5E7A;
  --color-weiss:      #FFFFFF;

  /* Typography */
  --font-display: "Playfair Display", serif;
  --font-body:    "Inter", sans-serif;

  --h1-size: clamp(3.25rem, 5vw + 1rem, 5rem);
  --h2-size: clamp(2.25rem, 3vw + 0.5rem, 3rem);
  --h3-size: clamp(1.5rem, 1.5vw + 0.5rem, 1.75rem);
  --body-size: clamp(1rem, 0.5vw + 0.85rem, 1.125rem);
  --caption-size: 0.875rem;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --grid-gap: clamp(1.5rem, 3vw, 3rem);
  --container-max: 1320px;
  --container-padding: clamp(1.25rem, 4vw, 3rem);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: 1.6;
  color: var(--color-nacht);
  background-color: var(--color-leinen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 500;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
p + p { margin-top: 1em; }

/* ==========================================================================
   4. UTILITY CLASSES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section-padding {
  padding-block: var(--section-padding);
}

.section-border {
  border-top: 1px solid rgba(176, 138, 79, 0.2);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.kicker {
  font-size: var(--caption-size);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.kicker--light {
  color: var(--color-leinen);
  opacity: 0.8;
}

.hairline {
  width: 3.5rem;
  height: 1px;
  background-color: var(--color-gold);
  border: none;
  margin-block: 1.5rem;
}

/* ==========================================================================
   5. ORNAMENT
   ========================================================================== */
.ornament {
  display: block;
  width: clamp(3rem, 5vw, 4.5rem);
  height: auto;
  opacity: 0.35;
}

.ornament--center { margin-inline: auto; }
.ornament--section { margin-block: 2rem; }

.ornament-divider {
  text-align: center;
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--caption-size);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.btn:hover,
.btn:focus-visible {
  background-color: var(--color-gold);
  color: var(--color-leinen);
}

.btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* Primary: gold fill */
.btn--primary {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-leinen);
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: #967536;
  border-color: #967536;
  color: var(--color-leinen);
}

/* Light: for dark backgrounds (hero) */
.btn--light {
  border-color: var(--color-leinen);
  color: var(--color-leinen);
}

.btn--light:hover,
.btn--light:focus-visible {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-leinen);
}

/* Dark: for dark band sections */
.btn--dark {
  border-color: var(--color-leinen);
  color: var(--color-leinen);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-leinen);
}

/* ==========================================================================
   7. ANIMATIONS
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   8. NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background-color 400ms ease, box-shadow 400ms ease;
}

.nav--transparent { background-color: transparent; }

.nav--solid {
  background-color: var(--color-leinen);
  box-shadow: 0 1px 0 rgba(28, 42, 36, 0.08);
}

.nav--subpage {
  background-color: var(--color-leinen);
  box-shadow: 0 1px 0 rgba(28, 42, 36, 0.08);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* Brand / Logo */
.nav__brand {
  z-index: 1001;
  flex-shrink: 0;
}

.nav__brand img {
  height: 2.75rem;
  width: auto;
}

/* Logo switching: transparent = light, solid/subpage = dark */
.nav--transparent .nav__logo--dark { display: none; }
.nav--transparent .nav__logo--light { display: block; }
.nav--solid .nav__logo--dark,
.nav--subpage .nav__logo--dark { display: block; }
.nav--solid .nav__logo--light,
.nav--subpage .nav__logo--light { display: none; }

/* Desktop Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: var(--caption-size);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-nacht);
  transition: color 300ms ease;
  position: relative;
}

.nav--transparent .nav__link { color: var(--color-leinen); }

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background-color: var(--color-gold);
  transition: width 300ms ease;
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link--active::after { width: 100%; }

.nav__link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

/* Actions (booking button + language) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav--transparent .nav__actions .btn--primary {
  background-color: transparent;
  border-color: var(--color-leinen);
  color: var(--color-leinen);
}

.nav--transparent .nav__actions .btn--primary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

/* Language switcher – mobile top bar (visible next to burger) */
.nav__lang-mobile {
  display: none;          /* hidden on desktop */
  align-items: center;
  gap: 0.375rem;
  font-size: var(--caption-size);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-nacht);
  z-index: 1001;
}

.nav--transparent .nav__lang-mobile { color: var(--color-leinen); }

.nav__language {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--caption-size);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-nacht);
}

.nav--transparent .nav__language { color: var(--color-leinen); }

.nav__lang-active { color: var(--color-gold); }
.nav__lang-inactive { opacity: 0.5; }

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem; height: 2rem;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle-line {
  display: block;
  width: 100%; height: 1.5px;
  background-color: var(--color-nacht);
  transition: transform 300ms ease, opacity 300ms ease, background-color 400ms ease;
}

.nav--transparent .nav__toggle-line { background-color: var(--color-leinen); }

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-leinen);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
  z-index: 999;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-nacht);
  transition: color 300ms ease;
}

.mobile-menu__link:hover { color: var(--color-gold); }

.mobile-menu__btn {
  margin-top: 1rem;
}

/* Social icons in mobile menu */
.mobile-menu__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.mobile-menu__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-nacht);
  opacity: 0.5;
  transition: opacity 300ms ease, color 300ms ease;
}

.mobile-menu__social a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.mobile-menu__social svg {
  width: 24px;
  height: 24px;
}

.mobile-menu__language {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}

.mobile-menu__language a {
  color: var(--color-nacht);
  opacity: 0.45;
  transition: opacity 300ms ease;
}

.mobile-menu__language a:hover {
  opacity: 1;
}

.mobile-menu__language span {
  color: var(--color-nacht);
}

@media (max-width: 1023px) {
  .nav__menu { display: none; }
  .nav__actions { display: none; }
  .nav__lang-mobile { display: flex; }
  .nav__toggle { display: flex; }
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* ==========================================================================
   9. HOMEPAGE HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vh, 8rem);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-nacht);
  opacity: 0.35;
  z-index: -1;
}

.hero__content {
  color: var(--color-leinen);
  max-width: 52rem;
  padding-inline: var(--container-padding);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

.hero__title {
  font-size: var(--h1-size);
  color: var(--color-leinen);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__subline {
  font-size: var(--body-size);
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-indicator { animation: none; opacity: 0.5; }
}

@media (max-width: 639px) {
  .hero__title { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .hero__buttons { flex-direction: column; width: 100%; }
  .hero__buttons .btn { width: 100%; text-align: center; }
}

/* ==========================================================================
   10. PAGE HERO (Subpages)
   ========================================================================== */
.page-hero {
  padding-top: calc(4.5rem + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background-color: var(--color-leinen);
  text-align: center;
}

.page-hero__ornament {
  margin-top: 1.5rem;
}

/* ==========================================================================
   11. WELCOME SECTION (Homepage)
   ========================================================================== */
.welcome__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
  align-items: start;
}

@media (min-width: 1024px) {
  .welcome__grid { grid-template-columns: 5fr 7fr; gap: clamp(3rem, 5vw, 5rem); }
}

.welcome__image {
  position: relative;
}

.welcome__image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.welcome__image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.welcome__ornament {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 120px; height: 120px;
  color: var(--color-gold);
  opacity: 0.15;
}

.welcome__content h2 {
  margin-bottom: 1.5rem;
}

.welcome__content p {
  max-width: 38rem;
}

.welcome__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-gold);
  font-size: var(--caption-size);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.welcome__badge svg {
  width: 1rem; height: 1rem;
}

.welcome__badge-text {
  margin-left: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   12. CONTENT GRID (Two-column layouts)
   ========================================================================== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
  align-items: center;
}

@media (min-width: 1024px) {
  .content-grid { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 5rem); }
  .content-grid--text-left .content-grid__image { order: 1; }
  .content-grid--5-7 { grid-template-columns: 5fr 7fr; }
  .content-grid--7-5 { grid-template-columns: 7fr 5fr; }
}

.content-grid__image {
  overflow: hidden;
}

.content-grid__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.content-grid__image--tall img { aspect-ratio: 4 / 5; }

.content-grid__content h2 {
  margin-bottom: 1.25rem;
}

.content-grid__content .kicker {
  margin-bottom: 1rem;
}

.content-grid__content .btn {
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

.text-center h2 {
  margin-bottom: 1rem;
}

.text-center p {
  max-width: 600px;
  margin-inline: auto;
}

.text-center .btn {
  margin-top: 0.5rem;
}

.content-grid__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   13. CARD GRID (Three Pillars, Arrangements)
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

@media (min-width: 640px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 > :last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - var(--grid-gap) / 2);
    justify-self: center;
  }
}

@media (min-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--3 > :last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }
}

.card {
  display: flex;
  flex-direction: column;
}

.card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.card:hover .card__image img { transform: scale(1.03); }

@media (prefers-reduced-motion: reduce) {
  .card:hover .card__image img { transform: none; }
}

.card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  margin-bottom: 0.75rem;
}

.card__text {
  flex: 1;
  margin-bottom: 1.25rem;
  color: rgba(28, 42, 36, 0.75);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--caption-size);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  transition: gap 300ms ease;
}

.card__link:hover { gap: 0.85rem; }

.card__link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.card__link svg {
  width: 1rem; height: 1rem;
  stroke: currentColor;
}

/* ==========================================================================
   14. SECTION HEADER (Centered)
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header p {
  color: rgba(28, 42, 36, 0.75);
  margin-top: 1rem;
}

/* ==========================================================================
   15. GALLERY GRID
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.gallery-grid__item,
.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-grid__item img,
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   16. PRICING TABLE (Trauerkaffee)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap);
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid > :last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - var(--grid-gap) / 2);
    justify-self: center;
  }
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid > :last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }
}

.pricing-card {
  border: 1px solid rgba(176, 138, 79, 0.3);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: var(--h3-size);
  margin-bottom: 1.25rem;
  color: var(--color-nacht);
}

.pricing-card__list {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-card__item {
  padding-block: 0.5rem;
  font-size: var(--caption-size);
  color: rgba(28, 42, 36, 0.75);
  border-bottom: 1px solid rgba(176, 138, 79, 0.12);
  line-height: 1.5;
}

.pricing-card__item:last-child { border-bottom: none; }

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: auto;
}

.pricing-card__price-note {
  font-family: var(--font-body);
  font-size: var(--caption-size);
  font-weight: 400;
  color: rgba(28, 42, 36, 0.5);
  display: block;
  margin-top: 0.25rem;
}

/* ==========================================================================
   17. FRÜHSTÜCK PRICES
   ========================================================================== */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(176, 138, 79, 0.2);
}

.price-list__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.price-list__label { font-size: var(--body-size); }

.price-list__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}

/* ==========================================================================
   18. TIMELINE
   ========================================================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background-color: var(--color-gold);
}

.timeline__item { position: relative; }

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2rem; top: 0.5rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background-color: var(--color-gold);
  transform: translateX(-3px);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.timeline__desc {
  font-size: var(--caption-size);
  color: var(--color-nacht);
  opacity: 0.8;
}

/* ==========================================================================
   19. BLOCKQUOTE
   ========================================================================== */
.editorial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.3;
  color: var(--color-nacht);
}

.editorial-quote::before {
  content: "\201E";
  color: var(--color-gold);
  font-size: 1.2em;
}

.editorial-quote::after {
  content: "\201C";
  color: var(--color-gold);
  font-size: 1.2em;
}

/* ==========================================================================
   20. CONTACT
   ========================================================================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block__label {
  display: block;
  font-size: var(--caption-size);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.375rem;
}

.contact-block p,
.contact-block a {
  display: block;
  line-height: 1.7;
}

.contact-block a {
  text-decoration: underline;
  text-decoration-color: rgba(176, 138, 79, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 300ms ease;
}

.contact-block a:hover { text-decoration-color: var(--color-gold); }

.contact-block a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.contact-map {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(176, 138, 79, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-weiss);
}

.contact-map__placeholder {
  text-align: center;
  color: rgba(28, 42, 36, 0.4);
}

.contact-map__placeholder svg {
  width: 2.5rem; height: 2.5rem;
  stroke: rgba(28, 42, 36, 0.25);
  fill: none;
  margin-bottom: 0.5rem;
}

/* Contact Preview (Homepage) */
.contact-preview {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.contact-preview h2 { margin-bottom: 1.5rem; }

.contact-preview__details {
  margin-bottom: 2rem;
  color: rgba(28, 42, 36, 0.75);
}

.contact-preview__details p + p { margin-top: 0.75rem; }

.contact-preview__details a {
  color: inherit;
  border-bottom: 1px solid var(--color-gold);
  transition: border-color 300ms ease;
}

.contact-preview__details a:hover { border-color: var(--color-nacht); }

/* ==========================================================================
   21. FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-nacht);
  color: var(--color-leinen);
  padding-block: clamp(3rem, 5vw, 4rem) 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(244, 240, 232, 0.12);
  margin-bottom: 2rem;
}

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

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}

.footer__brand-logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer__subtitle {
  font-size: var(--caption-size);
  opacity: 0.6;
  line-height: 1.6;
}

.footer__ornament {
  display: block;
  width: 2.5rem;
  height: auto;
  opacity: 0.2;
  margin-top: 1rem;
}

.footer__heading {
  font-size: var(--caption-size);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer__list li { line-height: 2; }

.footer__link {
  font-size: var(--caption-size);
  opacity: 0.7;
  transition: opacity 300ms ease;
}

.footer__link:hover { opacity: 1; }

.footer__link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: var(--caption-size);
  opacity: 0.4;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__legal-link { transition: opacity 300ms ease; }
.footer__legal-link:hover { opacity: 0.8; }

.footer__legal-link:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.footer__credit {
  text-align: center;
  font-size: var(--caption-size);
  opacity: 0.3;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 240, 232, 0.1);
}

.footer__credit a {
  opacity: 1;
  transition: opacity 300ms ease;
}

.footer__credit a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   22. SPEISEKARTE (Menu)
   ========================================================================== */
.menu-section {
  max-width: 48rem;
  margin-inline: auto;
}

.menu-section + .menu-section {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(176, 138, 79, 0.2);
}

.menu-section__title {
  font-family: var(--font-display);
  font-size: var(--h3-size);
  font-weight: 500;
  color: var(--color-nacht);
  margin-bottom: 1.5rem;
  text-align: center;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.625rem;
}

.menu-item + .menu-item {
  border-top: 1px solid rgba(176, 138, 79, 0.08);
}

.menu-item__info {
  flex: 1;
}

.menu-item__name {
  font-weight: 500;
  color: var(--color-nacht);
}

.menu-item__desc {
  font-size: var(--caption-size);
  color: rgba(28, 42, 36, 0.6);
  margin-top: 0.2rem;
  line-height: 1.5;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  font-size: var(--caption-size);
  color: rgba(28, 42, 36, 0.6);
  font-style: italic;
  margin-top: 2rem;
}

/* ==========================================================================
   23. LEGAL PAGES (Impressum, Datenschutz, AGB)
   ========================================================================== */
.legal-content {
  max-width: 42rem;
  margin-inline: auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: var(--h3-size);
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  margin-bottom: 0.75rem;
}

.legal-content a {
  color: var(--color-nacht);
  border-bottom: 1px solid var(--color-gold);
  transition: opacity 300ms ease;
}

.legal-content a:hover {
  opacity: 0.7;
}

.legal-content ul {
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}
