:root {
  --bg: #07101a;
  --bg-2: #0b1624;
  --panel: rgba(11, 22, 36, 0.72);
  --panel-strong: rgba(8, 15, 25, 0.86);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f3ea;
  --muted: #d3c8b2;
  --soft: #a9b4c1;
  --gold: #e8c574;
  --gold-strong: #f6d996;
  --rose: rgba(250, 215, 160, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232,197,116,0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 18%),
    linear-gradient(180deg, #0a1420 0%, #07101a 45%, #060c14 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 239, 204, 0.10), transparent 16%),
    radial-gradient(circle at 78% 18%, rgba(232, 197, 116, 0.10), transparent 18%),
    radial-gradient(circle at 58% 72%, rgba(255,255,255,0.04), transparent 20%);
  z-index: -2;
}

.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 6rem 0; position: relative; }
.section-tight { padding: 4.5rem 0; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.center { text-align: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold-strong);
  font-size: .78rem;
  margin: 0 0 1rem;
}
h1, h2, h3, .display {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -.02em;
  margin: 0;
}
p { line-height: 1.7; color: var(--muted); }
.lead { font-size: 1.14rem; max-width: 62ch; }

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  border-radius: 999px;
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9rem 1.2rem;
}
.brand { font-weight: 800; font-size: 1.1rem; letter-spacing: .04em; }
.brand span { color: var(--gold); }
.nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.nav a { color: var(--soft); }
.nav a:hover { color: var(--text); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.35rem; border-radius: 999px;
  background: linear-gradient(135deg, #f3dfab, #d7aa4e);
  color: #291806; font-weight: 800; border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 18px 40px rgba(215,170,78,.26);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.03); }
.button.alt { background: transparent; color: var(--text); box-shadow: none; border-color: rgba(255,255,255,.22); }
.button.small { padding: .78rem 1rem; font-size: .95rem; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: clip;
  padding: 8rem 0 5rem;
}
.hero-media { position: absolute; inset: 0; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.02) contrast(1.02) brightness(.55);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,12,20,.28), rgba(6,12,20,.62) 45%, rgba(6,12,20,.96) 100%),
    radial-gradient(circle at 50% 30%, rgba(232,197,116,.18), transparent 28%);
}
.hero-lights::before,
.hero-lights::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(40px); opacity: .5;
}
.hero-lights::before { width: 320px; height: 320px; left: -60px; top: 120px; background: rgba(232,197,116,.16); }
.hero-lights::after { width: 260px; height: 260px; right: 8%; top: 120px; background: rgba(255,255,255,.12); }
.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-size: clamp(3rem, 6vw, 5.8rem); max-width: 11ch; }
.hero-copy { max-width: 58rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }

.ribbon {
  display: inline-flex; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: .55rem .85rem; color: var(--gold-strong); margin-bottom: 1rem;
}
.ribbon-dot { width: .55rem; height: .55rem; border-radius: 50%; background: var(--gold-strong); box-shadow: 0 0 16px rgba(246,217,150,.8); }

.float-polaroid {
  position: absolute; z-index: 1; width: min(22vw, 270px);
  background: rgba(255,255,255,.92); padding: .7rem .7rem 1.2rem; border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
  transform-origin: center;
}
.float-polaroid img { aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; }
.float-polaroid span { display: block; color: #39250b; font-weight: 700; margin-top: .7rem; text-align: center; }
.float-left { left: 6%; bottom: 12%; transform: rotate(-8deg); }
.float-right { right: 7%; top: 18%; transform: rotate(8deg); }

.panel, .card, .feature, .tip, .contact-card, .quote-box, .info-box {
  border-radius: var(--radius);
}
.panel { padding: 2rem; }
.section-title { max-width: 48rem; margin: 0 auto 2rem; }

.stats {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; margin-top: 2rem;
}
.stat {
  padding: 1.2rem; border-radius: 22px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
}
.stat strong { display: block; font-size: 1.1rem; color: var(--text); margin-bottom: .25rem; }
.stat span { color: var(--soft); font-size: .96rem; }

.card {
  overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)); border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(232,197,116,.32); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.5rem; margin-bottom: .65rem; }

.lux-strip {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.5rem; align-items: stretch;
}
.image-stack { position: relative; min-height: 560px; }
.image-stack .main,
.image-stack .accent,
.image-stack .accent-two {
  position: absolute; overflow: hidden; border-radius: 30px; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow);
}
.image-stack .main { inset: 0 18% 0 0; }
.image-stack .accent { width: 40%; right: 0; top: 8%; height: 36%; }
.image-stack .accent-two { width: 38%; right: 5%; bottom: 4%; height: 42%; }
.image-stack img { width: 100%; height: 100%; object-fit: cover; }
.image-stack .shine {
  position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 7s infinite;
}
@keyframes shine { 0%, 55% { transform: translateX(-120%);} 100% { transform: translateX(120%);} }

