/* ════════════════════════════════════════════════════════
   SCHATTENFREQUENZ v2 — cinematic interface redesign
   ════════════════════════════════════════════════════════ */
:root {
  --bg: #030303;
  --off-black: #0A0A0A;
  --grey-1: #151515;
  --grey-2: #242424;
  --text: #D8D8D2;
  --off-white: #F1F1EA;
  --red: #7A0E13;
  --red-glow: #B1121B;
  --warm: rgba(255, 180, 90, 0.12);
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --glass: rgba(255, 255, 255, 0.03);
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad-x: clamp(16px, 4vw, 64px);
  --max-w: 1480px;
  --radius: clamp(18px, 2.4vw, 32px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background: var(--bg); }
body {
  font-family: var(--font-body); color: var(--text);
  font-size: 16px; line-height: 1.65; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: var(--off-white); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

/* ── atmosphere layers ── */
.atmo {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(110% 80% at 50% -10%, #101010 0%, transparent 60%),
    radial-gradient(70% 60% at 85% 90%, rgba(122, 14, 19, 0.10) 0%, transparent 60%),
    radial-gradient(60% 50% at 10% 70%, rgba(255, 180, 90, 0.05) 0%, transparent 65%),
    var(--bg);
}
.atmo::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(40% 35% at 30% 30%, rgba(255,255,255,0.025), transparent 70%),
    radial-gradient(45% 40% at 70% 60%, rgba(255,255,255,0.02), transparent 70%);
  filter: blur(40px);
  animation: smokeDrift 26s var(--ease) infinite alternate;
}
.atmo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 50% 50%, transparent 55%, rgba(0,0,0,0.55) 100%);
}
@keyframes smokeDrift {
  from { transform: translate(-2%, -1.5%) scale(1); }
  to { transform: translate(2%, 2%) scale(1.06); }
}
.grain {
  position: fixed; inset: -50%; z-index: 80; pointer-events: none; opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  animation: grainShift 1.4s steps(4) infinite;
}
body.no-grain .grain { display: none; }
@keyframes grainShift {
  0% { transform: translate(0,0); } 25% { transform: translate(-2%,3%); }
  50% { transform: translate(3%,-2%); } 75% { transform: translate(-3%,-3%); } 100% { transform: translate(0,0); }
}
main { position: relative; z-index: 1; }

/* ── labels / status dots ── */
.tag {
  font: 500 11px/1 var(--font-mono); letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(216,216,210,0.55);
}
.tag .dot-live { color: var(--red-glow); }
.status { display: inline-flex; align-items: center; gap: 8px; font: 500 10px/1 var(--font-mono); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(216,216,210,0.6); }
.status::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--red-glow); box-shadow: 0 0 8px rgba(177,18,27,0.8); }
.status.grey::before { background: #555; box-shadow: none; }
.status.white::before { background: var(--off-white); box-shadow: 0 0 6px rgba(241,241,234,0.5); }

/* ── nav ── */
.v2-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 58px;
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .5s var(--ease), border-color .5s, backdrop-filter .5s;
}
.v2-header.scrolled {
  background: rgba(3,3,3,0.55);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom-color: var(--line-soft);
}
.v2-header-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.v2-brand { display: flex; align-items: center; gap: 10px; }
.v2-brand img { width: 26px; opacity: 0.95; }
.v2-brand span { font: 700 12px/1 var(--font-head); letter-spacing: 0.18em; color: var(--off-white); text-transform: uppercase; }
.v2-nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); }
.v2-nav a {
  font: 500 10.5px/1 var(--font-mono); letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(216,216,210,0.6); padding: 8px 0; position: relative; transition: color .35s;
}
.v2-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 1px; width: 100%;
  background: var(--red-glow); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.v2-nav a:hover { color: var(--off-white); }
