/* =====================================================
   Огонь и вода. Купала в Крошнозеро · v4
   База отдыха «Нуозъярви», 6 июля 2026
   ===================================================== */

/* ===== TOKENS ===== */
:root {
  --linen: #F5F1E8;
  --linen-2: #EDE7D8;
  --night: #1B2A38;
  --night-2: #0F1A24;
  --pine: #2D4A2B;
  --coal: #1A1A1A;
  --amber: #E8943A;
  --amber-2: #C77728;
  --moss: #5A6B3F;
  --line: rgba(27, 42, 56, 0.12);
  --line-dark: rgba(245, 241, 232, 0.12);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;

  --max: 1280px;
  --gutter: clamp(20px, 5vw, 64px);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--night);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all .35s ease;
  color: var(--linen);
}
.nav.scrolled {
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--night);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand svg { transition: transform .4s ease; }
.brand:hover svg { transform: rotate(15deg); }
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: opacity .25s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: currentColor;
  transition: all .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--linen);
  text-align: center;
  overflow: hidden;
  padding: 120px var(--gutter) 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(232, 148, 58, 0.38), transparent 70%),
    radial-gradient(ellipse 60% 70% at 50% 30%, rgba(27, 42, 56, 0.4), transparent 70%),
    linear-gradient(180deg, #0a1218 0%, #1B2A38 35%, #2a3845 60%, #1f2d38 80%, #0a1218 100%);
  z-index: 0;
}
.hero-stars {
  position: absolute; inset: 0;
  width: 100%; height: 60%;
  opacity: 0.7;
  pointer-events: none;
  animation: starsTwinkle 8s ease-in-out infinite;
}
@keyframes starsTwinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.85; }
}
.hero-moon {
  position: absolute;
  top: 5%; right: 6%;
  width: clamp(120px, 14vw, 200px);
  filter: blur(0.5px);
  opacity: 0.85;
  animation: moonFloat 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes moonFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.hero-forest {
  position: absolute; bottom: 0; left: 0; right: 0;
  width: 100%; height: 30%;
  opacity: 0.95;
}
.hero-flame {
  position: absolute;
  width: 60px;
  filter: blur(1px);
  animation: flameFlicker 3s ease-in-out infinite;
  pointer-events: none;
}
.hero-flame-1 { left: 12%; bottom: 12%; width: 72px; animation-delay: 0s; }
.hero-flame-2 { right: 14%; bottom: 14%; width: 56px; animation-delay: 1.2s; }
.hero-flame-3 { left: 48%; bottom: 8%; width: 48px; animation-delay: 2s; }
@keyframes flameFlicker {
  0%, 100% { transform: scaleY(1) scaleX(1); opacity: 0.6; }
  50% { transform: scaleY(1.15) scaleX(0.92); opacity: 0.9; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 11vw, 160px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(12px, 3vw, 40px);
}
.hero-title .word {
  background: linear-gradient(180deg, #F5F1E8 0%, #E8943A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(232, 148, 58, 0.2);
}
.hero-title .and {
  font-style: italic;
  font-weight: 300;
  font-size: 0.55em;
  opacity: 0.7;
  align-self: center;
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3.5vw, 40px);
  margin-bottom: 28px;
  opacity: 0.95;
}
.hero-tagline {
  max-width: 660px;
  margin: 0 auto 44px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  opacity: 0.85;
  font-weight: 300;
}

.countdown {
  margin: 0 auto 40px;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(10px, 2.5vw, 24px);
  width: 100%;
  max-width: 720px;
  padding: 28px 16px;
  border-top: 1px solid rgba(245, 241, 232, 0.18);
  border-bottom: 1px solid rgba(245, 241, 232, 0.18);
}
.cd-item { text-align: center; min-width: 64px; }
.cd-num {
  font-family: var(--sans);
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: var(--linen);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: 0.02em;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.cd-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
}
.cd-divider {
  font-family: var(--sans);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 200;
  opacity: 0.35;
  margin-top: -18px;
}

.countdown-message {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--amber);
  margin: 0 auto 32px;
  max-width: 600px;
  padding: 24px;
  border-top: 1px solid rgba(245, 241, 232, 0.18);
  border-bottom: 1px solid rgba(245, 241, 232, 0.18);
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s ease;
  cursor: pointer;
}
.cta::after {
  content: '->';
  font-size: 16px;
  transition: transform .3s ease;
}
.cta:hover::after { transform: translateX(4px); }
.cta-primary {
  background: var(--amber);
  color: var(--night);
}
.cta-primary:hover {
  background: #f0a44a;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 148, 58, 0.4);
}
.cta-ghost {
  border: 1px solid rgba(245, 241, 232, 0.4);
  color: var(--linen);
}
.cta-ghost:hover { border-color: var(--linen); background: rgba(245, 241, 232, 0.06); }

/* ===== SECTIONS ===== */
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section.dark { background: var(--night); color: var(--linen); }
.section.dark.gastro { background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%); }

