:root {
  --navy: #133750;
  --navy-deep: #0c2434;
  --navy-soft: #1b4d70;
  --gold: #cda841;
  --gold-bright: #e6c25e;
  --olive: #9e7b06;
  --olive-deep: #7d6205;
  --cream: #faf6ec;
  --cream-deep: #f2ead8;
  --ink: #221c12;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --crown-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cpath d='M45 2 L88 45 L45 88 L2 45 Z' fill='none' stroke='%23cda841' stroke-width='0.6' stroke-dasharray='1.5 3' opacity='0.4'/%3E%3Cg transform='translate(45,45)' opacity='0.5'%3E%3Cpath d='M-9 8 L-9 -2 L-4.5 3 L0 -6 L4.5 3 L9 -2 L9 8 Z' fill='%23cda841'/%3E%3C/g%3E%3Ccircle cx='0' cy='0' r='1.3' fill='%23cda841' opacity='0.5'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--serif); margin: 0; }

p { margin: 0; line-height: 1.7; }

a { color: inherit; text-decoration: none; }

.section-eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 0.9rem;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: var(--cream-deep);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 12px;
}
.topbar p { margin: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(22, 34, 63, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  padding: 10px 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo { flex-shrink: 0; height: 40px; width: auto; }
.main-nav { display: flex; gap: 34px; }
.main-nav a {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 34px; height: 26px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: -78px;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,36,52,0.55) 0%, rgba(12,36,52,0.25) 32%, rgba(12,36,52,0.55) 68%, rgba(12,36,52,0.94) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px 8.5rem;
  text-align: center;
  color: var(--cream);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.08;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero-sub {
  margin: 1.6rem auto 0;
  max-width: 540px;
  font-size: 1.08rem;
  color: rgba(250,246,236,0.92);
}
.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 2px;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(205,168,65,0.35); }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(250,246,236,0.6);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--gold-bright);
  border-radius: 50%;
  animation: cue 1.8s infinite;
}
@keyframes cue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ---------- About ---------- */
.about { padding: 0 0 2rem; }
.about-band {
  position: relative;
  background: linear-gradient(135deg, var(--olive), var(--olive-deep));
  overflow: hidden;
  padding: 6.5rem 28px 3rem;
}
.about-band::before {
  content: "";
  position: absolute;
  top: -80px; left: -80px;
  width: 420px; height: 420px;
  background: url("../assets/crown-mark.png") center / contain no-repeat;
  opacity: 0.07;
  transform: rotate(-8deg);
  pointer-events: none;
}
.about-band-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.about-text p { color: rgba(255,255,255,0.92); margin-bottom: 1.1rem; font-size: 1.02rem; }
.about-text p:last-child { margin-bottom: 0; }
.badge-row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2rem;
}
.badge-row img { width: 68px; height: 68px; }