.v2-nav a:hover::after, .v2-nav a.active::after { transform: scaleX(1); }
.v2-nav a.active { color: var(--off-white); }
.v2-nav .nav-pill {
  border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px;
  color: var(--off-white); transition: background .4s, border-color .4s, box-shadow .4s;
}
.v2-nav .nav-pill::after { display: none; }
.v2-nav .nav-pill:hover { background: var(--red); border-color: var(--red-glow); box-shadow: 0 0 24px rgba(177,18,27,0.35); }
.v2-burger {
  display: none; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--glass);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px; z-index: 102;
}
.v2-burger span { width: 14px; height: 1.5px; background: var(--off-white); transition: transform .4s var(--ease), opacity .3s; }
.v2-burger.open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.v2-burger.open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.mm-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  color: var(--off-white, #F4F4F5); width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s;
}
.mm-close:hover { opacity: 1; border-color: rgba(255,255,255,0.4); }
.v2-mobile-menu {
  position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column;
  justify-content: center; padding: 0 var(--pad-x);
  background: rgba(3,3,3,0.82);
  -webkit-backdrop-filter: blur(28px); backdrop-filter: blur(28px);
  opacity: 0; pointer-events: none; transition: opacity .45s var(--ease);
}
.v2-mobile-menu::before {
  content: ""; position: absolute; left: 50%; bottom: -10%; width: 80vw; height: 50vh;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(122,14,19,0.3), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.v2-mobile-menu.open { opacity: 1; pointer-events: auto; }
.v2-mobile-menu a {
  font: 700 clamp(32px, 9vw, 52px)/1.18 var(--font-head); text-transform: uppercase;
  letter-spacing: 0.01em; color: var(--off-white); padding: 8px 0;
  transform: translateY(26px); opacity: 0; transition: transform .6s var(--ease), opacity .6s;
}
.v2-mobile-menu.open a { transform: translateY(0); opacity: 1; }
.v2-mobile-menu.open a:nth-child(2) { transition-delay: .05s; }
.v2-mobile-menu.open a:nth-child(3) { transition-delay: .1s; }
.v2-mobile-menu.open a:nth-child(4) { transition-delay: .15s; }
.v2-mobile-menu.open a:nth-child(5) { transition-delay: .2s; }
.v2-mobile-menu a.mm-red { color: var(--red-glow); }

/* ── frame (interface container) ── */
.shell { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.frame {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015) 40%, rgba(255,255,255,0.01));
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden; position: relative;
}
.frame-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px clamp(18px, 2.6vw, 30px);
  border-bottom: 1px solid var(--line-soft);
}
.frame-bar .fb-left { display: flex; align-items: center; gap: 10px; }
.frame-bar .fb-left img { width: 16px; opacity: 0.85; }
.frame-bar .fb-left span { font: 500 10px/1 var(--font-mono); letter-spacing: 0.24em; text-transform: uppercase; color: rgba(216,216,210,0.7); }
.frame-bar .fb-mid { display: flex; gap: 22px; }
.frame-bar .fb-mid span { font: 500 9.5px/1 var(--font-mono); letter-spacing: 0.22em; text-transform: uppercase; color: rgba(216,216,210,0.35); }
.frame-bar .fb-right { display: flex; gap: 14px; align-items: center; }

/* ── sections ── */
.v2-section { position: relative; padding: clamp(54px, 8vh, 110px) 0; scroll-margin-top: 70px; }
.sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px 40px; margin-bottom: clamp(30px, 4vh, 54px); }
.sec-title {
  font: 700 clamp(30px, 4.6vw, 64px)/1.02 var(--font-head); text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--off-white); max-width: 16ch; text-wrap: balance;
}
.sec-title em { font-style: normal; color: var(--red-glow); }
.sec-sub { color: rgba(216,216,210,0.65); font-size: clamp(14.5px, 1.1vw, 16.5px); max-width: 460px; text-wrap: pretty; }

/* reveal primitives */
.rv { will-change: transform, opacity, filter; }
.rl { display: block; overflow: hidden; }
.rl > span { display: block; will-change: transform; }

