/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2D7D32;
  --green-light: #43A047;
  --green-bg: #E8F5E9;
  --yellow: #F9A825;
  --yellow-bg: #FFF8E1;
  --red: #E53935;
  --red-bg: #FFEBEE;
  --blue: #1565C0;
  --blue-bg: #E3F2FD;
  --bg: #F7F3EE;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #666;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 36px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45,125,50,0.35);
}
.btn--primary:hover { background: var(--green-light); box-shadow: 0 6px 24px rgba(45,125,50,0.45); }

.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline:hover { background: var(--green); color: #fff; }

.btn--yellow {
  background: var(--yellow);
  color: #1A1A1A;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(249,168,37,0.35);
}
.btn--yellow:hover { background: #ffb300; }

/* === SECTION SHARED === */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
}
.section-title__emoji { font-size: 28px; margin-left: 8px; }
.section-link {
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.2s;
}
.section-link:hover { text-decoration: underline; }

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__img { height: 52px; width: auto; display: block; }
.logo__icon { flex-shrink: 0; }
.logo__icon-img { height: 52px; width: auto; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; }
.logo__name {
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.logo__sub {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav__link:hover, .nav__link--active {
  color: var(--green);
  background: var(--green-bg);
}

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

.lang-switcher {
  background: none;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  letter-spacing: 0.5px;
}
.lang-switcher:hover {
  border-color: var(--green);
  background: var(--green-bg);
  color: var(--green);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* === HERO === */
.hero {
  background: var(--bg);
  padding: 72px 0 64px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero__title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__title--accent { color: var(--green); }
.hero__desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__btn { font-size: 16px; padding: 16px 32px; }
.hero__dots {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}
.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: transform 0.2s;
}
.hero__dot--active { background: var(--green); transform: scale(1.3); }
.hero__dot--yellow { background: var(--yellow); }
.hero__dot--red { background: var(--red); }

.hero__visual { display: flex; justify-content: center; position: relative; }
.hero__circle-wrap {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
}

/* Центральный круг с фото */
.hero__circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 56px rgba(0,0,0,0.18);
  z-index: 3;
  background: #fff;
}
.hero__img { width: 100%; height: 100%; object-fit: cover; }

/* Четыре цветных орнаментальных "облака" вокруг */
.hero__swirl {
  position: absolute;
  width: 220px;
  height: 220px;
  z-index: 2;
}
.hero__swirl--blue {
  top: -10px; right: -10px;
  background: radial-gradient(circle at 30% 70%, #1565C0 0%, #42A5F5 60%, transparent 75%);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  opacity: 0.88;
}
.hero__swirl--yellow {
  bottom: -10px; left: -10px;
  background: radial-gradient(circle at 70% 30%, #F9A825 0%, #FFD54F 60%, transparent 75%);
  border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
  opacity: 0.88;
}
.hero__swirl--green {
  bottom: -10px; right: -10px;
  background: radial-gradient(circle at 30% 30%, #2D7D32 0%, #66BB6A 60%, transparent 75%);
  border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%;
  opacity: 0.82;
}
.hero__swirl--red {
  top: -10px; left: -10px;
  background: radial-gradient(circle at 70% 70%, #E53935 0%, #EF9A9A 60%, transparent 75%);
  border-radius: 60% 40% 45% 55% / 50% 55% 45% 50%;
  opacity: 0.82;
}

/* Маленькие декоративные элементы */
.hero__deco {
  position: absolute;
  z-index: 4;
}
.hero__deco--1 {
  width: 52px; height: 52px;
  background: var(--yellow);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  top: 30px; right: 70px;
  opacity: 0.85;
  animation: float 4s ease-in-out infinite;
}
.hero__deco--2 {
  width: 38px; height: 38px;
  background: var(--yellow);
  border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
  bottom: 40px; left: 60px;
  opacity: 0.75;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(8deg); } }

/* === FEATURES === */
.features {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid #f0ede8;
  border-bottom: 1px solid #f0ede8;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 4px;
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-card__icon--green { background: var(--green-bg); }
.feature-card__icon--yellow { background: var(--yellow-bg); }
.feature-card__icon--blue { background: var(--blue-bg); }
.feature-card__icon--red { background: var(--red-bg); }
.feature-card__title { font-size: 15px; font-weight: 700; }
.feature-card__text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* === PROGRAMS === */
.programs { padding: 72px 0; }

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

/* prog-card */
.prog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.prog-card__img {
  position: relative;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}
.prog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.prog-card:hover .prog-card__img img { transform: scale(1.05); }

.prog-card__badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog-card__badge--green  { background: var(--green); }
.prog-card__badge--yellow { background: var(--yellow); }
.prog-card__badge--blue   { background: var(--blue); }
.prog-card__badge--red    { background: var(--red); }
.prog-card__badge--teal   { background: #00838F; }
.prog-card__badge--purple { background: #7B1FA2; }

.prog-card__body {
  padding: 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  border-top: 3px solid transparent;
}
.prog-card--green  .prog-card__body { border-top-color: var(--green); }
.prog-card--yellow .prog-card__body { border-top-color: var(--yellow); }
.prog-card--blue   .prog-card__body { border-top-color: var(--blue); }
.prog-card--red    .prog-card__body { border-top-color: var(--red); }
.prog-card--teal   .prog-card__body { border-top-color: #00838F; }
.prog-card--purple .prog-card__body { border-top-color: #7B1FA2; }


.prog-card__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
}
.prog-card__age-inline {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
}
.prog-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.prog-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.prog-card__list li {
  font-size: 13px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.prog-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
}
.prog-card--green  .prog-card__list li::before { background: var(--green); opacity: 1; }
.prog-card--yellow .prog-card__list li::before { background: var(--yellow); opacity: 1; }
.prog-card--blue   .prog-card__list li::before { background: var(--blue);  opacity: 1; }
.prog-card--red    .prog-card__list li::before { background: var(--red);   opacity: 1; }
.prog-card--teal   .prog-card__list li::before { background: #00838F;      opacity: 1; }
.prog-card--purple .prog-card__list li::before { background: #7B1FA2;      opacity: 1; }

.prog-card__list--inst li::before { border-radius: 3px; }

.prog-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
  align-self: flex-start;
}
.prog-card__btn:hover { background: var(--green); color: #fff; }
.prog-card--yellow .prog-card__btn { border-color: #b77f00; color: #b77f00; }
.prog-card--yellow .prog-card__btn:hover { background: #b77f00; color: #fff; }
.prog-card--blue .prog-card__btn   { border-color: var(--blue);  color: var(--blue); }
.prog-card--blue .prog-card__btn:hover   { background: var(--blue); color: #fff; }
.prog-card--red .prog-card__btn    { border-color: var(--red);   color: var(--red); }
.prog-card--red .prog-card__btn:hover    { background: var(--red); color: #fff; }
.prog-card--teal .prog-card__btn   { border-color: #00838F; color: #00838F; }
.prog-card--teal .prog-card__btn:hover   { background: #00838F; color: #fff; }
.prog-card--purple .prog-card__btn { border-color: #7B1FA2; color: #7B1FA2; }
.prog-card--purple .prog-card__btn:hover { background: #7B1FA2; color: #fff; }

@media (max-width: 1024px) {
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .programs__grid { grid-template-columns: 1fr; }
}

/* === ABOUT === */
.about {
  background: var(--bg);
  padding: 80px 0;
}
.about > .container > .section-header { margin-bottom: 48px; }

.about__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  background: var(--green-bg);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

/* Sub-headings with underline accent */
.about__sub-h {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 14px;
  display: inline-block;
}
.about__sub-h::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

/* Intro (О центре redesign) */
.about__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 56px;
  background: #f7f0e0;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.about__intro-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 52px 48px;
}
.about__intro-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}
.about__intro-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}
.btn--green {
  background: var(--green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn--green:hover { background: #3a7a3a; transform: translateY(-1px); }

.about__intro-img {
  position: relative;
  min-height: 380px;
}
.about__intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__ornament {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  pointer-events: none;
  z-index: 4;
}

/* History (kept for potential reuse) */
.about__history-p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about__history-p:last-child { margin-bottom: 0; }

/* Mission */
.about__mission {
  margin-bottom: 56px;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.about__mission > .about__sub-h { margin-bottom: 32px; }

.about__values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.value-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-card__icon--green  { background: var(--green-bg); }
.value-card__icon--yellow { background: var(--yellow-bg); }
.value-card__icon--blue   { background: var(--blue-bg); }
.value-card__icon--red    { background: var(--red-bg); }
.value-card__icon--teal   { background: #E0F4F5; }
.value-card__icon--purple { background: #F3E5F5; }
.value-card__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  font-weight: 500;
}
.about__mission-closing {
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  border-left: 3px solid var(--green);
  padding-left: 20px;
  max-width: 680px;
}

/* Gallery */
.about__gallery {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.gallery-slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.gallery-slider__header .about__sub-h { margin-bottom: 0; }
.gallery-slider__arrows { display: flex; gap: 10px; }
.gallery-slider__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.gallery-slider__btn:hover { background: var(--green); color: #fff; }
.gallery-slider__wrap {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.gallery-slider__wrap::-webkit-scrollbar { display: none; }
.gallery-slider__slide {
  flex-shrink: 0;
  width: 340px;
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}
.gallery-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-slider__slide:hover img { transform: scale(1.06); }
.gallery-slider__footer {
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 600px) {
  .gallery-slider__slide { width: 80vw; height: 200px; }
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.is-open { display: flex; }

.lightbox__img-wrap {
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  user-select: none;
  transition: opacity 0.2s;
}
.lightbox__img.is-loading { opacity: 0; }

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
  line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }

.lightbox__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1001;
  line-height: 1;
}
.lightbox__arrow:hover { background: rgba(255,255,255,0.28); }
.lightbox__arrow--prev { left: 20px; }
.lightbox__arrow--next { right: 20px; }
.lightbox__arrow:disabled { opacity: 0.25; cursor: default; }

.lightbox__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .lightbox__img-wrap { max-width: 100vw; }
  .lightbox__arrow--prev { left: 8px; }
  .lightbox__arrow--next { right: 8px; }
}

@media (max-width: 1024px) {
  .about__intro { grid-template-columns: 1fr; }
  .about__intro-text { padding: 36px 28px; }
  .about__intro-img { min-height: 280px; }
  .about__mission { padding: 32px; }
  .about__gallery { padding: 32px; }
  .about__values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .about__intro-text { padding: 28px 20px; }
  .about__intro-title { font-size: 24px; }
  .about__intro-img { min-height: 240px; }
  .about__mission { padding: 24px; }
  .about__gallery { padding: 24px; }
  .about__values-grid { grid-template-columns: 1fr; }
}

/* === EVENTS === */
.events { padding: 72px 0; }
.events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.event-card__img-wrap { position: relative; height: 160px; overflow: hidden; }
.event-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.event-card__date {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  color: white;
}
.event-card__date--green { background: var(--green); }
.event-card__date--yellow { background: var(--yellow); color: #1A1A1A; }
.event-card__date--red { background: var(--red); }
.event-card__day { font-size: 20px; font-weight: 800; line-height: 1; }
.event-card__month { font-size: 9px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.event-card__body { padding: 16px; }
.event-card__title { font-size: 14px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

/* === TESTIMONIAL === */
.testimonial {
  background: var(--bg);
  padding: 80px 0;
}
.testimonial__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.testimonial__text-col { display: flex; flex-direction: column; }
.testimonial__quote-icon {
  font-size: 100px;
  color: var(--green);
  opacity: 0.15;
  line-height: 0.7;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  font-weight: 700;
}
.testimonial__quote {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text);
  font-style: normal;
  margin-bottom: 24px;
}
.testimonial__author {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}
.testimonial__dots {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.testimonial__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}
.testimonial__dot--green { background: var(--green); }
.testimonial__dot--yellow { background: var(--yellow); }
.testimonial__dot--red { background: var(--red); }
.testimonial__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 360px;
}

/* === PAGE BANNER === */
.page-banner {
  background: linear-gradient(135deg, #1B5E20 0%, var(--green) 60%, var(--green-light) 100%);
  padding: 52px 0 44px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-banner__title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.page-banner__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.5;
}

/* === NEWS FULL PAGE === */
.news-page {
  padding: 56px 0 80px;
  background: var(--bg);
}
.news-page .news__filter { margin-bottom: 32px; }
.news__grid--full { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) { .news__grid--full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .news__grid--full { grid-template-columns: 1fr; } .page-banner__title { font-size: 28px; } }

/* === REVIEWS (WhatsApp style) === */
.reviews {
  background: var(--bg);
  padding: 72px 0;
}
.reviews__hint {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
.reviews__chat {
  background: #E5DDD5;
  border-radius: 20px;
  padding: 32px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.wa-card {
  background: #fff;
  border-radius: 0 16px 16px 16px;
  padding: 16px 18px 12px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border-right: 8px solid #fff;
  border-bottom: 8px solid transparent;
}
.wa-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-card__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #075E54;
  line-height: 1.2;
}
.wa-card__role {
  font-size: 12px;
  color: var(--text-muted);
}
.wa-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}
.wa-card__foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.wa-card__time {
  font-size: 11px;
  color: rgba(0,0,0,0.4);
}
.wa-card__ticks {
  font-size: 13px;
  color: #53BDEB;
  letter-spacing: -3px;
  line-height: 1;
}

@media (max-width: 768px) {
  .reviews__chat { padding: 20px 16px; }
  .reviews__grid { grid-template-columns: 1fr; }
}

/* === NEWSLETTER === */
.newsletter {
  background: var(--green);
  padding: 64px 0;
}
.newsletter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.newsletter__title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  max-width: 540px;
  line-height: 1.3;
}
.newsletter__form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}
.newsletter__input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: var(--text);
}
.newsletter__input::placeholder { color: #aaa; }
.newsletter__input:focus { background: #fff; box-shadow: 0 0 0 3px rgba(249,168,37,0.4); }

/* === FOOTER === */
.footer { background: #1B1B1B; color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 24px; }

.logo--white .logo__name { color: #fff; }
.logo--white .logo__sub { color: rgba(255,255,255,0.5); }

.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer__social:hover { border-color: var(--green); color: white; background: var(--green); }

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--green-light); }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.footer__contact svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.footer__contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__contact a:hover { color: var(--green-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a { color: var(--green-light); }
.footer__bottom a:hover { text-decoration: underline; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: flex; margin-left: auto; }
  .header__actions .btn { display: none; }
  .lang-switcher { margin-left: auto; }

  .hero__title { font-size: 40px; }
  .hero__circle-wrap { width: 360px; height: 360px; }
  .hero__circle { width: 320px; height: 320px; }

  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .program-card { min-width: calc(50% - 10px); }

  .events__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { order: -1; }
  .hero__circle-wrap { width: 300px; height: 300px; }
  .hero__circle { width: 260px; height: 260px; }
  .hero__dots { justify-content: center; }

  .about__inner { grid-template-columns: 1fr; }
  .testimonial__inner { grid-template-columns: 1fr; }
  .testimonial__img { height: 240px; }

  .newsletter__form { flex-direction: column; }
  .newsletter__input, .newsletter__form .btn { width: 100%; border-radius: 12px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  .section-title { font-size: 24px; }
  .about__title { font-size: 30px; }
  .programs__track { gap: 16px; }
  .program-card { min-width: calc(80% - 8px); }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .events__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .newsletter__title { font-size: 22px; }
}

/* === ABOUT: AMONASHVILI === */
.about__amona-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  object-fit: cover;
}
.about__amona {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.about__amona-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: var(--green-bg);
  border: 2px dashed rgba(45,125,50,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.about__amona-text { display: flex; flex-direction: column; }
.about__amona-facts {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.amona-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  flex: 1;
  min-width: 90px;
}
.amona-fact__num {
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.amona-fact__label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: center;
}

/* === ABOUT: TEAM === */
.about__team {
  margin-bottom: 56px;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.team-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card__photo {
  flex-shrink: 0;
}
.team-card__photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 2px dashed rgba(45,125,50,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.team-card__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.team-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.team-card__creds {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  align-self: stretch;
  margin-top: 4px;
}
.team-card__creds li {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.team-card__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.6;
}

/* === ABOUT: ACHIEVEMENTS === */
.about__achiev {
  margin-bottom: 56px;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.achiev-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.achiev-cat {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.achiev-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.achiev-cat__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.achiev-cat__icon--green  { background: var(--green-bg); }
.achiev-cat__icon--yellow { background: var(--yellow-bg); }
.achiev-cat__icon--blue   { background: var(--blue-bg); }
.achiev-cat__icon--red    { background: var(--red-bg); }
.achiev-cat__icon--teal   { background: #E0F4F5; }
.achiev-cat__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* === NEWS === */

/* === NEWS === */
.news {
  background: var(--bg);
  padding: 72px 0;
}
.news__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.news__tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.news__tab:hover { border-color: var(--green); color: var(--green); }
.news__tab--active { background: var(--green); border-color: var(--green); color: #fff; }
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.news-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.news-card__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.news-card__badge--green  { background: var(--green-bg);  color: var(--green); }
.news-card__badge--blue   { background: var(--blue-bg);   color: var(--blue); }
.news-card__badge--yellow { background: var(--yellow-bg); color: #7a5800; }
.news-card__badge--red    { background: var(--red-bg);    color: var(--red); }
.news-card__badge--teal   { background: #E0F4F5;          color: #00838F; }
.news-card__date {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}
.news-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}
.news-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.news-card__link {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  margin-top: auto;
}
.news-card__link:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .news__grid { grid-template-columns: repeat(2, 1fr); }
  .achiev-grid { grid-template-columns: repeat(3, 1fr); }
  .about__amona { grid-template-columns: 1fr; }
  .about__amona-photo-placeholder { max-width: 280px; margin: 0 auto; aspect-ratio: 1/1; }
  .about__team { padding: 32px; }
  .about__achiev { padding: 32px; }
}
@media (max-width: 600px) {
  .news__grid { grid-template-columns: 1fr; }
  .achiev-grid { grid-template-columns: repeat(2, 1fr); }
  .about__team { padding: 24px; }
  .about__achiev { padding: 24px; }
}

/* === MOBILE NAV === */
.nav--mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 99;
  gap: 4px;
}
.nav--mobile-open .nav__link { padding: 12px 16px; border-radius: 10px; }

/* === NEWS CARD THUMBNAIL === */
.news-card__img {
  width: calc(100% + 56px);
  margin: -28px -28px 16px -28px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-shrink: 0;
}
.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.news-card:hover .news-card__img img { transform: scale(1.06); }

/* === CONTACT CTA === */
.contact-cta {
  background: linear-gradient(135deg, #1B5E20 0%, var(--green) 100%);
  padding: 64px 0;
}
.contact-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
.contact-cta__title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.contact-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  line-height: 1.55;
}
.contact-cta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 860px;
}
.contact-cta__item {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.contact-cta__item:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
}
.contact-cta__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-cta__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.contact-cta__label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.contact-cta__value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) { .contact-cta__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .contact-cta__grid { grid-template-columns: 1fr; } }

/* === ARTICLE PAGE === */
.article-banner {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: #1a1a1a;
}
.article-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.article-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%);
}
.article-banner__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0 36px;
}
.article-banner__content .container { display: flex; flex-direction: column; gap: 12px; }
.article-banner__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.article-banner__title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  max-width: 800px;
}
.article-banner__date {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.article-body {
  padding: 52px 0 88px;
  background: var(--bg);
}
.article-body__inner {
  max-width: 740px;
  margin: 0 auto;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 36px;
  transition: gap 0.2s;
}
.article-back:hover { gap: 10px; color: var(--green-light); }
.article-content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 48px;
  box-shadow: var(--shadow);
}
.article-content p { margin-bottom: 22px; }
.article-content p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .article-banner { height: 320px; }
  .article-banner__title { font-size: 26px; }
  .article-content { padding: 28px 24px; font-size: 15px; }
}
@media (max-width: 480px) {
  .article-banner { height: 260px; }
  .article-banner__title { font-size: 22px; }
}

/* === EVENTS PAGE === */
.events-page { padding: 56px 0 80px; background: var(--bg); }
.event-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.event-tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.event-tab:hover { border-color: var(--green); color: var(--green); }
.event-tab--active { background: var(--green); border-color: var(--green); color: #fff; }
.events__grid--full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.events__grid--full .event-card__img-wrap { height: 200px; }
.events__grid--full .event-card__body { padding: 20px; }
.events__grid--full .event-card__title { font-size: 15px; margin-bottom: 12px; }
.event-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.event-card__enroll {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  transition: gap 0.2s, color 0.2s;
}
.event-card__enroll:hover { gap: 10px; color: var(--green-light); }
@media (max-width: 900px) { .events__grid--full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .events__grid--full { grid-template-columns: 1fr; } }

/* === CONTACTS PAGE === */
.contacts-section {
  padding: 64px 0 88px;
  background: var(--bg);
}
.contacts-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}
.contacts-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
a.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__body { flex: 1; min-width: 0; }
.contact-card__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 5px;
  display: block;
}
.contact-card__value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}
.contact-card__value a { color: var(--text); transition: color 0.2s; }
.contact-card__value a:hover { color: var(--green); }
.contact-card__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.4;
}
.contacts-map-wrap {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contacts-map-frame {
  width: 100%;
  height: 560px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: none;
  display: block;
  background: #e8e8e8;
}
.contacts-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}
.contacts-map-btn:hover { background: var(--green-light); transform: translateY(-1px); }
.contacts-map-btn svg { flex-shrink: 0; }
@media (max-width: 1100px) {
  .contacts-layout { grid-template-columns: 380px 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .contacts-layout { grid-template-columns: 1fr; }
  .contacts-map-wrap { position: static; }
  .contacts-map-frame { height: 360px; }
}
@media (max-width: 480px) {
  .contacts-map-frame { height: 280px; }
}

/* === GALLERY PAGE === */
.gallery-page { padding: 72px 0 88px; background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: block;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  background: #ddd;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: background 0.3s;
}
.gallery-card:hover .gallery-card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 60%, transparent 100%); }
.gallery-card__title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.gallery-card__link {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s, color 0.2s;
}
.gallery-card:hover .gallery-card__link { gap: 9px; color: #fff; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* === APPLY PAGE === */
.apply-section { padding: 72px 0 88px; background: var(--bg); }
.apply-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.apply-info {
  background: var(--green);
  padding: 48px 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.apply-info__title { font-size: 21px; font-weight: 800; line-height: 1.35; }
.apply-info__sub { font-size: 14px; opacity: 0.85; line-height: 1.65; }
.apply-info__items { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.apply-info__item { display: flex; align-items: flex-start; gap: 14px; }
.apply-info__item-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.apply-info__item-text { font-size: 13px; line-height: 1.55; opacity: 0.9; }
.apply-info__item-text a { color: #fff; }

.apply-layout--single { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.apply-form-wrap { padding: 48px 52px; display: flex; flex-direction: column; }
.apply-form__heading { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.apply-form__desc { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.55; }
.apply-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.apply-form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.apply-form__label { font-size: 13px; font-weight: 600; color: var(--text); }
.apply-form__label em { color: #e53935; font-style: normal; }
.apply-form__input,
.apply-form__select,
.apply-form__textarea {
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.apply-form__input:focus,
.apply-form__select:focus,
.apply-form__textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,125,50,0.1);
  background: #fff;
}
.apply-form__input::placeholder,
.apply-form__textarea::placeholder { color: #bbb; }
.apply-form__textarea { resize: vertical; min-height: 110px; }
.apply-form__select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}
.apply-form__submit { margin-top: 10px; width: 100%; justify-content: center; font-size: 16px; padding: 15px 32px; }

.captcha-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.captcha-box {
  background: #f0f4f0;
  border: 1.5px solid #c8dcc8;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
}
.captcha-eq {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.captcha-input {
  width: 90px !important;
  flex-shrink: 0;
  text-align: center;
  -moz-appearance: textfield;
}
.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.captcha-refresh {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.captcha-refresh:hover { border-color: var(--green); color: var(--green); }
.captcha-error {
  display: none;
  font-size: 12px;
  color: #e53935;
  margin-top: 5px;
}
.captcha-error.is-visible { display: block; }

.apply-success {
  display: none;
  text-align: center;
  padding: 56px 24px;
  flex: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.apply-success.is-visible { display: flex; }
.apply-success__icon {
  width: 72px; height: 72px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.apply-success__title { font-size: 22px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.apply-success__msg { font-size: 15px; color: var(--text-muted); line-height: 1.65; max-width: 360px; }

@media (max-width: 860px) {
  .apply-layout { grid-template-columns: 1fr; }
  .apply-info { padding: 36px 32px; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .apply-info__items { flex-direction: row; flex-wrap: wrap; margin-top: 0; }
  .apply-form-wrap { padding: 36px 32px; }
  .apply-form__row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px) {
  .apply-info { padding: 28px 20px; }
  .apply-form-wrap { padding: 28px 20px; }
}