.list-card {
  padding: 1.5rem; border-radius: 24px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
}
.list-card h3 { margin-bottom: .5rem; font-size: 1.35rem; }
.list-card ul { margin: .7rem 0 0 1.2rem; color: var(--muted); line-height: 1.7; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem;
}
.gallery-item { grid-column: span 4; position: relative; }
.gallery-item:nth-child(5n+1), .gallery-item:nth-child(7n+2) { grid-column: span 6; }
.gallery-btn {
  width: 100%; border: 0; padding: 0; cursor: pointer; background: transparent; text-align: left;
}
.gallery-frame {
  position: relative; overflow: hidden; border-radius: 26px; border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.gallery-frame img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; transition: transform .7s ease; }
.gallery-btn:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1;
  padding: .85rem 1rem; border-radius: 16px; background: rgba(8,15,25,.66); backdrop-filter: blur(12px);
  color: var(--text); font-weight: 700; border: 1px solid rgba(255,255,255,.10);
}

.bento {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem;
}
.tip-group { display: grid; gap: 1rem; }
.tip {
  padding: 1.45rem 1.45rem 1.35rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10);
}
.tip h3 { margin-bottom: .45rem; font-size: 1.3rem; }
.quote-box {
  padding: 1rem; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)); border: 1px solid var(--line);
}
.quote-box img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 22px; }
.quote-box blockquote {
  margin: 1rem 0 .25rem; font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; line-height: 1.45; color: var(--text);
}
.quote-box cite { color: var(--soft); font-style: normal; }

.contact-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.5rem; }
.contact-card, .form-card {
  padding: 2rem; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)); border: 1px solid var(--line);
  border-radius: 28px; box-shadow: var(--shadow);
}
.form-status { padding: .95rem 1rem; border-radius: 16px; margin-bottom: 1rem; }
.form-status.success { background: rgba(76, 175, 80, .16); border: 1px solid rgba(76,175,80,.35); color: #dff4df; }
.form-status.error { background: rgba(255, 99, 71, .14); border: 1px solid rgba(255,99,71,.35); color: #ffe2da; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
label { display: block; font-weight: 700; margin: 0 0 .45rem; color: var(--text); }
input, textarea {
  width: 100%; padding: .95rem 1rem; border-radius: 16px; color: var(--text);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); outline: none;
}
input:focus, textarea:focus { border-color: rgba(232,197,116,.48); box-shadow: 0 0 0 4px rgba(232,197,116,.12); }
textarea { resize: vertical; }
.honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.footer {
  padding: 2rem 0 3rem; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-wrap {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.footer p { margin: 0; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--soft); }

.lightbox {
  position: fixed; inset: 0; background: rgba(3,8,14,.88); display: none; place-items: center; padding: 1.5rem; z-index: 1000;
}
.lightbox.open { display: grid; }
.lightbox-panel {
  max-width: min(1100px, 100%); width: 100%; position: relative;
}
.lightbox-panel img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: 24px; }
.lightbox-close {
  position: absolute; top: .75rem; right: .75rem; border: 0; cursor: pointer; border-radius: 999px;
  width: 46px; height: 46px; background: rgba(8,15,25,.75); color: #fff; font-size: 1.2rem;
}
.lightbox-caption-text {
  text-align: center; margin-top: .8rem; color: var(--muted); font-weight: 600;
}

.german-hero { min-height: 58vh; }
.article-shell {
  max-width: 980px; margin: 0 auto;
}
.article-box {
  padding: 2rem; border-radius: 30px; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04)); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.article-box h2 { font-size: clamp(2rem, 3vw, 2.7rem); margin-bottom: 1rem; }
.article-box h3 { margin-top: 2rem; font-size: 1.5rem; }
.article-box p, .article-box li { color: var(--muted); }
.article-box ul { line-height: 1.8; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (max-width: 1080px) {
  .grid-3, .grid-2, .lux-strip, .bento, .contact-layout { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .image-stack { min-height: 430px; }
  .gallery-item, .gallery-item:nth-child(5n+1), .gallery-item:nth-child(7n+2) { grid-column: span 6; }
}

@media (max-width: 760px) {
  .topbar { top: .5rem; }
  .nav-wrap { padding: .9rem 1rem; }
  .nav { display: none; }
  .hero { min-height: auto; padding-top: 7rem; }
  .hero-content h1 { max-width: none; }
  .float-polaroid { position: static; width: 220px; margin-top: 1rem; }
  .hero-side-cards { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
  .stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(5n+1), .gallery-item:nth-child(7n+2) { grid-column: span 12; }
}
