/* ============================================================
   KRETA GRILL — Shared Styles  (Mobile-First)
   Design 1:1 wie die Speisekarte: Navy + Terrakotta + Gold auf Papier
   Breakpoints: Default = Mobile, +640px Tablet, +980px Desktop, +1180px Large
   ============================================================ */

:root {
  --sea:        #0b3a6f;
  --sea-ink:    #06234a;
  --sea-soft:   #1e5896;
  --sea-glow:   rgba(11, 58, 111, 0.18);
  --sun:        #d6552b;
  --sun-soft:   #e88a5b;
  --sun-deep:   #b54420;
  --gold:       #c8a25b;
  --gold-soft:  #e2c890;
  --bone:       #f6efe2;
  --bone-warm:  #ede2c9;
  --paper:      #fbf6ea;
  --paper-deep: #efe1bd;
  --ink:        #1a1408;
  --ink-soft:   #4a3c25;
  --red:        #c1272d;

  --shadow-card: 0 12px 28px -18px rgba(8, 24, 50, 0.4);
  --shadow-deep: 0 22px 50px -24px rgba(8, 24, 50, 0.55);
  --radius:     3px;

  /* mobile-friendly base spacing */
  --pad-x: 16px;
  --pad-section: 44px;

  --tap: 44px;  /* min touch-target */
}

/* ============================================================
   RESET + BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, #f8eed7 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, #e7d8b6 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 0% 80%, #f1e2bf 0%, transparent 55%),
    linear-gradient(180deg, #fbf3df 0%, #efe1bd 70%, #e3cf9e 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.07  0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.35'/></svg>");
  mix-blend-mode: multiply;
  opacity: .25;
  z-index: 1;
}

/* warm light corner glow */
body::after {
  content: "";
  position: fixed;
  top: -20vmax; right: -20vmax;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 225, 170, .55) 0%, rgba(255, 225, 170, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   TYPOGRAPHY (mobile base)
   ============================================================ */

.font-display, h1, h2, h3 {
  font-family: "Cinzel", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sea-ink);
  line-height: 1.1;
}

.font-script {
  font-family: "Caveat", "Brush Script MT", "Lucida Handwriting", cursive;
}

.font-mono {
  font-family: "JetBrains Mono", "Consolas", "Courier New", monospace;
}

h1 { font-size: clamp(28px, 7vw, 64px); margin: 0 0 0.4em; }
h2 { font-size: clamp(22px, 5.5vw, 40px); margin: 0 0 0.5em; }
h3 { font-size: clamp(18px, 4vw, 28px); margin: 0 0 0.4em; }

p { margin: 0 0 0.9em; }

a {
  color: var(--sun-deep);
  text-decoration: none;
  transition: color .25s ease;
}
a:hover, a:focus-visible { color: var(--sun); }

/* keyboard focus */
:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
  border-radius: 2px;
}

.container, main { position: relative; z-index: 2; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.wrap--narrow { max-width: 820px; }
.wrap--reading { max-width: 720px; }

/* ============================================================
   GREEK MEANDER PATTERN
   ============================================================ */

.meander {
  height: 18px;
  width: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 22' width='88' height='22'><g fill='none' stroke='%230b3a6f' stroke-width='2.4'><path d='M0 21 V5 H16 V13 H8 V9 H12 V17 H4 V1 H20 V21'/><path d='M22 21 V5 H38 V13 H30 V9 H34 V17 H26 V1 H42 V21'/><path d='M44 21 V5 H60 V13 H52 V9 H56 V17 H48 V1 H64 V21'/><path d='M66 21 V5 H82 V13 H74 V9 H78 V17 H70 V1 H86 V21'/></g></svg>");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 18px;
  opacity: .5;
}

.meander--gold {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 22' width='88' height='22'><g fill='none' stroke='%23c8a25b' stroke-width='2.4'><path d='M0 21 V5 H16 V13 H8 V9 H12 V17 H4 V1 H20 V21'/><path d='M22 21 V5 H38 V13 H30 V9 H34 V17 H26 V1 H42 V21'/><path d='M44 21 V5 H60 V13 H52 V9 H56 V17 H48 V1 H64 V21'/><path d='M66 21 V5 H82 V13 H74 V9 H78 V17 H70 V1 H86 V21'/></g></svg>");
}

.meander--light {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 22' width='88' height='22'><g fill='none' stroke='%23f3e3c4' stroke-width='2.4'><path d='M0 21 V5 H16 V13 H8 V9 H12 V17 H4 V1 H20 V21'/><path d='M22 21 V5 H38 V13 H30 V9 H34 V17 H26 V1 H42 V21'/><path d='M44 21 V5 H60 V13 H52 V9 H56 V17 H48 V1 H64 V21'/><path d='M66 21 V5 H82 V13 H74 V9 H78 V17 H70 V1 H86 V21'/></g></svg>");
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px auto;
  max-width: 600px;
  padding: 0 var(--pad-x);
  color: var(--sea);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sea-glow), transparent);
}
.divider span {
  font-family: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sea);
  white-space: nowrap;
}

