/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --char:         #2A1709;
  --char2:        #361F0D;
  --char3:        #422812;
  --copper:       #C8742A;
  --copper-light: #E8943A;
  --copper-dim:   rgba(200,116,42,0.15);
  --white:        #F5EAD8;
  --off:          #EDE0CC;
  --muted:        rgba(245,234,216,0.5);
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'DM Sans', sans-serif;
  --script:       'Alex Brush', cursive;
  --ease:         cubic-bezier(0.4,0,0.2,1);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--char); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; cursor: default; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
button, a { -webkit-tap-highlight-color: transparent; }


/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--char); }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 2px; }


/* ── LANGUAGE VISIBILITY ── */
html[lang="de"] .t-en { display: none; }
html[lang="en"] .t-de { display: none; }


/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 28px 48px; display: flex; justify-content: space-between; align-items: center; transition: all 0.4s var(--ease); }
.nav.scrolled { padding: 18px 48px; background: rgba(30,20,16,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(200,116,42,0.2); }
.nav.scrolled .nav-links a { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--copper); }
.nav-logo img { height: 130px; width: auto; object-fit: contain; margin-left: -40px; margin-top: -15px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--char); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--copper); }
.lang-switch { display: flex; align-items: center; gap: 4px; border: 1px solid rgba(200,116,42,0.45); border-radius: 10px; padding: 3px; background: rgba(28,28,28,0.35); }
.lang-btn { padding: 6px 8px; border-radius: 7px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.2s; }
.lang-btn.active, .lang-btn:hover { background: var(--copper); color: var(--char); }
.nav-book { padding: 8px 16px; border: 1px solid var(--copper); color: var(--copper); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.25s; border-radius: 15px; }
.nav-book:hover { background: var(--copper); color: #000 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; background: none; border: 1px solid var(--copper); border-radius: 50%; cursor: pointer; width: 44px; height: 44px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--copper); border-radius: 2px; transition: all 0.3s; }


/* ── DRAWER ── */
.drawer { position: fixed; inset: 0; z-index: 500; background: var(--char2); padding: 32px; display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); overflow-y: auto; }
.drawer.open { opacity: 1; pointer-events: all; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 56px; }
.drawer-head img { height: 130px; width: auto; margin-left: -47px; margin-top: -27px; }
.drawer-close { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); background: none; color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; margin-top: -16px; margin-right: -12px; }
.drawer-close:hover { border-color: var(--copper); color: var(--copper); }
.drawer-nav { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.drawer-nav a { font-family: var(--serif); font-size: clamp(36px,10vw,52px); font-weight: 600; color: rgba(255,255,255,0.7); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); letter-spacing: -0.01em; transition: color 0.2s, padding-left 0.2s; }
.drawer-nav a:hover { color: var(--copper); padding-left: 12px; }
.drawer-book-btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; border: 1px solid var(--copper); color: var(--copper); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; align-self: flex-start; margin-bottom: 48px; transition: all 0.25s; border-radius: 10px; }
.drawer-book-btn:hover { background: var(--copper); color: var(--char); }
.drawer-lang { align-self: flex-start; margin-bottom: 36px; }
.drawer-info { margin-top: auto; display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); }
.drawer-info strong { color: var(--copper); font-weight: 400; }


/* ── HERO ── */
.hero { min-height: 100vh; position: relative; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: var(--char); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { opacity: 0.8; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(245,234,216,0.65) 0%, rgba(245,234,216,0.45) 40%, rgba(245,234,216,0.05) 65%, transparent 100%), linear-gradient(to bottom, transparent 0%, rgba(30,20,16,0.15) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 48px 150px; max-width: 56vw; }
.hero-title { font-family: var(--sans); font-size: clamp(70.5px,calc(6.3vw - 1.5px),124.5px); font-weight: 700; line-height: 0.9; letter-spacing: 0.005em; color: #1E1410; margin-top: -200px; text-transform: uppercase; }
.hero-title-script { font-family: var(--script); font-size: calc(1.6em + 2px); font-weight: 400; color: var(--copper); text-transform: none; letter-spacing: 0; display: block; }
.hero-title-script-i { font-size: 1.2em; }
.hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; margin-top: 40px; }
.hero-img-float { position: absolute; top: 80px; right: 60px; width: 580px; height: 680px; z-index: 1; border-radius: 50%; filter: drop-shadow(0 24px 64px rgba(30,20,16,0.35)); overflow: visible; }
.hero-img-float img { object-fit: contain; animation: slowspin 18s linear infinite; transform-origin: center center; }
@keyframes slowspin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }


