/* ================================================
   ALANYA 2 DÖNER — Main Stylesheet
   Fonts: Playfair Display (SIL OFL 1.1) · DM Sans (SIL OFL 1.1)
   via Bunny Fonts (DSGVO-konform, EU-Server, kein Tracking)
   ================================================ */

/* ── VARIABLES ─────────────────────────────────── */
:root {
  --bg:       #080807;
  --bg-2:     #0e0d0c;
  --bg-3:     #141312;
  --border:   #1f1e1c;
  --red:      #e01b1b;
  --red-dk:   #b81515;
  --red-lt:   #ff3333;
  --red-a:    rgba(224,27,27,.10);
  --white:    #ffffff;
  --off:      #f0ece5;
  --muted:    rgba(255,255,255,.48);
  --gray:     #726f6a;

  --f-display: 'Playfair Display', serif;
  --f-ui:      'DM Sans', sans-serif;
  --f-body:    'DM Sans', sans-serif;

  --ease:   cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.16,1,.3,1);
  --expo:   cubic-bezier(.19,1,.22,1);
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:auto; overflow-x:hidden; font-size:16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
img, video { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
button { border:none; background:none; cursor:none; font:inherit; color:inherit; }
ul { list-style:none; }

/* ── GRAIN OVERLAY ─────────────────────────────── */
.grain {
  position: fixed;
  inset: -100%;
  width: 300%;
  height: 300%;
  pointer-events: none;
  z-index: 9000;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  animation: grain 8s steps(2) infinite;
}
@keyframes grain {
  0%  { transform: translate(0, 0); }
  20% { transform: translate(-4%, -9%); }
  40% { transform: translate(-12%, 5%); }
  60% { transform: translate(7%, -18%); }
  80% { transform: translate(-6%, 22%); }
  100%{ transform: translate(0, 0); }
}

/* ── CURSOR ────────────────────────────────────── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
}
.c-dot {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .22s var(--spring), height .22s var(--spring), opacity .22s;
}
.c-ring {
  position: absolute;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(224,27,27,.5);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .45s var(--spring), height .45s var(--spring), border-color .35s, background .35s, opacity .35s;
}
body.cursor-hover .c-dot { width: 3px; height: 3px; opacity: 0; }
body.cursor-hover .c-ring {
  width: 58px; height: 58px;
  border-color: rgba(224,27,27,.25);
  background: rgba(224,27,27,.06);
}
body.cursor-click .c-dot { width: 9px; height: 9px; }
body.cursor-click .c-ring { width: 26px; height: 26px; border-color: rgba(224,27,27,.8); }
body.cursor-light .c-ring { border-color: rgba(255,255,255,.4); }
body.cursor-light.cursor-hover .c-ring { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.05); }
@media (hover:none) { #cursor { display:none; } body { cursor:auto; } }

/* ── LOADER ────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 8000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.75rem;
  transition: opacity 1.1s cubic-bezier(.7,0,.3,1), visibility 1.1s;
}
#loader.done { opacity:0; visibility:hidden; pointer-events:none; }

.l-logo {
  display: block;
  height: clamp(72px, 16vw, 110px);
  width: auto;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(18px) scale(1.06);
  animation: loaderLogoIn 1s var(--spring) .15s forwards;
}
@keyframes loaderLogoIn { to { opacity: 1; transform: translateY(0) scale(1); } }

.l-bar { width: 160px; height: 1px; background: var(--border); overflow: hidden; }
.l-fill {
  height: 100%;
  width: 0;
  background: var(--red);
  box-shadow: 2px 0 8px rgba(224,27,27,.6);
  animation: fillBar 1.5s var(--spring) .15s forwards;
}
@keyframes fillBar { to { width: 100%; } }

/* ── NAVIGATION ────────────────────────────────── */
nav#nav {
  position: fixed;
  top: 0; left:0; right:0;
  z-index: 500;
  padding: 1.75rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s var(--ease), background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
nav#nav.scrolled {
  padding: 1rem 5vw;
  background: rgba(8,8,7,.9);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-color: var(--border);
}

