/* ============================================================
   Da' Amici Hotel & Restaurant – Design System
   Dark Luxury · Cormorant Garamond + Inter
   Shared across all pages.
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
a { color: inherit; }

/* ── Tokens ── */
:root {
  --bg:        #0E0604;
  --bg-2:      #16100B;
  --bg-3:      #1F140C;
  --surface:   #1A120B;
  --gold:      #C9A84C;
  --gold-lt:   #E2C87A;
  --gold-deep: #A8862F;
  --gold-dim:  rgba(201,168,76,0.16);
  --gold-glow: rgba(201,168,76,0.28);
  --cream:     #F0E4C8;
  --text:      #ECE2CA;
  --muted:     #B09A82;
  --wine:      #7A2230;
  --border:    rgba(201,168,76,0.14);
  --border-hv: rgba(201,168,76,0.40);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --nav-h:  78px;
  --pad:    clamp(4rem, 9vw, 9rem);
  --wrap:   1180px;
  --wrap-narrow: 760px;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 2px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--bg); }

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

/* ── Layout helpers ── */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── Scroll reveal ── */
.sr { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.sr.on { opacity: 1; transform: translateY(0); }
.sr.d1 { transition-delay: 0.1s; }
.sr.d2 { transition-delay: 0.2s; }
.sr.d3 { transition-delay: 0.3s; }
.sr.d4 { transition-delay: 0.4s; }

/* ── Section anatomy ── */
.section { padding: var(--pad) 0; }
.section--alt { background: var(--bg-2); }

.sec-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.sec-title {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.sec-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 540px;
  margin-top: 0.9rem;
  line-height: 1.6;
}
.center { text-align: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

.ornament {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  margin: 1.1rem 0;
}
.center .ornament { margin-left: auto; margin-right: auto; }
.ornament::before, .ornament::after {
  content: '';
  display: block;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament span { color: var(--gold); font-size: 1.05rem; line-height: 1; }

.prose { color: var(--muted); line-height: 1.85; }
.prose p + p { margin-top: 1rem; }

/* ── Buttons ── */
.btn-gold, .btn-outline {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.1rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
}
.btn-gold { color: var(--bg); background: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 28px var(--gold-glow); }
.btn-outline { color: var(--cream); background: transparent; border-color: rgba(240,228,200,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(14,6,4,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1.5rem; }
.nav__logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; gap: 4px; }
.nav__logo-main { font-family: var(--ff-display); font-weight: 600; font-size: 1.55rem; color: var(--cream); letter-spacing: 0.02em; }
.nav__logo-sub { font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.nav__right { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav__links a {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--muted); position: relative; transition: color 0.25s;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--gold); }
.nav__links a[aria-current="page"]::after, .nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.lang {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.lang a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.lang a:hover, .lang a[aria-current="true"] { color: var(--gold); }
.lang span { color: var(--border-hv); }

.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: none; border: none; cursor: pointer; padding: 9px;
}
.nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: transform 0.3s, opacity 0.3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(14,6,4,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border); padding: 1.25rem clamp(1.25rem, 5vw, 3rem) 2rem;
  flex-direction: column; z-index: 199; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: var(--cream); padding: 1rem 0; border-bottom: 1px solid var(--border); transition: color 0.25s;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn-gold { margin-top: 1.4rem; text-align: center; width: 100%; border-bottom: none; }
.nav__mobile .lang { margin-top: 1.25rem; justify-content: center; }

@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1rem 4rem;
}
.hero--page { min-height: 64svh; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); transition: transform 8s ease-out; }
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,6,4,0.45) 0%, rgba(14,6,4,0.55) 35%, rgba(14,6,4,0.72) 75%, rgba(14,6,4,0.96) 100%);
}
.hero__content { position: relative; z-index: 2; width: 100%; min-width: 0; max-width: min(840px, 100%); }
.hero__eyebrow {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.hero__title { font-family: var(--ff-display); font-size: clamp(3rem, 11vw, 7.5rem); font-weight: 600; line-height: 0.98; color: var(--cream); letter-spacing: 0.01em; overflow-wrap: break-word; width: min(90vw, 840px); margin-left: auto; margin-right: auto; }
.hero--page .hero__title { font-size: clamp(1.7rem, 6.5vw, 4.6rem); width: 88vw; max-width: 840px; margin-left: auto; margin-right: auto; overflow-wrap: break-word; }
.hero__logo { display: block; margin: 0 auto; max-width: min(540px, 80vw); line-height: 0; }
.hero__logo picture { display: block; }
.hero__logo img { display: block; width: min(540px, 80vw); max-width: 100%; height: auto; margin: 0 auto; filter: drop-shadow(0 4px 22px rgba(0,0,0,0.55)); }
.hero__subtitle { font-family: var(--ff-display); font-style: italic; font-size: clamp(1.15rem, 2.6vw, 1.6rem); color: var(--cream); margin-top: 1.25rem; }
.hero__line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); margin: 1.9rem auto; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__crumb { margin-top: 1.1rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hero__crumb a { color: var(--muted); text-decoration: none; }
.hero__crumb a:hover { color: var(--gold); }

/* Hero entrance animation */
.hero__content > * { opacity: 0; animation: fadeUp 1s var(--ease) forwards; }
.hero__content > *:nth-child(1) { animation-delay: 0.25s; }
.hero__content > *:nth-child(2) { animation-delay: 0.45s; }
.hero__content > *:nth-child(3) { animation-delay: 0.65s; }
.hero__content > *:nth-child(4) { animation-delay: 0.85s; }
.hero__content > *:nth-child(5) { animation-delay: 1.0s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════ SPLIT (image + text) ═══════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 6rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__img--wide { aspect-ratio: 4/3; }
.split__frame { position: absolute; bottom: -1.2rem; right: -1.2rem; width: 52%; aspect-ratio: 1; border: 1px solid var(--gold-dim); pointer-events: none; }
.badge {
  position: absolute; top: 1.4rem; left: -1.2rem; background: var(--bg-3);
  border: 1px solid var(--border); padding: 1rem 1.3rem; text-align: center; line-height: 1.1;
}
.badge__num { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 2.3rem; color: var(--gold); }
.badge__txt { display: block; font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.quote {
  font-family: var(--ff-display); font-style: italic; font-size: 1.35rem; color: var(--gold);
  border-left: 2px solid var(--gold); padding-left: 1.25rem; margin: 1.8rem 0; line-height: 1.5;
}
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__frame { display: none; }
  .badge { left: 0.75rem; }
}

/* ═══════════ FEATURE CARDS ═══════════ */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--surface); border: 1px solid var(--border); padding: 2.2rem 1.9rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; text-decoration: none; display: block;
}
.card:hover { border-color: var(--border-hv); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.card__icon { width: 46px; height: 46px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; }
.card__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.card__title { font-family: var(--ff-display); font-weight: 600; font-size: 1.5rem; color: var(--cream); margin-bottom: 0.6rem; }
.card__desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.card__more { display: inline-block; margin-top: 1.1rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

/* ═══════════ PILLARS ═══════════ */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 2rem; }
.pillar { display: flex; gap: 0.85rem; align-items: flex-start; }
.pillar__icon { flex-shrink: 0; width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.pillar__icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pillar__title { font-weight: 600; font-size: 0.9rem; color: var(--cream); margin-bottom: 2px; }
.pillar__desc { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 480px) { .pillars { grid-template-columns: 1fr; } }

/* ═══════════ MENU ═══════════ */
.menu-tabs { display: flex; justify-content: center; flex-wrap: wrap; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem; }
.tab-btn {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  background: none; border: none; border-bottom: 2px solid transparent; padding: 0.85rem 1.3rem; margin-bottom: -1px;
  cursor: pointer; white-space: nowrap; transition: color 0.25s, border-color 0.25s;
}
.tab-btn:hover { color: var(--cream); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.menu-cat-title { font-family: var(--ff-display); font-style: italic; font-size: 1.6rem; color: var(--gold); margin: 0 0 0.4rem; }
.menu-cat-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.menu-item { padding: 1.25rem 1.6rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-start; gap: 1.25rem; transition: background 0.25s; }
.menu-item:hover { background: rgba(201,168,76,0.04); }
.menu-item__info { flex: 1; }
.menu-item__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.2rem; color: var(--cream); margin-bottom: 0.2rem; }
.menu-item__name .num { color: var(--gold-deep); font-size: 1.1rem; font-weight: 600; margin-right: 0.45rem; }
.menu-item__desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.menu-item__tags { font-size: 0.7rem; color: var(--gold-deep); margin-top: 0.25rem; letter-spacing: 0.04em; }
.menu-item__price { font-family: var(--ff-display); font-weight: 600; font-size: 1.25rem; color: var(--gold); white-space: nowrap; padding-top: 2px; flex-shrink: 0; }
.menu-note { text-align: center; margin-top: 2rem; font-family: var(--ff-display); font-style: italic; font-size: 1.05rem; color: var(--muted); }
@media (max-width: 680px) {
  .menu-grid { grid-template-columns: 1fr; }
  .tab-btn { padding: 0.7rem 0.8rem; font-size: 0.66rem; letter-spacing: 0.1em; }
}

/* ═══════════ GALLERY ═══════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 6px; grid-auto-flow: dense; }
.gallery-cell { overflow: hidden; position: relative; cursor: zoom-in; }
.gallery-cell--wide { grid-column: span 2; }
.gallery-cell--tall { grid-row: span 2; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.5s; filter: brightness(0.85) saturate(0.9); }
.gallery-cell:hover .gallery-img { transform: scale(1.06); filter: brightness(1) saturate(1.08); }
.gallery-veil { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(14,6,4,0); transition: background 0.4s; }
.gallery-cell:hover .gallery-veil { background: rgba(14,6,4,0.22); }
.gallery-veil svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 1.5; opacity: 0; transform: scale(0.6); transition: opacity 0.3s, transform 0.3s var(--ease); }
.gallery-cell:hover .gallery-veil svg { opacity: 1; transform: scale(1); }
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-cell--wide, .gallery-cell--tall { grid-column: span 1; grid-row: span 1; }
}

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(14,6,4,0.96); z-index: 500; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox__close { position: absolute; top: 1.3rem; right: 1.8rem; font-size: 2.2rem; color: var(--cream); background: none; border: none; cursor: pointer; line-height: 1; transition: color 0.2s; }
.lightbox__close:hover { color: var(--gold); }

/* ═══════════ NACH-OBEN-BUTTON ═══════════ */
.to-top {
  position: fixed; bottom: clamp(1rem, 4vw, 2rem); right: clamp(1rem, 4vw, 2rem); z-index: 300;
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  background: rgba(31,20,12,0.9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-hv); color: var(--gold); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.25s, color 0.25s, border-color 0.25s;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.to-top svg { width: 20px; height: 20px; }

/* ═══════════ PROMO-POPUP ═══════════ */
.promo {
  position: fixed; right: clamp(1rem, 4vw, 2rem); bottom: clamp(1rem, 4vw, 2rem); z-index: 400;
  max-width: 330px; background: var(--bg-3); border: 1px solid var(--border-hv); border-left: 3px solid var(--gold);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5); padding: 1.3rem 1.6rem 1.4rem;
  transform: translateY(24px); opacity: 0; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.promo.show { opacity: 1; transform: translateY(0); }
.promo__close { position: absolute; top: 0.4rem; right: 0.6rem; background: none; border: none; color: var(--muted); font-size: 1.5rem; line-height: 1; cursor: pointer; transition: color 0.2s; }
.promo__close:hover { color: var(--gold); }
.promo__label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.promo__title { font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; color: var(--cream); line-height: 1.15; margin-bottom: 0.4rem; }
.promo__text { font-size: 0.92rem; color: var(--muted); line-height: 1.55; }
.promo__text strong { color: var(--gold-lt); }
@media (max-width: 480px) { .promo { left: clamp(1rem, 4vw, 2rem); max-width: none; } }

/* ═══════════ HOURS / INFO ═══════════ */
.block-title { font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 0.7rem; border-bottom: 1px solid var(--border); }
.hours { width: 100%; border-collapse: collapse; }
.hours tr { border-bottom: 1px solid var(--border); }
.hours td { padding: 0.8rem 0; font-size: 0.9rem; }
.hours td:first-child { color: var(--muted); width: 55%; }
.hours td:last-child { color: var(--cream); text-align: right; }
.hours .rest td { color: var(--muted); font-style: italic; }
.hours-note { margin-top: 1rem; font-size: 0.8rem; color: var(--muted); font-style: italic; }

.cinfo { display: flex; flex-direction: column; gap: 1.2rem; }
.cinfo__row { display: flex; align-items: flex-start; gap: 1rem; }
.cinfo__icon { flex-shrink: 0; width: 42px; height: 42px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.cinfo__icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cinfo__label { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.cinfo__val { font-size: 0.9rem; color: var(--cream); line-height: 1.55; }
.cinfo__val a { text-decoration: none; transition: color 0.25s; }
.cinfo__val a:hover { color: var(--gold); }

.map-wrap { margin-top: 1.6rem; height: 280px; border: 1px solid var(--border); overflow: hidden; filter: grayscale(1) brightness(0.6) contrast(1.05); transition: filter 0.4s; }
.map-wrap:hover { filter: grayscale(0.3) brightness(0.75); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ═══════════ FORMS ═══════════ */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.req { color: var(--gold-lt); margin-left: 3px; }
.field input:invalid:not(:placeholder-shown), .field textarea:invalid:not(:placeholder-shown) { border-color: rgba(224,0,136,0.5); }
.field input, .field textarea, .field select {
  background: var(--bg-3); border: 1px solid var(--border); color: var(--cream);
  padding: 0.8rem 0.95rem; border-radius: var(--radius); transition: border-color 0.25s; font-size: 0.92rem;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: 0.76rem; color: var(--muted); }
/* Adress-Autocomplete (Photon) */
.ac-list { position: absolute; top: 100%; left: 0; right: 0; z-index: 60; background: var(--bg-3); border: 1px solid var(--border-hv); border-top: none; max-height: 250px; overflow-y: auto; box-shadow: 0 16px 32px rgba(0,0,0,0.45); }
.ac-item { padding: 0.65rem 0.9rem; font-size: 0.85rem; color: var(--cream); cursor: pointer; border-bottom: 1px solid var(--border); }
.ac-item:last-child { border-bottom: none; }
.ac-item:hover, .ac-item.active { background: rgba(201,168,76,0.12); color: var(--gold); }
.form__status { font-size: 0.88rem; padding: 0.5rem 0; min-height: 1.5rem; }
.form__status.ok, .form__status.err { margin-top: 0.5rem; padding: 0.85rem 1.1rem; min-height: 0; border-radius: 2px; font-size: 0.96rem; line-height: 1.45; }
.form__status.ok { color: var(--gold-lt); border: 1px solid var(--gold-dim); background: rgba(201,168,76,0.09); }
.form__status.err { color: #ff7da8; border: 1px solid rgba(255,125,168,0.4); background: rgba(255,125,168,0.07); }
.nights { font-size: 0.92rem; color: var(--gold-lt); min-height: 1.3em; margin: 0.15rem 0 0.2rem; font-weight: 600; letter-spacing: 0.02em; }
.nights.warn { color: #ff7da8; font-weight: 500; }
.datefield-hint { font-size: 0.8rem; color: var(--muted); min-height: 1em; margin: 0.3rem 0 0; line-height: 1.35; }
.datefield-hint.warn { color: #ff7da8; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

/* ═══════════ CTA BAND ═══════════ */
.cta-band { background: var(--bg-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; padding: clamp(3rem, 6vw, 5rem) 0; }

/* ═══════════ FOOTER ═══════════ */
footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--border); }
.footer__brand-name { font-family: var(--ff-display); font-weight: 600; font-size: 1.6rem; color: var(--cream); }
.footer__brand-sub { font-size: 0.6rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold); margin: 4px 0 1rem; }
.footer__brand-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.75; }
.footer__col-head { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__list a { font-size: 0.875rem; color: var(--muted); text-decoration: none; transition: color 0.25s; }
.footer__list a:hover { color: var(--gold); }
.footer__addr { font-style: normal; font-size: 0.875rem; color: var(--muted); line-height: 1.85; }
.footer__addr a { color: var(--muted); text-decoration: none; transition: color 0.25s; }
.footer__addr a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer__social a { width: 38px; height: 38px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: border-color 0.25s, background 0.25s; }
.footer__social a:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.footer__social svg { width: 17px; height: 17px; fill: var(--gold); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; padding: 1.4rem 0; }
.footer__copy { font-size: 0.76rem; color: var(--muted); }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a { font-size: 0.76rem; color: var(--muted); text-decoration: none; transition: color 0.25s; }
.footer__legal a:hover { color: var(--gold); }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; } .footer__bottom { flex-direction: column; align-items: flex-start; } }

/* ── Legal / long-form pages ── */
.legal { padding: calc(var(--nav-h) + var(--pad)) 0 var(--pad); }
.legal h1 { font-family: var(--ff-display); font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); color: var(--cream); margin-bottom: 1.5rem; }
.legal h2 { font-family: var(--ff-display); font-weight: 600; font-size: 1.5rem; color: var(--gold); margin: 2rem 0 0.75rem; }
.legal p, .legal address { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.75rem; font-style: normal; }
.legal a { color: var(--gold); }

/* ── Mobile-Feinschliff ── */
@media (max-width: 600px) {
  .hero__eyebrow { font-size: 0.58rem; letter-spacing: 0.2em; }
  .hero__subtitle { font-size: 1.15rem; }
}
@media (max-width: 680px) {
  .menu-tabs { flex-wrap: wrap; justify-content: center; gap: 0.15rem; }
  .tab-btn { padding: 0.5rem 0.6rem; font-size: 0.6rem; letter-spacing: 0.06em; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .sr { opacity: 1; transform: none; }
  .hero__content > * { opacity: 1; animation: none; }
}