/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 12px; padding: 18px 40px; background: var(--copper); color: var(--char); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; border-radius: 10px; }
.btn-primary:hover { background: var(--copper-light); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #1E1410; padding: 14px 32px; border: 2px solid #C8742A; border-radius: 15px; background: rgba(200,116,42,0.15); backdrop-filter: blur(4px); transition: all 0.3s var(--ease); }
.btn-ghost:hover { color: var(--white); border-color: var(--copper-light); background: linear-gradient(135deg, rgba(200,116,42,0.3) 0%, rgba(232,148,58,0.15) 40%, rgba(200,116,42,0.35) 70%, rgba(255,180,80,0.2) 100%); box-shadow: inset 0 1px 0 rgba(255,200,100,0.35), inset 0 -1px 0 rgba(200,116,42,0.2), 0 8px 32px rgba(200,116,42,0.3); transform: translateY(-2px); }
.btn-ghost-white { color: var(--white); border-color: var(--white); }
.btn-outline { background: transparent; border: 1px solid var(--copper); color: var(--copper); }


/* ── MARQUEE ── */
.marquee-wrap { background: var(--copper); padding: 14px 0; overflow: hidden; position: relative; z-index: 3; }
.marquee-track { display: flex; animation: marquee 20s linear infinite; width: max-content; }
.marquee-item { font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--char); padding: 0 40px; white-space: nowrap; }
.marquee-dot { color: rgba(28,28,28,0.4); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ── SECTION SHARED ── */
.section-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.section-label-center { justify-content: center; }


/* ── ABOUT ── */
.about-simple { padding: 120px 48px 80px; text-align: center; }
.about-simple-inner { max-width: 640px; margin: 0 auto; }
.about-simple-heading { font-family: var(--serif); font-size: clamp(36px,5vw,60px); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; color: var(--white); margin-bottom: 24px; }
.about-simple-heading em { font-style: italic; color: var(--copper); }
.about-simple-body { font-size: 17px; line-height: 1.9; color: var(--muted); }


/* ── NAANWICH ── */
.naanwich-sec { padding: 60px 48px 80px; background: var(--char2); position: relative; }
.naanwich-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.naanwich-bg img { opacity: 0.8; }
.naanwich-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; position: relative; z-index: 1; }
.naanwich-feature { border-top: 2px solid var(--copper); border-radius: 10px; padding: 40px 36px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); position: relative; overflow: hidden; background: var(--char); }
.naanwich-feature::before { content: ''; position: absolute; inset: 0; background: rgba(30,20,16,0.25); border-radius: 16px; pointer-events: none; z-index: 0; }
.naanwich-feature:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(200,116,42,0.3); }
.naanwich-feature > * { position: relative; z-index: 1; }
.naanwich-title { font-family: var(--serif); font-size: clamp(22px,2.5vw,32px); font-weight: 700; letter-spacing: 0.05em; margin-bottom: 24px; line-height: 1.2; color: var(--white); text-transform: uppercase; }
.naanwich-title em { font-style: italic; color: var(--copper); text-transform: none; font-weight: 700; font-size: 1.15em; }
.naanwich-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; width: 100%; }
.naanwich-img img { object-fit: contain; }
.naanwich-name { font-family: var(--serif); font-size: clamp(22px,2.5vw,30px); font-weight: 700; color: var(--copper); margin-bottom: 12px; }
.naanwich-desc { font-size: 15px; line-height: 1.8; color: #fff; font-weight: 400; max-width: 360px; margin: 0 auto 28px; flex-grow: 1; }
.naanwich-cta { padding: 14px 32px; margin-top: auto; font-weight: 700; letter-spacing: 0.1em; }


/* ── MENU ── */
.menu-sec { padding: 100px 0; position: relative; overflow: hidden; }
.menu-bg-img { position: absolute; inset: 0; z-index: 0; }
.menu-bg-img img { opacity: 0.08; }
.menu-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.menu-header { text-align: center; margin-bottom: 64px; }
.menu-title { font-family: var(--serif); font-size: clamp(48px,7vw,80px); font-weight: 600; letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px; }
.menu-title em { font-style: italic; color: var(--copper); }
.menu-sub { font-size: 14px; color: var(--muted); letter-spacing: 0.06em; }
.menu-tabs { display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.tab { padding: 10px 20px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); border: 1px solid rgba(255,255,255,0.08); background: none; cursor: pointer; transition: all 0.2s; border-radius: 10px; }
.tab.active, .tab:hover { background: var(--copper); color: var(--char); border-color: var(--copper); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; }
.menu-item { padding: 24px 32px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; transition: background 0.2s; }
.menu-item:hover { background: rgba(200,116,42,0.05); }
.menu-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
.item-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.item-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.item-price { font-family: var(--serif); font-size: 22px; color: var(--copper); white-space: nowrap; flex-shrink: 0; }
.menu-order { text-align: center; margin-top: 56px; display: flex; justify-content: center; gap: 16px; flex-wrap: nowrap; }


/* ── EXPERIENCE ── */
.experience { padding: 140px 48px; max-width: 1400px; margin: 0 auto; }
.exp-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; gap: 40px; flex-wrap: wrap; }
.exp-title { font-family: var(--serif); font-size: clamp(40px,5vw,64px); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
.exp-title em { font-style: italic; color: var(--copper); }
.exp-desc { max-width: 380px; font-size: 15px; line-height: 1.8; color: var(--muted); }
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.exp-card { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--char3); border-radius: 10px; }
.exp-card img { position: absolute; inset: 0; border-radius: 10px; transition: transform 0.6s var(--ease); }
.exp-card:hover img { transform: scale(1.04); }
.exp-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; z-index: 2; }
.exp-card-title { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--white); }