.nav-brand { display:flex; align-items:center; }
.logo-img {
  height: 48px;
  width: auto;
  border-radius: 4px;
  transition: opacity .3s;
}
.logo-img:hover { opacity:.8; }

.nav-list { display:flex; align-items:center; gap:2.5rem; }
.nav-list a {
  font-family: var(--f-ui);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .3s;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px; left:0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .35s var(--spring);
}
.nav-list a:hover { color:var(--white); }
.nav-list a:hover::after { width:100%; }

.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: transform .35s ease !important;
}
.btn-nav::after { display:none !important; }
.btn-nav:hover { transform: scale(1.05) !important; }

.burger { display:none; flex-direction:column; gap:5px; padding:6px; z-index:501; }
.burger span { display:block; width:22px; height:1.5px; background:var(--white); transition:transform .35s var(--spring), opacity .3s; }
.burger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.burger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV ────────────────────────────────── */
.m-nav {
  position: fixed; inset:0;
  background: var(--bg);
  z-index: 499;
  display: flex; align-items:center; justify-content:center;
  transform: translateX(100%);
  transition: transform .6s var(--spring);
}
.m-nav.open { transform:translateX(0); }
.m-nav ul { text-align:center; }
.m-nav a {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--white);
  padding: .15rem 0;
  transition: color .3s;
}
.m-nav a:hover { color:var(--red); }
.m-nav a:last-child { color:var(--red); font-style:italic; }

/* ── HERO ──────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 65% at 70% 45%, rgba(224,27,27,.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 15% 75%, rgba(224,27,27,.06) 0%, transparent 45%),
    var(--bg);
}
.hero-video {
  position: absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset:0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(8,8,7,.72) 0%, rgba(8,8,7,.32) 40%, rgba(8,8,7,.6) 75%, rgba(8,8,7,1) 100%),
    linear-gradient(to right, rgba(8,8,7,.42), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 1100px;
}

.eyebrow {
  font-family: var(--f-ui);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .7rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 13vw, 11.5rem);
  line-height: .88;
  letter-spacing: -.02em;
  margin-bottom: 1.1rem;
  display: grid;
  width: max-content;
  max-width: 100%;
}
.h1-line { display:block; overflow:hidden; padding-top:.3em; margin-top:-.3em; padding-bottom:1em; margin-bottom:-1em; }
.h1-inner {
  display:block;
  transform: translateY(108%);
  transition: transform 1.1s var(--expo);
}

.hero-sub {
  font-family: var(--f-ui);
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: rgba(255,255,255,.58);
  letter-spacing: .02em;
  margin-bottom: 1.5rem;
  max-width: 420px;
  line-height: 1.7;
}

.hero-btns { display:flex; align-items:center; gap:1.25rem; flex-wrap:wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--f-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  transition: transform .35s ease;
  will-change: transform;
}
.btn-primary:hover { transform: scale(1.05); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--f-ui);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border: 1px solid var(--red);
  border-radius: 2px;
  color: rgba(255,255,255,.75);
  transition: transform .35s ease, border-color .3s, color .3s;
  will-change: transform;
}
.btn-ghost:hover { transform: scale(1.05); border-color: #ff3333; color: var(--white); }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 5vw;
  z-index: 2;
  display: flex; flex-direction:column; align-items:center; gap:.6rem;
}
.scroll-indicator span {
  font-family: var(--f-ui);
  font-size: .58rem; font-weight:600;
  letter-spacing: .26em; text-transform:uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
}
.s-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  position: relative; overflow: hidden;
}
.s-line::after {
  content:'';
  position:absolute; top:-100%; left:0;
  width:100%; height:50%;
  background: var(--red);
  animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { to { top:200%; } }

/* Utilities */
.red { color:var(--red); }
.red-italic { color:var(--red); font-style:italic; }

/* ── MARQUEE ───────────────────────────────────── */
.marquee-wrap {
  background: var(--red);
  overflow: hidden;
  padding: .9rem 0;
  position: relative; z-index:2;
}
.marquee-track {
  display:flex; align-items:center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .04em;
  color: var(--white);
  padding: 0 1.5rem;
}
.marquee-track .dot { padding:0; opacity:.55; font-size:.9rem; font-style:normal; }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.marquee-wrap:hover .marquee-track { animation-play-state:paused; }