/* ============================================================
   TOP BAR
   ============================================================ */

.topbar {
  position: relative;
  z-index: 30;
  background: var(--sea-ink);
  color: var(--bone);
  font-family: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 7px var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 14px;
  text-align: center;
}

.topbar a {
  color: var(--gold-soft);
  border-bottom: 1px solid transparent;
}
.topbar a:hover, .topbar a:focus-visible {
  color: var(--bone);
  border-bottom-color: var(--gold);
}

.topbar__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sun);
  display: inline-block;
  vertical-align: middle;
  margin-right: 2px;
}

/* hide secondary info on tiny screens to keep topbar one line */
.topbar__sec { display: none; }

@media (min-width: 520px) {
  .topbar { font-size: 11px; letter-spacing: 0.22em; }
  .topbar__inner { gap: 6px 20px; padding: 9px var(--pad-x); }
  .topbar__sec { display: inline-flex; align-items: center; gap: 4px; }
}

/* ============================================================
   HEADER + BRAND
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  padding: 8px var(--pad-x);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(251, 246, 234, 0.96);
  border-bottom: 1px solid rgba(11, 58, 111, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  min-width: 0;
}

.brand__wordmark {
  font-family: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 800;
  font-size: clamp(22px, 6.2vw, 30px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--sea-ink);
  margin: 0;
  position: relative;
  display: inline-block;
}
.brand__wordmark::before,
.brand__wordmark::after {
  content: "";
  position: absolute;
  top: 55%;
  width: clamp(20px, 5vw, 70px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sea-ink), transparent);
}
.brand__wordmark::before { right: 100%; margin-right: 12px; }
.brand__wordmark::after  { left:  100%; margin-left:  12px; }
.brand__wordmark::before,
.brand__wordmark::after { display: none; }

.brand__wordmark .amp {
  display: inline-block;
  color: var(--sun);
  font-style: italic;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  transform: translateY(-0.05em);
  padding: 0 0.1em;
}

.brand__tagline {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: clamp(15px, 4vw, 22px);
  color: var(--sun);
  margin: 0;
  transform: rotate(-2deg);
  line-height: 1;
  display: none;
}

/* hide the side-lines on very narrow phones to avoid clipping */
@media (max-width: 380px) {
  .brand__wordmark::before, .brand__wordmark::after { display: none; }
}

/* ============================================================
   NAV (mobile = compact burger menu)
   ============================================================ */

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  flex: 0 0 var(--tap);
  border: 1px solid rgba(200, 162, 91, 0.7);
  border-radius: 50%;
  background: var(--sea-ink);
  color: var(--bone);
  cursor: pointer;
  box-shadow: 0 8px 18px -14px rgba(8, 24, 50, 0.75);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle[aria-expanded="true"] {
  background: var(--sun);
  border-color: var(--sun);
  color: #fff;
}
.nav-toggle:active { transform: scale(0.94); }

.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 13px;
  display: block;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after,
