:root {
  --ink: #1f2633;
  --muted: #607083;
  --paper: #fffaf0;
  --surface: #ffffff;
  --teal: #1f8a84;
  --coral: #ef6b5b;
  --sun: #f6bf3a;
  --blue: #3867d6;
  --line: rgba(31, 38, 51, 0.12);
  --shadow: 0 22px 60px rgba(31, 38, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--teal);
  border: 3px solid var(--sun);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
}

.brand strong,
.brand small {
  display: block;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #314052;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
  background: rgba(31, 138, 132, 0.1);
}

.site-nav .nav-contact {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 20px rgba(31, 138, 132, 0.16);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact:focus-visible {
  color: #fff;
  background: #166f6a;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section,
.section-band {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section {
  max-width: 1220px;
  margin: 0 auto;
}

.section-band {
  width: 100%;
}

.summer-announcement {
  position: relative;
  overflow: hidden;
  padding-top: clamp(38px, 6vw, 72px);
  padding-bottom: clamp(38px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(115deg, rgba(246, 191, 58, 0.28), rgba(31, 138, 132, 0.16) 55%, rgba(56, 103, 214, 0.15));
  border-bottom: 1px solid rgba(31, 38, 51, 0.1);
}

.summer-announcement::before,
.summer-announcement::after {
  position: absolute;
  width: 240px;
  height: 240px;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.summer-announcement::before {
  top: -130px;
  left: -80px;
  background: rgba(246, 191, 58, 0.28);
}

.summer-announcement::after {
  right: -110px;
  bottom: -140px;
  background: rgba(239, 107, 91, 0.16);
}

.summer-announcement-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.summer-copy h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.6rem, 7vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: #263545;
  overflow-wrap: anywhere;
}

.eyebrow.summer-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-bottom: 16px;
  padding: 10px 15px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(31, 138, 132, 0.18);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  letter-spacing: 0.06em;
  animation: summer-callout 2200ms ease-in-out infinite;
}

.summer-eyebrow::before {
  width: 14px;
  height: 14px;
  content: "";
  background: var(--sun);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(246, 191, 58, 0.24);
}

.summer-eyebrow::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
  animation: summer-shine 3200ms ease-in-out infinite;
}

.summer-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.summer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.summer-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 138, 132, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.summer-art {
  overflow: hidden;
  border: 1px solid rgba(31, 138, 132, 0.18);
  border-radius: 8px;
  background: #eaf7f5;
  box-shadow: 0 14px 32px rgba(31, 38, 51, 0.1);
}

.summer-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1897 / 829;
  object-fit: cover;
  object-position: center center;
}

.summer-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.summer-badges span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  color: #263545;
  background: #fff;
  border: 1px solid rgba(31, 38, 51, 0.1);
  border-left: 6px solid var(--sun);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 10px 24px rgba(31, 38, 51, 0.07);
}

.summer-badges span:nth-child(2) {
  border-left-color: var(--teal);
}

.summer-badges span:nth-child(3) {
  border-left-color: var(--blue);
}

@keyframes summer-callout {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-2px) scale(1.025);
  }
}

@keyframes summer-shine {
  0%,
  45% {
    transform: translateX(-120%);
  }

  78%,
  100% {
    transform: translateX(120%);
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 73px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 255, 255, 0.82)),
    linear-gradient(90deg, rgba(31, 138, 132, 0.1), rgba(239, 107, 91, 0.11));
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 22px rgba(239, 107, 91, 0.24);
}

.button.secondary {
  color: var(--teal);
  background: rgba(31, 138, 132, 0.09);
  border-color: rgba(31, 138, 132, 0.22);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: clamp(12px, 4vw, 32px);
  bottom: clamp(12px, 4vw, 32px);
  max-width: 330px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(31, 38, 51, 0.14);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.about-text {
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(31, 38, 51, 0.08);
}

.about-text p {
  margin: 0;
  color: #3d4b5d;
  font-size: 1.04rem;
}

.about-text p + p {
  margin-top: 18px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--sun);
  border-radius: 8px;
}