/* ── SECTION SHARED ────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--f-ui);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.tag::before {
  content: '';
  display: block;
  width: 16px; height: 2px;
  background: var(--red);
  border-radius: 1px;
}

/* Clip-reveal headings */
.clip-h2, .order-h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: .92;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}
.clip-line {
  display: block;
  overflow: hidden;
  padding-top: .3em;
  margin-top: -.3em;
  padding-bottom: 1em;
  margin-bottom: -1em;
}
.clip-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.15s var(--expo);
  transition-delay: var(--d, 0s);
}
.clip-line.clip-in > span { transform: none; }

/* ── MENU ──────────────────────────────────────── */
.menu {
  padding: 9rem 5vw;
  max-width: 1400px;
  margin: 0 auto;
}
.menu-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
.menu-note {
  font-family: var(--f-ui);
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray);
  max-width: 240px;
  line-height: 1.7;
  text-align: right;
}

/* 2-Spalten-Grid (statt 3 wie bei Taste Ratingen) */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.m-card {
  background: var(--bg-2);
  padding: 3rem 3.25rem;
  position: relative;
  overflow: hidden;
  transition: background .3s, opacity .85s var(--spring), transform .85s var(--spring);
}

/* Linker roter Balken statt unterem Balken */
.m-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 0; width: 3px;
  background: var(--red);
  transition: height .55s var(--spring);
}
.m-card:hover { background:var(--bg-3); }
.m-card:hover::before { height:100%; }

.m-card-inner { position:relative; }

.m-card h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: .85rem;
  letter-spacing: -.01em;
  transition: color .3s;
  line-height: 1.15;
}
.m-card:hover h3 { color:var(--off); }
.m-card p {
  font-family: var(--f-body);
  font-size: .875rem;
  line-height: 1.75;
  color: var(--gray);
}
.m-tag {
  display: inline-block;
  margin-top: 1.75rem;
  font-family: var(--f-ui);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(224,27,27,.28);
  padding: .28rem .8rem;
  border-radius: 2px;
}

.m-card.hot { background: var(--red); }
.m-card.hot:hover { background:var(--red-dk); }
.m-card.hot::before { background:rgba(255,255,255,.4); }
.m-card.hot p { color:rgba(255,255,255,.82); }
.m-card.hot .m-tag { color:var(--white); border-color:rgba(255,255,255,.32); }
.m-card.hot h3 { color:var(--white); }
.m-card.hot:hover h3 { color:var(--off); }

.menu-actions {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.btn-menu-full {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-family: var(--f-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .95rem 2.4rem;
  border: 1px solid rgba(224,27,27,.5);
  border-radius: 2px;
  color: var(--red);
  transition: transform .35s ease, background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn-menu-full:hover {
  transform: scale(1.05);
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.menu-more {
  font-size: .82rem;
  color: var(--gray);
  text-align: center;
}
.menu-more a { color:var(--red); font-weight:600; transition:color .3s; }
.menu-more a:hover { color:var(--red-lt); }

/* ── ABOUT ─────────────────────────────────────── */
.about {
  padding: 9rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* video links | text rechts */
  gap: 6vw;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

/* Video-Panel linke Spalte */
.about-media {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(8,8,7,.45) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Rechte Spalte: Heading + Body gestapelt */
.about-content { display: flex; flex-direction: column; gap: 2.5rem; }

.about-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,.54);
  margin-bottom: 1.1rem;
  max-width: 560px;
}

/* Feature-Liste ohne Nummern */
.feat-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.feat-list li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--f-ui);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.68);
  letter-spacing: .03em;
  transition: color .3s, gap .3s, opacity .75s var(--spring), transform .75s var(--spring);
}
.feat-list li:hover { color:var(--white); gap:1.5rem; }
.feat-dot {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* Kontaktblock in der About-Sektion */
.about-contact {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.about-contact-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  transition: gap .3s;
}
.about-contact-link:last-child { border-bottom: none; }
.about-contact-link:hover { gap: 1.4rem; }
.acl-label {
  font-family: var(--f-ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  min-width: 58px;
}
.acl-val {
  font-family: var(--f-body);
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  transition: color .3s;
}
.about-contact-link:hover .acl-val { color: var(--white); }

/* ── SIGNATURE VIDEO ───────────────────────────── */
/* Text links-unten – bewusst anders als Taste Ratingen (zentriert) */
.sig-video {
  position: relative;
  height: 85vh;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 5vw 8vh;
  /* Gradient-Fallback wenn kein Video geladen */
  background: linear-gradient(135deg, var(--bg) 0%, rgba(224,27,27,.07) 55%, var(--bg-3) 100%);
}
.sig-vid-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.sig-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Starker Gradient von unten für Lesbarkeit, oben transparent für Filmgefühl */
  background:
    linear-gradient(to top, rgba(8,8,7,.92) 0%, rgba(8,8,7,.55) 35%, rgba(8,8,7,.1) 75%, transparent 100%);
}
.sig-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-bottom: 2rem;
}
.sig-h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3.8rem, 10vw, 9.5rem);
  line-height: .88;
  letter-spacing: -.03em;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
  margin-bottom: 0;
}
.sig-video .tag { margin-bottom: 1rem; }