.nav-toggle__bar {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bar { top: 5.5px; }
.nav-toggle__bars::after { top: 11px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  top: 5.5px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  top: 5.5px;
  transform: rotate(-45deg);
}

.nav {
  position: sticky;
  top: 60px;
  z-index: 34;
  background:
    linear-gradient(180deg, rgba(6, 35, 74, 0.98), rgba(7, 32, 63, 0.98));
  border-top: 1px solid rgba(200, 162, 91, 0.3);
  border-bottom: 1px solid rgba(200, 162, 91, 0.34);
  margin-top: 0;
  overflow: hidden;
  box-shadow: 0 20px 36px -30px rgba(8, 24, 50, 0.8);
  transition: max-height .32s ease, opacity .24s ease, transform .32s ease;
}

.nav-ready .nav {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.nav-ready .nav.nav--open {
  max-height: 360px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px var(--pad-x) 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 0;
  overflow-x: visible;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav__inner::-webkit-scrollbar { display: none; }

.nav__link {
  font-family: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 13px 4px;
  position: relative;
  text-decoration: none;
  transition: color .25s ease;
  white-space: nowrap;
  scroll-snap-align: none;
  flex-shrink: 1;
  min-height: var(--tap);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(200, 162, 91, 0.16);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .3s ease;
}
.nav__link:hover, .nav__link:focus-visible, .nav__link[aria-current="page"] {
  color: var(--gold-soft);
}
.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link[aria-current="page"]::after {
  width: 22px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--sun);
  color: #fff;
  border-radius: 99px;
  font-family: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 6px 16px -8px rgba(214, 85, 43, 0.55);
  margin: 10px 0 2px;
  flex-shrink: 0;
  min-height: var(--tap);
  white-space: nowrap;
  scroll-snap-align: none;
  justify-content: center;
  width: 100%;
}
.nav__cta:hover, .nav__cta:focus-visible {
  background: var(--sun-deep);
  color: #fff;
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .site-header {
    position: relative;
    z-index: 20;
    padding: 20px var(--pad-x) 8px;
    text-align: center;
    display: block;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .brand {
    align-items: center;
    gap: 4px;
  }
  .brand__wordmark {
    font-size: clamp(30px, 8vw, 58px);
    line-height: .95;
  }
  .brand__wordmark::before,
  .brand__wordmark::after { display: block; }
  .brand__tagline { display: block; }
  .nav-toggle { display: none; }
  .nav,
  .nav-ready .nav {
    top: 0;
    z-index: 25;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(251, 246, 234, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(11, 58, 111, 0.15);
    border-bottom: 1px solid rgba(11, 58, 111, 0.15);
    margin-top: 14px;
    box-shadow: none;
  }
  .nav__inner {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    overflow-x: visible;
    min-height: 56px;
    padding: 0 var(--pad-x);
  }
  .nav__link {
    width: auto;
    border-bottom: 0;
    color: var(--sea-ink);
    padding: 18px 6px;
    font-size: 13px;
    letter-spacing: 0.22em;
    display: inline-flex;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
  .nav__link:hover, .nav__link:focus-visible, .nav__link[aria-current="page"] {
    color: var(--sun-deep);
  }
  .nav__link::after { background: var(--sun); }
  .nav__link::after { bottom: 12px; }
  .nav__cta {
    width: auto;
    padding: 10px 18px;
    font-size: 12px;
    letter-spacing: 0.18em;
    margin: 0 0 0 14px;
    scroll-snap-align: end;
  }
}

@media (min-width: 980px) {
  .nav__inner { gap: 28px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: 2px;
  background: var(--sea-ink);
  color: var(--bone);
  font-family: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 10px 22px -14px rgba(6, 35, 74, 0.5);
  position: relative;
  overflow: hidden;
  min-height: var(--tap);
  text-align: center;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .14) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn:hover::before, .btn:focus-visible::before { transform: translateX(100%); }
.btn:hover, .btn:focus-visible {
  background: var(--sea);
  color: var(--bone);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -16px rgba(6, 35, 74, 0.7);
}

.btn--accent { background: var(--sun); }
.btn--accent:hover, .btn--accent:focus-visible { background: var(--sun-deep); }

.btn--ghost {
  background: transparent;
  color: var(--sea-ink);
  border: 1.5px solid var(--sea-ink);
  box-shadow: none;
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--sea-ink);
  color: var(--bone);
}

.btn--call {
  background: var(--sun);
  color: #fff;
  padding: 16px 26px;
  font-size: 14px;
}
.btn--call:hover, .btn--call:focus-visible { background: var(--sun-deep); color: #fff; }

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-row--center { justify-content: center; }

@media (min-width: 640px) {
  .btn { padding: 14px 28px; font-size: 13px; letter-spacing: 0.22em; }
  .btn-row { gap: 16px; }
}

/* ============================================================
   HERO  (mobile: single column stack)
   ============================================================ */

.hero {
  position: relative;
  z-index: 2;
  padding: 32px var(--pad-x) 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.hero__text { text-align: left; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 14px;
}
.hero__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--sun);
}

.hero__title {
  font-family: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 7.6vw, 66px);
  line-height: 1.04;
  margin: 0 0 16px;
  color: var(--sea-ink);
  letter-spacing: 0.01em;
}
.hero__title em {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-style: normal;
  font-weight: 500;
  font-size: 0.74em;
  color: var(--sun);
  display: block;
  letter-spacing: 0;
  margin-top: 4px;
}

.hero__lead {
  font-size: clamp(16px, 4.2vw, 21px);
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.55;
}

.hero__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  width: 100%;
  height: clamp(380px, 70svh, 520px);
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(6, 35, 74, 0.16) 0%, transparent 35%, transparent 65%, rgba(214, 85, 43, 0.16) 100%);
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--paper);
  border: 1px solid var(--gold);
  padding: 10px 16px;
  border-radius: 2px;
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: 18px;
  color: var(--sun-deep);
  transform: rotate(-3deg);
  box-shadow: var(--shadow-card);
  line-height: 1.1;
}
.hero__badge strong {
  display: block;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sea-ink);
  font-weight: 600;
  margin-bottom: 2px;
}

