/* ===================================================================
   That's Amore — Editorial Theme (FUGA-inspired)
   Crème & Rot · Monospace · große Display-Typo · Animationen
   =================================================================== */

:root {
  --bg:        #F4ECD9;   /* crème */
  --bg-2:      #EFE4CC;   /* etwas dunkler */
  --card:      #FBF6EA;   /* helle Karte */
  --red:       #C2241E;   /* lebhaftes Rot (Akzent) */
  --red-deep:  #8E1B16;   /* tiefes Rot */
  --ink:       #5A241F;   /* Fließtext (warmes Dunkelrot) */
  --ink-soft:  #9a6a5f;   /* gedämpft */
  --line:      #d8c4a6;   /* Rahmenlinien */

  /* Akzentfarben der Karten */
  --terra:   #C75B33;
  --olive:   #6E7A3A;
  --mustard: #C2902A;
  --plum:    #7C2D43;

  --font-mono:    'Space Mono', ui-monospace, 'Courier New', monospace;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-ital:    'Cormorant Garamond', Georgia, serif;

  --max: 1280px;
  --pad: clamp(20px, 5vw, 80px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--font-mono);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Typo-Helfer ===== */
.big {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--red);
  line-height: .98;
  letter-spacing: -.02em;
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  text-transform: none;
}
.ital {
  font-family: var(--font-ital);
  font-style: italic;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0;
}
.muted { color: var(--ink-soft); font-size: .85rem; }
.intro-label {
  display: inline-block; font-size: .72rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.small-note { font-size: .76rem; color: var(--ink-soft); margin-top: 10px; }
strong { color: var(--red-deep); font-weight: 700; }

/* ===== Buttons ===== */
.btn-solid {
  display: inline-block; background: var(--red); color: #fff;
  font-family: var(--font-mono); font-weight: 700; font-size: .82rem;
  padding: 13px 22px; border: 0; cursor: pointer; transition: background .25s, transform .25s;
}
.btn-solid:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block; background: transparent; color: var(--ink);
  border: 1px solid var(--line); font-family: var(--font-mono); font-weight: 700;
  font-size: .82rem; padding: 12px 22px; cursor: pointer; transition: .25s;
}
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.link-arrow {
  display: inline-block; color: var(--red); font-weight: 700; font-size: .82rem;
  border-bottom: 2px solid currentColor; padding-bottom: 2px; transition: gap .2s, opacity .2s;
}
.link-arrow:hover { opacity: .7; }

/* ===================================================================
   CUSTOM CURSOR
   =================================================================== */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; mix-blend-mode: multiply; }
.cursor {
  width: 38px; height: 38px; border: 1.5px solid var(--red);
  transform: translate(-50%, -50%); transition: width .25s, height .25s, background .25s, opacity .25s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--red); transform: translate(-50%, -50%); }
.cursor.grow { width: 70px; height: 70px; background: rgba(194,36,30,.08); }
body.using-cursor { cursor: none; }
body.using-cursor a, body.using-cursor button { cursor: none; }
@media (hover: none) { .cursor, .cursor-dot { display: none !important; } }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 24px clamp(18px, 3vw, 36px); transition: padding .3s;
}
.site-header.scrolled { padding: 14px clamp(18px, 3vw, 36px); }
.brand { display: block; line-height: 0; }
.brand-logo { height: 96px; width: auto; transition: height .3s; }
.site-header.scrolled .brand-logo { height: 72px; }

