/* =========================================================
   Eisflirt — Design System
   ========================================================= */

:root {
  /* Brand */
  --pink-500: #E5007E;
  --pink-600: #C50069;
  --pink-100: #FFE0F1;
  --pink-50:  #FFF4FA;

  /* Accents (aus Logo) */
  --yellow:   #F5C518;
  --cyan:     #4FC3D9;

  /* Neutrals — warm */
  --cream:    #FFF8F0;
  --paper:    #FDFBF7;
  --ink-900:  #1A1118;
  --ink-700:  #3A2F36;
  --ink-600:  #5C4A55;
  --ink-400:  #9B8B94;
  --ink-200:  #E8DEE5;
  --ink-100:  #F2EBEF;

  /* System */
  --bg:       var(--cream);
  --fg:       var(--ink-900);
  --muted:    var(--ink-600);
  --line:     rgba(26, 17, 24, .08);

  /* Type */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Spacing scale */
  --s-1: .25rem;  --s-2: .5rem;   --s-3: .75rem;
  --s-4: 1rem;    --s-5: 1.25rem; --s-6: 1.5rem;
  --s-8: 2rem;    --s-10: 2.5rem; --s-12: 3rem;
  --s-16: 4rem;   --s-20: 5rem;   --s-24: 6rem;
  --s-32: 8rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26,17,24,.06), 0 2px 4px rgba(26,17,24,.04);
  --shadow-md: 0 4px 12px -2px rgba(26,17,24,.08), 0 8px 24px -8px rgba(26,17,24,.08);
  --shadow-pink: 0 12px 32px -10px rgba(229,0,126,.35);

  /* Container */
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* Header height for scroll-padding */
  --header-h: 72px;
}

/* =========================================================
   Reset & Base
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

html { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
img { font-style: italic; background-color: var(--ink-100); }

button { font: inherit; cursor: pointer; }

a {
  color: var(--pink-500);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--pink-600); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--pink-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink-900); color: white;
  padding: 12px 16px; border-radius: var(--r-sm);
  z-index: 9999;
}
.skip-link:focus { top: 16px; }

/* =========================================================
   Typography
   ========================================================= */

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 1.4rem + 5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-6);
  color: var(--ink-900);
}
.display em {
  font-style: italic;
  color: var(--pink-500);
  font-weight: 500;
  display: inline-block;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-4);
  color: var(--ink-900);
}

.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-500);
  margin-bottom: var(--s-3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: white;
  padding: 6px 14px 6px 10px;
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(229,0,126,.15);
}

.lede {
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0 0 var(--s-8);
  max-width: 50ch;
}

/* =========================================================
   Layout primitives
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 3rem + 4vw, 8rem);
}

.section__head {
  margin-bottom: var(--s-12);
  max-width: 56ch;
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.section__lede {
  font-size: 1.125rem;
  color: var(--muted);
  margin: var(--s-4) auto 0;
  max-width: 56ch;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  --bg: var(--pink-500);
  --c: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--c);
  border: 1px solid var(--bg);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
  text-decoration: none;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm  { padding: 8px 14px; font-size: .875rem; }
.btn--lg  { padding: 16px 26px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  --bg: var(--pink-500);
  --c: white;
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover { --bg: var(--pink-600); color: white; }

.btn--ghost {
  --bg: transparent;
  --c: var(--ink-900);
  border-color: var(--ink-900);
}
.btn--ghost:hover { --bg: var(--ink-900); --c: white; color: white; }

.btn--dark {
  --bg: var(--ink-900);
  --c: white;
  border-color: var(--ink-900);
}
.btn--dark:hover { --bg: var(--ink-700); color: white; }

.btn__icon {
  width: 1.1em; height: 1.1em;
  transition: transform .2s ease;
}
.btn:hover .btn__icon { transform: translateX(2px); }

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-900);
}
.brand__mark { width: 32px; height: 32px; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
}
.brand__word--light { color: white; }

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav__list {
  display: flex;
  gap: clamp(var(--s-4), 1vw + .5rem, var(--s-8));
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: .9375rem;
  padding: 8px 4px;
  position: relative;
}
.nav__list a:hover { color: var(--pink-500); }
.nav__list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--pink-500);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .2s ease;
}
.nav__list a:hover::after { width: 16px; }

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-400);
}
.lang-switch__btn {
  background: none;
  border: 0;
  padding: 4px 2px;
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition: color .2s ease;
}
.lang-switch__btn:hover { color: var(--ink-700); }
.lang-switch__btn.is-active { color: var(--ink-900); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  padding-block: clamp(3rem, 2rem + 5vw, 6rem) clamp(4rem, 3rem + 5vw, 8rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.blob--1 {
  width: 480px; height: 480px;
  background: var(--pink-100);
  top: -120px; right: -120px;
}
.blob--2 {
  width: 360px; height: 360px;
  background: rgba(79, 195, 217, .3);
  bottom: 60px; left: -100px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(var(--s-8), 4vw, var(--s-16));
  align-items: center;
}

.hero__content { max-width: 32em; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-10);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-8);
  list-style: none;
  margin: 0;
  padding: var(--s-6) 0 0;
  border-top: 1px solid var(--line);
}
.hero__trust li {
  display: flex;
  flex-direction: column;
}
.hero__trust strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1;
}
.hero__trust span {
  font-size: .875rem;
  color: var(--muted);
  margin-top: 4px;
}

.hero__visual {
  position: relative;
  margin: 0;
  padding: 0;
}
.hero__card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--pink-100);
  box-shadow: var(--shadow-md), 0 60px 80px -40px rgba(229,0,126,.3);
  transform: rotate(1.5deg);
}
.hero__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Counter-rotate gegen den Tilt der Card UND gegen den leichten Eigen-Tilt
     im Foto, damit die Theke visuell gerade verläuft. Skalierung verhindert,
     dass die Bildecken in der schrägen Card sichtbar werden. */
  transform: rotate(-3.5deg) scale(1.1);
  transform-origin: center;
}

