/* ═══════════════════════════════════════
   SHARED — bal.lmart.eu.org
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --ink:      #0D0A08;
  --cream:    #F4EFE8;
  --warm:     #EDE5DA;
  --card:     #1A1410;
  --card2:    #241C16;
  --red:      #C0392B;
  --red-dim:  rgba(192,57,43,0.16);
  --gold:     #C8A96E;
  --gold-dim: rgba(200,169,110,0.14);
  --border:   rgba(255,255,255,0.08);
  --muted:    rgba(255,255,255,0.42);
  --muted2:   rgba(255,255,255,0.22);
  --ff-d: 'Bebas Neue','Arial Black',sans-serif;
  --ff-s: 'Cormorant Garamond',Georgia,serif;
  --ff-b: 'DM Sans',Arial,sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── SVG ICONS (inline) ── */
.ico { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 24px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,10,8,0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(13,10,8,0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-logo {
  font-family: var(--ff-d);
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 13px; font-weight: 500;
  padding: 7px 14px; border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff; background: rgba(255,255,255,0.08);
}
.nav-cta-btn {
  background: var(--red); color: #fff !important;
  font-weight: 700 !important; padding: 8px 20px !important;
}
.nav-cta-btn:hover { background: #a93226 !important; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0; background: rgba(10,8,6,0.97);
  z-index: 199; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  backdrop-filter: blur(20px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-d); font-size: 44px; letter-spacing: 2px; color: #fff;
  padding: 8px 0; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ── PAGE WRAPPER ── */
.page { padding-top: 60px; min-height: 100vh; }

/* ── SECTION ── */
.section { padding: 80px 24px; max-width: 1080px; margin: 0 auto; }
.section-sm { padding: 56px 24px; max-width: 1080px; margin: 0 auto; }
.full-dark { background: var(--card); }
.full-dark2 { background: var(--card2); }

.s-label { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.s-label-g { color: var(--gold); }
.s-title { font-family: var(--ff-d); font-size: clamp(36px,5vw,64px); line-height: 1; letter-spacing: 2px; margin-bottom: 14px; }
.s-sub { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 520px; }
.s-head { margin-bottom: 48px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 100px; font-size: 14px; font-weight: 700; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(192,57,43,0.4); }
.btn-ghost { background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

/* ── CARDS ── */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; transition: border-color 0.25s, transform 0.25s; }
.card:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-3px); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.rev-1 { transition-delay: 0.08s; }
.rev-2 { transition-delay: 0.16s; }
.rev-3 { transition-delay: 0.24s; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(70px);
  background: var(--card2); color: #fff; font-size: 13px; font-weight: 600;
  padding: 11px 22px; border-radius: 100px; border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4); transition: transform 0.3s ease;
  z-index: 9999; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── FOOTER ── */
.footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
  padding: 40px 24px 32px;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; transition: color 0.2s; }
.footer-link:hover { color: #fff; }
.footer-bottom { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 64px 18px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}
.seo-content {
  display: none;
}
.disabled {
  opacity: 0.45;
  filter: grayscale(1);
  pointer-events: none;
  cursor: not-allowed;
}