/* ============================================
   Villa Paul — styles.css
   ============================================ */

:root {
  --paper: #f5efe0;
  --paper-2: #ede5d0;
  --ink: #1a1612;
  --ink-soft: #3a342c;
  --muted: #8a8270;
  --line: #c9bfa3;
  --gold: #a67c3a;
  --burgundy: #6b2820;

  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --section-pad: clamp(60px, 10vw, 140px);
  --container: 1200px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Safety net — keep oversized headlines inside the viewport */
.hero__feature-title,
.piatti__title,
.inhaber__greeting-word,
.statement__word,
.signature-title,
.section-title,
.quote {
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}
/* Hero display headline: never break mid-word; scale with viewport instead */
.hero__display {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--burgundy); }
a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ============================================
   Reveal animations — smooth, editorial
   ============================================ */
:root {
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s var(--ease-out-soft),
    transform 1.1s var(--ease-out-soft);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* When a parent has .reveal--stagger, animate children one after another */
.reveal--stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s var(--ease-out-soft),
    transform 0.9s var(--ease-out-soft);
}
.reveal--stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal--stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal--stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal--stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal--stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal--stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* Subtle Ken-Burns slow zoom on feature images while in view */
@media (prefers-reduced-motion: no-preference) {
  .kenburns img {
    transform: scale(1.04);
    transition: transform 8s var(--ease-in-out);
  }
  .kenburns.is-visible img {
    transform: scale(1.0);
  }
}

/* Honour the user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .kenburns img, .hero__bg { transform: none !important; }
}

/* ============================================
   Shared
   ============================================ */
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px 0;
  font-weight: 500;
}
.kicker.center { text-align: center; }

.center { text-align: center; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 48px 0;
}

.ornament {
  font-family: var(--serif);
  color: var(--line);
  letter-spacing: 0.4em;
  text-align: center;
  margin: 24px 0;
  font-size: 14px;
}
.ornament.gold { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn--burgundy {
  background: var(--burgundy);
  color: var(--paper);
}
.btn--burgundy:hover { opacity: 0.88; color: var(--paper); }
.btn--ink {
  background: var(--ink);
  color: var(--paper);
}
.btn--ink:hover { opacity: 0.88; color: var(--paper); }
.btn--block {
  display: block;
  width: 100%;
  padding: 18px 32px;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--paper);
  position: relative;
  padding: clamp(14px, 2vw, 22px) clamp(20px, 5vw, 48px) 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  overflow: hidden;
}

.hero__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

/* ============================================
   Hero — Fullscreen (ALFIO's-style)
   ============================================ */
.hero--fullscreen {
  height: 100vh;
  min-height: 640px;
  padding: 0;
  background: #0e0c0a;
  color: var(--paper);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.75) saturate(1.04);
  z-index: 0;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.05) 30%,
      rgba(0,0,0,0.15) 65%,
      rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Top bar: MENU pill — wordmark — RESERVIEREN pill */
.hero__top {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(18px, 2.4vw, 32px) clamp(18px, 3vw, 40px);
  gap: 16px;
}
.hero__wordmark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--paper);
  text-align: center;
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__wordmark-text { font-style: italic; }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 224, 0.85);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.pill:hover {
  background: var(--paper);
  color: var(--ink);
}

/* Vertical address on the left edge */
.hero__side {
  position: absolute;
  left: clamp(14px, 1.8vw, 24px);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.7);
  white-space: nowrap;
  z-index: 2;
}

/* Center display headline */
.hero__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 48px);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 clamp(20px, 2.5vw, 36px);
  padding: 10px 22px;
  border: 1px solid rgba(166, 124, 58, 0.55);
  border-radius: 999px;
  background: rgba(14, 12, 10, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: auto;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(166, 124, 58, 0.6);
  animation: pulse-gold 2.2s ease-out infinite;
}
@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(166, 124, 58, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(166, 124, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(166, 124, 58, 0); }
}