.hero__badge {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 140px; height: 140px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  animation: spin 22s linear infinite;
}
.hero__badge svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero__badge text {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero__badge-center {
  position: relative;
  text-align: center;
  animation: spin 22s linear infinite reverse;
}
.hero__badge-center span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.hero__badge-center small {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   USP Bento
   ========================================================= */

.usp {
  padding-block: clamp(3rem, 2rem + 4vw, 6rem);
}

.bento {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card--accent {
  background: var(--pink-500);
  color: white;
  border-color: var(--pink-500);
}
.card--accent h3, .card--accent p { color: white; }
.card--accent .card__icon { color: white; }

.card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--pink-50);
  color: var(--pink-500);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-5);
}
.card--accent .card__icon {
  background: rgba(255,255,255,.18);
}
.card__icon svg { width: 26px; height: 26px; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 var(--s-2);
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.55;
}

/* =========================================================
   About
   ========================================================= */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--s-8), 4vw, var(--s-16));
  align-items: center;
}

.about__visual { margin: 0; position: relative; }
.about__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.about__visual figcaption {
  margin-top: var(--s-3);
  font-size: .875rem;
  color: var(--ink-400);
  font-style: italic;
}

.about__content p { color: var(--muted); margin-bottom: var(--s-4); max-width: 52ch; }
.about__content p:last-of-type { margin-bottom: var(--s-8); }

.about__stats {
  list-style: none;
  margin: 0;
  padding: var(--s-6) 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.about__stats li {
  display: flex;
  flex-direction: column;
}
.about__stats strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--pink-500);
  line-height: 1;
}
.about__stats span {
  font-size: .875rem;
  color: var(--muted);
  margin-top: 4px;
}

/* =========================================================
   Menu (Eis-Angebot)
   ========================================================= */

.menu {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
}

.menu-card {
  background: white;
  border-radius: var(--r-xl);
  padding: clamp(var(--s-6), 2vw, var(--s-10));
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--pink-50), transparent 60%);
  pointer-events: none;
  opacity: .9;
}
.menu-card--vegan::before {
  background: radial-gradient(circle at top right, rgba(79,195,217,.15), transparent 60%);
}
.menu-card > * { position: relative; }

.menu-card__top h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  font-weight: 500;
  margin: var(--s-3) 0 var(--s-3);
  letter-spacing: -0.015em;
}
.menu-card__top p { color: var(--muted); margin: 0; }
.menu-card__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-500);
  background: var(--pink-50);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.menu-card--vegan .menu-card__tag {
  color: #007a91;
  background: rgba(79,195,217,.15);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-3);
}
.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-700);
  font-size: .9375rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pink-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.menu-card--vegan .checklist li::before {
  background-color: var(--cyan);
}

.menu__note {
  margin: var(--s-10) auto 0;
  text-align: center;
  color: var(--muted);
  font-size: .9375rem;
  max-width: 60ch;
  font-style: italic;
}

/* =========================================================
   Rent (Mieten)
   ========================================================= */

.rent__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s-8), 4vw, var(--s-16));
  align-items: start;
}

.rent__content p { color: var(--muted); margin: 0 0 var(--s-6); max-width: 48ch; }

.tags {
  list-style: none;
  margin: 0 0 var(--s-8);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.tags li {
  background: white;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: .875rem;
  color: var(--ink-700);
  font-weight: 500;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-4);
}
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--pink-500);
  display: block;
  margin-bottom: var(--s-2);
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 var(--s-2);
}
.step p { margin: 0; color: var(--muted); font-size: .9375rem; }

/* =========================================================
   Gallery
   ========================================================= */

.gallery {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--s-3);
}

.gallery__item {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-100);
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__placeholder .ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--pink-50), var(--cream));
  display: grid;
  place-items: center;
  font-size: 3rem;
}