/* ── CALLOUT BAR ───────────────────────────────── */
.callout-bar {
  background: var(--red);
  padding: 3.5rem 5vw;
  text-align: center;
}
.callout-text {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  flex-wrap: wrap;
}
.callout-day {
  font-style: italic;
  opacity: .75;
  font-size: .75em;
  letter-spacing: .01em;
}
.callout-accent {
  font-style: italic;
  color: rgba(255,255,255,.88);
}

/* ── ORDER ─────────────────────────────────────── */
.order {
  padding: 10rem 5vw 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.order::before {
  content: 'DÖNER';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--f-display);
  font-size: clamp(7rem, 24vw, 20rem);
  font-weight: 900;
  font-style: italic;
  color: rgba(224,27,27,.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -.04em;
  line-height: 1;
}
.order-inner { position:relative; z-index:1; }
.order-h2 { font-size: clamp(3.5rem, 9vw, 8.5rem); margin-top:.5rem; }
.order-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.44);
  margin: 1.5rem auto 3rem;
  max-width: 460px;
  line-height: 1.85;
}

.btn-order {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  gap: 1.25rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--f-ui);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  border-radius: 2px;
  transition: transform .35s ease;
  will-change: transform;
}
.btn-order:hover { transform: scale(1.05); }

/* ── CONTACT ───────────────────────────────────── */
.contact-section-wrap {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contact {
  padding: 9rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6vw;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.c-info { margin-top: 2.75rem; border-top: 1px solid var(--border); }
.c-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
}
.c-label {
  font-family: var(--f-ui);
  font-size: .62rem; font-weight:700;
  letter-spacing: .18em; text-transform:uppercase;
  color: var(--gray);
  padding-top: .12rem;
}
.c-val { font-size: .92rem; color: rgba(255,255,255,.72); line-height:1.65; }

.hours { display:grid; grid-template-columns:auto 1fr; gap:.25rem 1.25rem; }
.hours .day { font-family:var(--f-ui); font-size:.76rem; font-weight:600; color:var(--gray); }
.hours span:not(.day) { font-size:.83rem; color:rgba(255,255,255,.62); }

.c-link { color:var(--red); font-weight:600; transition:color .3s; }
.c-link:hover { color:var(--red-lt); }

/* OpenStreetMap */
.contact-map {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: none; display:block;
  filter: grayscale(100%) invert(88%) contrast(82%) brightness(.88) sepia(8%);
}
.map-gate {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: .85rem;
  background: var(--bg-3);
}
.map-gate-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}
.map-gate-text {
  font-size: .82rem;
  line-height: 1.72;
  color: rgba(255,255,255,.38);
  max-width: 270px;
}
.map-gate-btn {
  margin-top: .25rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  padding: .65rem 1.8rem;
  font-family: var(--f-ui);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color .3s, color .3s;
}
.map-gate-btn:hover { border-color: var(--red); color: var(--red); }

