/* =============================================================
   TashaProMusic — Centrum Rozwoju Muzycznego
   Design system & styles
   Palette: deep violet-navy · warm gold · cream
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Backgrounds */
  --bg:          #0A0912;
  --bg-2:        #100D1E;
  --surface:     #17132A;
  --surface-2:   #1E1836;
  --line:        rgba(231, 192, 103, 0.14);
  --line-soft:   rgba(255, 255, 255, 0.08);

  /* Brand */
  --violet:      #8B5CF6;
  --violet-2:    #A78BFA;
  --violet-deep: #5B21B6;
  --gold:        #E7C067;
  --gold-2:      #F4D98A;
  --gold-deep:   #C1902F;

  /* Text */
  --cream:       #F6F1E7;
  --text:        #ECE7F5;
  --muted:       #ADA6C2;
  --muted-2:     #8A83A0;

  /* Effects */
  --grad-gold:   linear-gradient(135deg, #F4D98A 0%, #E7C067 45%, #C1902F 100%);
  --grad-violet: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #6D28D9 100%);
  --grad-hero:   radial-gradient(120% 120% at 80% 0%, rgba(139,92,246,0.22) 0%, rgba(10,9,18,0) 55%),
                 radial-gradient(90% 90% at 0% 100%, rgba(231,192,103,0.12) 0%, rgba(10,9,18,0) 50%);
  --shadow:      0 24px 60px -20px rgba(0,0,0,0.65);
  --shadow-gold: 0 18px 50px -18px rgba(231,192,103,0.35);

  /* Metrics */
  --radius:      20px;
  --radius-sm:   12px;
  --maxw:        1120px;
  --nav-h:       72px;

  --font-display: "Georgia", "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(231,192,103,0.28); color: #fff; }

/* Ambient page grain / glow */
body::before {
  content: "";
  position: fixed; inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 44px, var(--maxw)); margin-inline: auto; position: relative; z-index: 1; }

.section { padding: clamp(44px, 6.5vw, 82px) 0; position: relative; z-index: 1; }
.section--tight { padding: clamp(30px, 4.5vw, 56px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 700; color: var(--gold);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: var(--grad-gold);
}

.section-head { max-width: 720px; margin-bottom: clamp(24px, 3.5vw, 40px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }

.h-xl { font-size: clamp(2.8rem, 7vw, 5.4rem); }
.h-lg { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); }

.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-violet {
  background: var(--grad-violet);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --pad: 15px 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad);
  border-radius: 100px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--gold {
  background: var(--grad-gold); color: #241a05;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -18px rgba(231,192,103,0.5); }
.hero__cta .btn--gold { animation: glowPulse 2.8s ease-in-out infinite; }
.hero__cta .btn--gold:hover { animation-play-state: paused; }
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 14px 40px -16px rgba(231,192,103,0.45); }
  50% { box-shadow: 0 18px 54px -12px rgba(231,192,103,0.8); }
}

.btn--ghost {
  background: rgba(255,255,255,0.03); color: var(--cream);
  border-color: var(--line-soft);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn--sm { --pad: 11px 22px; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 100;
  display: flex; align-items: center;
  transition: height .3s, background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 64px;
  background: rgba(10,9,18,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.nav__inner { width: min(100% - 44px, var(--maxw)); margin-inline: auto; display: flex; align-items: center; gap: 26px; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: .01em; }
.brand__sub { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 0.94rem; font-weight: 600; color: var(--muted);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad-gold); transition: width .3s;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

/* Language switch */
.lang {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-soft); border-radius: 100px;
  padding: 3px; background: rgba(255,255,255,0.03);
}
.lang button {
  border: none; background: transparent; color: var(--muted-2);
  font-size: 0.78rem; font-weight: 800; letter-spacing: .04em;
  padding: 6px 12px; border-radius: 100px; transition: color .2s, background .2s;
}
.lang button.is-active { color: #241a05; background: var(--grad-gold); }

/* Burger */
.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line-soft); border-radius: 12px; background: rgba(255,255,255,0.03); position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--cream); transition: transform .3s, opacity .2s; }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + clamp(20px, 4vw, 48px)); padding-bottom: clamp(36px, 6vw, 72px); overflow: hidden; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none; z-index: 0; }
.hero__orb--1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(139,92,246,.55), transparent 70%); top: -120px; right: -80px; animation: float 14s ease-in-out infinite; }
.hero__orb--2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(231,192,103,.4), transparent 70%); bottom: -140px; left: -100px; animation: float 18s ease-in-out infinite reverse; }

