@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Work+Sans:wght@400;500;600;700&family=Caveat:wght@500;700&display=swap');

:root {
  --wine: #5C1A29;
  --wine-deep: #2B0E15;
  --gold: #D8A94E;
  --gold-soft: #EFD9A6;
  --cream: #F6EFE0;
  --cream-light: #FBF6EC;
  --ink: #2A2018;
  --rose: #C1596B;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Fraunces', serif; margin: 0 0 0.4em; line-height: 1.08; }
a { color: inherit; }
img { max-width: 100%; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- NAV ---------- */
.nav { background: var(--wine-deep); position: sticky; top: 0; z-index: 50; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.nav .brand { font-family: 'Fraunces', serif; font-weight: 600; font-style: italic; color: var(--cream-light); font-size: 1.25rem; text-decoration: none; letter-spacing: 0.01em; }
.nav .brand span { color: var(--gold); font-style: normal; }
.nav .brand-sub { font-family: 'Caveat', cursive; color: var(--gold-soft); font-size: 1.1rem; margin-left: 6px; opacity: .8; display: none; }
@media (min-width: 700px) { .nav .brand-sub { display: inline; } }

.nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; font-size: 0.92rem; font-weight: 500; }
.nav ul a { text-decoration: none; color: var(--gold-soft); opacity: 0.85; padding: 6px 2px; border-bottom: 2px solid transparent; transition: all .2s; }
.nav ul a:hover, .nav ul a.active { opacity: 1; border-bottom-color: var(--gold); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 34px; flex-direction: column; justify-content: center; gap: 6px; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--gold-soft); border-radius: 2px; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav ul {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--wine-deep); flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav.open ul { max-height: 400px; }
  .nav ul a { display: block; padding: 14px 32px; border-bottom: 1px solid rgba(239,217,166,0.12); }
  .nav ul a.active, .nav ul a:hover { border-bottom-color: rgba(239,217,166,0.12); background: rgba(216,169,78,0.08); }
}

/* ---------- HERO ---------- */
.hero {
  background: radial-gradient(120% 140% at 15% 0%, #7A2438 0%, var(--wine) 45%, var(--wine-deep) 100%);
  color: var(--cream-light); position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(216,169,78,0.35), transparent 42%),
              radial-gradient(circle at 88% 55%, rgba(216,169,78,0.18), transparent 40%);
  pointer-events: none;
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; padding-top: 64px; padding-bottom: 96px; position: relative; }
.eyebrow { font-family: 'Caveat', cursive; font-size: 1.5rem; color: var(--gold); display: inline-block; margin-bottom: 6px; transform: rotate(-2deg); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p.lede { max-width: 46ch; font-size: 1.08rem; color: var(--gold-soft); opacity: 0.92; margin-bottom: 28px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--wine-deep);
  font-weight: 700; text-decoration: none; padding: 14px 26px; border-radius: 999px; font-size: 0.98rem;
  box-shadow: 0 8px 24px rgba(216,169,78,0.28); transition: transform .15s ease, box-shadow .15s ease; border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(216,169,78,0.4); }
.btn-ghost { background: transparent; color: var(--gold-soft); border: 1.5px solid rgba(239,217,166,0.5); box-shadow: none; }
.btn-ghost:hover { background: rgba(239,217,166,0.08); }
.btn-wine { background: var(--wine); color: var(--cream-light); box-shadow: none; }
.btn-deep { background: var(--wine-deep); color: var(--cream-light); box-shadow: none; }

.hero-photo { position: relative; justify-self: center; }
.hero-photo .spot { width: 380px; height: 300px; border-radius: 22px; overflow: hidden; box-shadow: 0 0 0 6px rgba(239,217,166,0.18), 0 30px 60px rgba(0,0,0,0.45); position: relative; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display:block; }
.hero-photo .glow { position: absolute; inset: -30px; background: radial-gradient(closest-side, rgba(216,169,78,0.35), transparent 70%); z-index: -1; }

/* ---------- Wunschzettel signature ---------- */
.wunschzettel {
  position: relative; max-width: 780px; margin: -58px auto 0; background: var(--cream-light);
  border-radius: 4px; padding: 30px 34px 26px; box-shadow: 0 22px 50px rgba(43,14,21,0.22);
  transform: rotate(-1.1deg); z-index: 5;
}
.wunschzettel::before { content: ""; position: absolute; top: -14px; left: 46px; width: 54px; height: 26px; background: rgba(216,169,78,0.55); border: 1px solid rgba(216,169,78,0.7); transform: rotate(-8deg); }
.wunschzettel .tag { font-family: 'Caveat', cursive; font-size: 1.5rem; color: var(--wine); display: block; margin-bottom: 4px; }
.wunschzettel h3 { font-size: 1.5rem; color: var(--wine-deep); margin-bottom: 14px; }
.genre-list { display: flex; flex-wrap: wrap; gap: 10px 12px; padding: 0; margin: 0; list-style: none; }
.genre-list li { font-weight: 600; font-size: 0.92rem; color: var(--wine-deep); background: var(--cream); border: 1.5px solid var(--gold); padding: 7px 14px; border-radius: 999px; }
.genre-list li::before { content: "\2713  "; color: var(--rose); }
.wunschzettel .note { margin-top: 16px; font-size: 0.92rem; color: #5c4a3a; }

/* ---------- Page hero (non-home pages) ---------- */
.page-hero { background: var(--wine-deep); color: var(--cream-light); padding: 56px 0 46px; }
.page-hero .kicker { color: var(--gold); }
.page-hero h1 { color: var(--cream-light); font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { color: var(--gold-soft); max-width: 60ch; opacity: .9; }

/* ---------- SECTION generic ---------- */
section { padding: 96px 0 72px; }
.kicker { font-family: 'Caveat', cursive; color: var(--rose); font-size: 1.3rem; display: block; margin-bottom: 2px; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--wine-deep); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- About / profile cards ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.about-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 640px; margin: 0 auto; }
.about-photos figure { margin: 0; }
.about-photos img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 6px; box-shadow: 0 16px 32px rgba(43,14,21,0.18); }
.about-photos figcaption { font-family: 'Fraunces', serif; font-style: italic; font-size: 0.95rem; margin-top: 10px; color: var(--wine); text-align: center; }
.about-text { max-width: 680px; margin: 0 auto; text-align: left; }
.about-text p { color: #4a3c30; }

.profile { display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: center; padding: 44px 0; border-bottom: 1px solid rgba(92,26,41,0.12); }
.profile:last-of-type { border-bottom: none; }
.profile-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 10px; box-shadow: 0 18px 36px rgba(43,14,21,0.2); }
.profile-body .kicker { margin-bottom: 0; }
.profile-body h2 { color: var(--wine-deep); font-size: 1.7rem; }
.profile-body p { color: #4a3c30; }
.profile-quote {
  background: var(--cream-light); border-left: 4px solid var(--gold); border-radius: 4px;
  padding: 22px 26px; position: relative;
}
.profile-quote p { font-style: italic; font-family: 'Fraunces', serif; font-size: 1.08rem; color: var(--wine-deep); margin-bottom: 10px; }
.profile-quote .sig { font-family: 'Caveat', cursive; font-size: 1.4rem; color: var(--rose); }

/* ---------- Tour route / Einsatzgebiet ---------- */
.route { background: var(--wine-deep); color: var(--cream-light); }
.route .section-head h2 { color: var(--cream-light); }
.route .section-head p { color: var(--gold-soft); opacity: .85; }
.route-line { display: flex; align-items: center; overflow-x: auto; gap: 0; padding-bottom: 8px; }
.stop { display: flex; flex-direction: column; align-items: center; min-width: 130px; position: relative; }
.stop .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(216,169,78,0.18); margin-bottom: 12px; }
.stop.home .dot { background: var(--rose); box-shadow: 0 0 0 5px rgba(193,89,107,0.22); width:20px; height:20px; }
.stop span { font-size: 0.92rem; text-align: center; font-weight: 600; color: var(--gold-soft); }
.stop.home span { color: var(--cream-light); }
.line-seg { flex: 1; height: 2px; background: linear-gradient(90deg, var(--gold), rgba(216,169,78,0.15)); min-width: 40px; margin-bottom: 24px; }

/* ---------- Referenzen ---------- */
.refs-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.ref-chip { font-size: 0.88rem; font-weight: 600; color: var(--wine-deep); background: var(--cream-light); border: 1px solid rgba(92,26,41,0.18); padding: 9px 16px; border-radius: 8px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.gallery button { display:block; overflow: hidden; border-radius: 6px; padding: 0; border: none; cursor: zoom-in; background: none; }
.gallery img { width: 100%; height: 150px; object-fit: cover; display: block; transition: transform .3s ease; }
.gallery button:hover img { transform: scale(1.07); }
.gallery.large img { height: 220px; }

.lightbox {
  position: fixed; inset: 0; background: rgba(20,8,12,0.92); display: none;
  align-items: center; justify-content: center; z-index: 200; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--gold-soft);
  font-size: 2rem; line-height: 1; cursor: pointer;
}

/* ---------- Contact CTA ---------- */
.cta { background: linear-gradient(120deg, var(--gold) 0%, #e8c688 100%); color: var(--wine-deep); text-align: center; }
.cta h2 { color: var(--wine-deep); }
.cta .contact-lines { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin: 28px 0 32px; font-weight: 600; }
.cta .contact-lines span { display:block; font-size: 0.78rem; font-weight: 500; opacity: .75; text-transform: uppercase; letter-spacing: .04em; }
.cta .signature { margin-top: 22px; font-family: 'Fraunces', serif; font-style: italic; color: var(--wine-deep); opacity: .8; }

/* ---------- Legal page ---------- */
.legal { max-width: 800px; }
.legal h2, .legal h3 { color: var(--wine-deep); margin-top: 1.6em; }
.legal p, .legal li { color: #4a3c30; }
.legal a { color: var(--wine); text-decoration: underline; }

/* ---------- Footer ---------- */
footer { background: var(--wine-deep); color: var(--gold-soft); text-align: center; padding: 40px 0; font-size: 0.9rem; }
footer strong { color: var(--cream-light); font-family: 'Fraunces', serif; font-style: italic; font-weight: 600; }
footer .legal-link { display: inline-block; margin-top: 10px; text-decoration: underline; opacity: .85; }

@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-photo { order: -1; }
  .hero-photo .spot { width: 100%; max-width: 340px; height: 230px; }
  .wunschzettel { margin-top: -40px; padding: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photos { grid-template-columns: repeat(3, 1fr); max-width: 320px; }
  .profile { grid-template-columns: 1fr; text-align: left; }
  .profile-photo { max-width: 240px; }
  section { padding: 64px 0 48px; }
}