/* ── buttons ── */
.cap {
  display: inline-flex; align-items: center; gap: 0.7em;
  font: 600 11px/1 var(--font-mono); letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 999px; padding: 16px 28px; position: relative;
  transition: transform .4s var(--ease), box-shadow .4s, background .4s, border-color .4s, color .4s;
}
.cap:hover { transform: scale(1.02); }
.cap .arrow { transition: transform .35s var(--ease); }
.cap:hover .arrow { transform: translate(3px, -3px); }
.cap-primary { background: var(--off-white); color: #0A0A0A; }
.cap-primary:hover { box-shadow: 0 0 32px rgba(177,18,27,0.35); background: #fff; }
.cap-ghost { border: 1px solid var(--line); color: var(--off-white); background: transparent; }
.cap-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }
.cap-red { background: var(--red); color: var(--off-white); }
.cap-red:hover { background: var(--red-glow); box-shadow: 0 0 36px rgba(177,18,27,0.45); }

/* ── hero ── */
.hero-v2 { padding: 92px 0 0; }
.hero-frame { min-height: min(86svh, 920px); display: flex; flex-direction: column; }
.hero-body {
  flex: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 30px;
  padding: clamp(28px, 4vw, 64px); align-items: center; position: relative;
}
.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow { display: flex; gap: 14px; align-items: center; margin-bottom: 30px; }
.hero-title {
  font: 700 clamp(40px, 6.4vw, 104px)/0.98 var(--font-head); text-transform: uppercase;
  letter-spacing: -0.015em; color: var(--off-white); margin-bottom: 28px; max-width: 12ch;
}
.hero-title em { font-style: normal; color: var(--red-glow); text-shadow: 0 0 40px rgba(177,18,27,0.35); }
.hero-sub-v2 { color: rgba(216,216,210,0.7); max-width: 470px; font-size: clamp(14.5px, 1.15vw, 17px); margin-bottom: 38px; text-wrap: pretty; }
.hero-ctas-v2 { display: flex; gap: 14px; flex-wrap: wrap; }

/* energy core */
.core-wrap { position: relative; aspect-ratio: 1; max-width: 520px; margin: 0 auto; width: 100%; }
.core { position: absolute; inset: 0; }
.core .orb { position: absolute; border-radius: 50%; will-change: transform, opacity; }
.core .orb-glow {
  inset: 22%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(177,18,27,0.55), rgba(122,14,19,0.18) 55%, transparent 75%);
  filter: blur(26px);
  animation: corePulse 7s var(--ease) infinite alternate;
}
.core .orb-smoke {
  inset: 8%;
  background:
    radial-gradient(36% 40% at 38% 36%, rgba(255,255,255,0.06), transparent 70%),
    radial-gradient(40% 38% at 64% 62%, rgba(255,255,255,0.04), transparent 70%);
  filter: blur(18px);
  animation: coreSmoke 14s var(--ease) infinite alternate;
}
.core .orb-heart {
  inset: 41%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(241,241,234,0.85), rgba(177,18,27,0.55) 45%, transparent 72%);
  filter: blur(7px);
  animation: coreHeart 4.5s ease-in-out infinite alternate;
}
.core .ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07); }
.core .ring-1 { inset: 4%; animation: ringSpin 60s linear infinite; border-style: dashed; }
.core .ring-2 { inset: 15%; border-color: rgba(177,18,27,0.18); animation: ringSpin 42s linear infinite reverse; }
.core .ring-3 { inset: 28%; border-color: rgba(255,255,255,0.05); }
.core .ring-1::after, .core .ring-2::after {
  content: ""; position: absolute; top: 50%; left: -3px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--red-glow); box-shadow: 0 0 10px rgba(177,18,27,0.9);
}
.core-meta { position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
@keyframes corePulse { from { transform: scale(0.94); opacity: 0.8; } to { transform: scale(1.06); opacity: 1; } }
@keyframes coreSmoke { from { transform: rotate(-6deg) scale(0.98); } to { transform: rotate(8deg) scale(1.05); } }
@keyframes coreHeart { from { transform: scale(0.92); opacity: 0.75; } to { transform: scale(1.1); opacity: 1; } }
@keyframes ringSpin { to { transform: rotate(360deg); } }

.hero-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 16px clamp(18px, 2.6vw, 30px);
  border-top: 1px solid var(--line-soft);
}
.hero-foot .meta-row { display: flex; gap: clamp(14px, 2.4vw, 34px); flex-wrap: wrap; }
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; font: 500 9.5px/1 var(--font-mono); letter-spacing: 0.26em; text-transform: uppercase; color: rgba(216,216,210,0.45); }
.scroll-cue i {
  width: 7px; height: 7px; border-radius: 50%; border: 1px solid rgba(216,216,210,0.5);
  animation: cuePulse 2.4s ease-in-out infinite; font-style: normal;
}
@keyframes cuePulse { 0%, 100% { transform: scale(0.7); opacity: 0.4; } 50% { transform: scale(1.15); opacity: 1; } }