@media (min-width: 820px) {
  .hero { padding: 48px var(--pad-x) 32px; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.32em; margin-bottom: 18px; }
  .hero__lead { margin-bottom: 28px; }
  .hero__image { aspect-ratio: 4 / 3; height: auto; }
  .hero__badge {
    bottom: -16px;
    right: -16px;
    padding: 14px 22px;
    font-size: 22px;
  }
  .hero__badge strong { font-size: 10px; letter-spacing: 0.25em; }
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: var(--pad-section) var(--pad-x);
  position: relative;
  z-index: 2;
}
.section--tight { padding: 32px var(--pad-x); }
.section--dark {
  background:
    radial-gradient(ellipse at 22% 28%, rgba(245, 166, 35, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(214, 85, 43, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, #07203f 0%, #04132a 100%);
  color: #f3e3c4;
  border-top: 1px solid rgba(200, 162, 91, 0.22);
  border-bottom: 1px solid rgba(200, 162, 91, 0.22);
}
.section--dark h2, .section--dark h3 { color: var(--gold-soft); }
.section--dark a { color: var(--gold-soft); }
.section--dark a:hover { color: var(--sun-soft); }

.section__eyebrow {
  text-align: center;
  font-family: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sun);
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section__eyebrow::before, .section__eyebrow::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--sun);
  opacity: .55;
}

.section__title {
  text-align: center;
  font-family: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--sea-ink);
  margin: 0 auto 0.7em;
}
.section--dark .section__title { color: var(--gold-soft); }

.section__lead {
  text-align: center;
  font-size: clamp(15px, 3.8vw, 20px);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 32px;
}
.section--dark .section__lead { color: #d6c8a8; }

@media (min-width: 640px) {
  .section { padding: 56px var(--pad-x); }
  .section--tight { padding: 40px var(--pad-x); }
  .section__eyebrow { font-size: 11px; letter-spacing: 0.32em; gap: 14px; }
  .section__eyebrow::before, .section__eyebrow::after { width: 28px; }
  .section__lead { margin-bottom: 40px; }
}
@media (min-width: 980px) {
  .section { padding: 72px var(--pad-x); }
  .section--tight { padding: 48px var(--pad-x); }
  .section__lead { margin-bottom: 44px; }
}

/* ============================================================
   USP CARDS
   ============================================================ */

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.usp {
  position: relative;
  padding: 26px 22px 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(11, 58, 111, 0.16);
  border-radius: 2px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.usp:hover, .usp:focus-within {
  transform: translateY(-3px);
  border-color: rgba(214, 85, 43, 0.35);
  box-shadow: var(--shadow-deep);
}
.usp__num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.18em;
  opacity: 0.7;
}
.usp__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sea-ink);
  color: var(--gold-soft);
  border-radius: 50%;
  margin-bottom: 14px;
}
.usp__icon svg { width: 22px; height: 22px; }
.usp h3 {
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--sea-ink);
}
.usp p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
}