/* =========================================================
   Eismeer Promo
   ========================================================= */

.eismeer__card {
  position: relative;
  background: var(--ink-900);
  color: white;
  border-radius: var(--r-xl);
  padding: clamp(var(--s-8), 4vw, var(--s-16));
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.eismeer__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(229,0,126,.3), transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(79,195,217,.2), transparent 50%);
}
.eismeer__content { position: relative; }
.eismeer__content .kicker { color: var(--yellow); }
.eismeer__content h2 { color: white; }
.eismeer__content p {
  color: rgba(255,255,255,.85);
  margin: 0 0 var(--s-6);
  max-width: 42ch;
}

.eismeer__decor {
  position: relative;
  display: grid;
  place-items: center;
  font-size: 4rem;
}
.scoop {
  position: absolute;
  display: inline-block;
}
.scoop--1 { font-size: 6rem; transform: rotate(-15deg); }
.scoop--2 { font-size: 4rem; top: -20px; right: 10%; transform: rotate(15deg); }
.scoop--3 { font-size: 3rem; bottom: -10px; left: 20%; }

/* =========================================================
   Contact
   ========================================================= */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--s-8), 4vw, var(--s-16));
  align-items: start;
}

.contact__info p { color: var(--muted); margin: 0 0 var(--s-8); max-width: 42ch; }

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-4);
}
.contact__list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact__list li:last-child { border-bottom: 0; }
.contact__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.contact__list a,
.contact__list address {
  color: var(--ink-900);
  font-style: normal;
  font-weight: 500;
  font-size: 1.0625rem;
}
.contact__list a:hover { color: var(--pink-500); }

/* Form */
.contact__form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(var(--s-6), 3vw, var(--s-10));
  box-shadow: var(--shadow-md);
  display: grid;
  gap: var(--s-4);
}
.form__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 var(--s-2);
  letter-spacing: -0.01em;
}

.field {
  display: grid;
  gap: 6px;
}
.field__label {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-700);
}
.field input,
.field textarea {
  font: inherit;
  font-size: .9375rem;
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-md);
  background: var(--paper);
  color: var(--ink-900);
  width: 100%;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--pink-500);
  background: white;
  outline: none;
  box-shadow: 0 0 0 4px rgba(229,0,126,.12);
}
.field textarea { resize: vertical; min-height: 100px; }

.contact__form .field--inline { display: inline-grid; }
@media (min-width: 640px) {
  .contact__form {
    grid-template-columns: 1fr 1fr;
  }
  .contact__form > .form__title,
  .contact__form > .field:not(.field--inline),
  .contact__form > .btn,
  .contact__form > .form__hint {
    grid-column: 1 / -1;
  }
}

.form__hint {
  font-size: .8125rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.7);
  padding: var(--s-16) 0 var(--s-6);
  margin-top: var(--s-16);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand p {
  margin: var(--s-4) 0 0;
  font-size: .9375rem;
  max-width: 32ch;
  line-height: 1.6;
}

.footer__col h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 var(--s-4);
  letter-spacing: -0.01em;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-2);
}
.footer__col a {
  color: rgba(255,255,255,.7);
  font-size: .9375rem;
  font-weight: 400;
}
.footer__col a:hover { color: white; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  padding-top: var(--s-6);
  font-size: .8125rem;
}
.footer__bottom p { margin: 0; color: rgba(255,255,255,.5); }

/* =========================================================
   Lightbox
   ========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 17, 24, .92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--s-6);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.lightbox__close {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  width: 48px; height: 48px;
  background: white;
  border: 0;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink-900);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease;
}
.lightbox__close:hover { transform: rotate(90deg); }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .hide-md-down { display: none !important; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--cream);
    display: none;
    padding: var(--s-8) var(--gutter);
  }
  .nav.is-open { display: flex; flex-direction: column; }
  .nav__list {
    flex-direction: column;
    gap: var(--s-4);
    width: 100%;
  }
  .nav__list a {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--ink-900);
    padding: var(--s-3) 0;
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--s-12);
  }
  .hero__visual { max-width: 420px; margin-inline: auto; }
  .hero__badge { width: 110px; height: 110px; bottom: -20px; left: -10px; }

  .about__grid,
  .rent__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .about__grid .about__visual { order: 2; }
  .about__grid .about__content { order: 1; }

  .menu__grid { grid-template-columns: 1fr; }

  .eismeer__card { grid-template-columns: 1fr; }
  .eismeer__decor { display: none; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .hero__trust { gap: var(--s-4); }
  .hero__trust strong { font-size: 1.5rem; }

  .about__stats { grid-template-columns: 1fr 1fr; }
  .about__stats li:last-child { grid-column: 1 / -1; }

  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery__item, .gallery__item--tall, .gallery__item--wide {
    grid-column: auto;
    grid-row: auto;
    height: 240px;
  }

  .contact__list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