.about-photos { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.photo-ring {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.photo-ring img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-ring--large {
  width: min(360px, 80%);
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 2;
}
.photo-ring--fourth {
  width: 150px;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 2%;
  top: -8%;
  z-index: 1;
  border: 5px solid var(--olive-deep);
  box-sizing: content-box;
}
.quote-bubble {
  position: absolute;
  right: 0%;
  bottom: 2%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.3rem;
  box-shadow: 0 16px 36px rgba(0,0,0,0.32);
  z-index: 3;
}
.quote-bubble p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
}

.features {
  max-width: 900px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  padding-top: 2rem;
}
.feature { text-align: center; padding: 0 8px; }
.feature-icon {
  width: 42px; height: 42px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-emoji {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.feature-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(19,55,80,0.25);
}
.feature h3 {
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature p { font-size: 0.92rem; color: #6b6553; }

/* ---------- Locations ---------- */
.standorte { position: relative; overflow: hidden; padding: 10rem 28px 7rem; min-height: 90vh; display: flex; flex-direction: column; justify-content: center; }
.standorte-media { position: absolute; inset: 0; z-index: 0; }
.standorte-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.standorte-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,36,52,0.72) 0%, rgba(12,36,52,0.6) 45%, rgba(12,36,52,0.88) 100%);
}
.standorte-content { position: relative; z-index: 1; }
.section-head { max-width: 640px; margin: 0 auto 3.6rem; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--navy); font-weight: 600; }
.section-sub { margin-top: 1rem; color: #6b6553; font-size: 1.02rem; }
.section-head.light .section-sub, .section-head.light p { color: rgba(250,246,236,0.75); }
.section-head.light h2 { color: #fff; }


.location-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.location-card {
  background: #fff;
  border-left: 3px solid var(--gold);
  padding: 2rem 1.6rem;
  box-shadow: 0 10px 30px rgba(19,55,80,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(19,55,80,0.1); }
.location-pin { color: var(--gold); }
.location-pin svg { width: 26px; height: 26px; }
.location-card h3 {
  font-size: 1.08rem;
  color: var(--navy);
  font-weight: 600;
  margin: 1rem 0 0.7rem;
  line-height: 1.35;
}
.location-card h3 span { display: block; font-family: var(--sans); font-weight: 400; font-size: 0.85rem; color: var(--gold); margin-top: 2px; letter-spacing: 0.02em; }
.location-card p { font-size: 0.92rem; color: #6b6553; margin-bottom: 1.2rem; }
.route-link {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.route-link:hover { color: var(--gold); }

/* ---------- Kontakt ---------- */
.kontakt {
  position: relative;
  background: var(--crown-pattern), var(--navy-deep);
  padding: 6.5rem 28px;
  text-align: center;
  overflow: hidden;
}
.kontakt::before {
  content: "";
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 260px;
  background: url("../assets/crown-mark.png") center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.kontakt > * { position: relative; z-index: 1; }
.kontakt-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.kontakt-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 1.08rem;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.kontakt-item:hover { color: var(--gold-bright); border-color: var(--gold); }
.kontakt-icon { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.social-row {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(230,194,94,0.3);
  color: var(--gold-bright);
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: rgba(230,194,94,0.12); transform: translateY(-2px); }
.social-row svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); padding: 3.4rem 28px 1.6rem; }
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(250,246,236,0.12);
}
.footer-brand { display: flex; align-items: center; }
.footer-brand .brand-logo { height: 34px; }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a { color: rgba(250,246,236,0.75); font-size: 0.92rem; }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding-top: 1.4rem; }
.footer-bottom p { color: rgba(250,246,236,0.45); font-size: 0.8rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .about-band-inner { grid-template-columns: 1fr; gap: 4.5rem; }
  .about-photos { order: -1; margin-bottom: 1rem; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 28px 28px;
    gap: 18px;
  }
  .hero { min-height: 100vh; }
  .hero-content { padding-bottom: 6rem; }
  .about-band { padding: 5rem 20px 7rem; }
  .quote-bubble { width: 150px; height: 150px; font-size: 0.9rem; }
  .quote-bubble p { font-size: 0.9rem; }
  .features { grid-template-columns: 1fr; }
  .standorte { padding: 5rem 20px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Contact Form Modal ---------- */
button.kontakt-item {
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  font-family: var(--sans);
  cursor: pointer;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,36,52,0.78);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--crown-pattern), linear-gradient(160deg, var(--navy), var(--navy-deep));
  background-color: var(--navy);
  border-radius: 10px;
  padding: 3rem 2.4rem 2.4rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(18px);
  transition: transform 0.3s ease;
}
.modal-overlay.is-open .modal-panel { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.modal-close:hover { opacity: 1; color: var(--gold-bright); }
.modal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 0.6rem;
}
.modal-panel h2 {
  font-family: var(--serif);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 1.8rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.3rem; position: relative; z-index: 1; }
.contact-form label {
  display: block;
  color: rgba(250,246,236,0.85);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(250,246,236,0.96);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.98rem;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.contact-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: rgba(250,246,236,0.75);
  cursor: pointer;
}
.contact-form-consent input { margin-top: 3px; flex-shrink: 0; }
.contact-form button[type="submit"] { align-self: flex-start; margin-top: 0.4rem; }

@media (max-width: 480px) {
  .modal-panel { padding: 2.6rem 1.5rem 2rem; }
}
