/* Noble Kid — main stylesheet */
:root {
  --night: #1a1040;
  --terra: #e8733a;
  --gold: #c8a86e;
  --royal: #3b3a8f;
  --rose: #c9878d;
  --ivory: #f5f2ec;
  --sky: #b4c8d4;
  --vanilla: #ead9a2;
  --cream: #f0e8df;
  --dark: #2c1a0e;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  background: var(--ivory);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 242, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 168, 110, 0.2);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--night);
  letter-spacing: 1px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-cta {
  background: var(--terra);
  color: white;
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  opacity: 0.85;
}

/* LANGUAGE SWITCHER */
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(26, 16, 64, 0.05);
  border-radius: 2px;
  padding: 3px;
}
.lang-switch button {
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  font-weight: 500;
}
.lang-switch button.active {
  background: var(--night);
  color: white;
  opacity: 1;
}
.lang-switch button:hover:not(.active) {
  opacity: 0.9;
}

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--night);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--night);
  margin: 5px 0;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--night);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.08;
}
.hero-left::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--royal);
  opacity: 0.12;
}
.hero-tag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.hero-title span {
  color: var(--gold);
}
.hero-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-primary {
  background: var(--terra);
  color: white;
  padding: 16px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--royal);
}
.btn-secondary {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  color: white;
  line-height: 1;
}
.stat-l {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.hero-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--vanilla) 100%);
}
.hero-arch {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72%;
  height: 88%;
  background: var(--rose);
  border-radius: 200px 200px 0 0;
  opacity: 0.15;
}
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hero-crown {
  text-align: center;
}
.crown-svg {
  width: 120px;
  opacity: 0.15;
}
.hero-crown-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--night);
  opacity: 0.2;
  margin-top: 16px;
}
.hero-crown-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.4;
  margin-top: 8px;
}

/* Gold line */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

/* SECTION BASE */
.section {
  padding: 100px 60px;
}
.section-tag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--night);
}
.section-title span {
  color: var(--terra);
}

/* ABOUT */
.about {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(44, 26, 14, 0.7);
  margin-top: 24px;
  max-width: 480px;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.pillar-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.pillar-body h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
}
.pillar-body p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(44, 26, 14, 0.6);
}
.about-visual {
  background: var(--night);
  border-radius: 4px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.about-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.about-visual-inner {
  text-align: center;
}
.about-visual-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  color: white;
  line-height: 1.3;
}
.about-visual-text span {
  color: var(--gold);
}

/* GROUPS */
.groups {
  background: var(--night);
  padding: 100px 60px;
}
.groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.group-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 40px 28px;
  border-top: 2px solid transparent;
  transition: all 0.3s;
  cursor: default;
}
.group-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-top-color: var(--gold);
}
.group-age {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: white;
  line-height: 1;
}
.group-age span {
  font-size: 20px;
  color: var(--gold);
}
.group-name {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 12px 0 16px;
}
.group-desc {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}
.group-price {
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin-top: 24px;
}
.group-price small {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-top: 4px;
}

/* IPC */
.ipc {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ipc-badge {
  display: inline-block;
  background: var(--terra);
  color: white;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 24px;
}
.ipc-text p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(44, 26, 14, 0.7);
  margin-top: 20px;
}
.ipc-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.ipc-h {
  background: white;
  padding: 20px;
  border-left: 3px solid var(--gold);
}
.ipc-h h5 {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 8px;
}
.ipc-h p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(44, 26, 14, 0.6);
}
.ipc-quote {
  background: var(--night);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  position: relative;
}
.ipc-quote::before {
  content: '"';
  font-family: "Cormorant Garamond", serif;
  font-size: 200px;
  color: rgba(200, 168, 110, 0.08);
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}
.ipc-quote-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.6;
  color: white;
  position: relative;
  z-index: 1;
}
.ipc-quote-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
}