/* ── REVIEWS ── */
.reviews { background: var(--char2); padding: 120px 48px; overflow: hidden; position: relative; }
.reviews-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.reviews-bg img { opacity: 0.8; }
.reviews-header { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto 64px; flex-wrap: wrap; gap: 24px; position: relative; z-index: 1; }
.reviews-title { font-family: var(--serif); font-size: clamp(36px,5vw,56px); font-weight: 600; letter-spacing: -0.02em; color: var(--char); }
.reviews-nav { display: flex; gap: 8px; }
.rev-btn { width: 44px; height: 44px; border: 1px solid var(--copper); background: none; color: var(--copper); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; border-radius: 10px; }
.rev-btn:hover { background: var(--copper); color: var(--char); }
.reviews-track { display: flex; gap: 24px; max-width: 1200px; margin: 0 auto; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; position: relative; z-index: 1; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 380px; background: var(--char); padding: 40px; scroll-snap-align: start; border-top: 2px solid var(--copper); border-radius: 10px; }
.review-quote { font-family: var(--serif); font-size: 56px; line-height: 0.8; color: var(--copper); opacity: 0.8; margin-bottom: 16px; }
.review-text { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.7); margin-bottom: 32px; font-style: italic; }
.review-author { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--copper); }
.review-stars { display: flex; gap: 4px; margin-top: 6px; }
.review-stars span { color: var(--copper); font-size: 12px; }


/* ── RESERVATION ── */
.reservation { padding: 140px 48px; position: relative; overflow: hidden; }
.res-bg { position: absolute; inset: 0; z-index: 0; }
.res-bg::after { content: ''; position: absolute; inset: 0; background: rgba(42,23,9,0.88); }
.res-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.res-title { font-family: var(--serif); font-size: clamp(48px,7vw,88px); font-weight: 600; line-height: 1; letter-spacing: -0.02em; margin-bottom: 24px; }
.res-title em { font-style: italic; color: var(--copper); }
.res-text { font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 500px; margin: 0 auto 56px; }
.res-info-row { display: flex; justify-content: center; gap: 64px; margin-bottom: 64px; flex-wrap: wrap; }
.res-info-item { text-align: center; }
.res-info-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--copper); margin-bottom: 8px; }
.res-info-val { font-family: var(--serif); font-size: 18px; color: var(--white); }
.res-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }


