/* ========== TOKENS ========== */
:root {
  --bg: #0c0a09;
  --bg-2: #14110f;
  --paper: #efe7d6;
  --ink: #1a1714;
  --ink-soft: #2a2522;
  --gold: #c9a25a;
  --gold-soft: #8d6f3d;
  --blood: #8b1a1a;
  --blood-2: #b32424;
  --line: rgba(201, 162, 90, 0.25);
  --line-2: rgba(239, 231, 214, 0.1);
  --shadow-1: 0 30px 60px -20px rgba(0, 0, 0, 0.65);
  --shadow-2: 0 10px 30px -10px rgba(0, 0, 0, 0.55);

  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Unbounded", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--paper);
  line-height: 1.55;
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

/* film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
/* vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 199;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== TYPOGRAPHY ========== */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-soft);
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(36px, 5vw, 64px);
}
h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}
p {
  font-weight: 300;
}

.italic {
  font-style: italic;
  color: var(--gold);
  font-family: var(--display);
  font-weight: 400;
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12, 10, 9, 0.65);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1240px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--mono);
}
.nav-links a {
  opacity: 0.75;
  transition: opacity 0.25s, color 0.25s;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}
.nav-close {
  display: none;
}
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Hamburger button — mobile only */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 1001;
  transition: border-color 0.25s, background 0.25s;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.25s;
}
.nav-toggle.open {
  background: var(--gold);
}
.nav-toggle.open span {
  background: var(--ink);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
    order: 3;
  }
  .nav-cta {
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 0.2em;
    order: 2;
  }
  .brand span:last-child {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 9, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 80px 30px 60px;
    font-size: 14px;
    letter-spacing: 0.2em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1000;
  }
  .nav-links::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(201, 162, 90, 0.12);
    pointer-events: none;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-close {
    display: flex;
    position: absolute;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.25s, color 0.25s, transform 0.3s;
    z-index: 2;
  }
  .nav-close:hover {
    background: var(--gold);
    color: var(--ink);
    transform: rotate(90deg);
  }
  .nav-close svg {
    width: 16px;
    height: 16px;
  }
  .nav-links a {
    font-family: var(--display);
    font-size: clamp(26px, 6vw, 38px);
    letter-spacing: 0.03em;
    text-transform: none;
    font-style: italic;
    font-weight: 500;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.25s;
  }
  .nav-links.open a {
    opacity: 0.9;
    transform: none;
  }
  .nav-links.open a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.open a:nth-child(2) {
    transition-delay: 0.16s;
  }
  .nav-links.open a:nth-child(3) {
    transition-delay: 0.22s;
  }
  .nav-links.open a:nth-child(4) {
    transition-delay: 0.28s;
  }
  .nav-links.open a:nth-child(5) {
    transition-delay: 0.34s;
  }
  .nav-links.open a:nth-child(6) {
    transition-delay: 0.4s;
  }
  .nav-links.open a:nth-child(7) {
    transition-delay: 0.46s;
  }
  .nav-links a.nav-cta-mobile {
    margin-top: 12px;
    font-family: var(--mono);
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    padding: 14px 30px;
    border: 1px solid var(--gold);
    color: var(--gold);
    opacity: 0;
  }
  .nav-links.open a.nav-cta-mobile {
    opacity: 1;
  }
  body.menu-open {
    overflow: hidden;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(139, 26, 26, 0.35),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(201, 162, 90, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #0c0a09 0%, #14110f 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(201, 162, 90, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(201, 162, 90, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.hero h1 {
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.95;
  margin: 28px 0 32px;
  font-weight: 500;
}
.hero h1 .em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  display: inline-block;
}
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 55%;
  height: 3px;
  background: var(--blood-2);
  transform: rotate(-3deg);
}
.hero-sub {
  font-size: 17px;
  max-width: 520px;
  opacity: 0.78;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.btn {
  position: relative;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 20px 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-primary {
  background: var(--blood);
  color: var(--paper);
  box-shadow: 0 14px 30px -12px rgba(139, 26, 26, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(139, 26, 26, 0.9);
}
.btn-primary .arrow {
  transition: transform 0.25s;
}
.btn-primary:hover .arrow {
  transform: translateX(6px);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--paper);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(239, 231, 214, 0.6);
}
.hero-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-meta svg {
  color: var(--gold);
}

/* hero card — police dossier */
.dossier {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 36px 32px 30px;
  font-family: var(--mono);
  box-shadow: var(--shadow-1);
  transform: rotate(2deg);
  border: 1px solid #d8cfb9;
}
.dossier::before {
  content: "СОВ. СЕКРЕТНО";
  position: absolute;
  top: 40px;
  right: -36px;
  background: var(--blood);
  color: var(--paper);
  padding: 6px 40px;
  font-size: 11px;
  letter-spacing: 0.25em;
  transform: rotate(45deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.dossier-h {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.dossier-h small {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
}
.dossier dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px 18px;
  font-size: 13px;
}
.dossier dt {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  padding-top: 3px;
}
.dossier dd {
  color: var(--ink);
  font-weight: 500;
}
.dossier .stamp {
  margin-top: 28px;
  padding: 14px;
  border: 2px solid var(--blood);
  color: var(--blood);
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  transform: rotate(-2deg);
  letter-spacing: 0.04em;
}

/* ========== SECTION COMMON ========== */
section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 70px;
}
.section-head .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  border-top: 1px solid var(--gold-soft);
  padding-top: 10px;
}
.section-head h2 {
  max-width: 800px;
}
@media (max-width: 720px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  section {
    padding: 80px 0;
  }
}

/* ========== ABOUT ========== */
.about {
  background: var(--bg-2);
}
.about-intro {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  max-width: 880px;
  color: rgba(239, 231, 214, 0.92);
  margin-bottom: 70px;
  border-left: 2px solid var(--blood);
  padding-left: 32px;
}
.about-intro .accent {
  color: var(--gold);
  font-weight: 600;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature {
  background: var(--bg-2);
  padding: 36px 28px;
  transition: background 0.3s;
}
.feature:hover {
  background: #1c1814;
}
.feature-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 22px;
}
.feature h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.feature p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* ========== HOST ========== */
.host-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .host-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.host-photo.reveal {
  opacity: 1;
  transform: none;
}
.host-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2a2522 0%, #14110f 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.host-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: grayscale(1) sepia(0.75) brightness(0.85);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.6s ease;
}
.host-photo.lazy-loaded::before {
  background-image: var(--lazy-bg);
}
.host-photo.reveal.in::before {
  opacity: 1;
  transform: none;
}
.host-photo:hover::before {
  filter: none;
}
.host-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
  z-index: 2;
}
.host-photo > * {
  position: relative;
  z-index: 1;
}
.placeholder {
  text-align: center;
  padding: 30px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(239, 231, 214, 0.4);
  text-transform: uppercase;
}
.placeholder svg {
  margin: 0 auto 14px;
  display: block;
  opacity: 0.4;
}
.host-tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--blood);
  color: var(--paper);
  padding: 8px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
}
.host h2 .accent {
  font-style: italic;
  color: var(--gold);
}
.host-bio {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.82;
  max-width: 560px;
}
.host-stats {
  margin-top: 40px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.host-stats .stat .n {
  font-family: var(--display);
  font-size: 56px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.host-stats .stat .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.6;
}

/* ========== GALLERY ========== */
.gallery {
  background: var(--bg-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}
.tile {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1c1814, #0c0a09);
  border: 1px solid var(--line-2);
  transition: transform 0.4s ease, border-color 0.4s, filter 0.4s;
  cursor: pointer;
  filter: grayscale(1) sepia(0.75) brightness(0.85);
}
.tile:hover {
  transform: scale(0.985);
  border-color: var(--gold-soft);
  filter: none;
}
.tile .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.tile .play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.tile .play-icon svg {
  width: 54px;
  height: 54px;
  transition: transform 0.3s;
}
.tile:hover .play-icon svg {
  transform: scale(1.1);
}
.tile-1 {
  grid-column: span 3;
  grid-row: span 2;
  background-size: 101%;
  background-position: center -87px;
}
.tile-2 {
  grid-column: span 3;
  grid-row: span 2;
  background-size: 101%;
  background-position: center -42px;
}
.tile-3 {
  grid-column: span 2;
  grid-row: span 2;
  background-size: 101%;
  background-position: center -16px;
}
.tile-4 {
  grid-column: span 2;
  background-size: 101%;
  background-position: center -92px;
}
.tile-5 {
  grid-column: span 2;
  background-size: 101%;
  background-position: center -2px;
}
.tile-6 {
  grid-column: span 2;
  background-size: 160%;
  background-position: center -67px;
}
.tile-7 {
  grid-column: span 2;
  background-size: 101%;
  background-position: center 1px;
}
@media (max-width: 880px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .tile {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    transform: scale(1) !important;
  }
  .tile-1,
  .tile-2 {
    grid-column: span 2 !important;
  }
  .tile-1 {
    background-size: cover;
    background-position: center;
  }
  .tile-2 {
    background-size: 102%;
    background-position: center;
  }
  .tile-3 {
    background-size: 102%;
    background-position: center -7px;
  }
  .tile-4 {
    background-size: 101%;
    background-position: center -22px;
  }
  .tile-5 {
    background-size: 300%;
    background-position: center -2px;
  }
  .tile-6 {
    background-size: 320%;
    background-position: center -2px;
  }
  .tile-7 {
    background-size: 400%;
    background-position: center -2px;
  }
}

/* ========== OFFERS ========== */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 820px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

.card-offer {
  position: relative;
  padding: 50px 44px;
  background: linear-gradient(160deg, #1c1814 0%, #0c0a09 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.card-offer::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: -1;
}
.card-offer::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blood), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.card-offer:hover::after {
  transform: scaleX(1);
}
.suit {
  font-family: var(--display);
  font-size: 60px;
  color: var(--blood-2);
  position: absolute;
  top: 24px;
  right: 32px;
  line-height: 1;
}
.offer-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
}
.card-offer h3 {
  font-size: 32px;
  margin-bottom: 16px;
}
.card-offer p {
  opacity: 0.75;
  max-width: 360px;
  line-height: 1.6;
}
.card-offer .discount {
  margin-top: 28px;
  font-family: var(--display);
  font-size: 84px;
  color: var(--paper);
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.card-offer .discount sup {
  font-size: 28px;
  padding-top: 14px;
  color: var(--gold);
}

/* ========== WHEN/WHERE ========== */
.where {
  background: var(--bg-2);
}
.where-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 880px) {
  .where-grid {
    grid-template-columns: 1fr;
  }
}
.where-card {
  padding: 42px;
  border: 1px solid var(--line);
  background: rgba(12, 10, 9, 0.5);
}
.where-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.where-card .row {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line-2);
  font-size: 15px;
}
.where-card .row:last-child {
  border-bottom: 0;
}
.where-card .row svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.where-card .row .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(239, 231, 214, 0.55);
  margin-bottom: 6px;
}
.where-card .row .val {
  font-size: 16px;
}
.kids-banner {
  margin-top: 28px;
  padding: 22px 26px;
  background: linear-gradient(90deg, rgba(201, 162, 90, 0.12), transparent);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  line-height: 1.6;
}
.kids-banner strong {
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 20px;
}