.hero__display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--paper);
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 6px 60px rgba(0,0,0,0.4);
  white-space: nowrap;
  overflow: visible;
}
.hero__display-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 30px);
  color: rgba(245, 239, 224, 0.95);
  margin: clamp(16px, 1.8vw, 26px) 0 0;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

/* Bottom scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: clamp(22px, 3vw, 38px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.75);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(245,239,224,0.7), rgba(245,239,224,0));
}

@media (max-width: 720px) {
  .hero__side { display: none; }
  .pill { padding: 10px 18px; font-size: 10px; letter-spacing: 0.18em; }
  .hero__wordmark { font-size: 12px; letter-spacing: 0.24em; }
  .hero__display { font-size: clamp(64px, 20vw, 120px); }
}

.wordmark {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* Brandmark logo (top-left, transparent PNG sitting on the paper) */
.brandmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex: 0 0 auto;
  margin-top: -6px;
  max-width: 96px;
}
.brandmark img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 96px;
  max-height: 130px;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
@media (max-width: 600px) {
  .brandmark,
  .brandmark img { max-width: 70px; max-height: 95px; }
}

.nav {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav a { padding: 0 4px; }
.nav span { color: var(--line); margin: 0 4px; }

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  width: 100%;
}

/* Hero feature — full-bleed photo with overlaid serif headline */
.hero__feature {
  position: relative;
  width: calc(100% + 2 * clamp(20px, 5vw, 48px));
  margin: clamp(10px, 1.5vw, 20px) calc(-1 * clamp(20px, 5vw, 48px)) clamp(40px, 6vw, 80px);
  height: clamp(560px, 88vh, 1000px);
  overflow: hidden;
  background: #1a1612;
}
.hero__feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.78) saturate(1.02);
}
.hero__feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero__feature-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.hero__feature-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(72px, 16vw, 240px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  color: var(--paper);
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
.hero__feature-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 30px);
  color: rgba(245, 239, 224, 0.92);
  margin: clamp(14px, 1.5vw, 22px) 0 0 0;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero__caps {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 8px 0 36px 0;
}

/* (previous .hero__image first-impression block — removed; replaced by .hero__feature above) */

/* ============================================
   Sections
   ============================================ */
.section {
  padding: var(--section-pad) 0;
  background: var(--paper);
}
.section--paper2 { background: var(--paper-2); }
.section--editorial .container {
  max-width: 800px;
  text-align: center;
}

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 36px 0;
  padding: 0;
  border: 0;
}
.quote em { font-style: italic; }

.lead {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}
.lead.small { font-size: 14px; margin: 0 0 32px 0; }

.meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 48px;
}

/* ============================================
   Cards / Küche
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin: 0 0 56px 0;
}
.card {
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  background: var(--paper);
}
.section--paper2 .card { background: var(--paper); }

.card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  margin: 0 0 18px 0;
  line-height: 1.2;
}
.card__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.cta-row { margin-top: 24px; }

/* ============================================
   Signature (dark)
   ============================================ */
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark .kicker { color: var(--gold); }
.signature-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  color: var(--paper);
  margin: 0 0 32px 0;
}
.signature-lead {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(245, 239, 224, 0.78);
  font-size: 15px;
  line-height: 1.85;
}

/* ============================================
   Reservation
   ============================================ */
.reservation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.reservation__image {
  aspect-ratio: 4 / 5;
  background: var(--line);
  overflow: hidden;
}
.reservation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: 28px;
}
.form__row:nth-child(3) { grid-template-columns: 1fr 1fr 1fr; }

.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0;
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.field input:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.hint {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin: 8px 0 28px 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(245, 239, 224, 0.78);
  padding: var(--section-pad) 0 0 0;
  overflow: hidden;
}
.footer a { color: rgba(245, 239, 224, 0.78); }
.footer a:hover { color: var(--gold); }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(201, 191, 163, 0.18);
}
.footer__title {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  color: var(--paper);
  margin: 0 0 16px 0;
}
.footer p { margin: 0; font-size: 14px; line-height: 1.85; }

