:root {
  --bg: #fffaf6;
  --bg-soft: #f8fbfd;
  --card: #ffffff;
  --line: #e7e3dc;
  --ink: #24364d;
  --muted: #6c7684;
  --green: #8eb26c;
  --green-dark: #5f8f46;
  --coral: #ff7a68;
  --coral-dark: #e96a57;
  --yellow: #f1c964;
  --blue: #7bbde6;
  --purple: #b57bcb;
  --hero-grad: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
  --shadow: 0 22px 55px rgba(36, 54, 77, 0.10);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Georgian", "DejaVu Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-sm {
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--coral-dark);
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
}

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}

p {
  margin: 0;
}

.card-shadow {
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff8f7d 0%, var(--coral) 100%);
  box-shadow: 0 12px 26px rgba(255, 122, 104, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ff8672 0%, var(--coral-dark) 100%);
}

.btn-outline {
  color: var(--green-dark);
  border-color: rgba(95, 143, 70, 0.35);
  background: #fff;
}

.btn-outline:hover {
  background: #f5faf2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 246, 0.85);
  border-bottom: 1px solid rgba(231, 227, 220, 0.9);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 68px 0 82px;
  background: var(--hero-grad);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-shape-1 {
  width: 220px;
  height: 220px;
  top: -80px;
  left: -60px;
  background: rgba(123, 189, 230, 0.18);
}

.hero-shape-2 {
  width: 280px;
  height: 280px;
  right: -60px;
  top: 60px;
  background: rgba(255, 122, 104, 0.12);
}


.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-visual::before {
  width: 70px;
  height: 70px;
  left: -28px;
  top: 48px;
  border: 3px solid rgba(142,178,108,0.55);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-18deg);
}

.hero-visual::after {
  width: 84px;
  height: 84px;
  right: -22px;
  bottom: 66px;
  background: radial-gradient(circle at center, rgba(255,201,100,0.38) 0 20%, transparent 21%),
              radial-gradient(circle at center, rgba(123,189,230,0.35) 0 18%, transparent 19%);
  opacity: .9;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 62px;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 4.35rem);
  margin-bottom: 20px;
}

.hero-copy p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--green-dark);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  max-width: 620px;
  justify-self: end;
}

.hero-frame {
  position: relative;
  background: #fff;
  border-radius: 46px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,122,104,0.08) 100%);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: 68% center;
  border-radius: 34% 66% 35% 65% / 24% 26% 74% 76%;
}

.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: grid;
  gap: 2px;
  min-width: 150px;
}

.hero-badge strong {
  color: var(--coral-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-badge-left {
  left: -18px;
  bottom: 34px;
}

.hero-badge-right {
  right: 10px;
  top: 20px;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(36, 54, 77, 0.05);
}

.feature-card h3 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(231, 227, 220, 0.9);
}

.icon-circle img {
  width: 32px;
  height: 32px;
}

.accent-green { background: #edf7e6; }
.accent-yellow { background: #fff5d7; }
.accent-blue { background: #eaf6fd; }
.accent-coral { background: #ffe8e3; }
.accent-purple { background: #f3eafe; }

.about {
  background: #fffdf9;
}

.split-grid,
.schedule-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 490px;
}

.collage-main,
.collage-small {
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
}

.collage-main {
  width: 84%;
}

.collage-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.collage-small {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 44%;
  border: 8px solid #fff;
}

.collage-small img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.stat-card {
  position: absolute;
  left: 24px;
  bottom: -12px;
  background: linear-gradient(180deg, #ff9584 0%, var(--coral) 100%);
  color: #fff;
  padding: 18px 22px;
  border-radius: 22px;
  box-shadow: 0 18px 30px rgba(255, 122, 104, 0.24);
}

.stat-card strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.1;
}

.stat-card span {
  font-size: 0.85rem;
  opacity: 0.95;
}

.section-copy h2,
.section-heading h2,
.cta-box h2,
.contact-info h2 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.section-copy p,
.section-heading p,
.contact-info p {
  color: var(--muted);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 28px 0;
  color: var(--green-dark);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral-dark);
  font-weight: 800;
}

.programs {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

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

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 34px;
  border-radius: 30px;
}

.program-card.sage { background: #eef4e9; }
.program-card.sand { background: #fff4df; }
.program-card.sky { background: #eaf5fb; }

.program-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

.program-card small {
  color: var(--muted);
  font-weight: 800;
}

.program-card h3 {
  margin-top: 6px;
  font-size: 1.8rem;
}

.program-card p {
  color: var(--muted);
}

.program-card a {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 18px;
}

.gallery-item {
  border: 0;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #f0f0f0;
  box-shadow: 0 10px 24px rgba(36, 54, 77, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.wide {
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.schedule {
  background: #fffaf5;
}

.schedule-photo {
  overflow: hidden;
  border-radius: 28px;
  margin-top: 28px;
}

.schedule-photo img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 10px 0 10px 32px;
  border-left: 3px solid #e8eadf;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding-bottom: 28px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: -43px;
  top: 3px;
  border-radius: 50%;
  border: 5px solid #fff;
  background: var(--coral);
  box-shadow: 0 0 0 1px #f0c9c2;
}

.timeline time {
  font-weight: 800;
  color: var(--coral-dark);
}

.timeline span {
  color: var(--muted);
}

.timeline b {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 26px;
  background: linear-gradient(120deg, #fff0e5 0%, #fffaf2 100%);
  border-radius: 34px;
  padding: 38px 44px;
  overflow: hidden;
}

.cta-copy p {
  color: var(--muted);
  margin-bottom: 26px;
}

.cta-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--coral-dark);
}

.map-placeholder {
  min-height: 220px;
  border: 1px dashed #d8d2c9;
  border-radius: 28px;
  background: linear-gradient(135deg, #f6f7f8 0%, #fff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
}

.map-placeholder small {
  color: var(--muted);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 36px;
}

.contact-form h3 {
  font-size: 1.7rem;
  margin-bottom: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 122, 104, 0.14);
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 26px 0 18px;
}

.footer-inner,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--coral-dark);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f4f5f6;
}

.footer-bottom {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  background: rgba(12, 22, 34, 0.9);
  padding: 30px;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 85vh;
  border-radius: 24px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .schedule-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    max-width: 720px;
    width: 100%;
    justify-self: center;
  }

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

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

  .cta-visual img {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 10px;
    border-radius: 12px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: #faf6f2;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-item.wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .about-collage {
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section,
  .section-sm {
    padding: 68px 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.69rem;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 60px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

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

  .btn {
    width: 100%;
  }

  .trust-row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
  }

  .hero-frame {
    padding: 10px;
    border-radius: 26px;
  }

  .hero-frame img {
    min-height: 300px;
    height: 300px;
    object-position: 66% center;
    border-radius: 28px;
  }

  .hero-badge {
    position: static;
    margin-top: 12px;
  }

  .hero-visual {
    display: grid;
  }

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

  .feature-card {
    padding: 24px 18px;
  }

  .about-collage {
    min-height: auto;
  }

  .collage-main {
    width: 100%;
  }

  .collage-main img {
    height: 300px;
  }

  .collage-small {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .collage-small img {
    height: 200px;
  }

  .stat-card {
    position: static;
    margin-top: 16px;
    width: fit-content;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .timeline {
    padding-left: 24px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 24px;
  }

  .timeline li::before {
    left: -35px;
  }

  .cta-box {
    padding: 28px 20px;
  }

  .cta-visual img {
    height: 240px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .socials {
    justify-content: center;
  }
}