/* ========== FORM ========== */
.signup {
  position: relative;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 980px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.form-side h2 {
  margin-bottom: 22px;
}
.form-side p {
  opacity: 0.75;
  max-width: 460px;
  line-height: 1.7;
}
.form-side .contacts {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-side .contacts a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  border: 1px solid var(--line);
  transition: border-color 0.25s, color 0.25s;
}
.form-side .contacts a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.form-side .contacts svg {
  color: var(--gold);
}

form.signup-form {
  background: linear-gradient(180deg, #14110f, #0c0a09);
  border: 1px solid var(--line);
  padding: 44px 40px;
  position: relative;
}
form.signup-form::before {
  content: "ДЕЛО №";
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-soft);
  letter-spacing: 0.2em;
}
form.signup-form::after {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  right: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  transition: border-color 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
}
.field textarea {
  min-height: 80px;
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 540px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c9a25a' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 26px;
}
.field select option {
  background: var(--bg-2);
  color: var(--paper);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  opacity: 0.7;
  margin: 24px 0 28px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.checkbox input {
  accent-color: var(--gold);
  margin-top: 3px;
}

.submit {
  width: 100%;
  background: var(--blood);
  color: var(--paper);
  padding: 22px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.25s, transform 0.25s;
}
.submit:hover {
  background: var(--blood-2);
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.5;
}
.form-success {
  display: none;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--gold);
  background: rgba(201, 162, 90, 0.08);
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  text-align: center;
  font-size: 19px;
}
.form-success.show {
  display: block;
  animation: fadein 0.5s ease;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 30px 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--paper);
  transition: color 0.25s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q .ic {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-left: 24px;
  transition: transform 0.35s, border-color 0.25s, background 0.25s;
  position: relative;
}
.faq-q .ic::before,
.faq-q .ic::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s;
}
.faq-q .ic::before {
  width: 12px;
  height: 1px;
}
.faq-q .ic::after {
  width: 1px;
  height: 12px;
}
.faq-item.open .faq-q {
  color: var(--gold);
}
.faq-item.open .faq-q .ic {
  border-color: var(--gold);
  background: rgba(201, 162, 90, 0.08);
}
.faq-item.open .faq-q .ic::after {
  transform: scaleY(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 0 32px 0;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.78;
  max-width: 720px;
}

/* ========== FOOTER ========== */
footer {
  background: #050403;
  padding: 70px 0 40px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 720px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.foot h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot ul {
  list-style: none;
}
.foot li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.7;
}
.foot li a:hover {
  color: var(--gold);
  opacity: 1;
}
.foot-brand p {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.6;
  max-width: 320px;
  line-height: 1.6;
}
.foot-bottom {
  border-top: 1px solid var(--line-2);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.5;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* selection */
::selection {
  background: var(--blood);
  color: var(--paper);
}

/* ========== GLIGHTBOX OVERRIDES ========== */
.goverlay {
  background: rgba(12, 10, 9, 0.92);
}
.gclose,
.gprev,
.gnext {
  color: var(--gold) !important;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.gclose:hover,
.gprev:hover,
.gnext:hover {
  opacity: 1;
}
.gslide-media img {
  border: 1px solid var(--line-2);
}
.glightbox-clean .gslide-description {
  background: var(--bg);
}
.glightbox-clean .gslide-title {
  color: var(--gold);
  font-family: var(--serif);
}
.glightbox-clean .gslide-desc {
  color: var(--ink-mute);
}
