:root {
  --red: #df2638;
  --red-dark: #a90f24;
  --yellow: #ffd831;
  --yellow-soft: #fff4b0;
  --ink: #25191b;
  --muted: #6d5c58;
  --paper: #fffdf5;
  --cream: #fff7da;
  --line: rgba(37, 25, 27, 0.12);
  --shadow: 0 22px 60px rgba(86, 48, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--red);
  object-fit: cover;
  background: #fff;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--red);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px) 56px;
  background:
    radial-gradient(circle at top left, #fff6a6 0 30%, transparent 31%),
    linear-gradient(135deg, #ffe245 0%, #fff06a 48%, #fff9bd 100%);
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  line-height: 1;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.8rem, 8vw, 8.2rem);
  font-weight: 900;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  font-weight: 900;
}

h3 {
  font-size: 1.55rem;
  font-weight: 900;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--red);
  color: #fff;
}

.button.secondary {
  background: var(--yellow);
  color: var(--ink);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -18px;
  content: "";
  background: var(--yellow);
  border-radius: 40% 60% 55% 45%;
  transform: rotate(-5deg);
}

.hero-media img {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 4 / 5;
  border: 10px solid #fff;
  border-radius: 38% 62% 44% 56%;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 52% 62%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.stats div {
  padding: 28px clamp(20px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--red);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
}

.stats span {
  color: var(--muted);
  font-weight: 700;
}

.quick-contact {
  position: sticky;
  top: 81px;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 216, 49, 0.34);
  border-bottom: 1px solid rgba(255, 216, 49, 0.34);
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 36px rgba(169, 15, 36, 0.2);
}

.quick-contact a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 18px clamp(18px, 5vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
}

.quick-contact a:last-child {
  border-right: 0;
}

.quick-contact span {
  color: var(--yellow-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-contact strong {
  overflow-wrap: anywhere;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.section,
.split-section,
.band,
.contact-section,
.reviews-section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.program-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.program-card,
.value-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(86, 48, 22, 0.08);
}

.program-card {
  cursor: pointer;
  min-height: 220px;
  padding: 26px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.program-card:hover,
.program-card:focus-visible,
.program-card.is-active {
  border-color: var(--red);
  box-shadow: 0 18px 42px rgba(169, 15, 36, 0.16);
  transform: translateY(-4px);
  outline: 0;
}

.program-card span {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.program-card p,
.value-grid p,
.content-panel p,
.band p,
.program-detail p,
.faq-list p {
  color: var(--muted);
  line-height: 1.75;
}

.program-detail {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid var(--yellow);
  border-radius: 8px;
  background: #fff;
}

.program-detail h3 {
  color: var(--red-dark);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  background: var(--cream);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: end;
  gap: 16px;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.image-stack img:nth-child(2) {
  transform: translateY(42px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  box-shadow: 0 0 0 5px var(--yellow-soft);
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  background: var(--red);
  color: #fff;
}

.band .eyebrow,
.band p {
  color: #fff3b9;
}

.band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 8px solid #fff;
  border-radius: 8px;
  object-fit: cover;
  transform: rotate(2deg);
}

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

.value-grid article {
  padding: clamp(24px, 4vw, 42px);
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(86, 48, 22, 0.08);
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--red-dark);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.reviews-section {
  background:
    radial-gradient(circle at bottom left, rgba(255, 216, 49, 0.4) 0 18%, transparent 19%),
    #fffdf5;
}

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

.review-card {
  min-height: 260px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(169, 15, 36, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(86, 48, 22, 0.1);
}

.stars {
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 var(--red-dark);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.7;
}

.review-card span {
  display: block;
  margin-top: 24px;
  color: var(--red-dark);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(255, 216, 49, 0.45) 0 18%, transparent 19%),
    linear-gradient(90deg, rgba(255, 216, 49, 0.6), transparent),
    #fff9df;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

address {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(169, 15, 36, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.8;
}

address strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red-dark);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 42px);
  border: 2px solid var(--red);
}

.contact-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--red-dark);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
  text-decoration: none;
}

.contact-card .instagram-link {
  color: #c2144a;
}

.instagram-link img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.instagram-link span {
  overflow-wrap: anywhere;
}

.contact-card a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fff8df;
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  display: none;
  gap: 10px;
}

.floating-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(169, 15, 36, 0.28);
  font-weight: 900;
  text-decoration: none;
}

.floating-actions a:last-child {
  background: var(--yellow);
  color: var(--ink);
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .quick-contact {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(3.15rem, 17vw, 4.8rem);
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats,
  .program-grid,
  .value-grid,
  .quick-contact,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .quick-contact a:last-child {
    border-bottom: 0;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:nth-child(2) {
    transform: none;
  }

  .floating-actions {
    display: flex;
  }
}