.footer__meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 32px 0 64px 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.footer__meta p { font-size: 12px; }

.footer__wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18vw;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-align: center;
  white-space: nowrap;
  margin: 0;
  user-select: none;
  max-width: 100%;
  overflow: hidden;
}

/* ============================================
   Gallery split (after philosophy)
   ============================================ */
.section--gallery {
  padding-top: clamp(20px, 5vw, 60px);
  padding-bottom: clamp(40px, 7vw, 100px);
}
.gallery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.gallery-figure { margin: 0; }
.gallery-figure__image {
  aspect-ratio: 4 / 5;
  background: var(--line);
  overflow: hidden;
  margin-bottom: 28px;
}
.gallery-figure__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.gallery-figure:hover .gallery-figure__image img { transform: scale(1.03); }
.gallery-figure figcaption { padding: 0 4px; }
.gallery-figure__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 16px 0;
}
.gallery-figure__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
  max-width: 440px;
}

/* Offset the second figure for editorial rhythm */
.gallery-split .gallery-figure:nth-child(2) {
  margin-top: clamp(0px, 6vw, 80px);
}

/* ============================================
   Signature image (inside dark section)
   ============================================ */
.signature-image {
  max-width: 720px;
  margin: 48px auto 56px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(166, 124, 58, 0.25);
}
.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}

/* ============================================
   Editorial pair (before reservation)
   ============================================ */
.section--editorial-pair {
  background: var(--paper);
  padding-bottom: clamp(40px, 7vw, 100px);
}
.editorial-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.editorial-pair__item { margin: 0; }
.editorial-pair__image {
  aspect-ratio: 3 / 4;
  background: var(--line);
  overflow: hidden;
  margin-bottom: 28px;
}
.editorial-pair__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter 0.4s ease;
}
.editorial-pair__item--bw .editorial-pair__image img {
  filter: grayscale(1) contrast(1.05);
}
.editorial-pair__item:hover .editorial-pair__image img { transform: scale(1.03); }
.editorial-pair figcaption { padding: 0 4px; }
.editorial-pair__title {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 16px 0;
}
.editorial-pair__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
  max-width: 440px;
}

/* Offset second item for rhythm */
.editorial-pair .editorial-pair__item:nth-child(2) {
  margin-top: clamp(0px, 5vw, 60px);
}

/* ============================================
   I Piatti (dark editorial food gallery)
   ============================================ */
.section--piatti {
  background: #0e0c0a;
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 12vw, 160px);
  overflow: hidden;
}
.piatti {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.piatti__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 90px);
}
.piatti__kicker {
  color: var(--gold);
  margin-bottom: 32px;
}
.piatti__title {
  font-family: var(--serif);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
}
.piatti__dot { color: var(--gold); }

.piatti__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  align-items: start;
}

.piatti__item { margin: 0; position: relative; }
.piatti__item--a { grid-column: 1 / span 5; margin-top: 0; }
.piatti__item--b { grid-column: 7 / span 6; margin-top: clamp(40px, 8vw, 120px); }
.piatti__item--c { grid-column: 2 / span 6; margin-top: clamp(40px, 6vw, 80px); }
.piatti__item--d { grid-column: 9 / span 4; margin-top: clamp(0px, 3vw, 40px); }

.piatti__image {
  aspect-ratio: 4 / 5;
  background: #1a1612;
  overflow: hidden;
}
.piatti__item--a .piatti__image { aspect-ratio: 5 / 6; }
.piatti__item--b .piatti__image { aspect-ratio: 4 / 3; }
.piatti__item--c .piatti__image { aspect-ratio: 16 / 10; }
.piatti__item--d .piatti__image { aspect-ratio: 3 / 4; }

.piatti__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease, filter 0.4s ease;
  filter: brightness(0.92) saturate(1.05);
}
.piatti__item:hover .piatti__image img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.1);
}