/* ── about cards ── */
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.a-card {
  border: 1px solid var(--line); border-radius: 22px; background: var(--glass);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  padding: 26px 24px 30px; position: relative; overflow: hidden;
  transition: transform .5s var(--ease), border-color .45s, box-shadow .45s;
}
.a-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  background: radial-gradient(80% 60% at 50% 110%, rgba(122,14,19,0.22), transparent 70%);
  transition: opacity .5s;
}
.a-card:hover { transform: translateY(-4px); border-color: rgba(177,18,27,0.45); box-shadow: 0 18px 44px rgba(0,0,0,0.4), 0 0 26px rgba(177,18,27,0.12); }
.a-card:hover::before { opacity: 1; }
.a-card .num { font: 500 10px/1 var(--font-mono); letter-spacing: 0.24em; color: rgba(216,216,210,0.4); display: block; margin-bottom: 46px; }
.a-card h3 { font: 700 17px/1.25 var(--font-head); text-transform: uppercase; color: var(--off-white); margin-bottom: 10px; position: relative; }
.a-card p { font-size: 13.5px; color: rgba(216,216,210,0.6); position: relative; }

/* ── timeline ── */
.timeline { position: relative; padding-left: clamp(28px, 4vw, 60px); }
.tl-line { position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.tl-line .tl-progress { position: absolute; inset: 0; background: linear-gradient(var(--red-glow), var(--red)); transform-origin: top; transform: scaleY(0); }
.tl-item { position: relative; padding: 10px 0; }
.tl-item + .tl-item { margin-top: 8px; }
.tl-dot {
  position: absolute; left: calc(8px - clamp(28px, 4vw, 60px) - 4.5px + clamp(28px, 4vw, 60px)); top: 50%;
  left: calc(-1 * clamp(28px, 4vw, 60px) + 4px); transform: translateY(-50%);
  width: 9px; height: 9px; border-radius: 50%; background: var(--grey-2);
  border: 1px solid rgba(255,255,255,0.2); transition: background .4s, box-shadow .4s;
}
.tl-item:hover .tl-dot, .tl-item.is-active .tl-dot { background: var(--red-glow); box-shadow: 0 0 12px rgba(177,18,27,0.8); }
.e-card {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: clamp(18px, 3vw, 44px);
  border: 1px solid var(--line); border-radius: 20px; background: var(--glass);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  padding: clamp(20px, 2.4vw, 30px) clamp(20px, 2.6vw, 34px);
  transition: transform .5s var(--ease), border-color .45s, box-shadow .45s, background .45s;
}
.e-card:hover { transform: translateY(-3px) scale(1.005); border-color: rgba(177,18,27,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 30px rgba(177,18,27,0.1); background: rgba(255,255,255,0.045); }
.e-date { font: 700 clamp(24px, 2.6vw, 38px)/1 var(--font-head); color: var(--off-white); letter-spacing: -0.01em; min-width: 110px; }
.e-date small { display: block; font: 500 9.5px/1 var(--font-mono); letter-spacing: 0.26em; color: rgba(216,216,210,0.45); margin-top: 8px; }
.e-main h3 { font: 700 clamp(17px, 1.6vw, 23px)/1.15 var(--font-head); text-transform: uppercase; color: var(--off-white); margin-bottom: 6px; }
.e-main p { font-size: 13.5px; color: rgba(216,216,210,0.6); max-width: 560px; }
.e-side { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.e-link { font: 600 10px/1 var(--font-mono); letter-spacing: 0.22em; text-transform: uppercase; color: rgba(216,216,210,0.55); border-bottom: 1px solid var(--line); padding-bottom: 5px; transition: color .3s, border-color .3s; }
.e-card:hover .e-link { color: var(--off-white); border-color: var(--red-glow); }
.e-photo { width: clamp(80px,10vw,140px); height: clamp(60px,8vw,100px); border-radius: 10px; background-size: cover; background-position: center; opacity: 0.55; transition: opacity .4s; flex-shrink: 0; }
.e-card:hover .e-photo { opacity: 0.85; }

/* ── leistungen / accordion ── */
.svc-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 4vw, 70px); padding: clamp(28px, 4vw, 60px); }
.svc-intro p { color: rgba(216,216,210,0.65); max-width: 400px; margin-top: 22px; font-size: 15px; }
.acc { border-top: 1px solid var(--line-soft); }
.acc-item { border-bottom: 1px solid var(--line-soft); }
.acc-head {
  width: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px;
  padding: 20px 6px; text-align: left; transition: padding .4s var(--ease);
}
.acc-head:hover { padding-left: 14px; }
.acc-num { font: 500 10px/1 var(--font-mono); letter-spacing: 0.2em; color: rgba(216,216,210,0.4); transition: color .35s; }
.acc-title { font: 700 clamp(16px, 1.5vw, 21px)/1.2 var(--font-head); text-transform: uppercase; color: var(--off-white); }
.acc-icon { position: relative; width: 14px; height: 14px; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: rgba(216,216,210,0.6); transition: transform .45s var(--ease), background .35s; }
.acc-icon::before { left: 0; top: 6.25px; width: 14px; height: 1.5px; }
.acc-icon::after { left: 6.25px; top: 0; width: 1.5px; height: 14px; }
.acc-item.open .acc-icon::after { transform: scaleY(0); }
.acc-item.open .acc-num { color: var(--red-glow); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease); }
.acc-body > div { overflow: hidden; }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body p { padding: 0 6px 22px; color: rgba(216,216,210,0.6); font-size: 14px; max-width: 560px; }
.acc-item.open { background: linear-gradient(90deg, rgba(122,14,19,0.06), transparent 60%); }

