
:root {
  --navy: #082366;
  --navy-2: #0c2d7d;
  --pink: #f44983;
  --pink-dark: #d83169;
  --yellow: #ffc842;
  --sky: #55b9f2;
  --lavender: #7c63c7;
  --paper: #ffffff;
  --soft: #f6f9ff;
  --soft-pink: #fff0f5;
  --ink: #111b3d;
  --muted: #5c647a;
  --line: rgba(8, 35, 102, 0.13);
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: .8rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(8,35,102,.1);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: .95rem;
  text-decoration: none;
}

.logo-image {
  width: auto;
  height: 84px;
  border-radius: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-title {
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--navy);
}

.logo-place {
  color: var(--muted);
  font-size: .9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  padding: .7rem .78rem;
  border-radius: 999px;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: var(--pink);
}

.nav .cta-nav {
  background: var(--pink);
  color: #fff;
}

.dance-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 78%, rgba(255,200,66,.72), transparent 28%),
    radial-gradient(circle at 94% 46%, rgba(244,73,131,.72), transparent 23%),
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.95) 42%, rgba(255,255,255,.22) 72%),
    url("assets/dance-hero.jpg") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 2rem;
  padding: 4.6rem 0;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .82rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.sparkles {
  font-size: 1.4rem;
}

.dance-hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: .9;
  letter-spacing: -.06em;
  color: var(--navy);
}

.dance-hero h1 span {
  color: var(--pink);
}

.studio-label {
  display: block;
  margin-top: .9rem;
  text-transform: uppercase;
  letter-spacing: .35em;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.45rem;
}

.script-line {
  margin: .55rem 0 1rem;
  color: var(--pink);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.hero-copy {
  max-width: 520px;
  color: #2f3655;
  font-size: 1.12rem;
  margin: 0 0 1rem;
}

.hero-checks {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: .35rem;
}

.hero-checks li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 750;
  color: #25305a;
}

.hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 900;
}

.primary-button,
.secondary-button,
.white-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  padding: .95rem 1.25rem;
  font-weight: 900;
  transition: transform .18s ease, filter .18s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 14px 32px rgba(8,35,102,.22);
}

.secondary-button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
}

.white-button {
  background: #fff;
  color: var(--pink-dark);
}

.primary-button:hover,
.secondary-button:hover,
.white-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.example-chip {
  margin-top: 1rem;
  display: inline-flex;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(244,73,131,.22);
  background: rgba(255,255,255,.75);
  color: var(--pink-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 900;
}

.trial-badge {
  justify-self: end;
  align-self: start;
  width: 218px;
  height: 218px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  background: var(--pink);
  color: #fff;
  border: 5px dotted rgba(255,255,255,.75);
  box-shadow: 0 22px 55px rgba(244,73,131,.32);
}

.trial-badge strong {
  display: block;
  text-transform: uppercase;
  font-size: 1.55rem;
  line-height: 1.05;
}

.trial-badge span {
  display: block;
  margin-top: .65rem;
  font-weight: 750;
}

.offer-strip {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 3.2rem 0;
}

.offer-card {
  text-align: center;
  padding: 0 1.6rem;
  border-right: 1px solid var(--line);
}

.offer-card:last-child { border-right: 0; }

.offer-icon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  margin: 0 auto .95rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.8rem;
}

.offer-icon.pink { background: var(--pink); }
.offer-icon.purple { background: var(--lavender); }
.offer-icon.yellow { background: var(--yellow); color: var(--navy); }
.offer-icon.sky { background: var(--sky); }

.offer-card h2 {
  margin: 0 0 .35rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 5.2rem max(1rem, calc((100vw - var(--shell)) / 2));
}

.section.soft {
  background: var(--soft);
}

.section.pink-soft {
  background: var(--soft-pink);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.7rem;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1;
}

.section-head p {
  margin: .65rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.class-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 34px rgba(8,35,102,.06);
}

.class-card img {
  width: 100%;
  aspect-ratio: 1.1 / .9;
  object-fit: cover;
}

.class-body {
  padding: 1.15rem;
  text-align: center;
}

.class-icon {
  width: 52px;
  height: 52px;
  margin: -42px auto .55rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
}

.class-card:nth-child(2) .class-icon { background: var(--lavender); }
.class-card:nth-child(3) .class-icon { background: var(--yellow); color: var(--navy); }
.class-card:nth-child(4) .class-icon { background: var(--sky); }
.class-card:nth-child(5) .class-icon { background: var(--pink); }

.class-body h3 {
  margin: 0 0 .35rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.class-body p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.timetable-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}

.timetable-card,
.party-card,
.hire-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(8,35,102,.07);
  overflow: hidden;
}

.timetable-card {
  padding: 1.3rem;
}

.timetable-card h2,
.party-card h2,
.hire-card h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.timetable {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

.timetable th {
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: #fff;
  text-align: left;
  padding: .75rem;
}

.timetable td {
  border: 1px solid rgba(8,35,102,.1);
  padding: .75rem;
  color: #303957;
}

.timetable-note {
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: .93rem;
}

.side-stack {
  display: grid;
  gap: 1.4rem;
}

.feature-card-inner {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 0;
  min-height: 260px;
}

.feature-copy {
  padding: 1.35rem;
}

.feature-copy .script {
  display: block;
  color: var(--pink);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.8rem;
  line-height: 1;
  margin-top: -.35rem;
}

.feature-copy ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.1rem;
  display: grid;
  gap: .35rem;
}

.feature-copy li {
  position: relative;
  padding-left: 1.5rem;
  color: #303957;
}