.piatti__caption {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 18px;
  padding: 0 2px;
}
.piatti__num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-weight: 500;
}
.piatti__name {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  color: rgba(245, 239, 224, 0.92);
  font-style: italic;
}

.piatti__foot {
  text-align: center;
  margin: clamp(50px, 7vw, 100px) 0 0 0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  color: rgba(245, 239, 224, 0.7);
  font-style: italic;
}
.piatti__link {
  color: var(--gold);
  border-bottom: 1px solid rgba(166, 124, 58, 0.4);
  padding-bottom: 2px;
  margin-left: 8px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.piatti__link:hover { color: var(--paper); border-bottom-color: var(--paper); }

/* ============================================
   Inhaber — Owner editorial
   ============================================ */
.section--inhaber {
  background: var(--paper);
  padding-top: clamp(20px, 4vw, 60px);
  padding-bottom: clamp(40px, 7vw, 100px);
}

/* Big italic welcome above the owner portrait */
.inhaber__greeting {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 100px);
  position: relative;
}
.inhaber__greeting-kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px 0;
  font-weight: 500;
}
.inhaber__greeting-word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 55%, var(--burgundy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* fallback for older browsers */
  text-shadow: none;
}
@supports not (background-clip: text) {
  .inhaber__greeting-word { color: var(--ink); -webkit-text-fill-color: var(--ink); }
}
.inhaber__greeting-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--ink-soft);
  margin: clamp(14px, 1.5vw, 22px) 0 0 0;
  letter-spacing: 0.04em;
}
.inhaber__greeting-sub::before,
.inhaber__greeting-sub::after {
  content: "·  ·  ·";
  display: inline-block;
  margin: 0 14px;
  letter-spacing: 0.4em;
  color: var(--line);
  font-style: normal;
  vertical-align: middle;
}
.inhaber {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.inhaber__portrait { margin: 0; position: relative; }
.inhaber__portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 30px 60px -30px rgba(26,22,18,0.35),
              0 10px 30px -15px rgba(26,22,18,0.2);
}
.inhaber__portrait-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(245, 239, 224, 0.4);
  pointer-events: none;
  z-index: 2;
}
.inhaber__portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.95) brightness(0.96);
  transition: transform 1.5s ease;
}
.inhaber__portrait:hover .inhaber__portrait-frame img {
  transform: scale(1.03);
}

.inhaber__caption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 0 4px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.inhaber__caption-line {
  flex: 0 0 32px;
  height: 1px;
  background: var(--gold);
}

.inhaber__text .section-title {
  font-size: clamp(28px, 3.4vw, 46px);
  margin-bottom: 32px;
}

.inhaber__quote {
  margin: 0 0 32px 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--ink);
}

.inhaber__text .lead {
  margin: 0 0 20px 0;
  max-width: none;
}