@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -30px); } }

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(24px, 4vw, 52px); align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-soft);
  font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 26px;
}
.hero__badge b { color: var(--cream); font-weight: 700; }
.pill { display: inline-flex; padding: 4px 11px; border-radius: 100px; background: var(--grad-gold); color: #241a05; font-size: 0.72rem; font-weight: 800; letter-spacing: .03em; }

.hero h1 { margin-bottom: 16px; }
.hero__sub { max-width: 46ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.hero__proof { display: flex; flex-wrap: wrap; gap: 18px 34px; }
.proof { display: flex; flex-direction: column; gap: 2px; }
.proof__n { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; }
.proof__l { font-size: 0.82rem; color: var(--muted-2); letter-spacing: .02em; }

/* Hero visual card */
.hero__visual { position: relative; width: 100%; max-width: 340px; margin-inline-start: auto; margin-top: -6px; animation: cardFloat 6s ease-in-out infinite; }
.hero-card {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5; border: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(139,92,246,.5), transparent 60%),
    radial-gradient(120% 90% at 10% 100%, rgba(231,192,103,.32), transparent 55%),
    linear-gradient(160deg, #1a1533, #0c0a18);
  box-shadow: var(--shadow);
  display: flex; align-items: flex-end; padding: 20px;
}
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero-card__glyph { position: absolute; inset: 0; display: grid; place-items: center; opacity: .9; }
.hero-card__glyph svg { width: 60%; height: auto; }
/* Director photo overlay — sits above the fallback mark once assets/img/director.jpg exists */
.hero-card__photo {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-card__tag {
  position: relative; z-index: 2; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-radius: 16px;
  background: rgba(10,9,18,0.55); backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
}
.hero-card__tag span { font-size: 0.82rem; color: var(--muted); }
.hero-card__tag b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); }

.hero-float {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 16px;
  background: rgba(23,19,42,0.9); backdrop-filter: blur(12px);
  border: 1px solid var(--line-soft); box-shadow: var(--shadow);
  animation: float 8s ease-in-out infinite;
}
.hero-float--top { top: 18px; left: -26px; }
.hero-float--bottom { bottom: 34px; right: -22px; animation-delay: -3s; }
.hero-float__ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(231,192,103,0.12); color: var(--gold); flex: none; }
.hero-float small { display: block; color: var(--muted-2); font-size: 0.72rem; }
.hero-float b { font-size: 0.92rem; }

/* Marquee of sub-brands */
.marquee { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 22px 0; overflow: hidden; }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: scroll 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; gap: 12px; color: var(--muted-2); font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; white-space: nowrap; }
.marquee__item span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__portrait {
  border-radius: var(--radius); aspect-ratio: 4/5; border: 1px solid var(--line);
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(139,92,246,.45), transparent 60%),
    linear-gradient(180deg, #1c1636, #0d0b1a);
  position: relative; overflow: hidden; box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.about__portrait svg { width: 55%; opacity: .85; }
.about__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.about__portrait:hover img { transform: scale(1.05); }
.about__badge {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--grad-gold); color: #241a05;
  padding: 18px 22px; border-radius: 18px; box-shadow: var(--shadow-gold);
  max-width: 220px;
}
.about__badge b { font-family: var(--font-display); font-size: 1.6rem; display: block; line-height: 1; }
.about__badge span { font-size: 0.8rem; font-weight: 700; }

.about p + p { margin-top: 18px; }
.sign { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.sign__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); }
.sign__role { font-size: 0.85rem; color: var(--muted-2); }

/* ---------- Offer / services ---------- */
.offer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  position: relative; padding: 26px 24px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft); overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(120% 80% at 50% -10%, rgba(139,92,246,0.16), transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card__ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(231,192,103,0.1); color: var(--gold); margin-bottom: 22px;
  border: 1px solid var(--line);
}
.card__ic svg { width: 28px; height: 28px; }
.card--violet .card__ic { background: rgba(139,92,246,0.14); color: var(--violet-2); border-color: rgba(139,92,246,0.25); }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; margin: 0 0 18px; }
.card__meta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; color: var(--gold); letter-spacing: .02em; }
.card__meta svg { width: 15px; transition: transform .25s; }
.card:hover .card__meta svg { transform: translateX(4px); }
.card--wide { grid-column: span 2; }
/* Title-only offer cards (icon + name) */
.card--title { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 118px; }
.card--title .card__ic { margin-bottom: 18px; }
.card--title h3 { margin-bottom: 0; }