/* TEACHERS */
.teachers {
  background: var(--ivory);
  text-align: center;
  padding: 100px 60px;
}
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.teacher-card {
  text-align: left;
}
.teacher-photo {
  height: 320px;
  background: var(--vanilla);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.teacher-photo-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream), var(--vanilla));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.teacher-tag {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--terra);
  color: white;
  padding: 4px 10px;
}
.teacher-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--night);
  margin-bottom: 4px;
}
.teacher-role {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* FOOD */
.food {
  background: var(--night);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.food-meals {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.meal {
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 8px;
  text-align: center;
  border-radius: 2px;
}
.meal-time {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.meal-name {
  font-size: 12px;
  color: white;
  line-height: 1.3;
}
.food-visual {
  background: rgba(255, 255, 255, 0.04);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.food-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold);
}
.food-stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: var(--gold);
  flex-shrink: 0;
}
.food-stat-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* PRICES */
.prices {
  background: var(--ivory);
  padding: 100px 60px;
  text-align: center;
}
.prices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.price-card {
  background: white;
  padding: 40px 24px;
  transition: all 0.3s;
  position: relative;
  text-align: left;
}
.price-card.featured {
  background: var(--night);
}
.price-card.featured::before {
  content: attr(data-popular);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: white;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap;
}
.price-age {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.price-group {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--night);
  margin-bottom: 24px;
}
.price-card.featured .price-group {
  color: white;
}
.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
}
.price-card.featured .price-amount {
  color: var(--gold);
}
.price-period {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(44, 26, 14, 0.4);
  margin-top: 6px;
}
.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.3);
}
.price-includes {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pi {
  font-size: 12px;
  color: rgba(44, 26, 14, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pi::before {
  content: "·";
  color: var(--gold);
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}
.price-card.featured .pi {
  color: rgba(255, 255, 255, 0.5);
}
.prices-note {
  margin-top: 40px;
  font-size: 13px;
  color: rgba(44, 26, 14, 0.5);
  line-height: 1.7;
}
.prices-note strong {
  color: var(--terra);
}

/* CTA */
.cta {
  background: var(--terra);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
}
.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.cta-btn {
  display: inline-block;
  background: white;
  color: var(--terra);
  padding: 20px 48px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover {
  background: var(--night);
  color: white;
}
.cta-contact {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.cta-c {
  text-align: center;
}
.cta-c-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.cta-c-val {
  font-size: 15px;
  color: white;
  font-weight: 400;
}

/* FOOTER */
footer {
  background: var(--night);
  padding: 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  color: white;
  margin-bottom: 16px;
}
.footer-slogan {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-desc {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
}
.footer-col h5 {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  background: var(--night);
  padding: 20px 60px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--gold);
}
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-left > * {
  animation: fadeUp 0.8s ease both;
}
.hero-tag {
  animation-delay: 0.1s;
}
.hero-title {
  animation-delay: 0.2s;
}
.hero-desc {
  animation-delay: 0.3s;
}
.hero-actions {
  animation-delay: 0.4s;
}
.hero-stats {
  animation-delay: 0.5s;
}

.section-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.section-rule.center {
  margin: 24px auto;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav {
    padding: 16px 32px;
  }
  .section,
  .groups,
  .food,
  .prices,
  .cta {
    padding-left: 32px;
    padding-right: 32px;
  }
  footer {
    padding: 48px 32px;
    gap: 40px;
  }
  .footer-bottom {
    padding: 18px 32px;
  }
  .hero-left {
    padding: 110px 40px 60px;
  }
  .groups-grid,
  .prices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .teachers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .ipc-quote {
    padding: 48px;
    min-height: auto;
  }
}

@media (max-width: 780px) {
  nav {
    padding: 14px 20px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(200, 168, 110, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.85;
  }
  .nav-toggle {
    display: block;
    order: 3;
    margin-left: 8px;
  }
  .nav-right {
    gap: 10px;
  }
  .nav-cta {
    padding: 9px 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .lang-switch button {
    padding: 5px 6px;
    font-size: 9px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    order: -1;
    height: 240px;
    min-height: 240px;
  }
  .hero-left {
    padding: 60px 24px 60px;
  }
  .hero-left::before,
  .hero-left::after {
    width: 240px;
    height: 240px;
  }
  .hero-stats {
    gap: 24px;
    margin-top: 40px;
    padding-top: 28px;
  }
  .stat-n {
    font-size: 32px;
  }
  .hero-actions {
    gap: 14px;
  }
  .btn-primary {
    padding: 14px 24px;
    font-size: 11px;
  }
  .crown-svg {
    width: 80px;
  }
  .hero-crown-name {
    font-size: 22px;
  }

  .section,
  .groups,
  .food,
  .prices,
  .cta,
  .teachers {
    padding: 64px 20px;
  }
  .about,
  .ipc,
  .food {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .groups-grid,
  .teachers-grid,
  .prices-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ipc-highlights {
    grid-template-columns: 1fr;
  }
  .food-meals {
    grid-template-columns: repeat(2, 1fr);
  }
  .food-visual {
    padding: 24px;
  }
  .about-visual {
    min-height: 320px;
    padding: 32px;
  }
  .ipc-quote {
    padding: 36px 28px;
  }
  .ipc-quote::before {
    font-size: 140px;
  }
  .group-card,
  .price-card {
    padding: 32px 22px;
  }
  .teacher-photo {
    height: 260px;
  }

  .cta {
    padding: 64px 20px;
  }
  .cta-btn {
    padding: 18px 32px;
    font-size: 11px;
    letter-spacing: 2px;
  }
  .cta-contact {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
  }
  .footer-bottom {
    padding: 18px 24px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .hero-stats {
    gap: 16px;
  }
  .stat-n {
    font-size: 26px;
  }
  .stat-l {
    font-size: 9px;
  }
  .cta-contact {
    grid-template-columns: 1fr;
  }
}

/* PRINT */
@media print {
  nav,
  .cta,
  footer,
  .footer-bottom {
    display: none;
  }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 2px;
}

/* SUMMER CAMP BANNER */
.summer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 32px;
  padding: 36px 44px;
  background: linear-gradient(135deg, var(--terra) 0%, #d45f2a 100%);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 12px 32px rgba(232, 115, 58, 0.25);
}
.summer-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 115, 58, 0.35);
}
.summer-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}
.summer-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 8px;
}
.summer-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 520px;
}
.summer-cta {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  transition: background 0.2s;
}
.summer-banner:hover .summer-cta {
  background: rgba(255, 255, 255, 0.22);
}

/* GALLERY */
.gallery {
  padding: 100px 60px;
  background: var(--cream);
  text-align: center;
}
.gallery .section-title {
  color: var(--night);
}
.gallery-lead {
  max-width: 560px;
  margin: 18px auto 48px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(44, 26, 14, 0.66);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--night);
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.gallery-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(26, 16, 64, 0.18);
}
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 16, 64, 0) 50%,
    rgba(26, 16, 64, 0.7) 100%
  );
  pointer-events: none;
}
.gallery-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: white;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.g-t1 {
  background: linear-gradient(135deg, #3b3a8f, #1a1040);
}
.g-t2 {
  background: linear-gradient(135deg, #e8733a, #c8552a);
}
.g-t3 {
  background: linear-gradient(135deg, #c8a86e, #a6864e);
}
.g-t4 {
  background: linear-gradient(135deg, #c9878d, #9f656a);
}
.g-t5 {
  background: linear-gradient(135deg, #ead9a2, #c8a86e);
}
.g-t6 {
  background: linear-gradient(135deg, #b4c8d4, #7d9aac);
}
.g-t7 {
  background: linear-gradient(135deg, #1a1040, #3b3a8f);
}
.g-t8 {
  background: linear-gradient(135deg, #e8733a, #ead9a2);
}
.gallery-note {
  margin-top: 36px;
  font-size: 13px;
  color: rgba(44, 26, 14, 0.6);
  font-style: italic;
}

/* CTA actions group + outline btn + map */
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.cta-btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
}
.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
.cta-map {
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.anchor-offset {
  position: relative;
  top: -80px;
  display: block;
  height: 0;
}

/* FLOATING WHATSAPP BUTTON */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 18px rgba(37, 211, 102, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.12);
  z-index: 999;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow:
    0 10px 24px rgba(37, 211, 102, 0.55),
    0 4px 8px rgba(0, 0, 0, 0.16);
}
.wa-float:active {
  transform: scale(0.96);
}
.wa-float svg {
  display: block;
}

/* Responsive tweaks for new blocks */
@media (max-width: 1100px) {
  .gallery {
    padding: 80px 32px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .summer-banner {
    padding: 30px 32px;
  }
  .summer-title {
    font-size: 32px;
  }
}
@media (max-width: 780px) {
  .gallery {
    padding: 64px 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .summer-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
    margin-top: 24px;
  }
  .summer-title {
    font-size: 28px;
  }
  .summer-cta {
    align-self: stretch;
    text-align: center;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
  }
  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }
  .wa-float svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