.inhaber__signature {
  margin: 36px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* ============================================
   Location — Bad Soden / Neuenhain
   ============================================ */
.section--location {
  background: var(--paper);
}
.location {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.location__image {
  margin: 0;
  position: relative;
}
.location__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  filter: saturate(0.92) brightness(0.98);
}
.location__image figcaption {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.location__text .section-title { margin-bottom: 28px; }
.location__text .lead { margin-bottom: 36px; }

.location__facts {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  border-top: 1px solid var(--line);
}
.location__facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
}
.location__facts-key {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================
   Editorial Statements — billboard typography
   (mobile-only by default; visible via .show-mobile)
   ============================================ */
.statement {
  display: none; /* show only on mobile via responsive block */
  padding: clamp(60px, 18vw, 110px) 24px;
  text-align: center;
  position: relative;
}
.statement--dark { background: #0e0c0a; color: var(--paper); }
.statement--light { background: var(--paper-2); color: var(--ink); }
.statement--gold { background: var(--ink); color: var(--paper); }

.statement__kicker {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px 0;
  font-weight: 500;
}
.statement--dark .statement__kicker,
.statement--gold .statement__kicker { color: var(--gold); }
.statement--light .statement__kicker { color: var(--gold); }

.statement__word {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(64px, 16vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin: 0;
  color: inherit;
  max-width: 100%;
}
.statement__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 4.5vw, 22px);
  margin: 14px 0 0;
  color: inherit;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

/* Inhaber pledge — mobile-only condensed promise line */
.inhaber__pledge {
  display: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

/* ============================================
   Mobile Nav — Hamburger + Fullscreen Overlay
   ============================================ */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  z-index: 60;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--paper);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  border-radius: 2px;
}
.nav-toggle--ink .nav-toggle__bar { background: var(--ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: #0e0c0a;
  color: var(--paper);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav__inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px 24px 32px;
}
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 239, 224, 0.12);
}
.mobile-nav__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.mobile-nav__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 239, 224, 0.3);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.mobile-nav__close span {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--paper);
  border-radius: 2px;
}
.mobile-nav__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-nav__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-nav__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  flex: 1;
}
.mobile-nav__list li {
  border-bottom: 1px solid rgba(245, 239, 224, 0.1);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mobile-nav[aria-hidden="false"] .mobile-nav__list li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav[aria-hidden="false"] .mobile-nav__list li:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav[aria-hidden="false"] .mobile-nav__list li:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav[aria-hidden="false"] .mobile-nav__list li:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav[aria-hidden="false"] .mobile-nav__list li:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav[aria-hidden="false"] .mobile-nav__list li:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav[aria-hidden="false"] .mobile-nav__list li:nth-child(6) { transition-delay: 0.30s; }
.mobile-nav[aria-hidden="false"] .mobile-nav__list li:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav[aria-hidden="false"] .mobile-nav__list li:nth-child(8) { transition-delay: 0.40s; }

.mobile-nav__list a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 4px;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--paper);
  letter-spacing: 0.01em;
  transition: color 0.2s ease, padding-left 0.3s ease;
}
.mobile-nav__list a:hover,
.mobile-nav__list a:active {
  color: var(--gold);
  padding-left: 8px;
}
.mobile-nav__num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-weight: 500;
  flex: 0 0 auto;
  padding-top: 6px;
}

.mobile-nav__foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 224, 0.12);
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(245, 239, 224, 0.65);
  letter-spacing: 0.08em;
}
.mobile-nav__foot p { margin: 4px 0; }
.mobile-nav__foot a { color: var(--gold); }

/* Lock body scroll when nav open */
body.nav-open { overflow: hidden; }

/* ============================================
   Responsive — Tablet (≤ 980px)
   ============================================ */
