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

:root {
  --forest:   #07221D;
  --forest-l: #0d3329;
  --forest-xl:#0f3d30;
  --gold:     #C9A84C;
  --gold-l:   #e0c06a;
  --gold-d:   #a8843a;
  --cream:    #F8F4ED;
  --text:     #1a1a1a;
  --muted:    #6b6b6b;
  --white:    #ffffff;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --radius:   4px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ─── Typography helpers ────────────────────────────────────────── */
.overline {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 400; }

.section-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-gold {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--forest);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ─── Gold divider ──────────────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.gold-rule.center { margin: 1.25rem auto; }

/* ─── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(7, 34, 29, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta { margin-left: 1rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: flex; 
    justify-content: center;
  }

  .nav.open {
    height: auto;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 1.5rem;
  }

  /* Erste Zeile (Logo + Toggle) auf feste Höhe halten */
  .nav.open .nav-logo,
  .nav.open .nav-toggle {
    height: 72px;
    display: flex;
    align-items: center;
  }
  .nav.open .nav-logo { flex: 1; }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.25rem 1.5rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.2);
  }

  .nav.open .nav-cta {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem;
    text-align: center;
  }
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--forest);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

/* Decorative gold pattern */
.hero-pattern {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 55vw);
  aspect-ratio: 1;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 30px, var(--gold) 30px, var(--gold) 31px),
    repeating-linear-gradient(90deg,  transparent, transparent 30px, var(--gold) 30px, var(--gold) 31px);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(6rem, 12vw, 12rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 760px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero .section-intro {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

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

.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(201,168,76,0.4);
  margin-left: auto;
}

/* ─── About ─────────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.about-visual {
  background: var(--forest-l);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.about-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-ornament {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-ornament::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
}
.about-ornament-text {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.6;
}

.about-text {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 { color: var(--forest); margin-bottom: 0.5rem; }

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 0.5rem;
}
.stat-value {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-d);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 260px; }
}

/* ─── Menu ──────────────────────────────────────────────────────── */
.menu {
  background: var(--forest);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.menu h2 { color: var(--white); }
.menu .section-intro { color: rgba(255,255,255,0.55); margin: 0 auto 3rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  margin: 3rem 0;
  border: 1px solid rgba(201,168,76,0.15);
}

.menu-card {
  background: rgba(255,255,255,0.02);
  padding: 2rem 1.5rem;
  text-align: left;
  border: none;
  transition: background var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.menu-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.menu-card:hover { background: rgba(201,168,76,0.04); }
.menu-card:hover::after { width: 100%; }

.menu-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}
.menu-card h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-l);
  margin-bottom: 0.25rem;
  font-family: var(--serif);
}
.menu-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.menu-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ─── Features strip ────────────────────────────────────────────── */
.features {
  background: var(--gold);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}
.feature-icon {
  font-size: 1.4rem;
}

/* ─── App highlight ─────────────────────────────────────────────── */
.app-highlight {
  position: relative;
  background:
    linear-gradient(135deg, #04120f 0%, #0a2c24 52%, #114336 100%);
  padding: clamp(3.6rem, 8vw, 6.8rem) clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
}

.app-highlight::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -130px;
  width: min(420px, 48vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, rgba(201,168,76,0) 70%);
  pointer-events: none;
}

.app-highlight-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.6rem);
  align-items: center;
  border: 2px solid rgba(201,168,76,0.34);
  background: rgba(4, 18, 15, 0.55);
  box-shadow: 0 26px 56px rgba(0,0,0,0.34);
  padding: clamp(2rem, 4vw, 3.2rem);
}

.app-copy h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  margin-bottom: 0.35rem;
}

.app-highlight .section-intro {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
}

.app-actions {
  display: grid;
  gap: 1rem;
}

.app-store-btn {
  justify-content: flex-start;
  align-items: center;
  gap: 0.95rem;
  width: 100%;
  min-height: 78px;
  padding: 0.9rem 1.15rem;
  border-width: 1px;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.95rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

.store-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,34,29,0.2);
  border: 1px solid rgba(7,34,29,0.2);
}

.store-logo svg {
  width: 24px;
  height: 24px;
}

.app-store-btn:first-child .store-logo svg {
  fill: currentColor;
}

.store-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.store-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
}

.store-name {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1;
}

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

