﻿:root {
  --ink: #1f1a17;
  --paper: #fff1dc;
  --accent: #2ec4b6;
  --sun: #cff5ef;
  --leaf: #00b17a;
  --rose: #ff4aa2;
  --shadow: rgba(31, 26, 23, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cormorant Garamond", "Georgia", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 199, 58, 0.55), transparent 40%),
    radial-gradient(circle at 92% 8%, rgba(255, 74, 162, 0.4), transparent 45%),
    radial-gradient(circle at 82% 82%, rgba(0, 177, 122, 0.38), transparent 45%),
    linear-gradient(120deg, #ffecd2, #ffe2c2 60%, #fff0e6);
  background-attachment: fixed;
  line-height: 1.6;
}

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

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(248, 244, 238, 0.85);
  border-bottom: 1px solid rgba(36, 31, 27, 0.08);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-image {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(31, 27, 23, 0.18);
}.logo-text strong {
  display: block;
  font-size: 14px;
}

.logo-text span {
  font-size: 11px;
  opacity: 0.7;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-size: 14px;
}

.nav a {
  position: relative;
  padding-bottom: 6px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.cta {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
}

.hero {
  padding: 70px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.eyebrow {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: rgba(36, 31, 27, 0.6);
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw + 2rem, 4.2rem);
  line-height: 1.05;
  margin: 12px 0 0;
}

.lead {
  font-size: 1.1rem;
  max-width: 720px;
}

.hero-contact {
  margin: 12px 0 0;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-size: 14px;
}

.materials-note {
  margin: 12px 0 0;
  font-size: 0.95rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--sun));
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 59, 29, 0.4);
}

.button.ghost {
  border-color: rgba(36, 31, 27, 0.25);
  color: var(--ink);
  background: transparent;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(36, 31, 27, 0.12);
}


.button.telegram {
  background: linear-gradient(135deg, #0fb2ff, #00e3b2);
  color: #062028;
  box-shadow: 0 16px 32px rgba(0, 227, 178, 0.35);
}

.button.telegram:hover,
.button.telegram:focus {
  transform: translateY(-2px) scale(1.02);
}
.hero-badges {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-size: 12px;
}
.hero-badges strong {
  font-size: 16px;
  display: block;
}

.hero-media {
  position: relative;
  width: 100%;
}

.video-slot {
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.65), transparent 45%),
    linear-gradient(135deg, rgba(255, 59, 29, 0.9), rgba(255, 199, 58, 0.9));
  box-shadow: 0 30px 80px var(--shadow);
  border: 2px solid rgba(31, 27, 23, 0.08);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.video-slot::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.note {
  position: absolute;
  bottom: -16px;
  right: 18px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.18);
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-size: 13px;
}

.features {
  padding: 20px 0 70px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(31, 27, 23, 0.1);
}

.feature h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.section-title {
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: clamp(2rem, 2vw + 1.5rem, 3rem);
  margin: 0 0 12px;
}

.programs,
.gallery,
.format,
.pricing,
.testimonials,
.about {
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(31, 27, 23, 0.1);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.program-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.1);
  border: 1px solid rgba(36, 31, 27, 0.05);
}

.program-card span {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-size: 12px;
  opacity: 0.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.art-tile {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  background: linear-gradient(145deg, #ff6d4a, #ff4aa2);
  box-shadow: 0 20px 45px rgba(31, 27, 23, 0.16);
}

.t2 {
  background: linear-gradient(145deg, #ffc73a, #ffe08a);
}

.t3 {
  background: linear-gradient(145deg, #00b17a, #77e3c2);
}

.t4 {
  background: linear-gradient(145deg, #1572b6, #4cd1ff);
}

.t5 {
  background: linear-gradient(145deg, #6f35ff, #ff7cc0);
}

.format-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: center;
}

.format-list {
  padding: 0;
  list-style: none;
  margin: 0;
}

.format-list li {
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
}

.format-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.schedule {
  background: #fff;
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.12);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
}

.schedule-note {
  font-size: 12px;
  opacity: 0.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.price-card {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.1);
  text-align: center;
}

.price-card.featured {
  background: linear-gradient(145deg, #fff5e8, #f7efe4);
  border: 1px solid rgba(194, 74, 46, 0.15);
}

.price {
  font-size: 2rem;
  margin: 12px 0;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.testimonial {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.1);
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 12px;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-size: 12px;
  font-style: normal;
  opacity: 0.7;
}

.signup {
  padding: 70px 0 90px;
}

.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 30px;
  align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(36, 31, 27, 0.12);
}

.signup-form {
  display: grid;
  gap: 14px;
}

.captcha-row {
  display: grid;
  gap: 8px;
}

.captcha-label {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(27, 20, 15, 0.6);
}

.signup-form input {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(36, 31, 27, 0.2);
  font-family: "Manrope", "Trebuchet MS", sans-serif;
}

.site-footer {
  padding: 50px 0 60px;
  background: #1f1b17;
  color: #f8f4ee;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
}

.legal {
  display: block;
  font-size: 11px;
  opacity: 0.6;
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .header-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-grid,
  .format-grid,
  .signup-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .cta {
    width: 100%;
    text-align: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .signup-grid {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .button {
    animation: none;
    transition: none;
  }
}