/* ── gastro flow (restyled v1 svg) ── */
.gastro-v2 .frame { padding: clamp(28px, 4vw, 60px); }
.gastro-flow { width: 100%; height: auto; display: block; margin-top: 40px; }
.gastro-flow .flow-path { stroke: var(--red-glow); stroke-width: 1.5; fill: none; opacity: 0.9; }
.gastro-flow .flow-path-ghost { stroke: var(--line); stroke-width: 1; fill: none; }
.gastro-flow .flow-node { fill: var(--bg); stroke: rgba(216,216,210,0.55); stroke-width: 1.5; }
.gastro-flow .flow-dot { fill: var(--red-glow); }
.gastro-flow text { font: 600 13px var(--font-mono); letter-spacing: 0.14em; fill: var(--text); text-transform: uppercase; }
.gastro-flow .flow-idx { font: 600 9px var(--font-mono); letter-spacing: 0.18em; fill: rgba(177,18,27,0.95); }
.gastro-note { margin-top: 34px; color: rgba(216,216,210,0.65); max-width: 560px; font-size: 14.5px; }
.gastro-note strong { color: var(--off-white); font-weight: 600; }

/* ── immersive break ── */
.break-v2 { position: relative; padding: clamp(110px, 18vh, 220px) 0; text-align: center; overflow: hidden; }
.break-core { position: absolute; left: 50%; top: 50%; width: min(80vw, 760px); aspect-ratio: 1; transform: translate(-50%, -50%); opacity: 0.55; pointer-events: none; }
.break-title {
  position: relative; font: 700 clamp(36px, 7vw, 110px)/1.02 var(--font-head);
  text-transform: uppercase; letter-spacing: -0.01em; color: var(--off-white);
  text-wrap: balance;
}
.break-title em { font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(241,241,234,0.5); }
.break-tag { position: relative; margin-top: 26px; }