.nav-box {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 28px;
  background: var(--card); border: 1px solid var(--line);
  height: 54px; padding: 0 30px; font-size: .82rem; transition: height .3s;
}
.site-header.scrolled .nav-box { height: 48px; }
.nav-box a { color: var(--ink); position: relative; padding: 4px 0; transition: color .2s; white-space: nowrap; }
.nav-box a::after { content:''; position: absolute; left:0; bottom:0; width:0; height:1.5px; background: var(--red); transition: width .25s; }
.nav-box a:hover { color: var(--red); }
.nav-box a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; }
.btn-contact {
  display: flex; align-items: center; height: 54px; background: var(--red); color: #fff;
  padding: 0 26px; font-weight: 700; font-size: .82rem; transition: background .25s, height .3s;
}
.site-header.scrolled .btn-contact { height: 48px; }
.btn-contact:hover { background: var(--red-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: var(--card); border: 1px solid var(--line); padding: 12px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-media { position: absolute; inset: -10% 0; will-change: transform; }
.hero-img, .hero-video { width: 100%; height: 120%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,18,14,.35), rgba(30,18,14,.55)); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--bg); padding: 0 var(--pad); }
.hero-title { display: flex; flex-direction: column; line-height: .95; }
.hero-title .bold { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.6rem, 8vw, 6.4rem); letter-spacing: -.02em; }
.hero-title .ital { font-family: var(--font-ital); font-style: italic; font-weight: 500; font-size: clamp(2.4rem, 7.5vw, 6rem); margin-top: -.05em; }
.hero-sub { font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; margin: 22px 0 28px; opacity: .92; }
.hero-cta { display: inline-block; background: var(--bg); color: var(--red); font-weight: 700; font-size: .82rem; padding: 14px 26px; transition: transform .25s, background .25s; }
.hero-cta:hover { transform: translateY(-2px); background: #fff; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--bg); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; z-index: 2; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,6px);} }

/* ===================================================================
   INTRO / VORWORT
   =================================================================== */
.intro { padding: clamp(70px,9vw,130px) var(--pad); max-width: var(--max); margin: 0 auto; }
.intro-label { text-align: left; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.intro-head { position: relative; }
.intro-head .big { display: block; }
.intro-illu { width: 150px; margin-top: 30px; }
.intro-text { padding-top: 12px; }
.intro-text p { margin-bottom: 18px; max-width: 46ch; }
.intro-text .btn-solid { margin-top: 8px; }

/* ===================================================================
   FEATURES
   =================================================================== */
.features { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: stretch; }
.feature-main { background: var(--red); color: var(--bg); padding: 30px; display: flex; flex-direction: column; gap: 24px; }
.feature-collage { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.feature-collage .ph { display: block; height: 230px; background-size: cover; background-position: center; background-color: var(--red-deep); }
.feature-main-text h3 { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #fff; margin-bottom: 12px; }
.feature-main-text p { color: rgba(255,255,255,.9); margin-bottom: 16px; max-width: 52ch; }
.feature-main-text strong { color: #fff; }
.feature-main .link-arrow { color: #fff; }

.feature-side { border: 1px solid var(--line); display: flex; flex-direction: column; }
.feature-side-img { height: 230px; background-size: cover; background-position: center; }
.feature-side-body { padding: 26px; }
.feature-side-body h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; margin-bottom: 12px; }
.feature-side-body p { font-size: .88rem; }

.features-bottom { max-width: var(--max); margin: 24px auto 0; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.mini-card { border: 1px solid var(--line); padding: 28px; background: var(--card); transition: transform .3s, box-shadow .3s; }
.mini-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(90,36,31,.1); }
.mini-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--red); margin-bottom: 12px; }
.mini-card p { font-size: .86rem; margin-bottom: 14px; }
.mini-card.highlight { background: var(--red); color: var(--bg); }
.mini-card.highlight h3, .mini-card.highlight .link-arrow { color: #fff; }
.mini-card.highlight p { color: rgba(255,255,255,.9); }

.accent-terra { color: var(--terra) !important; border-color: var(--terra) !important; }
.accent-olive { color: var(--olive) !important; border-color: var(--olive) !important; }
.accent-mustard { color: var(--mustard) !important; border-color: var(--mustard) !important; }

/* ===================================================================
   CAROUSEL / SPEZIALITÄTEN
   =================================================================== */
.addresses { position: relative; padding: clamp(130px,16vw,240px) 0 clamp(70px,9vw,130px); overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.addresses-head { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto 40px; padding: 0 var(--pad); display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.addresses-head .intro-label { margin-bottom: 0; }

/* Endlos laufendes Text-Band HINTER den Karten */
.addresses-stage { position: relative; }
.marquee {
  position: absolute; top: -2%; left: 0; right: 0; transform: translateY(-50%);
  z-index: 0; overflow: hidden; white-space: nowrap; pointer-events: none;
}
.marquee-track { display: inline-flex; animation: marquee-scroll 34s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: inline-flex; align-items: center; gap: 56px; padding-right: 56px; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.m-item { font-family: var(--font-display); font-weight: 900; font-size: clamp(4.5rem, 16vw, 14rem); line-height: 1; letter-spacing: -.02em; color: rgba(142,27,22,.85); white-space: nowrap; }
.m-item.ital { font-family: var(--font-ital); font-style: italic; font-weight: 500; color: rgba(199,91,51,.9); }

.carousel { position: relative; z-index: 1; }
.carousel-nav { display: flex; gap: 10px; }
.car-btn { width: 52px; height: 52px; border: 1px solid var(--line); background: var(--card); color: var(--ink); font-size: 1.1rem; cursor: pointer; transition: .2s; }
.car-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

.carousel {
  display: flex; gap: 22px; overflow-x: auto; padding: 6px var(--pad) 24px;
  justify-content: safe center;
  scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel.dragging { cursor: grabbing; scroll-snap-type: none; }
.addr-card {
  flex: 0 0 340px; max-width: 340px; scroll-snap-align: start;
  border: 1px solid var(--line); background: var(--card); padding: 22px;
  display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.addr-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(90,36,31,.12); }
.addr-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .05em; color: var(--ink-soft); margin-bottom: 14px; }
.addr-tag svg { width: 17px; height: 17px; flex: 0 0 auto; }
.addr-img { height: 200px; background-size: cover; background-position: center; margin-bottom: 18px; background-color: var(--bg-2); }
.addr-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; margin-bottom: 10px; }
.addr-card p { font-size: .84rem; margin-bottom: 18px; flex: 1; }
.addr-btn { align-self: flex-start; font-weight: 700; font-size: .8rem; color: #fff; padding: 10px 18px; transition: opacity .2s, transform .2s; }
.addr-btn:hover { transform: translateY(-2px); opacity: .92; }

.addr-card[data-accent="red"]    h4 { color: var(--red); }     .addr-card[data-accent="red"]    .addr-btn { background: var(--red); }
.addr-card[data-accent="terra"]  h4 { color: var(--terra); }   .addr-card[data-accent="terra"]  .addr-btn { background: var(--terra); }
.addr-card[data-accent="olive"]  h4 { color: var(--olive); }   .addr-card[data-accent="olive"]  .addr-btn { background: var(--olive); }
.addr-card[data-accent="mustard"]h4 { color: var(--mustard); } .addr-card[data-accent="mustard"].addr-btn { background: var(--mustard); }
.addr-card[data-accent="plum"]   h4 { color: var(--plum); }    .addr-card[data-accent="plum"]   .addr-btn { background: var(--plum); }

.addr-card[data-accent="red"]     .addr-tag { color: var(--red); }
.addr-card[data-accent="terra"]   .addr-tag { color: var(--terra); }
.addr-card[data-accent="olive"]   .addr-tag { color: var(--olive); }
.addr-card[data-accent="mustard"] .addr-tag { color: var(--mustard); }
.addr-card[data-accent="plum"]    .addr-tag { color: var(--plum); }

/* ===================================================================
   SPEISEKARTE
   =================================================================== */
.menu { max-width: var(--max); margin: 0 auto; padding: clamp(50px,7vw,100px) var(--pad); }
.menu-head { text-align: center; margin-bottom: 40px; }
.menu-head .intro-label { text-align: center; }
.menu-head .muted { margin-top: 10px; }
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 50px; }
.menu-tab { background: transparent; border: 1px solid var(--line); color: var(--ink); font-family: var(--font-mono); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; padding: 10px 20px; cursor: pointer; transition: .2s; }
.menu-tab:hover { border-color: var(--red); color: var(--red); }
.menu-tab.active { background: var(--red); color: #fff; border-color: var(--red); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fade .45s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.menu-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 4px 48px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.mi-text h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 5px; }
.mi-text h4 small { font-family: var(--font-mono); font-weight: 400; font-size: .7rem; color: var(--ink-soft); }
.mi-text h4 .alg { font-family: var(--font-mono); font-weight: 400; font-size: .58rem; color: var(--ink-soft); letter-spacing: .03em; vertical-align: super; }
.menu-item.featured h4 .alg { color: rgba(255,255,255,.7); }
.mi-text p { font-size: .8rem; color: var(--ink-soft); line-height: 1.5; }
.mi-price { font-family: var(--font-display); font-weight: 700; color: var(--red); font-size: 1rem; white-space: nowrap; }
.menu-item.featured { background: var(--red); border: 0; padding: 16px 18px; margin: 6px 0; }
.menu-item.featured h4, .menu-item.featured .mi-price { color: #fff; }
.menu-item.featured p { color: rgba(255,255,255,.85); }
.menu-actions { text-align: center; margin-top: 44px; }
.menu-legend { max-width: 760px; margin: 34px auto 0; text-align: left; border-top: 1px solid var(--line); }
.menu-legend summary { cursor: pointer; padding: 16px 0; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--red); list-style: none; display: flex; align-items: center; gap: 10px; }
.menu-legend summary::-webkit-details-marker { display: none; }
.menu-legend summary::before { content: '+'; font-size: 1.2rem; line-height: 1; }
.menu-legend[open] summary::before { content: '–'; }
.legend-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 4px 0 24px; }
.legend-cols h4 { font-family: var(--font-display); font-weight: 800; font-size: .88rem; color: var(--ink); margin-bottom: 10px; }
.legend-cols ul { list-style: none; }
.legend-cols li { font-size: .76rem; color: var(--ink-soft); padding: 2px 0; }
.legend-cols li b { color: var(--red); display: inline-block; min-width: 22px; }
@media (max-width: 560px) { .legend-cols { grid-template-columns: 1fr; } }

/* ===================================================================
   TEAM SLIDER
   =================================================================== */
.team { padding: clamp(70px,9vw,130px) 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-head { max-width: var(--max); margin: 0 auto 44px; padding: 0 var(--pad); display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.team-head .intro-label { margin-bottom: 10px; }
.team-track { display: flex; gap: 20px; overflow-x: auto; padding: 6px var(--pad) 22px; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }
.team-track::-webkit-scrollbar { display: none; }
.team-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.team-card { flex: 0 0 256px; max-width: 256px; scroll-snap-align: start; }
.team-photo { height: 320px; background-size: cover; background-position: center; background-color: var(--card); border: 1px solid var(--line); transition: transform .35s ease, box-shadow .35s ease; }
.team-card:hover .team-photo { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(90,36,31,.12); }
.team-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); margin: 16px 0 4px; }
.team-role { font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; color: var(--red); }

/* ===================================================================
   EXPERIENCE / GALERIE
   =================================================================== */
.experience { padding: clamp(60px,8vw,120px) var(--pad) clamp(80px,10vw,160px); max-width: var(--max); margin: 0 auto; }
.exp-head { text-align: right; margin-bottom: 56px; }
.exp-head .big { display: flex; flex-direction: column; align-items: flex-end; }

.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,3.5vw,48px); align-items: start; }
.exp-col { margin: 0; }
.exp-col:nth-child(1) { margin-top: 80px; }
.exp-col:nth-child(2) { margin-top: 0; transition-delay: .12s; }
.exp-col:nth-child(3) { margin-top: 160px; transition-delay: .24s; }

.exp-photo { position: relative; overflow: hidden; height: 360px; background: var(--bg-2); will-change: transform; }
.exp-col:nth-child(2) .exp-photo { height: 460px; }
.ph-fill { position: absolute; inset: -4% 0; background-size: cover; background-position: center; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.exp-col:hover .ph-fill { transform: scale(1.06); }
.exp-col figcaption { margin-top: 14px; font-size: .76rem; letter-spacing: .04em; color: var(--ink-soft); text-transform: uppercase; }

/* Social-Video-Platzhalter (9:16) */
.exp-grid.videos { grid-template-columns: repeat(3,1fr); gap: clamp(16px,3vw,32px); align-items: start; }
.exp-grid.videos .exp-col { margin-top: 0 !important; }
.exp-grid.videos .exp-photo { height: auto; aspect-ratio: 9 / 16; }
.video-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--red); color: #fff; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; }
.video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; width: 70px; height: 70px; border-radius: 50%; background: rgba(244,236,217,.92); display: grid; place-items: center; transition: transform .3s ease, background .3s ease; }
.video-play::after { content: ''; width: 0; height: 0; border-left: 19px solid var(--red); border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }
.exp-col:hover .video-play { transform: translate(-50%,-50%) scale(1.1); background: #fff; }
.reel-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.exp-col:hover .reel-video { transform: scale(1.05); }

/* ===================================================================
   KONTAKT
   =================================================================== */
.contact { padding: clamp(60px,8vw,120px) var(--pad); max-width: var(--max); margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.c-block { margin-top: 26px; }
.c-label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.contact-info a:hover { color: var(--red); }
.hours { width: 100%; max-width: 320px; }
.hours td { padding: 4px 0; font-size: .85rem; }
.hours td:last-child { text-align: right; color: var(--ink-soft); }
.contact-right { display: flex; flex-direction: column; gap: 18px; }
.contact-map { height: 420px; border: 1px solid var(--line); }
.contact-map iframe { width: 100%; height: 100%; filter: saturate(.85) contrast(.95); }
.contact-socials .c-label { margin-bottom: 10px; font-weight: 700; font-size: .82rem; }
.ig-link { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-weight: 700; font-size: .9rem; transition: opacity .2s; }
.ig-link:hover { opacity: .65; }
.ig-icon { flex: 0 0 auto; }

/* ===================================================================
   NEWSLETTER
   =================================================================== */
.newsletter { background: var(--red); color: var(--bg); padding: clamp(60px,8vw,110px) var(--pad); text-align: center; }
.nl-inner { max-width: 640px; margin: 0 auto; }
.newsletter .big { color: #fff; }
.newsletter .ital { color: #fff; }
.nl-inner > p { margin: 16px 0 26px; opacity: .9; }
.nl-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.nl-form input { flex: 1; min-width: 260px; padding: 14px 18px; border: 0; font-family: var(--font-mono); font-size: .9rem; background: var(--bg); color: var(--ink); }
.newsletter .btn-solid { background: var(--ink); }
.newsletter .btn-solid:hover { background: #3a1612; }
.nl-consent { display: inline-block; margin-top: 16px; font-size: .76rem; opacity: .92; }
.nl-consent a { text-decoration: underline; }
.form-message { margin-top: 12px; font-weight: 700; min-height: 1.2em; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px var(--pad) 0; }
.footer-top { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { height: 92px; margin-bottom: 16px; }
.footer-brand p { font-size: .82rem; color: var(--ink-soft); }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-cols div { display: flex; flex-direction: column; gap: 8px; }
.footer-cols a { font-size: .84rem; transition: color .2s; }
.footer-cols a:hover { color: var(--red); }
.footer-bottom { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); padding: 24px 0 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-big { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem,4vw,2.6rem); color: var(--red); letter-spacing: -.02em; }
.footer-bottom p { font-size: .76rem; color: var(--ink-soft); }

/* ===================================================================
   COOKIE BANNER
   =================================================================== */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; z-index: 2000;
  display: none; flex-direction: column; gap: 10px;
  width: min(380px, calc(100vw - 48px)); background: var(--ink); color: var(--bg);
  border: 1px solid rgba(255,255,255,.16); padding: 22px 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  opacity: 0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease;
}
.cookie-banner.show { display: flex; }
.cookie-banner.show.in { opacity: 1; transform: none; }
.cookie-title { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: #fff; }
.cookie-banner p { font-size: .82rem; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; margin-top: 6px; }
.cookie-actions .btn-ghost, .cookie-actions .btn-solid { flex: 1; text-align: center; }
.cookie-banner .btn-ghost { color: var(--bg); border-color: rgba(255,255,255,.4); }
.cookie-banner .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ===================================================================
   LEGAL PAGES
   =================================================================== */
.legal-page { padding: 150px var(--pad) 80px; max-width: 860px; margin: 0 auto; min-height: 100vh; }
.legal-page h1 { font-family: var(--font-display); font-weight: 900; color: var(--red); font-size: clamp(2rem,5vw,3rem); margin-bottom: 24px; }
.legal-page h2 { font-family: var(--font-display); font-weight: 800; color: var(--ink); margin: 30px 0 12px; font-size: 1.3rem; }
.legal-page p, .legal-page li { margin-bottom: 12px; font-size: .9rem; }
.legal-page ul { padding-left: 22px; }
.legal-back { display: inline-block; margin-bottom: 20px; color: var(--red); font-weight: 700; font-size: .82rem; }
.placeholder-box { background: #fff5e6; border-left: 4px solid var(--mustard); padding: 14px 18px; margin: 14px 0; font-size: .86rem; }

/* 404 */
.error-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 140px var(--pad) 90px; }
.error-page .big { margin: 10px 0 18px; }
.error-page > p { max-width: 50ch; margin-bottom: 28px; color: var(--ink-soft); }
.error-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===================================================================
   REVEAL ANIMATION
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor, .cursor-dot { display: none; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1080px) {
  .nav-box { gap: 16px; padding: 12px 18px; font-size: .76rem; }
  .features { grid-template-columns: 1fr; }
  .intro-grid { gap: 36px; }
}

@media (max-width: 860px) {
  .nav-box, .header-right { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-box {
    display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
    position: fixed; top: 0; right: 0; width: 80%; max-width: 340px; height: 100vh;
    padding: 100px 30px; z-index: 1050; border-left: 1px solid var(--line);
  }
  .site-header.nav-open .header-right { display: flex; position: fixed; top: 100px; right: 30px; z-index: 1060; flex-direction: column; }
  .intro-grid, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .features-bottom { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; gap: 24px; }
  .exp-col:nth-child(1), .exp-col:nth-child(2), .exp-col:nth-child(3) { margin-top: 0; }
  .exp-grid.videos { grid-template-columns: 1fr; }
  .exp-grid.videos .exp-col { max-width: 340px; margin: 0 auto !important; }
  .exp-head { text-align: left; }
  .exp-head .big { align-items: flex-start; }
  .addresses-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .feature-collage { grid-template-columns: 1fr; }
  .feature-collage .ph { height: 180px; }
  .footer-cols { grid-template-columns: 1fr; }
  .addr-card { flex-basis: 280px; }
}