.section-header { margin-bottom: 64px; max-width: 860px; }
.section-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  margin-top: 20px;
  opacity: 0.8;
  font-weight: 300;
  max-width: 720px;
}
.section.dark .section-lead { opacity: 0.85; }
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--amber); }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.section-title em {
  font-style: italic;
  color: var(--amber);
  font-weight: 400;
}
.section-title.light { color: var(--linen); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-text p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  margin-bottom: 22px;
  color: rgba(27, 42, 56, 0.88);
  font-weight: 300;
}
.about-text p strong { color: var(--amber-2); font-weight: 500; }
.about-text p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--amber);
  font-weight: 500;
}
.about-quote {
  padding: 36px;
  background: var(--night);
  color: var(--linen);
  border-radius: var(--r-md);
  position: sticky;
  top: 100px;
}
.about-quote svg { color: var(--amber); margin-bottom: 20px; }
.about-quote p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: 400;
}
.about-quote footer {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ===== PROGRAM — две колонки ===== */
.program { background: linear-gradient(180deg, var(--linen) 0%, var(--linen-2) 100%); }

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.program-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
}
.program-col-dark {
  background: var(--night);
  color: var(--linen);
  border-color: rgba(232, 148, 58, 0.3);
  box-shadow: 0 24px 60px rgba(27, 42, 56, 0.18);
}
.program-head {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.program-col-dark .program-head { border-bottom-color: rgba(245, 241, 232, 0.18); }
.program-kicker {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.program-h {
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}
.program-time {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  opacity: 0.75;
}

.program-list {
  list-style: none;
  display: grid;
  gap: 4px;
  flex: 1;
}
.program-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
  transition: padding-left .3s ease;
}
.program-col-dark .program-list li { border-bottom-color: rgba(245, 241, 232, 0.1); }
.program-list li:last-child { border-bottom: none; }
.program-list li:hover { padding-left: 6px; }
.pl-time {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--amber);
  line-height: 1.3;
}
.program-list li h4 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 6px;
}
.program-list li p {
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 300;
  opacity: 0.8;
}
.program-list li p strong { color: var(--amber-2); font-weight: 500; opacity: 1; }
.program-col-dark .program-list li p strong { color: var(--amber); }

.program-list li.hl > div {
  padding: 16px 18px;
  background: rgba(232, 148, 58, 0.08);
  border-left: 2px solid var(--amber);
  border-radius: 4px;
  margin: -6px 0;
}
.program-col-dark .program-list li.hl > div {
  background: rgba(232, 148, 58, 0.14);
}
.hl-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.program-foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.program-col-dark .program-foot { border-top-color: rgba(245, 241, 232, 0.15); }
.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge-free { background: var(--moss); color: var(--linen); }
.badge-paid { background: var(--amber); color: var(--night); }
.badge-note {
  font-size: 13px;
  opacity: 0.7;
  font-weight: 300;
}