@media (min-width: 640px) {
  .usp-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
  .usp { padding: 30px 26px 28px; }
  .usp__icon { width: 48px; height: 48px; }
  .usp__icon svg { width: 24px; height: 24px; }
  .usp h3 { font-size: 18px; letter-spacing: 0.1em; }
  .usp p { font-size: 17px; }
}

/* ============================================================
   CLASSIC PREVIEW
   ============================================================ */

.classics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.classic {
  background: var(--paper);
  border: 1px solid rgba(200, 162, 91, 0.4);
  padding: 18px 20px;
  position: relative;
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.classic:hover, .classic:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}
.classic__num {
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--sun);
  text-transform: uppercase;
}
.classic__name {
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--sea-ink);
  margin: 2px 0;
  letter-spacing: 0.02em;
}
.classic__desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
}
.classic__price {
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--sun-deep);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

@media (min-width: 520px) {
  .classics { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
  .classic { padding: 22px 22px 20px; gap: 6px; }
  .classic__name { font-size: 19px; }
  .classic__desc { font-size: 16px; }
  .classic__price { font-size: 22px; margin-top: 12px; }
}

/* ============================================================
   PHOTO GRID  (mobile = single column stack)
   ============================================================ */

.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.photo {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow-card);
  background: var(--paper);
  cursor: zoom-in;
  transition: transform .4s ease, box-shadow .4s ease;
  display: block;
}
.photo:hover, .photo:focus-visible {
  transform: scale(1.014);
  box-shadow: var(--shadow-deep);
}
.photo img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .9s ease;
}
.photo:hover img { transform: scale(1.06); }

.photo__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(0deg, rgba(6, 35, 74, 0.88) 0%, rgba(6, 35, 74, 0) 100%);
  color: var(--bone);
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* on mobile keep captions visible; on desktop animate in on hover */
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease;
}

.photo--wide  { aspect-ratio: 16 / 10; }
.photo--tall  { aspect-ratio: 4 / 5; }
.photo--square{ aspect-ratio: 1 / 1; }

/* Tablet: 2 columns */
@media (min-width: 520px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .photo--span12 { grid-column: 1 / -1; }
  .photo--span6  { grid-column: span 1; }
  .photo--span4  { grid-column: span 1; }
  .photo--span3  { grid-column: span 1; }
}

/* Desktop: 12-col grid */
@media (min-width: 820px) {
  .photo-grid { grid-template-columns: repeat(12, 1fr); }
  .photo--span12 { grid-column: span 12; }
  .photo--span6  { grid-column: span 6; }
  .photo--span4  { grid-column: span 4; }
  .photo--span3  { grid-column: span 3; }
  .photo--tall   { aspect-ratio: 3 / 4; }
  .photo--wide   { aspect-ratio: 16 / 9; }

  .photo__caption {
    padding: 16px 18px 14px;
    font-size: 12px;
    letter-spacing: 0.18em;
    opacity: 0;
    transform: translateY(8px);
  }
  .photo:hover .photo__caption,
  .photo:focus-within .photo__caption {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 36, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 96vw;
  max-height: 86vh;
  border-radius: 3px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox__close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.2); }

/* ============================================================
   CALL CARD
   ============================================================ */