/* ── FOOTER ── */
.footer { background: var(--char); border-top: 1px solid rgba(42,23,9,0.88); padding: 80px 48px 48px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; max-width: 1400px; margin: 0 auto; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand img { height: 64px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: var(--muted); max-width: 280px; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--muted); line-height: 1; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-hours-item { display: flex; justify-content: space-between; gap: 24px; font-size: 13px; color: var(--muted); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.footer-hours-item.closed span:last-child { color: rgba(255,255,255,0.2); }
.footer-bottom { max-width: 1400px; margin: 32px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--copper); transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.7; }


/* ── STICKY BAR ── */
.sticky-bar { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 100; background: rgba(30,20,16,0.96); border: 1px solid rgba(200,116,42,0.4); backdrop-filter: blur(16px); padding: 14px 28px; display: flex; align-items: center; gap: 20px; transition: all 0.4s var(--ease); white-space: nowrap; border-radius: 10px; }
.sticky-bar.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(16px); }
.sticky-bar-text { font-size: 13px; color: var(--off); }
.sticky-bar-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }
.sticky-bar-cta { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper); transition: color 0.2s; cursor: pointer; }
.sticky-bar-cta:hover { color: var(--copper-light); }


/* ── CONTACT OVERLAY ── */
.contact-overlay { position: fixed; inset: 0; z-index: 600; background: var(--char2); overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); }
.contact-overlay.open { opacity: 1; pointer-events: all; }
.contact-nav { position: sticky; top: 0; background: var(--char2); padding: 28px 48px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.06); z-index: 10; }
.contact-nav img { height: 130px; width: auto; object-fit: contain; margin-left: -40px; margin-top: -15px; }
.co-close { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); background: none; color: var(--muted); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; }
.co-close:hover { border-color: var(--copper); color: var(--copper); }
.contact-body { padding: 64px 48px 80px; max-width: 720px; margin: 0 auto; }
.contact-body h2 { font-family: var(--serif); font-size: clamp(40px,7vw,64px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.contact-body h2 em { font-style: italic; color: var(--copper); }
.contact-sub { font-size: 14px; color: var(--muted); margin-bottom: 48px; line-height: 1.6; }
.fg { margin-bottom: 24px; }
.fg label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.fg input, .fg textarea, .fg select { width: 100%; padding: 16px 20px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); font-size: 14px; font-family: var(--sans); color: var(--white); outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--copper); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg textarea { min-height: 120px; resize: none; }
.fg select option { background: var(--char2); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; padding: 20px; background: var(--copper); color: var(--char); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.25s; margin-top: 8px; border-radius: 10px; }
.submit-btn:hover { background: var(--copper-light); }
.or-line { display: flex; align-items: center; gap: 20px; margin: 36px 0; color: rgba(255,255,255,0.2); font-size: 12px; }
.or-line::before, .or-line::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.call-cta { text-align: center; }
.call-cta p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.call-cta a { font-family: var(--serif); font-size: 32px; color: var(--white); border-bottom: 1px solid rgba(200,116,42,0.4); padding-bottom: 4px; transition: color 0.2s; }
.call-cta a:hover { color: var(--copper); }


/* ── IMPRINT / PRIVACY OVERLAYS ── */
.imprint-overlay, .privacy-overlay { position: fixed; inset: 0; z-index: 620; background: var(--char2); overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); }
.imprint-overlay.open, .privacy-overlay.open { opacity: 1; pointer-events: all; }
.imprint-body { max-width: 880px; margin: 0 auto; padding: 64px 48px 96px; }
.imprint-panel { display: none; }
html[lang="de"] .imprint-panel-de,
html[lang="en"] .imprint-panel-en { display: block; }
.imprint-body h2 { font-family: var(--serif); font-size: clamp(42px,7vw,72px); font-weight: 600; color: var(--white); margin-bottom: 36px; }
.imprint-body h3 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--copper); margin: 32px 0 10px; }
.imprint-body p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.68); margin-bottom: 14px; }
.imprint-body a { color: var(--copper); border-bottom: 1px solid rgba(200,116,42,0.35); }


/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(80px) scale(0.97); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }


/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-title { font-size: clamp(64px,7vw,86px); }
  .hero-img-float { right: 24px; width: 600px; height: 540px; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 980px) {
  .hero-content { max-width: 54vw; }
  .hero-title { font-size: clamp(54px,6vw,68px); }
  .hero-img-float { right: 12px; width: 500px; height: 460px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; justify-content: flex-start; }
  .hero-img-float { position: relative; width: 500px; height: 500px; top: auto; right: auto; margin: 120px auto 0; display: block; z-index: 2; }
  .hero-img-float img { object-fit: cover; border-radius: 50%; }
  .hero-content { padding: 40px 24px 72px; position: relative; z-index: 2; max-width: none; margin-top: 180px; }
  .about-simple { padding: 80px 24px 48px; }
  .naanwich-sec { padding: 40px 24px 60px; }
  .naanwich-inner { grid-template-columns: 1fr; gap: 24px; }
  .naanwich-img { aspect-ratio: 5/4; }
  .menu-inner { padding: 0 24px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { border-right: none; }
  .experience { padding: 80px 24px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { aspect-ratio: 4/3; }
  .reviews { padding: 80px 24px; }
  .review-card { flex: 0 0 85vw; }
  .reservation { padding: 100px 24px; }
  .res-info-row { gap: 32px; }
  .footer { padding: 56px 24px 40px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-body { padding: 40px 24px 64px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-nav { padding: 20px 24px; }
  .imprint-body { padding: 40px 24px 72px; }
  .sticky-bar { left: 16px; right: 16px; transform: none; bottom: 16px; }
  .sticky-bar.hidden { transform: translateY(16px); }
}

@media (max-width: 480px) {
  .hero-img-float { width: 270px; height: 270px; }
  .hero-title { font-size: clamp(32px,10.5vw,55px); letter-spacing: 0; }
}

/* ── HERO ENTRANCE ANIMATION ── */
.hero-img-float{
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1), opacity 0.6s ease;
}
.hero-content{
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1), opacity 0.6s ease;
}
.hero-actions{
  transition: opacity 0.6s ease;
}

 
/* ── EDITORIAL SECTION (Direction D) ── */
.editorial-sec {
  position: relative;
  overflow: hidden;
}
.editorial-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.editorial-bg img {
  opacity: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.editorial-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 680px;
  max-width: 100%;
}
 
/* cells */
.editorial-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  gap: 20px;
  overflow: hidden;
  transition: opacity 0.4s ease;
}
.editorial-cell-left,
.editorial-cell-right {
  transition: opacity 0.4s ease;
}
.editorial-inner:has(.editorial-cell-left:hover) .editorial-cell-right {
  opacity: 0.45;
}
.editorial-inner:has(.editorial-cell-right:hover) .editorial-cell-left {
  opacity: 0.45;
}
 
/* ghost numbers */
.editorial-ghost-num {
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--serif);
  font-size: 130px;
  font-weight: 700;
  line-height: 1;
  color: var(--char);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
 
/* image */
.editorial-img-wrap {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(200,116,42,0.35);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  margin-bottom: -80px;
}
.editorial-cell:hover .editorial-img-wrap {
  transform: translateY(-10px) scale(1.03);
}
.editorial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
 
/* text body */
.editorial-body {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(245, 234, 216, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 100px 32px 32px;
  border: 1px solid rgba(200, 116, 42, 0.15);
  width: 85%;
}
.editorial-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-family: var(--sans);
}
.editorial-name {
  font-family: var(--serif);
  font-size: clamp(28px,3vw,44px);
  font-weight: 600;
  color: var(--char);
  letter-spacing: -0.01em;
  line-height: 1;
}
.editorial-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(42,23,9,0.7);
  max-width: 340px;
  font-family: var(--sans);
}
.editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1.5px solid var(--copper);
  padding-bottom: 3px;
  transition: gap 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  margin-top: 8px;
  font-family: var(--sans);
}
.editorial-cta:hover {
  gap: 14px;
  color: var(--char);
  border-color: var(--char);
}
 
/* vertical divider */
.editorial-divider {
  width: 1px;
  background: rgba(42,23,9,0.15);
  align-self: stretch;
}
 
/* mobile */
@media (max-width: 768px) {
  .editorial-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1px auto;
  }
  .editorial-divider {
    width: auto;
    height: 1px;
    align-self: auto;
    background: rgba(42,23,9,0.12);
  }
  .editorial-cell {
    padding: 56px 24px;
  }
  .editorial-ghost-num {
    font-size: 80px;
  }
  .editorial-img-wrap {
    width: 200px;
    height: 200px;
  }
}