/* ---------- VIVAKIDS feature ---------- */
.viva {
  position: relative; overflow: hidden;
  border-radius: clamp(24px, 4vw, 40px);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(139,92,246,.4), transparent 55%),
    radial-gradient(80% 120% at 0% 100%, rgba(231,192,103,.22), transparent 55%),
    linear-gradient(150deg, #221a44, #100c22);
  border: 1px solid var(--line);
  padding: clamp(40px, 6vw, 76px);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 60px); align-items: center;
}
.viva__star { position: absolute; opacity: .5; color: var(--gold); }
.viva__list { display: grid; gap: 16px; margin-top: 28px; }
.viva__list li { display: flex; gap: 14px; align-items: flex-start; }
.viva__list .tick { width: 26px; height: 26px; border-radius: 8px; background: var(--grad-gold); color: #241a05; display: grid; place-items: center; flex: none; font-weight: 900; font-size: .8rem; }
.viva__ages { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.age { padding: 14px 20px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid var(--line-soft); }
.age b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.age span { font-size: 0.8rem; color: var(--muted-2); }

/* ---------- Why us ---------- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat { padding: 24px 22px; border-radius: var(--radius); background: rgba(255,255,255,0.02); border: 1px solid var(--line-soft); transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, background .3s; }
.feat:hover { transform: translateY(-4px); }
.feat:hover { border-color: var(--line); background: rgba(255,255,255,0.035); }
.feat__ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: rgba(139,92,246,0.12); color: var(--violet-2); margin-bottom: 18px; }
.feat__ic svg { width: 24px; }
.feat h3 { font-size: 1.2rem; margin-bottom: 8px; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0; }
.feat p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; padding: 26px 24px 24px; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s; }
.step:hover { transform: translateY(-4px); border-color: var(--line); }
.step__n { font-family: var(--font-display); font-size: 3.2rem; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; display: block; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.step__line { position: absolute; top: 52px; right: -22px; width: 22px; height: 2px; background: var(--line); }
.steps .step:last-child .step__line { display: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.acc { border-bottom: 1px solid var(--line-soft); }
.acc__q { width: 100%; text-align: left; background: none; border: none; color: var(--cream); padding: 24px 44px 24px 0; font-size: 1.12rem; font-weight: 600; font-family: var(--font-display); position: relative; }
.acc__q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--gold); transition: transform .3s; }
.acc.open .acc__q::after { transform: translateY(-50%) rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc__a p { color: var(--muted); margin: 0; padding: 0 40px 24px 0; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 56px); }
.contact__info { display: grid; gap: 16px; align-content: start; }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.02); border: 1px solid var(--line-soft); transition: border-color .3s; }
.info-item:hover { border-color: var(--line); }
.info-item__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(231,192,103,0.1); color: var(--gold); flex: none; }
.info-item__ic svg { width: 22px; }
.info-item small { color: var(--muted-2); font-size: 0.78rem; letter-spacing: .04em; text-transform: uppercase; }
.info-item b { display: block; font-size: 1.05rem; font-weight: 600; margin-top: 3px; }
.info-item a:hover { color: var(--gold); }

.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft); color: var(--muted); transition: all .25s; }
.socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 20px; }

.form { padding: clamp(28px, 4vw, 40px); border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line-soft); }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft);
  color: var(--cream); font-family: inherit; font-size: 0.98rem; transition: border-color .25s, background .25s;
  color-scheme: dark;
}
.field select option { color: var(--cream); background: #17132a; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.05); }
.field textarea { resize: vertical; min-height: 88px; }
.form__note { font-size: 0.8rem; color: var(--muted-2); margin-top: 14px; text-align: center; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  border-radius: clamp(24px, 4vw, 40px);
  background: var(--grad-violet);
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 60px);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% 0%, rgba(231,192,103,.3), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: clamp(34px, 5vw, 56px) 0 30px; position: relative; z-index: 1; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 34px; }
.footer__brand p { color: var(--muted); font-size: 0.95rem; margin: 14px 0 0; max-width: 34ch; }
.footer h4 { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 14px; font-weight: 800; }
.footer__col a { display: block; color: var(--muted); font-size: 0.95rem; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid var(--line-soft); color: var(--muted-2); font-size: 0.85rem; flex-wrap: wrap; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1), filter .8s cubic-bezier(.16,1,.3,1); }
[data-reveal].in { opacity: 1; transform: none; filter: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ---------- Mobile menu panel ---------- */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
  background: var(--bg-2); border-left: 1px solid var(--line-soft);
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  z-index: 99; padding: calc(var(--nav-h) + 20px) 30px 40px; display: flex; flex-direction: column; gap: 8px;
}
body.menu-open .mobile-menu { transform: none; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 20px; }
.scrim { position: fixed; inset: 0; background: rgba(5,4,12,0.6); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 98; }
body.menu-open .scrim { opacity: 1; visibility: visible; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; }
  .offer__grid, .why__grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .card--wide { grid-column: span 2; }
  .viva { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .step__line { display: none; }
}

@media (max-width: 720px) {
  .nav__links, .nav__actions .btn { display: none; }
  .burger { display: block; }
  .lang { display: none; }
  .offer__grid, .why__grid, .steps { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
  .hero__proof { gap: 20px 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero-float--top { left: 0; }
  .hero-float--bottom { right: 0; }
  .about__badge { right: 0; }
}

@media (max-width: 440px) {
  body { font-size: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .hero__spot { display: none; }
}

/* =============================================================
   Premium polish layer — grain, progress, spotlight, micro-interactions
   ============================================================= */

/* Film grain overlay */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.04; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-gold); z-index: 200;
  box-shadow: 0 0 12px rgba(231,192,103,0.5);
  transition: width .1s linear;
}

/* Hero cursor spotlight */
.hero__spot {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  background: radial-gradient(360px circle at var(--mx, 70%) var(--my, 30%), rgba(231,192,103,0.10), transparent 60%);
  transition: opacity .4s ease;
}
.hero:hover .hero__spot { opacity: 1; }

/* Shimmer on the hero gold headline */
.hero h1 .text-gold { background-size: 220% auto; animation: shimmer 7s linear infinite; }
@keyframes shimmer { to { background-position: 220% center; } }

/* Marquee soft edges */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

/* Button shine sweep */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); transition: left .7s cubic-bezier(.2,.8,.2,1); pointer-events: none;
}
.btn--gold:hover::after { left: 150%; }