.call-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--sea-ink);
  color: var(--bone);
  padding: 28px 22px 26px;
  border-radius: 3px;
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.call-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 18px;
  opacity: .45;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 22' width='88' height='22'><g fill='none' stroke='%23c8a25b' stroke-width='2.4'><path d='M0 21 V5 H16 V13 H8 V9 H12 V17 H4 V1 H20 V21'/><path d='M22 21 V5 H38 V13 H30 V9 H34 V17 H26 V1 H42 V21'/><path d='M44 21 V5 H60 V13 H52 V9 H56 V17 H48 V1 H64 V21'/><path d='M66 21 V5 H82 V13 H74 V9 H78 V17 H70 V1 H86 V21'/></g></svg>");
  background-size: auto 18px;
}
.call-card h3 {
  margin: 0 0 6px;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
.call-card .big {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: clamp(22px, 6vw, 38px);
  color: var(--sun-soft);
  margin: 0 0 6px;
  line-height: 1.1;
}
.call-card__num {
  display: inline-block;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: clamp(22px, 6vw, 36px);
  font-weight: 700;
  color: var(--bone);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px dashed var(--gold);
  padding: 4px 2px 4px;
  margin: 10px 0 16px;
  min-height: var(--tap);
  line-height: 1.2;
}
.call-card__num:hover { color: var(--gold-soft); }
.call-card__hint {
  display: block;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 227, 196, 0.7);
  margin-top: 6px;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .call-card { padding: 36px 32px 30px; }
  .call-card h3 { font-size: 13px; letter-spacing: 0.4em; }
  .call-card__hint { font-size: 11px; letter-spacing: 0.22em; }
}

/* ============================================================
   INFO CARDS
   ============================================================ */

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.info-card {
  padding: 22px 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(11, 58, 111, 0.18);
  border-radius: 2px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-card:hover, .info-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}
.info-card h4 {
  margin: 0 0 10px;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--sea);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-card h4 svg {
  width: 18px; height: 18px;
  color: var(--sun);
  flex-shrink: 0;
}
.info-card p {
  margin: 0 0 0.4em;
  font-size: 17px;
  line-height: 1.5;
  color: var(--sea-ink);
}
.info-card a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 85, 43, 0.4);
}
.info-card a:hover { color: var(--sun); border-bottom-color: var(--sun); }

@media (min-width: 520px) {
  .info-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
  .info-card { padding: 26px 26px; }
  .info-card h4 { font-size: 12px; letter-spacing: 0.35em; }
  .info-card p { font-size: 18px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse at 22% 28%, rgba(245, 166, 35, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(214, 85, 43, 0.08) 0%, transparent 55%),
    linear-gradient(135deg, #07203f 0%, #04132a 100%);
  color: #f3e3c4;
  padding: 44px var(--pad-x) 22px;
  border-top: 1px solid rgba(200, 162, 91, 0.22);
}

.site-footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 520px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (min-width: 820px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
  .site-footer { padding: 64px var(--pad-x) 24px; }
}

.site-footer h5 {
  margin: 0 0 12px;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.site-footer p, .site-footer li {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #d6c8a8;
}
.site-footer ul { padding: 0; list-style: none; margin: 0; }
.site-footer a {
  color: #d6c8a8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color .25s ease, color .25s ease;
  display: inline-block;
  min-height: 32px;
  padding: 4px 0;
  line-height: 1.5;
}
.site-footer a:hover, .site-footer a:focus-visible {
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}

.site-footer__brand .brand-name {
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 22px;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 4px;
}
.site-footer__brand .brand-tag {
  font-family: "Caveat", cursive;
  font-size: 19px;
  color: var(--sun-soft);
  display: block;
  margin-bottom: 14px;
  transform: rotate(-1deg);
}

@media (min-width: 640px) {
  .site-footer h5 { font-size: 11px; letter-spacing: 0.32em; }
  .site-footer p, .site-footer li { font-size: 16px; }
  .site-footer__brand .brand-name { font-size: 24px; }
  .site-footer__brand .brand-tag { font-size: 20px; }
}

.site-footer__bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 162, 91, 0.18);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(214, 200, 168, 0.7);
  text-align: center;
}
@media (min-width: 640px) {
  .site-footer__bottom {
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-align: left;
  }
}

/* ============================================================
   PAGE HEAD (subpages)
   ============================================================ */

.page-head {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 36px var(--pad-x) 24px;
}
.page-head__eyebrow {
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sun);
  margin: 0 0 10px;
}
.page-head h1 {
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--sea-ink);
  margin: 0 0 12px;
  font-size: clamp(28px, 7vw, 56px);
}
.page-head p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(15px, 3.8vw, 20px);
}

@media (min-width: 640px) {
  .page-head { padding: 56px var(--pad-x) 32px; }
  .page-head__eyebrow { font-size: 11px; letter-spacing: 0.32em; }
}
@media (min-width: 980px) {
  .page-head { padding: 64px var(--pad-x) 36px; }
}