.map-credit {
  position: absolute;
  bottom: .6rem; right: .6rem;
  font-family: var(--f-ui);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  background: rgba(8,8,7,.7);
  padding: .25rem .6rem;
  border-radius: 2px;
}
.map-credit a { color:inherit; transition:color .3s; }
.map-credit a:hover { color:var(--white); }

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 5vw 2rem;
}
.foot-inner {
  max-width: 1400px; margin:0 auto;
  display: flex; flex-direction:column; align-items:center;
  gap: 1.25rem; text-align:center;
}
.foot-logo { height:48px; width:auto; border-radius:3px; opacity:.65; transition:opacity .3s; }
.foot-logo:hover { opacity:1; }
.foot-meta { display:flex; align-items:center; gap:2rem; flex-wrap:wrap; justify-content:center; }
.foot-copy { font-size:.76rem; color:var(--gray); }
footer nav {
  display:flex; gap:2rem;
  position:static; padding:0; border:none; background:none; backdrop-filter:none;
}
footer nav a {
  font-family:var(--f-ui);
  font-size:.67rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--gray); transition:color .3s;
}
footer nav a:hover { color:var(--white); }
.foot-insta {
  display:inline-flex; align-items:center; gap:.45rem;
  font-family:var(--f-ui); font-size:.67rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--gray); transition:color .3s;
}
.foot-insta:hover { color:var(--white); }
.foot-insta svg { width:14px; height:14px; flex-shrink:0; }
.foot-madeby {
  display:flex; align-items:center; justify-content:center;
  padding: 1.5rem 5vw 1rem;
  border-top: 1px solid var(--border);
  margin-top: .5rem;
}
.foot-madeby a { display:flex; align-items:center; gap:.65rem; opacity:.72; transition:opacity .3s; }
.foot-madeby a:hover { opacity:1; }
.foot-madeby-text { font-family:var(--f-ui); font-size:.56rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:#c4952a; }
.foot-brass-logo { height:64px; width:auto; }

/* ── REVEAL STATES ─────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s var(--spring), transform .9s var(--spring);
}
[data-reveal].visible { opacity:1; transform:translateY(0); }

/* ── HERO ENTRANCE ─────────────────────────────── */
#hero .eyebrow { opacity:0; transform:translateY(24px); transition:opacity .9s var(--spring), transform .9s var(--spring); }
#hero.hero-in .eyebrow { opacity:1; transform:none; transition-delay:.1s; }
#hero.hero-in .h1-line .h1-inner { transform:none; transition-delay:.56s; }
.hero-h1 .h1-line { margin-top: -.55em; }
.hero-logo-img {
  width: 55%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--spring), transform .9s var(--spring);
}
#hero.hero-in .hero-logo-img { opacity:1; transform:none; transition-delay:.38s; }

#hero .hero-sub { opacity:0; transform:translateY(22px); transition:opacity .85s var(--spring), transform .85s var(--spring); }
#hero.hero-in .hero-sub { opacity:1; transform:none; transition-delay:.8s; }
#hero .hero-btns > * { opacity:0; transition:opacity .7s var(--spring); }
#hero.hero-in .hero-btns > *:nth-child(1) { opacity:1; transition-delay:.95s; }
#hero.hero-in .hero-btns > *:nth-child(2) { opacity:1; transition-delay:1.06s; }
.scroll-indicator { opacity:0; transform:translateY(16px); transition:opacity .7s var(--spring), transform .7s var(--spring); }
#hero.hero-in .scroll-indicator { opacity:1; transform:none; transition-delay:1.12s; }

/* ── STAGGER ITEMS ─────────────────────────────── */
.m-card { opacity:0; transform:translateY(36px); }
.m-card.visible { opacity:1; transform:none; }

.feat-list li {
  opacity:0; transform:translateX(-24px);
}
.feat-list li.visible { opacity:1; transform:none; }

.c-row { opacity:0; transform:translateX(-20px); transition:opacity .8s var(--spring), transform .8s var(--spring); }
.c-row.visible { opacity:1; transform:none; }

