/* YES - Your Event Solution
   Design system for the 2026 rebuild. One dark theme, deliberate:
   the brand emotion is theatre, so the site is a stage. */

@font-face {
  font-family: 'Inter var';
  src: url('/assets/fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0b0b0d;
  --bg-2: #121216;
  --bg-3: #17171c;
  --ink: #f4f1ea;
  --ink-dim: #b9b5ac;
  --ink-faint: #807d76;
  --accent: #ff3352;
  --accent-soft: rgba(239, 0, 39, 0.35);
  --line: rgba(244, 241, 234, 0.12);
  --wa: #25d366;
  --radius: 16px;
  --container: 1180px;
  --topbar-h: 5rem;
  --line-strong: rgba(244, 241, 234, 0.38);
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(5.5rem, 12vh, 9.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter var', 'Inter', -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: #0b0b0d; }

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

a { color: inherit; text-decoration: none; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad-x); }

/* ---------- Type ---------- */

h1, h2, h3 { font-weight: 640; letter-spacing: -0.025em; line-height: 1.08; text-wrap: balance; }

.display {
  font-size: clamp(2.9rem, 7.5vw, 5.9rem);
  font-weight: 720;
  letter-spacing: -0.035em;
}

.title-lg { font-size: clamp(2rem, 4.4vw, 3.2rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.eyebrow::before { content: ''; width: 2.25rem; height: 1px; background: var(--accent-soft); }

.lede { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--ink-dim); max-width: 46ch; }

.muted { color: var(--ink-dim); }

/* ---------- Buttons ---------- */

button { font: inherit; color: inherit; background: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  background: transparent;
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s, color 0.35s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-solid { background: var(--ink); color: #0d0d0f; }
.btn-solid:hover { background: #ffffff; }

.btn-ghost { border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-wa { background: rgba(37, 211, 102, 0.12); border-color: rgba(37, 211, 102, 0.4); color: #7fe8a8; }
.btn-wa:hover { background: rgba(37, 211, 102, 0.2); border-color: var(--wa); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}
.link-arrow svg { transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Top bar ---------- */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
/* Scrim behind the bar in its transparent state: nav labels sit over a bright
   video frame otherwise and drop below WCAG AA. */
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.72) 0%, rgba(11, 11, 13, 0) 100%);
  opacity: 1;
  transition: opacity 0.4s;
  pointer-events: none;
}
.topbar.is-scrolled::before { opacity: 0; }
.topbar-inner { position: relative; }
.topbar.is-scrolled {
  background: rgba(11, 11, 13, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.05rem var(--pad-x);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand img { height: 30px; width: auto; }

.nav { display: flex; gap: 2rem; margin-left: auto; }
.nav a {
  font-size: 0.95rem;
  font-weight: 540;
  color: var(--ink-dim);
  transition: color 0.25s;
  padding: 0.35rem 0;
}
.nav a:hover, .nav a[aria-current='page'] { color: var(--ink); }
.nav a[aria-current='page'] { box-shadow: 0 1px 0 0 var(--accent); }

/* Language switcher: one small flag, menu on demand (Eli, 2026-08-16) */
.lang { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.55rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: var(--ink-dim);
  transition: background 0.25s;
}
.lang-btn:hover { background: rgba(244, 241, 234, 0.07); }
.lang-btn .chev { transition: transform 0.25s var(--ease); }
.lang.is-open .lang-btn .chev { transform: rotate(180deg); }
.flag { display: block; border-radius: 3px; box-shadow: 0 0 0 1px rgba(244, 241, 234, 0.14); }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  min-width: 11.5rem;
  padding: 0.4rem;
  background: rgba(18, 18, 22, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 90;
}
.lang.is-open .lang-menu { display: block; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 9px;
  font-size: 0.9rem;
  color: var(--ink-dim);
}
.lang-menu a:hover { background: rgba(244, 241, 234, 0.07); color: var(--ink); }
.lang-menu a[aria-current='true'] { color: var(--ink); background: rgba(244, 241, 234, 0.09); }

/* Floating WhatsApp, phones only: the topbar CTA is hidden there */
.wa-float { display: none; }
@media (max-width: 960px) {
  .wa-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wa);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  }
}

.topbar .btn-wa { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Hero ---------- */

/* min-height only: a fixed height plus overflow:hidden amputates the headline
   on short viewports, worst in Russian where the copy runs longest. */
.hero {
  position: relative;
  min-height: min(100svh, 62rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media, .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.5) 0%, rgba(11, 11, 13, 0.68) 55%, rgba(11, 11, 13, 0.96) 100%);
}
.hero .eyebrow { color: var(--ink); }
.hero .lede { color: rgba(244, 241, 234, 0.93); }
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.45);
  /* top padding clears the fixed topbar once the copy grows past the viewport */
  padding: calc(var(--topbar-h) + 2rem) var(--pad-x) clamp(4rem, 10vh, 7rem);
}
.hero .lede { margin-top: 1.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

.scroll-hint {
  position: absolute;
  right: var(--pad-x);
  bottom: 2rem;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-faint);
  writing-mode: vertical-rl;
}

/* ---------- Sections ---------- */

.section { padding-block: var(--section); }
.section-alt { background: var(--bg-2); }

.section-head { max-width: 46rem; margin-bottom: clamp(3rem, 6vh, 4.5rem); }
.section-head .lede { margin-top: 1.25rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2.5rem 2rem;
  border-block: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vh, 3.75rem);
}
.stat-num {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-num sup { font-size: 0.5em; color: var(--accent); font-weight: 640; }
.stat-label { margin-top: 0.6rem; color: var(--ink-faint); font-size: 0.85rem; letter-spacing: 0.04em; }

/* ---------- Service cards ---------- */

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.1rem; }
@media (min-width: 961px) {
  .cards:has(> :nth-child(4):last-child) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem 1.9rem;
  background: linear-gradient(160deg, rgba(244, 241, 234, 0.02), rgba(244, 241, 234, 0));
  transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 230px;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent-soft); background: rgba(244, 241, 234, 0.035); }

.card-num { font-size: 0.78rem; font-weight: 640; letter-spacing: 0.18em; color: var(--accent); }
.card h3 { font-size: 1.28rem; }
.card p { color: var(--ink-dim); font-size: 0.96rem; flex: 1; }

/* ---------- Light band & logo wall ---------- */

.section-light { background: #efece5; color: #17171a; }
.section-light .eyebrow { color: #b3001f; }
.section-light .eyebrow::before { background: rgba(179, 0, 31, 0.35); }
.section-light .lede { color: #55534d; }

.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1px;
  background: rgba(23, 23, 26, 0.09);
  border: 1px solid rgba(23, 23, 26, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
}
.logo-cell { background: #ffffff; display: flex; align-items: center; justify-content: center; padding: 1.9rem 1.4rem; min-height: 122px; }
.logo-cell img { max-height: 58px; max-width: 150px; width: auto; object-fit: contain; }

/* ---------- Card media ---------- */

.card-media { margin: -2rem -1.9rem 0.5rem; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; aspect-ratio: 16 / 10; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }

/* ---------- Testimonial avatar ---------- */

.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 640; font-size: 0.8rem; color: var(--accent); letter-spacing: 0.05em; flex-shrink: 0; }

/* ---------- Offer list & index list ---------- */

.offer-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.5rem; margin-top: 1.5rem; padding: 0; }
.offer-list li { padding-left: 1.1rem; position: relative; color: var(--ink-dim); font-size: 0.95rem; }
.offer-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.index-list { list-style: none; padding: 0; display: flex; flex-direction: column; }
.index-list a {
  display: flex; align-items: baseline; gap: 1.25rem;
  padding: 1.1rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink-dim);
  transition: color 0.3s, padding-left 0.3s var(--ease);
}
.index-list a:hover { color: var(--ink); padding-left: 0.9rem; }
.index-list .num { font-size: 0.8rem; font-weight: 640; color: var(--accent); letter-spacing: 0.15em; }

/* ---------- Service rows ---------- */

/* ---------- Services: full-viewport panels with a sticky index ---------- */

.svc-track { position: relative; }

.svc-panel {
  position: relative;
  min-height: 100svh;           /* min-height only: never clip the copy */
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 12vh, 8rem);
  scroll-margin-top: 0;
  overflow: hidden;
}
.svc-bg { position: absolute; inset: 0; z-index: 0; }
.svc-bg img { width: 100%; height: 100%; object-fit: cover; }
.svc-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(11, 11, 13, 0.94) 0%, rgba(11, 11, 13, 0.82) 45%, rgba(11, 11, 13, 0.55) 100%);
}
.svc-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad-x);
  padding-right: calc(var(--pad-x) + 13rem);   /* room for the sticky index */
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.svc-num {
  display: block;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  font-weight: 720;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.svc-main h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.svc-main p { color: var(--ink-dim); max-width: 54ch; }
.svc-main p + p { margin-top: 0.9rem; }
/* One clean column in the side box, ruled rows instead of bullets */
.svc-side .offer-list {
  display: block;
  margin-top: 0;
  border-top: 1px solid var(--line);
}
.svc-side .offer-list li {
  padding: 0.72rem 0;
  padding-left: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
}
.svc-side .offer-list li::before { display: none; }

/* The index: fixed, tracks the panel you are reading */
.svc-index {
  position: fixed;
  top: 50%;
  right: clamp(1rem, 2.5vw, 2rem);
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.svc-index.is-visible { opacity: 1; visibility: visible; }
.svc-index a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.3rem;
  border-radius: 10px;
  color: var(--ink-faint);
  transition: color 0.25s;
}
.svc-index .n {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 8px;
  background: rgba(244, 241, 234, 0.09);
  font-size: 0.95rem;
  font-weight: 680;
  color: var(--ink-dim);
  transition: background 0.25s, color 0.25s;
}
.svc-index .t {
  max-width: 10.5rem;
  font-size: 0.82rem;
  line-height: 1.25;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}
.svc-index a:hover .t, .svc-index a[aria-current='true'] .t { opacity: 1; transform: none; }
.svc-index a:hover, .svc-index a[aria-current='true'] { color: var(--ink); }
.svc-index a[aria-current='true'] .n { background: var(--accent); color: #ffffff; }

@media (max-width: 1100px) {
  .svc-index { display: none; }
  .svc-inner { padding-right: var(--pad-x); }
}
@media (max-width: 860px) {
  .svc-panel { min-height: auto; padding-block: clamp(3.5rem, 9vh, 5rem); }
  .svc-inner { grid-template-columns: 1fr; gap: 2rem; }
  .svc-panel::after { background: linear-gradient(180deg, rgba(11, 11, 13, 0.88) 0%, rgba(11, 11, 13, 0.93) 100%); }
}

.split--flip > :first-child { order: 2; }

.hero--short { min-height: min(74svh, 44rem); }

/* ---------- Quote ---------- */

.quote { text-align: center; max-width: 56rem; margin-inline: auto; }
.quote p {
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
}
.quote p strong { color: var(--accent); font-weight: 560; }

/* ---------- Testimonials ---------- */

.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.1rem; }
.testimonial {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(244, 241, 234, 0.015);
}
.testimonial blockquote { color: var(--ink-dim); font-size: 0.98rem; flex: 1; }
.testimonial footer { display: flex; align-items: center; gap: 0.9rem; }
.testimonial cite { font-style: normal; font-weight: 620; font-size: 0.95rem; display: block; }
.testimonial cite span { display: block; font-weight: 480; color: var(--ink-faint); font-size: 0.82rem; margin-top: 0.15rem; }

/* ---------- CTA panel ---------- */

.cta-panel {
  border: 1px solid var(--accent-soft);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(3rem, 7vw, 5.5rem);
  text-align: center;
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(255, 51, 82, 0.07), rgba(255, 51, 82, 0) 70%),
    var(--bg-2);
}
.cta-panel .lede { margin: 1.25rem auto 0; }
.cta-panel .hero-cta { justify-content: center; margin-top: 2.5rem; }