/* ============================================================
   MENU TABLE (full speisekarte)
   ============================================================ */

.menu-cat {
  margin: 0 auto 36px;
  max-width: 880px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(11, 58, 111, 0.18);
  border-radius: 3px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.menu-cat__head {
  background: var(--sea-ink);
  color: var(--bone);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-cat__head h3 {
  margin: 0;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-weight: 600;
  font-size: clamp(15px, 4vw, 22px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1.15;
}
.menu-cat__head .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sun);
  color: #fff;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.menu-cat__hint {
  background: var(--bone-warm);
  color: var(--ink-soft);
  padding: 10px 18px;
  font-family: "Caveat", "Brush Script MT", cursive;
  font-size: 16px;
  border-bottom: 1px solid rgba(11, 58, 111, 0.12);
  line-height: 1.4;
}

.menu-cat__list { padding: 4px 0; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 14px;
  padding: 12px 18px;
  border-bottom: 1px dashed rgba(11, 58, 111, 0.14);
  transition: background .25s ease;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item:hover { background: rgba(255, 248, 224, 0.5); }
.menu-item__name {
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--sea-ink);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.menu-item__price {
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--sun-deep);
  white-space: nowrap;
  line-height: 1.3;
}
.menu-item__desc {
  grid-column: 1 / -1;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 4px 0 0;
}
.menu-item__warn {
  display: inline-block;
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-left: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
}

@media (min-width: 640px) {
  .menu-cat__head { padding: 22px 28px; gap: 16px; }
  .menu-cat__head .num { width: 36px; height: 36px; font-size: 14px; }
  .menu-cat__head h3 { letter-spacing: 0.18em; }
  .menu-cat__hint { padding: 12px 28px; font-size: 18px; }
  .menu-item { padding: 14px 28px; gap: 0 20px; }
  .menu-item__desc { grid-column: 1; }
  .menu-item__name { font-size: 18px; letter-spacing: 0.02em; }
  .menu-item__price { font-size: 19px; }
  .menu-item__desc { font-size: 16px; }
}

/* Sticky category jump-nav */
.menu-jump {
  position: sticky;
  top: 52px;
  z-index: 18;
  background: rgba(251, 246, 234, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 58, 111, 0.15);
  padding: 8px 0;
  margin-bottom: 24px;
}
.menu-jump__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 var(--pad-x);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-jump__inner::-webkit-scrollbar { display: none; }
.menu-jump a {
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea-ink);
  padding: 8px 10px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all .25s ease;
  text-decoration: none;
  white-space: nowrap;
  scroll-snap-align: center;
  flex-shrink: 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.menu-jump a:hover {
  border-color: rgba(214, 85, 43, 0.5);
  background: rgba(214, 85, 43, 0.08);
  color: var(--sun-deep);
}
@media (min-width: 640px) {
  .menu-jump { top: 56px; padding: 10px 0; }
  .menu-jump__inner { flex-wrap: wrap; justify-content: center; overflow: visible; gap: 6px 14px; }
  .menu-jump a { font-size: 11px; letter-spacing: 0.22em; }
}

/* ============================================================
   MAPS CONSENT
   ============================================================ */

.maps {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(11, 58, 111, 0.18);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  background: var(--paper);
}

.maps__consent {
  padding: 32px 22px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(11, 58, 111, 0.04), rgba(214, 85, 43, 0.04)),
    var(--paper);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.maps__consent h3 {
  margin: 0;
  font-family: "Cinzel", Palatino, Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sea-ink);
}
.maps__consent p {
  max-width: 480px;
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}
.maps__consent label {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 480px;
  text-align: left;
  cursor: pointer;
  line-height: 1.45;
}
.maps__consent input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--sun);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.maps__frame {
  display: none;
  width: 100%;
  height: 360px;
  border: 0;
}

@media (min-width: 640px) {
  .maps__consent { padding: 40px 28px; min-height: 360px; }
  .maps__consent h3 { font-size: 14px; letter-spacing: 0.28em; }
  .maps__consent p, .maps__consent label { font-size: 16px; }
  .maps__frame { height: 460px; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