.feature-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 900;
}

.feature-image {
  background-size: cover;
  background-position: center;
}

.feature-image.parties { background-image: none; }
.feature-image.hire { background-image: none; }

.performance-band {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.93), rgba(246,249,255,.82)),
    url("assets/performance.jpg") center right / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  padding: 2.2rem;
  min-height: 300px;
}

.performance-band h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  line-height: 1;
}

.performance-band .script {
  display: block;
  color: var(--pink);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.2rem;
  margin: .35rem 0 .9rem;
}

.performance-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-top: 1.2rem;
}

.performance-point {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.performance-point strong {
  display: block;
  color: var(--navy);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .05em;
}

.info-band {
  display: grid;
  grid-template-columns: 1fr .9fr 1fr .9fr;
  gap: 1.5rem;
  padding: 4rem max(1rem, calc((100vw - var(--shell)) / 2));
  background: #fff;
  border-top: 1px solid var(--line);
}

.info-card {
  border-right: 1px solid var(--line);
  padding-right: 1.4rem;
}

.info-card:last-child {
  border-right: 0;
}

.info-card h2 {
  margin: 0 0 .9rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.info-card p {
  margin: 0 0 .8rem;
  color: #303957;
}

.info-card img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 1.25 / .85;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(8,35,102,.08);
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .6rem;
  margin-bottom: .3rem;
}

.hours-list dt {
  font-weight: 850;
}

.hours-list dd {
  margin: 0;
  color: #303957;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #303957;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 900;
}

.example-note {
  color: var(--muted);
  font-size: .9rem;
  font-style: italic;
}

.bottom-cta {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
}

.bottom-cta-inner {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  padding: 1.7rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.bottom-cta h2 {
  margin: 0 0 .25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.bottom-cta p {
  margin: 0;
  color: rgba(255,255,255,.88);
}

.email-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  text-align: center;
  min-width: 320px;
}

.email-box strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .84rem;
}

.email-box a {
  color: #fff;
  text-decoration: none;
  font-weight: 850;
}

.site-footer {
  background: var(--navy);
  color: #fff;
}

.footer-inner {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .7fr .85fr;
  gap: 3rem;
  padding: 2.6rem 0;
}

.footer-logo {
  width: 110px;
  border-radius: 999px;
  margin-bottom: .9rem;
}

.footer-brand-block p {
  color: rgba(255,255,255,.72);
  max-width: 390px;
}

.footer-tagline { color: #fff !important; }

.site-footer h3 {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li { margin-bottom: .42rem; }

.footer-links a,
.site-footer a {
  color: rgba(255,255,255,.84);
}

.footer-bottom {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}

@media (max-width: 1100px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }
  .hero-inner,
  .timetable-layout,
  .performance-band,
  .info-band,
  .footer-inner,
  .bottom-cta-inner {
    grid-template-columns: 1fr;
  }
  .offer-strip,
  .class-grid,
  .performance-points {
    grid-template-columns: repeat(2, 1fr);
  }
  .trial-badge {
    justify-self: start;
  }
  .info-card {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .logo-image { height: 70px; }
  .logo-text { display: none; }
  .nav { gap: .1rem; }
  .nav a { font-size: .82rem; padding: .55rem .62rem; }
  .dance-hero {
    background:
      radial-gradient(circle at 92% 82%, rgba(255,200,66,.65), transparent 30%),
      linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.88)),
      url("assets/dance-hero.jpg") center / cover no-repeat;
  }
  .hero-inner {
    min-height: auto;
    padding: 3.5rem 0;
  }
  .studio-label {
    letter-spacing: .2em;
    font-size: 1rem;
  }
  .trial-badge {
    width: 170px;
    height: 170px;
  }
  .offer-strip,
  .class-grid,
  .performance-points {
    grid-template-columns: 1fr;
  }
  .offer-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.3rem 0;
  }
  .offer-card:last-child { border-bottom: 0; }
  .section {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }
  .feature-card-inner {
    grid-template-columns: 1fr;
  }
  .feature-image {
    min-height: 220px;
  }
  .timetable {
    font-size: .82rem;
  }
  .timetable th,
  .timetable td {
    padding: .55rem;
  }
  .hours-list div {
    grid-template-columns: 1fr;
    gap: .02rem;
  }
  .email-box {
    min-width: 0;
  }
  .footer-bottom {
    flex-direction: column;
  }
}


/* --- Polished Step & Spark additions --- */
.find-class-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: stretch;
}

.find-class-card,
.trial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(8,35,102,.07);
  overflow: hidden;
}

.find-class-card {
  padding: 1.35rem;
}

.find-class-card h2,
.trial-card h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.timetable .age {
  display: inline-flex;
  margin-bottom: .18rem;
  padding: .15rem .4rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trial-card {
  padding: 1.45rem;
  background:
    radial-gradient(circle at 85% 18%, rgba(255,200,66,.48), transparent 28%),
    linear-gradient(135deg, #fff, #fff4f8);
}

.trial-card .script {
  display: block;
  color: var(--pink);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: .5rem;
}

.trial-card p {
  color: #303957;
  margin: 0 0 1rem;
}

.trial-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: .45rem;
}

.trial-points li {
  position: relative;
  padding-left: 1.55rem;
  color: #303957;
  font-weight: 700;
}

.trial-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.section.yellow-soft {
  background: #fff8dc;
}

@media (max-width: 1100px) {
  .find-class-layout,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}


/* Reliability patch for explicit feature images */
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