@media (max-width: 540px) {
  .app-store-btn {
    min-height: 72px;
    padding: 0.8rem 0.9rem;
  }

  .store-name {
    font-size: 0.93rem;
  }
}

/* ─── Reviews ───────────────────────────────────────────────────── */
.reviews {
  background: var(--white);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.reviews h2 { color: var(--forest); }
.reviews .section-intro { margin: 0 auto 3rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  text-align: left;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--gold); }

.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.review-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-d);
}

/* ─── Contact ───────────────────────────────────────────────────── */
.contact {
  background: var(--forest);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info { color: var(--white); }
.contact-info h2 { color: var(--white); margin-bottom: 0.5rem; }
.contact-info .section-intro { color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  border-radius: 50%;
}
.contact-detail-body {
  font-size: 0.9rem;
}
.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.contact-detail-value a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.contact-detail-value a:hover { color: var(--gold); }

/* ─── Form ──────────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group select option {
  background: var(--forest);
  color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 0.5rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-error,
.form-success {
  display: none;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.form-success {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-l);
}

.form-error {
  background: rgba(165,44,44,0.14);
  border: 1px solid rgba(226,94,94,0.35);
  color: #ffd6d6;
}

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

/* ─── CTA Banner ────────────────────────────────────────────────── */
.cta-banner {
  background: var(--cream);
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.cta-banner h2 { color: var(--forest); margin-bottom: 0.5rem; }
.cta-banner .section-intro { margin: 0 auto 2.5rem; }
.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Local SEO section ─────────────────────────────────────────── */
.local-seo {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.local-seo-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.local-seo .section-intro {
  margin: 0 auto;
}
.local-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 2rem 0;
}
.local-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--forest-xl);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(201,168,76,0.08);
}
.local-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── FAQ section ───────────────────────────────────────────────── */
.faq {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.faq-list {
  max-width: 900px;
  margin: 2rem auto 0;
  display: grid;
  gap: 0.75rem;
}
.faq-item {
  text-align: left;
  border: 1px solid rgba(7,34,29,0.14);
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--forest);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  background: #040f0d;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem;
  color: rgba(255,255,255,0.4);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo { margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 0.6rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-l); }

.footer-hours li {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-hours li span:last-child { color: rgba(255,255,255,0.6); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}
.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Scroll reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Hero image ────────────────────────────────────────────────── */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
}

/* ─── About visual image ────────────────────────────────────────── */
.about-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.about-visual:hover .about-visual-img { transform: scale(1.04); }

/* ─── Gallery ───────────────────────────────────────────────────── */
.gallery {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.gallery h2 { color: var(--forest); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
  margin-top: 2.5rem;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  background: var(--forest-l);
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}

/* ─── Atmosphere banner ─────────────────────────────────────────── */
.atmosphere-banner {
  position: relative;
  height: clamp(280px, 38vw, 480px);
  overflow: hidden;
}
.atmosphere-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.atmosphere-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 34, 29, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.atmosphere-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 700px;
  line-height: 1.5;
}
.atmosphere-quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

/* ─── Reservation section ───────────────────────────────────────── */
.reservation-section {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  background: var(--forest-l);
  overflow: hidden;
}
.reservation-section > *:not(.reservation-bg) { position: relative; z-index: 1; }
/* Text auf dunklem Hintergrund hell halten */
.reservation-section h2 { color: var(--white); }
.reservation-section .section-intro { color: rgba(255,255,255,0.5); margin: 0 auto 2.5rem; }
.reservation-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

/* ─── Form consent checkbox ─────────────────────────────────────── */
.form-consent-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.form-consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-consent-label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent-label a:hover { color: var(--gold-l); }

/* ─── Footer legal links ────────────────────────────────────────── */
.footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-l); }

/* ─── Legal pages (impressum / datenschutz) ─────────────────────── */
.legal-hero {
  background: var(--forest);
  padding: 8rem clamp(1.5rem, 5vw, 4rem) 4rem;
  text-align: center;
}
.legal-hero h1 { color: var(--white); }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(7,34,29,0.1);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--gold-d); }
.legal-placeholder {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px dashed var(--gold-d);
  border-radius: var(--radius);
  padding: 0.1rem 0.5rem;
  color: var(--gold-d);
  font-size: 0.85rem;
  font-style: italic;
}