/* ── REVIEWS ───────────────────────────────────── */
.reviews {
  padding: 9rem 5vw;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.reviews-inner { max-width: 1140px; margin: 0 auto; }

.reviews-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 5rem;
}
.reviews-h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.025em;
  margin-top: 1rem;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
}
.score-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--white);
}
.score-meta { display: flex; flex-direction: column; gap: .5rem; }
.score-stars { display: block; }
.score-count {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.score-cta {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  transition: color .3s;
}
.score-cta:hover { color: var(--red-lt); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.r-card {
  background: var(--bg);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--spring), transform .8s var(--spring);
}
.r-card.visible { opacity: 1; transform: none; }
.r-stars {
  color: var(--red);
  font-size: .9rem;
  letter-spacing: .1em;
}
.r-text {
  font-size: .93rem;
  line-height: 1.85;
  color: rgba(255,255,255,.55);
  flex: 1;
}
.r-author {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.r-author::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── RESPONSIVE ────────────────────────────────── */

/* ── Tablet ≤ 1100px ─────────────────────────── */
@media (max-width: 1100px) {
  .nav-list       { display:none; }
  .burger         { display:flex; }

  .about          { grid-template-columns:1fr; gap:3rem; padding:6rem 5vw; }
  .about-media    { aspect-ratio:16/9; max-height:460px; }
  .contact        { grid-template-columns:1fr; padding:6rem 5vw; }
  .menu           { padding:6rem 5vw; }
  .reviews        { padding:6rem 5vw; }
  .order          { padding:7rem 5vw 6rem; }
  .sig-video      { height:75vh; }

  .reviews-top    { flex-direction:column; align-items:flex-start; gap:2.5rem; margin-bottom:3.5rem; }
  .reviews-grid   { grid-template-columns:1fr; }
}

/* ── Mobile ≤ 700px ──────────────────────────── */
@media (max-width: 700px) {
  body            { cursor:auto; }
  #cursor         { display:none; }
  button          { cursor:pointer; }
  .scroll-indicator { display:none; }

  .menu-head      { flex-direction:column; align-items:flex-start; }
  .menu-note      { text-align:left; }
  .hero-btns      { flex-direction:column; align-items:stretch; gap:1rem; }
  .hero-btns > *  { justify-content:center; }
  .hero-sub       { max-width:100%; }
  footer nav      { justify-content:center; }

  /* Hero: grid-layout deaktivieren, logo höhenbasiert skalieren */
  .hero-h1        { display:block; width:auto; }
  .hero-logo-img  { width:70%; height:auto; margin-bottom:0; }
  .hero-h1 .h1-line { margin-top:-.2em; }

  .about          { padding:5rem 5vw; }
  .menu           { padding:5rem 5vw; }
  .reviews        { padding:5rem 5vw; }
  .contact        { padding:5rem 5vw; }
  .order          { padding:6rem 5vw 5rem; }
  .sig-video      { height:70vh; min-height:500px; padding-bottom:7vh; }

  .reviews-top    { margin-bottom:2.5rem; }
  .score-num      { font-size:4.5rem; }
  .order-sub br   { display:none; }
  .order-sub      { margin-bottom:2.5rem; font-size:.92rem; }
  .clip-h2, .order-h2 { margin-bottom:1.5rem; }
}

/* ── Small phones ≤ 480px ────────────────────── */
@media (max-width: 480px) {
  .about          { padding:4rem 5vw; }
  .menu           { padding:4rem 5vw; }
  .reviews        { padding:4rem 5vw; }
  .contact        { padding:4rem 5vw; }
  .order          { padding:5rem 5vw 4rem; }
  .sig-video      { height:65vh; min-height:460px; padding-bottom:6vh; }

  .btn-order      { width:100%; justify-content:center; }
  .score-num      { font-size:3.5rem; }
  .reviews-score  { gap:1rem; }

  .c-row          { grid-template-columns:1fr; gap:.2rem; padding:1rem 0; }
  .c-label        { padding-top:0; }

  .about-media    { max-height:320px; }
  .contact-map    { aspect-ratio:4/3; }

  .foot-meta      { gap:1rem; }
  footer nav      { gap:1rem; }
  .foot-madeby    { padding:1.25rem 5vw .75rem; }
}