@media (max-width: 980px) {
  :root { --section-pad: clamp(60px, 11vw, 100px); }

  .cards { grid-template-columns: 1fr; }
  .reservation { grid-template-columns: 1fr; gap: 32px; }
  .reservation__image { aspect-ratio: 5 / 4; max-height: 360px; order: -1; }
  .form__row,
  .form__row:nth-child(3) { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-split,
  .editorial-pair { grid-template-columns: 1fr; gap: 48px; }
  .gallery-split .gallery-figure:nth-child(2),
  .editorial-pair .editorial-pair__item:nth-child(2) { margin-top: 0; }
  .gallery-figure__image,
  .editorial-pair__image { max-width: 560px; margin-left: auto; margin-right: auto; }

  .location,
  .inhaber { grid-template-columns: 1fr; gap: 40px; }
  .inhaber__portrait-frame { max-width: 460px; margin: 0 auto; }
  .location__image img { max-width: 560px; margin: 0 auto; }

  .piatti__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .piatti__item--a,
  .piatti__item--b,
  .piatti__item--c,
  .piatti__item--d { grid-column: auto; margin-top: 0; }
  .piatti__item--b,
  .piatti__item--d { margin-top: 40px; }
  .piatti__title { font-size: clamp(60px, 14vw, 120px); }

  .signature-image { margin: 36px auto 40px; }
}

/* ============================================
   Responsive — Mobile (≤ 720px)
   ============================================ */
@media (max-width: 720px) {
  :root {
    --section-pad: clamp(48px, 12vw, 80px);
    --container: 100%;
  }
  body { font-size: 14.5px; line-height: 1.65; }

  /* Hero — keep ALFIO's overlay style, refine for thumb-readability */
  .hero--fullscreen { min-height: 580px; height: 100svh; }
  .hero__bg { object-position: center 28%; }
  .hero__top { padding: 12px 14px; gap: 10px; }
  .hero__side { display: none; }

  /* Mobile nav becomes primary; hide the "Menü" pill since hamburger contains it */
  .nav-toggle { display: inline-flex; }
  .pill--menu { display: none; }
  /* Hide inline desktop nav on subpages (Speisekarte) when hamburger active */
  .hero__bar .nav { display: none; }

  .pill {
    padding: 10px 18px;
    font-size: 10px;
    letter-spacing: 0.18em;
    border-width: 1px;
  }

  .hero__badge {
    font-size: 9.5px;
    letter-spacing: 0.22em;
    padding: 8px 14px;
    gap: 8px;
    margin-bottom: 18px;
  }
  .hero__badge-dot { width: 6px; height: 6px; }

  .hero__display { font-size: clamp(48px, 13vw, 92px); letter-spacing: 0.005em; max-width: 100%; }
  .hero__display-sub { font-size: 15px; letter-spacing: 0.06em; }
  .hero__center { padding: 0 18px; }

  .hero__scroll { bottom: 18px; font-size: 9px; letter-spacing: 0.24em; gap: 8px; }
  .hero__scroll-line { height: 28px; }

  /* Containers + general */
  .container { padding: 0 20px; }
  .nav { font-size: 10.5px; letter-spacing: 0.14em; }

  /* Editorial typography — bolder, headline-forward on mobile */
  .kicker { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 16px; color: var(--gold); }
  .quote { font-size: clamp(28px, 9vw, 40px); line-height: 1.18; margin-bottom: 28px; }
  .lead, .lead.small { font-size: 14.5px; line-height: 1.7; }
  .section-title { font-size: clamp(38px, 11vw, 56px); line-height: 1.05; margin-bottom: 28px; letter-spacing: -0.005em; }
  .meta { margin-top: 28px; font-size: 10px; letter-spacing: 0.2em; }

  /* Mobile utilities — hide secondary prose, show big-only moments */
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
  .statement.show-mobile { display: block !important; }
  .inhaber__pledge.show-mobile { display: block !important; }

  /* Buttons — bigger touch targets */
  .btn { padding: 16px 26px; font-size: 11px; width: auto; }
  .btn--ink, .btn--burgundy { min-height: 48px; }

  /* Philosophy */
  .section--editorial .container { padding-left: 20px; padding-right: 20px; }

  /* Cards — title-only on mobile (descriptions hidden via .hide-mobile) */
  .cards { gap: 12px; margin-bottom: 32px; }
  .card { padding: 22px 24px; text-align: center; }
  .card__title { font-size: 24px; margin-bottom: 0; }
  .card__text { font-size: 14px; }

  /* La Storia */
  .section--piatti { padding: 80px 0; }
  .piatti { padding: 0 18px; }
  .piatti__header { margin-bottom: 48px; }
  .piatti__title { font-size: clamp(56px, 18vw, 90px); white-space: normal; letter-spacing: 0; }
  .piatti__grid { grid-template-columns: 1fr; gap: 28px; }
  .piatti__item--a,
  .piatti__item--b,
  .piatti__item--c,
  .piatti__item--d { margin-top: 0; }
  .piatti__item--a .piatti__image,
  .piatti__item--b .piatti__image,
  .piatti__item--c .piatti__image,
  .piatti__item--d .piatti__image { aspect-ratio: 4 / 5; }
  .piatti__caption { margin-top: 14px; gap: 10px; }
  .piatti__num { font-size: 9.5px; letter-spacing: 0.2em; }
  .piatti__name { font-size: 16px; }

  /* Gallery / Editorial pair — much bigger titles */
  .gallery-figure__title,
  .editorial-pair__title {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.05;
    margin-bottom: 14px;
    letter-spacing: -0.005em;
  }
  .gallery-figure__text,
  .editorial-pair__text { font-size: 14px; }
  .gallery-figure__image,
  .editorial-pair__image { margin-bottom: 22px; }

  /* Signature (dark) — billboard scale */
  .signature-title { font-size: clamp(40px, 12vw, 60px); line-height: 1.02; margin-bottom: 24px; letter-spacing: -0.005em; }
  .signature-lead { font-size: 14.5px; line-height: 1.8; }
  .signature-image { aspect-ratio: 4 / 3; margin: 28px auto 32px; }

  /* Inhaber greeting */
  .inhaber__greeting { margin-bottom: 40px; }
  .inhaber__greeting-kicker { font-size: 10px; letter-spacing: 0.24em; }
  .inhaber__greeting-word { font-size: clamp(88px, 24vw, 160px); }
  .inhaber__greeting-sub { font-size: 14px; }
  .inhaber__greeting-sub::before,
  .inhaber__greeting-sub::after { margin: 0 8px; letter-spacing: 0.3em; }

  /* Inhaber — radical simplification on mobile: portrait + ONE short pulled quote */
  .inhaber { gap: 28px; }
  .inhaber__portrait-frame { max-width: 100%; }
  .inhaber__portrait-frame::before { inset: 8px; }
  .inhaber__text { text-align: center; }
  .inhaber__quote {
    font-size: clamp(26px, 8vw, 36px);
    line-height: 1.15;
    padding: 0;
    border-left: 0;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .inhaber__quote em { font-style: italic; }
  .inhaber__caption { justify-content: center; }

  /* Location */
  .location { gap: 32px; }
  .location__image img { aspect-ratio: 4 / 3; }
  .location__facts { margin-bottom: 32px; }
  .location__facts li { padding: 14px 0; font-size: 15px; gap: 16px; }
  .location__facts-key { font-size: 9.5px; letter-spacing: 0.22em; }

  /* Reservation form */
  .reservation { gap: 28px; }
  .reservation__image { aspect-ratio: 4 / 3; max-height: 280px; }
  .form__row,
  .form__row:nth-child(3) { grid-template-columns: 1fr; gap: 22px; margin-bottom: 22px; }
  .field label { font-size: 9.5px; letter-spacing: 0.2em; }
  .field input { font-size: 16px; padding: 10px 0; } /* 16px = no iOS zoom */
  .hint { font-size: 11.5px; margin-bottom: 24px; }

  /* Footer */
  .footer { padding-top: 56px; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-bottom: 40px;
  }
  .footer__title { font-size: 18px; margin-bottom: 12px; }
  .footer p { font-size: 13px; line-height: 1.7; }
  .footer__meta { padding: 24px 0 40px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer__wordmark { font-size: 28vw; }
}

/* ============================================
   Responsive — Small mobile (≤ 420px)
   ============================================ */
@media (max-width: 420px) {
  .hero__top { padding: 12px 12px; }
  .pill { padding: 9px 14px; font-size: 9.5px; letter-spacing: 0.14em; }
  .hero__badge { font-size: 9px; padding: 7px 12px; letter-spacing: 0.18em; }
  .hero__display { font-size: 12vw; }
  .hero__display-sub { font-size: 14px; }
  .inhaber__greeting-word { font-size: 22vw; }
  .statement__word { font-size: 14vw; }

  .container { padding: 0 16px; }
  .piatti { padding: 0 14px; }
  .piatti__title { font-size: 52px; }
  .section-title { font-size: 24px; }
  .quote { font-size: 22px; }

  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__wordmark { font-size: 32vw; }
}
