
:root {
  --navy: #1a2e52;
  --teal: #1d7a8c;
  --teal-light: #d4eef3;
  --yellow: #f9c623;
  --yellow-pale: #fef6d8;
  --coral: #f4705b;
  --coral-pale: #fdeae7;
  --white: #ffffff;
  --off-white: #fafaf8;
  --grey-100: #f4f4f2;
  --grey-200: #e8e7e3;
  --grey-600: #6b6b6b;
  --grey-800: #2e2e2e;
  --text: #1e1e1e;

  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Lato', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);

  --container: 1160px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--navy); }
p { color: var(--grey-800); }


.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--grey-600);
}
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.8); }


.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover { background: #e85d47; }

.btn-outline {
  border: 2.5px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-dark {
  border: 2.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-sm {
  font-size: 0.875rem;
  padding: 0.55rem 1.25rem;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}


.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
  transition: opacity 0.18s;
}
.logo:hover { opacity: 0.85; }
.logo-mark {
  font-size: 1.75rem;
  color: var(--yellow);
  line-height: 1;
}
.logo-text {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.logo-sub {
  font-weight: 600;
  opacity: 0.75;
  font-size: 0.9em;
  margin-left: 0.25em;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  transition: color 0.18s;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  font-weight: 800 !important;
  transition: background 0.18s, transform 0.18s !important;
}
.nav-cta:hover { background: #f0b800 !important; transform: translateY(-1px); }


.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1d4a7a 60%, var(--teal) 100%);
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 6rem);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.shape-1 {
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: var(--yellow);
  top: -15%;
  right: -10%;
}
.shape-2 {
  width: clamp(100px, 20vw, 280px);
  height: clamp(100px, 20vw, 280px);
  background: var(--coral);
  bottom: -10%;
  left: 5%;
}
.shape-3 {
  width: clamp(60px, 12vw, 160px);
  height: clamp(60px, 12vw, 160px);
  background: var(--teal-light);
  top: 20%;
  left: 42%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.badge-icon { font-size: 1rem; }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.hero-img { border-radius: var(--radius-lg); }
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 3px rgba(249,198,35,0.4);
  pointer-events: none;
}


.programs {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--off-white);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.75rem;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.program-card-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.program-card-img-wrap img { transition: transform 0.4s ease; }
.program-card:hover .program-card-img-wrap img { transform: scale(1.04); }

.program-card--jitterbugs .program-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.program-card--beeboppers .program-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--coral);
}
.program-card--pianorama .program-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
}
.program-card--private .program-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy);
}

.program-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.program-age {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  align-self: flex-start;
}
.program-card-body h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
}
.program-card-body p {
  font-size: 0.95rem;
  color: var(--grey-600);
  flex: 1;
}
.program-card-body .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}


.method {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--yellow-pale);
}
.method-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 820px) {
  .method-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.method-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-md);
}
.method-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-heading);
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
}
.method-badge span { font-size: 0.75rem; opacity: 0.7; display: block; }
.method-badge strong { font-size: 1.75rem; font-weight: 900; color: var(--yellow); display: block; }
.method-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.method-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.method-text .btn { margin-top: 0.75rem; }


.why {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--navy);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.10); }
.why-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  display: block;
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}


.gallery-strip {
  overflow: hidden;
}
.gallery-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-strip-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gallery-strip-item img { transition: transform 0.5s ease; }
.gallery-strip-item:hover img { transform: scale(1.06); }

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


.visit {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--white);
}
.visit-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 820px) {
  .visit-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.visit-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.visit-text > p {
  font-size: 1.05rem;
  color: var(--grey-600);
  margin-bottom: 2rem;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.visit-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
}
.visit-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.visit-details a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.visit-details a:hover { color: var(--navy); }
.hours-block {
  background: var(--grey-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.hours-block h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}
.hours-row dt { font-weight: 700; color: var(--navy); }
.hours-row dd { color: var(--grey-600); }
.hours-row--closed dt,
.hours-row--closed dd { opacity: 0.5; }

.visit-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-md);
  position: relative;
}
.visit-image-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 3px solid var(--yellow);
  opacity: 0.5;
  z-index: -1;
}


.site-footer {
  background: var(--grey-800);
  color: rgba(255,255,255,0.75);
  padding-top: clamp(3rem, 6vw, 4rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 0.85rem; }
.footer-brand p { font-size: 0.9rem; max-width: 260px; }
.logo--footer .logo-mark { color: var(--yellow); }
.logo--footer .logo-text { color: var(--white); }
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}
.footer-nav a,
.footer-contact a,
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.18s;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-nav a:focus-visible,
.footer-contact a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; border-radius: 2px; }
.footer-bottom {
  padding-block: 1.25rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}




.about-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1d4a7a 60%, var(--teal) 100%);
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 6rem);
}
.about-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.about-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 820px) {
  .about-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.about-hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 3px rgba(249,198,35,0.4);
  pointer-events: none;
}


.about-story {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--off-white);
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 820px) {
  .about-story-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.about-story-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-md);
  order: -1;
}
@media (min-width: 820px) {
  .about-story-img-wrap { order: 0; }
}
.about-story-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.about-story-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey-600);
  margin-bottom: 1rem;
}