/* ===== WOW ===== */
.wow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.wow-card {
  background: var(--linen);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: all .4s ease;
  position: relative;
}
.wow-card:hover {
  background: var(--night);
  color: var(--linen);
}
.wow-card:hover .wow-visual svg { transform: scale(1.08); }
.wow-visual {
  width: 88px; height: 88px;
  margin-bottom: 8px;
}
.wow-visual svg {
  width: 100%; height: 100%;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.wow-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
}
.wow-tag-free {
  background: var(--moss);
  color: var(--linen);
}
.wow-tag-paid {
  background: rgba(232, 148, 58, 0.18);
  color: var(--amber-2);
  border: 1px solid rgba(232, 148, 58, 0.4);
}
.wow-card:hover .wow-tag-paid { background: var(--amber); color: var(--night); border-color: var(--amber); }
.wow-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.15;
}
.wow-card p {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.85;
  font-weight: 300;
}

/* ===== GASTRO ===== */
.gastro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.gastro-card {
  padding: 44px 36px;
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: var(--r-md);
  position: relative;
  transition: all .4s ease;
}
.gastro-card:hover {
  border-color: rgba(232, 148, 58, 0.45);
  transform: translateY(-4px);
}
.gastro-card.accent { background: rgba(232, 148, 58, 0.08); border-color: rgba(232, 148, 58, 0.3); }
.gastro-num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 500;
}
.gastro-card h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}
.gastro-card .lead {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.92;
  font-weight: 400;
}
.gastro-list {
  list-style: none;
  margin-top: 16px;
}
.gastro-list li {
  padding: 14px 0;
  font-size: 15px;
  line-height: 1.55;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  opacity: 0.88;
  font-weight: 300;
}
.gastro-list li strong {
  color: var(--amber);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

/* ===== TICKETS ===== */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}
.ticket-card {
  padding: 44px 36px;
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  position: relative;
  transition: all .35s ease;
}
.ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(27, 42, 56, 0.1);
}
.ticket-card.featured {
  background: var(--night);
  color: var(--linen);
  border-color: var(--amber);
}
.ticket-badge {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--amber);
  color: var(--night);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.ticket-tier {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.ticket-price {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.featured .ticket-price { border-color: rgba(245, 241, 232, 0.15); }
.price-big {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1;
}
.price-sub {
  font-size: 13px;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* Новый блок с тремя тарифами (ранний / основной / с вином) */
.ticket-price-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.featured .ticket-price-tiers { border-color: rgba(245, 241, 232, 0.15); }
.price-tier {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 4px;
  background: rgba(232, 148, 58, 0.08);
  border: 1px solid rgba(232, 148, 58, 0.18);
}
.featured .price-tier {
  background: rgba(245, 241, 232, 0.05);
  border-color: rgba(245, 241, 232, 0.12);
}
.pt-amount {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1;
  color: var(--amber);
}
.pt-label {
  font-size: 11px;
  opacity: 0.72;
  letter-spacing: 0.04em;
  line-height: 1.35;
}
@media (max-width: 640px) {
  .ticket-price-tiers { grid-template-columns: 1fr; }
}

.ticket-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
}
.ticket-features {
  list-style: none;
  flex: 1;
  margin-bottom: 20px;
  display: grid;
  gap: 10px;
}
.ticket-features li {
  padding-left: 24px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.5;
  opacity: 0.88;
  font-weight: 300;
}
.ticket-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--amber);
}
.ticket-note {
  font-size: 13px;
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.5;
}
.ticket-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s ease;
  text-align: center;
  cursor: pointer;
  width: 100%;
}
.ticket-cta.primary {
  background: var(--amber);
  color: var(--night);
}
.ticket-cta.primary:hover { background: #f0a44a; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232, 148, 58, 0.3); }
.ticket-cta.secondary {
  border: 1px solid var(--night);
  color: var(--night);
  background: transparent;
}
.ticket-cta.secondary:hover { background: var(--night); color: var(--linen); }
.ticket-cta.small { padding: 14px 24px; width: auto; flex: 0 0 auto; }

.tickets-combo {
  margin-top: 32px;
  padding: 28px 36px;
  background: var(--linen-2);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.combo-text { display: flex; flex-direction: column; gap: 6px; max-width: 700px; }
.combo-text strong { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.combo-text span { font-size: 15px; opacity: 0.78; line-height: 1.55; font-weight: 300; }

/* ===== FORM ===== */
.form-section { background: var(--linen); }
.form {
  display: grid;
  gap: 20px;
  max-width: 900px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row.consent { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.small { max-width: 220px; }
.form-field.grow { flex: 1; }
.form-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(27, 42, 56, 0.7);
}
.form-field label span { color: var(--amber); }
.form-field input, .form-field select {
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(27, 42, 56, 0.2);
  background: transparent;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--night);
  outline: none;
  transition: border-color .3s ease;
  border-radius: 0;
}
.form-field input:focus, .form-field select:focus {
  border-bottom-color: var(--amber);
}
.check {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: rgba(27, 42, 56, 0.85);
  cursor: pointer;
}
.check input { width: 18px; height: 18px; accent-color: var(--amber); flex: 0 0 auto; }
.form-submit {
  margin-top: 12px;
  justify-self: start;
  padding: 18px 48px;
  background: var(--night);
  color: var(--linen);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s ease;
}
.form-submit:hover {
  background: var(--amber);
  color: var(--night);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 148, 58, 0.3);
}
.form-result {
  margin-top: 8px;
  padding: 20px 24px;
  background: rgba(90, 107, 63, 0.12);
  border-left: 3px solid var(--moss);
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--night);
}
.form-result.error {
  background: rgba(199, 119, 40, 0.12);
  border-left-color: var(--amber-2);
}

/* Прямые контакты */
.form-alt {
  margin-top: 64px;
  max-width: 900px;
}
.form-alt-title {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.form-alt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-alt-item {
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 6px;
  transition: all .3s ease;
}
.form-alt-item:hover { border-color: var(--amber); transform: translateY(-2px); }
.fa-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(27, 42, 56, 0.55);
}
.fa-value {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--night);
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
}
.loc-row {
  padding: 22px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
}
.loc-row:first-child { border-top: 1px solid rgba(245, 241, 232, 0.12); }
.loc-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 4px;
}
.loc-value {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
  opacity: 0.92;
}
.location-map {
  min-height: 420px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.12);
  background: rgba(245, 241, 232, 0.04);
}
.location-map iframe { width: 100%; height: 100%; min-height: 420px; display: block; filter: grayscale(0.2) contrast(1.05); border: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--coal);
  color: var(--linen);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  opacity: 0.75;
  max-width: 340px;
  line-height: 1.5;
  font-weight: 300;
}
.footer-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 16px;
  font-weight: 300;
}
.footer-link {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  opacity: 0.75;
  transition: all .3s ease;
}
.footer-link:hover { opacity: 1; color: var(--amber); padding-left: 4px; }
.footer-disclaimer {
  margin-top: 12px;
  font-size: 11px;
  opacity: 0.5;
  line-height: 1.5;
  font-weight: 300;
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  opacity: 0.5;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-quote { position: static; }
  .program-grid { grid-template-columns: 1fr; gap: 28px; }
  .wow-grid { grid-template-columns: repeat(2, 1fr); }
  .gastro-grid { grid-template-columns: 1fr; }
  .tickets-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-alt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--linen);
    color: var(--night);
    flex-direction: column;
    padding: 24px var(--gutter);
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav.menu-open { background: rgba(245, 241, 232, 0.98); color: var(--night); }

  .hero { padding-top: 100px; padding-bottom: 60px; }
  .hero-moon { width: 100px; top: 6%; right: 4%; opacity: 0.55; }
  .countdown { gap: 8px; padding: 20px 8px; }
  .cd-item { min-width: 50px; }
  .cd-divider { font-size: 24px; margin-top: -14px; }

  .program-col { padding: 28px 22px; }
  .program-list li { grid-template-columns: 60px 1fr; gap: 14px; padding: 14px 0; }
  .pl-time { font-size: 16px; }

  .wow-grid { grid-template-columns: 1fr; }
  .wow-card { padding: 28px 24px; }

  .gastro-card { padding: 32px 24px; }
  .ticket-card { padding: 32px 24px; }
  .tickets-combo { padding: 22px 24px; flex-direction: column; align-items: flex-start; }
  .ticket-cta.small { width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .form-field.small { max-width: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  .loc-row { grid-template-columns: 1fr; gap: 6px; }
  .location-map, .location-map iframe { min-height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