.feature-list span {
  color: var(--coral);
  font-weight: 900;
}

.feature-list strong {
  display: block;
  margin-top: 4px;
  font-size: 1.14rem;
}

.feature-list p,
.program-card p,
.location-copy p {
  color: var(--muted);
}

.soft {
  background: #eaf7f5;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.program-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(31, 138, 132, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(31, 38, 51, 0.08);
}

.program-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.program-card h3 {
  margin: 20px 20px 6px;
  font-size: 1.3rem;
}

.program-card p {
  margin: 0 20px 22px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(31, 38, 51, 0.1);
}

.gallery .feature {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.gallery .portrait {
  grid-row: span 2;
}

.gallery .focus-top {
  object-position: center top;
}

.gallery .focus-center {
  object-position: center center;
}

.gallery .card-03 {
  object-position: center center;
}

.gallery .card-04,
.gallery .card-05,
.gallery .card-09,
.gallery .card-17 {
  object-position: center top;
}

.gallery .card-18,
.gallery .card-19 {
  object-position: center 22%;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #fff2d1;
}

.location-copy {
  max-width: 600px;
}

.location-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
}

address {
  margin: 18px 0;
  padding: 18px;
  color: #263545;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(239, 107, 91, 0.2);
  border-radius: 8px;
  font-style: normal;
  font-weight: 800;
}

address a {
  display: block;
  text-decoration: underline;
  text-decoration-color: rgba(31, 138, 132, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

address a:hover,
address a:focus-visible {
  color: var(--teal);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  color: #263545;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 38, 51, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(31, 38, 51, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(31, 138, 132, 0.32);
  box-shadow: 0 18px 36px rgba(31, 38, 51, 0.12);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 50%;
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link.whatsapp .contact-icon {
  background: var(--teal);
}

.contact-link.instagram .contact-icon {
  background: linear-gradient(135deg, var(--coral), var(--sun));
}

.contact-link small,
.contact-link strong {
  display: block;
}

.contact-link small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-link strong {
  margin-top: 2px;
  overflow-wrap: anywhere;
  font-size: 0.96rem;
  line-height: 1.25;
}

.map-card {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(31, 38, 51, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.map-card img,
.map-modal img {
  width: 100%;
}

.map-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease;
}

.map-zoom:hover img,
.map-zoom:focus-visible img {
  transform: scale(1.025);
}

.map-card figcaption {
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(31, 38, 51, 0.78);
}

.map-modal.is-open {
  display: flex;
}

.map-modal img {
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.map-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 44px;
  padding: 10px 16px;
  color: #fff;
  background: var(--coral);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #263545;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: #ffd36f;
  font-weight: 800;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #ffd36f;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.reveal {
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.can-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.can-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero,
  .summer-announcement-inner,
  .about-grid,
  .location {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    width: 100%;
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 42px rgba(31, 38, 51, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .site-nav .nav-contact {
    text-align: center;
  }

  .summer-announcement {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .summer-copy h2 {
    max-width: 100%;
    font-size: 2.28rem;
    line-height: 1.02;
  }

  .summer-copy p:not(.eyebrow) {
    font-size: 1.02rem;
    overflow-wrap: anywhere;
  }

  .summer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .summer-panel {
    width: 100%;
    min-height: 0;
    padding: 16px;
  }

  .summer-badges {
    grid-template-columns: 1fr;
  }

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

  .hero {
    gap: 24px;
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 2.55rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-text {
    font-size: 1.02rem;
    overflow-wrap: anywhere;
  }

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

  .button {
    min-width: 0;
    padding-inline: 12px;
    font-size: 0.95rem;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-link {
    padding: 12px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-auto-flow: row;
  }

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

  .gallery img {
    height: auto;
    object-fit: contain;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

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