.about-method {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--yellow-pale);
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.75rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.method-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.method-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.method-step-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
}
.method-step-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.method-step-body p {
  font-size: 0.95rem;
  color: var(--grey-600);
  line-height: 1.7;
}
.method-image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.method-img-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.method-img-item img { transition: transform 0.4s ease; }
.method-img-item:hover img { transform: scale(1.05); }
@media (max-width: 600px) {
  .method-image-row { grid-template-columns: 1fr; }
}


.about-programs {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--navy);
}
.about-programs-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
.about-programs-timeline::before {
  content: '';
  position: absolute;
  left: 2.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.12);
}
@media (min-width: 820px) {
  .about-programs-timeline::before { left: 2.75rem; }
}
.timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}
.timeline-marker {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--navy);
}
.timeline-marker--yellow { background: var(--yellow); }
.timeline-marker--coral { background: var(--coral); }
.timeline-marker--teal { background: var(--teal); }
.timeline-marker--navy {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
}
.timeline-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: background 0.2s;
}
.timeline-card:hover { background: rgba(255,255,255,0.10); }
.timeline-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yellow);
}
.timeline-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.timeline-card .btn-outline-dark {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  margin-top: 0.25rem;
}
.timeline-card .btn-outline-dark:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}


.about-values {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--grey-100);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  display: block;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.95rem;
  color: var(--grey-600);
  line-height: 1.65;
}


.about-location {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--teal-light);
}
.about-location-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 820px) {
  .about-location-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.about-location-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.about-location-text > p {
  font-size: 1.05rem;
  color: var(--grey-600);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.about-location-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-location-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 3px solid var(--teal);
  opacity: 0.4;
  z-index: -1;
}



.contact-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1d4a7a 60%, var(--teal) 100%);
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 5rem);
  text-align: center;
}
.contact-hero-inner {
  position: relative;
}
.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.contact-hero .hero-lead {
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 0;
}

.contact-main {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: start;
}
@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-details-col h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.contact-intro {
  font-size: 1.05rem;
  color: var(--grey-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.contact-info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.contact-info-item p {
  font-size: 0.975rem;
  color: var(--grey-800);
  margin: 0;
}
.contact-info-item a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-info-item a:hover { color: var(--navy); }

.contact-studio-img {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-md);
}

.enquiry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.enquiry-card-header {
  background: var(--navy);
  padding: 2rem 2rem 1.75rem;
  text-align: center;
}
.enquiry-icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.75rem;
}
.enquiry-card-header h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.enquiry-card-header p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  max-width: 340px;
  margin-inline: auto;
}

.enquiry-programs {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--grey-200);
}
.enquiry-programs h3 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-600);
  margin-bottom: 1.25rem;
}
.enquiry-program-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.enquiry-program-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.enquiry-program-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.35rem;
}
.enquiry-program--jitterbugs .enquiry-program-dot { background: var(--yellow); }
.enquiry-program--beeboppers .enquiry-program-dot { background: var(--coral); }
.enquiry-program--pianorama .enquiry-program-dot { background: var(--teal); }
.enquiry-program--private .enquiry-program-dot { background: var(--navy); }

.enquiry-program-item strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.975rem;
  color: var(--navy);
  margin-right: 0.5rem;
}
.enquiry-program-item p {
  font-size: 0.875rem;
  color: var(--grey-600);
  margin: 0.2rem 0 0;
  line-height: 1.5;
}

.enquiry-cta-block {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.enquiry-cta-note {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.65;
  margin-bottom: 0.25rem;
}
.enquiry-email-btn {
  text-align: center;
  width: 100%;
  padding: 0.875rem 1.75rem;
  font-size: 1.05rem;
}
.enquiry-or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--grey-600);
  font-size: 0.85rem;
}
.enquiry-or::before,
.enquiry-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-200);
}
.enquiry-phone-btn {
  text-align: center;
  width: 100%;
}

.contact-map-section {
  padding-top: clamp(4rem, 9vw, 6rem);
  background: var(--white);
}
.contact-map-section .section-header {
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}
.map-image-wrap {
  position: relative;
  aspect-ratio: 21 / 7;
  overflow: hidden;
}
@media (max-width: 600px) {
  .map-image-wrap { aspect-ratio: 4 / 3; }
}
.map-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-overlay-card {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.map-overlay-icon { font-size: 1.5rem; flex-shrink: 0; }
.map-overlay-card strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.975rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.map-overlay-card p {
  font-size: 0.8rem;
  color: var(--grey-600);
  margin: 0;
  line-height: 1.4;
}

.contact-faq {
  padding-block: clamp(4rem, 9vw, 6rem);
  background: var(--yellow-pale);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 1rem;
  max-width: 980px;
  margin-inline: auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: background 0.18s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-question:hover { background: var(--grey-100); }
.faq-item[open] .faq-question {
  border-bottom: 1px solid var(--grey-200);
}
.faq-answer {
  padding: 1.25rem 1.5rem;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin: 0;
}

.faq-footer {
  text-align: center;
  margin-top: 2.5rem;
  max-width: 980px;
  margin-inline: auto;
}
.faq-footer p {
  font-size: 1rem;
  color: var(--grey-600);
}
.faq-footer a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-footer a:hover { color: var(--navy); }


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