/* Photo card — scrim + slow zoom */
.hero-card__photo { transition: transform .8s cubic-bezier(.2,.8,.2,1); z-index: 1; }
.hero-card:hover .hero-card__photo { transform: scale(1.06); }
.hero-card::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(10,9,18,0.8) 2%, transparent 42%);
}
.hero-card__tag { z-index: 3; }

/* Scrollspy active nav link */
.nav__links a.active { color: var(--cream); }
.nav__links a.active::after { width: 100%; }

/* Accessible focus */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px;
}

/* Reveal stagger inside a group */
.offer__grid [data-reveal].in, .why__grid [data-reveal].in { transition-delay: .05s; }

/* =============================================================
   Gallery (masonry) + lightbox
   ============================================================= */
.gallery { column-count: 4; column-gap: 12px; }
.gallery__item {
  display: block; width: 100%; margin: 0 0 12px; padding: 0; border: 0;
  background: none; cursor: pointer; border-radius: 14px; overflow: hidden;
  position: relative; break-inside: avoid; box-shadow: var(--shadow);
}
.gallery__item img { width: 100%; height: auto; display: block; border-radius: 14px; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; border-radius: 14px;
  background: linear-gradient(to top, rgba(10,9,18,.45), transparent 42%);
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
@media (max-width: 1000px) { .gallery { column-count: 3; } }
@media (max-width: 720px)  { .gallery { column-count: 2; } }
@media (max-width: 440px)  { .gallery { column-count: 1; } }

.lightbox {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(5,4,12,.92); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: min(94vw, 1100px); max-height: 90vh; border-radius: 14px; box-shadow: var(--shadow); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-soft); background: rgba(255,255,255,.06); color: var(--cream);
  font-size: 1.7rem; line-height: 1; cursor: pointer; transition: background .2s, border-color .2s, color .2s;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

/* Hide the VIVAKIDS photo caption on mobile */
@media (max-width: 720px) {
  .viva__visual .hero-card__tag { display: none; }
}

/* Clickable offer cards */
a.card--title { text-decoration: none; color: inherit; }
.card__go {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: .02em; color: var(--gold);
  opacity: 0; transform: translateY(4px); transition: opacity .3s, transform .3s;
}
.card__go svg { width: 15px; transition: transform .25s; }
.card--title:hover .card__go, .card--title:focus-visible .card__go { opacity: 1; transform: none; }
.card--title:hover .card__go svg { transform: translateX(3px); }

/* Highlight the pre-selected direction in the form */
.field select.flash { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(231,192,103,0.25); }

/* VIVAKIDS caption flush to the bottom edge of the photo */
.viva__visual .hero-card__tag {
  position: absolute; left: 0; right: 0; bottom: 0; width: 100%;
  border-radius: 0; border: 0; border-top: 1px solid var(--line-soft);
}