/* ---------- Contact ---------- */

.office {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.office h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.office a { color: var(--ink-dim); transition: color 0.25s; }
.office a:hover { color: var(--accent); }
.office .addr { color: var(--ink-faint); font-size: 0.92rem; margin-top: 0.5rem; }

/* ---------- Footer ---------- */

.footer { border-top: 1px solid var(--line); padding: clamp(3.5rem, 7vh, 5rem) 0 2.5rem; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer .brand img { height: 26px; }
.footer .footer-h { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; font-weight: 620; }
.footer p, .footer a { color: var(--ink-dim); font-size: 0.94rem; }
.footer a:hover { color: var(--ink); }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer-legal {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  color: var(--ink-faint);
  font-size: 0.85rem;
}
.footer-legal a { color: var(--ink-faint); }
.footer-legal a:hover { color: var(--ink); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero { padding: clamp(9rem, 20vh, 13rem) 0 clamp(3rem, 6vh, 4.5rem); }
.page-hero .lede { margin-top: 1.5rem; }

/* ---------- Prose (legal pages) ---------- */

.prose { max-width: 46rem; }
.prose h2 { font-size: 1.4rem; margin: 2.5rem 0 0.9rem; }
.prose p, .prose li { color: var(--ink-dim); margin-bottom: 0.9rem; }
.prose ul { padding-left: 1.2rem; }
.prose a { color: var(--accent); }

/* ---------- Consent banner ---------- */

.consent {
  position: fixed;
  z-index: 80;
  inset: auto 1rem 1rem 1rem;
  max-width: 30rem;
  margin-left: auto;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  display: none;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.consent.is-open { display: flex; }
.consent p { font-size: 0.85rem; color: var(--ink-dim); flex: 1; }
.consent .btn { padding: 0.5rem 1.1rem; font-size: 0.82rem; }

/* ---------- Reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

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

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 13, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.4rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  /* The open overlay is position:fixed and would otherwise paint over the
     button that closes it, trapping the visitor in the menu. */
  .nav-toggle { display: block; margin-left: auto; position: relative; z-index: 70; }
  .topbar .lang { margin-left: 0; }
  .topbar .btn-wa { display: none; }
  .split { grid-template-columns: 1fr; }
  .split--flip > :first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 560px) {
  .hero-cta .btn { width: 100%; justify-content: center; }
  .offer-list { grid-template-columns: 1fr; }
}

/* ---------- Print ---------- */
@media print {
  :root { --bg: #ffffff; --ink: #111111; --ink-dim: #333333; --ink-faint: #555555; }
  body { background: #ffffff; color: #111111; }
  .topbar, .consent, .hero-media, .scroll-hint, .btn, .nav-toggle, .wa-float, .lang-menu, .svc-index { display: none !important; }
  .svc-panel { min-height: auto; page-break-inside: avoid; }
  .svc-bg, .svc-panel::after { display: none !important; }
  .hero { min-height: auto; }
  a { color: #111111; text-decoration: underline; }
  .section, .hero-content { padding-top: 1rem; padding-bottom: 1rem; }
}