/* ── gallery / impressions ── */
.marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee { display: flex; gap: 16px; width: max-content; will-change: transform; animation: marqueeRun 38s linear infinite; padding: 6px 0; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.m-card {
  width: clamp(220px, 26vw, 340px); aspect-ratio: 4 / 5; border-radius: 20px;
  border: 1px solid var(--line); position: relative; overflow: hidden; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  transition: transform .5s var(--ease), border-color .4s;
}
.m-card:hover { transform: scale(1.03); border-color: rgba(177,18,27,0.4); }
.m-card .m-bg { position: absolute; inset: 0; filter: saturate(0.4) brightness(0.85); transition: filter .5s; }
.m-card:hover .m-bg { filter: saturate(0.6) brightness(1); }
.m-card span { position: relative; font: 600 10px/1.5 var(--font-mono); letter-spacing: 0.22em; text-transform: uppercase; color: rgba(241,241,234,0.85); }
.m-card small { position: relative; font: 500 9px/1 var(--font-mono); letter-spacing: 0.2em; color: rgba(216,216,210,0.45); text-transform: uppercase; margin-top: 5px; }
@keyframes marqueeRun { to { transform: translateX(-50%); } }

/* ── contact ── */
.contact-frame { padding: clamp(32px, 5vw, 72px); position: relative; overflow: hidden; }
.contact-frame::before {
  content: ""; position: absolute; left: 50%; bottom: -40%; width: 90%; height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(122,14,19,0.28), transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.contact-copy .sec-title { max-width: 12ch; }
.contact-copy p { color: rgba(216,216,210,0.65); max-width: 420px; margin: 22px 0 34px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.contact-links a { font: 500 13px/1 var(--font-mono); letter-spacing: 0.1em; color: rgba(216,216,210,0.75); border-bottom: 1px solid var(--line); padding-bottom: 6px; transition: color .3s, border-color .3s; }
.contact-links a:hover { color: var(--off-white); border-color: var(--red-glow); }
.v2-form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; position: relative; }
.v2-field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.v2-field.full { grid-column: 1 / -1; }
.v2-field label { font: 500 9.5px/1 var(--font-mono); letter-spacing: 0.24em; text-transform: uppercase; color: rgba(216,216,210,0.5); }
.v2-field input, .v2-field select, .v2-field textarea {
  background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 12px;
  color: var(--off-white); font: 400 15px/1.4 var(--font-body); padding: 13px 16px;
  outline: none; transition: border-color .35s, box-shadow .35s; width: 100%;
  appearance: none; -webkit-appearance: none;
}
.v2-field input:focus, .v2-field select:focus, .v2-field textarea:focus {
  border-color: rgba(177,18,27,0.6); box-shadow: 0 0 0 3px rgba(122,14,19,0.15);
}
.v2-field input::placeholder, .v2-field textarea::placeholder { color: rgba(216,216,210,0.3); }
.v2-field select { cursor: pointer; }
.v2-field select option { background: var(--off-black); color: var(--off-white); }
.v2-field textarea { resize: vertical; min-height: 96px; }
.v2-submit { grid-column: 1 / -1; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.v2-submit .note { font-size: 12px; color: rgba(216,216,210,0.4); }
.v2-success { grid-column: 1 / -1; display: none; border: 1px solid rgba(177,18,27,0.5); border-radius: 14px; padding: 22px 24px; background: rgba(122,14,19,0.08); }
.v2-success.show { display: block; }
.v2-success strong { font: 700 15px var(--font-head); text-transform: uppercase; color: var(--off-white); display: block; margin-bottom: 6px; }
.v2-success span { color: rgba(216,216,210,0.65); font-size: 13.5px; }

/* ── footer ── */
.v2-footer { position: relative; z-index: 1; padding: 60px 0 40px; }
.v2-footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line-soft); padding-top: 30px; }
.v2-footer .f-brand { display: flex; align-items: center; gap: 10px; }
.v2-footer .f-brand img { width: 20px; opacity: 0.8; }
.v2-footer .f-brand span { font: 700 11px/1 var(--font-head); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(241,241,234,0.8); }
.v2-footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.v2-footer nav a { font: 500 9.5px/1 var(--font-mono); letter-spacing: 0.22em; text-transform: uppercase; color: rgba(216,216,210,0.45); transition: color .3s; }
.v2-footer nav a:hover { color: var(--off-white); }
.v2-footer .f-meta { font: 500 9px/1.8 var(--font-mono); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(216,216,210,0.3); }

/* ── cookie consent ── */
.consent {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 30px);
  width: min(720px, calc(100vw - 32px)); z-index: 150;
  border: 1px solid var(--line); border-radius: 20px;
  background: rgba(10,10,10,0.82);
  -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.05);
  opacity: 0; pointer-events: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.consent.visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.consent-inner { display: flex; align-items: center; gap: 22px; padding: 20px 24px; flex-wrap: wrap; }
.consent-text { flex: 1; min-width: 260px; }
.consent-text strong { font: 700 13px/1 var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; color: var(--off-white); display: block; margin-bottom: 6px; }
.consent-text p { font-size: 12.5px; color: rgba(216,216,210,0.6); }
.consent-text a { color: var(--off-white); border-bottom: 1px solid var(--line); transition: border-color .3s; }
.consent-text a:hover { border-color: var(--red-glow); }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions .cap { padding: 13px 20px; }

/* ── responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .svc-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-body { grid-template-columns: 1fr; }
  .core-wrap { max-width: 380px; order: -1; }
  .hero-frame { min-height: 0; }
}
@media (max-width: 768px) {
  .v2-nav { display: none; }
  .v2-burger { display: flex; }
  .e-card { grid-template-columns: auto 1fr auto; gap: 14px; }
  .e-photo { display: none; }
  .e-side { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .v2-form { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .hero-title { max-width: none; }
}

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee { animation: none; }
  .rv { opacity: 1 !important; transform: none !important; filter: none !important; }
}
