@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #cc0000;
  --dark: #231f20;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --gray-bg: #ffffff;
  --text: #1a1a1a;
  --white: #ffffff;
  --mid: #888888;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  border-bottom: 2px solid var(--red);
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}
.nav-logo-wrap {
  width: 44px;
  height: 35px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 100%;
  height: auto;
  display: block;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

.hero-logo-wrap {
  width: min(520px, 80vw);
  height: calc(min(520px, 80vw) * 0.8);
  overflow: hidden;
  margin: 0 auto 2.5rem;
}
.hero-logo {
  width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); }

/* ── HERO ── */
#hero {
  background: var(--dark);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.hero-title .core {
  display: block;
  color: var(--white);
  -webkit-text-stroke: 0;
}
.hero-title .school {
  display: block;
  color: var(--white);
  opacity: 0.35;
}


.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: transparent; color: var(--red); }

.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  border: 2px solid var(--dark);
  transition: background 0.2s, color 0.2s;
}
.btn-dark:hover { background: transparent; color: var(--dark); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #444;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-label--light { color: var(--red); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--dark-2);
}
.section-title--light { color: var(--white); }

.section-divider { width: 48px; height: 3px; background: var(--red); margin-bottom: 2rem; }
.section-divider--light { background: var(--red); }

/* ── ABOUT ── */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text p { color: #555; margin-bottom: 1rem; font-size: 1.05rem; }

.sister-card {
  background: var(--dark);
  color: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--red);
}
.sister-card h3 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.sister-card p { font-size: 0.95rem; color: #aaa; margin-bottom: 1.25rem; }
.sister-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.sister-link:hover { color: var(--red); }

/* ── CLASSES ── */
#classes { background: var(--gray-bg); }

.classes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.class-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid #e8e8e8;
  border-top: 3px solid var(--red);
}
.class-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 0.3rem;
}
.class-age {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-bottom: 1rem;
}
.class-card p { color: #555; font-size: 0.95rem; line-height: 1.7; }

.class-icon { font-size: 2.2rem; margin-bottom: 1rem; }

/* ── INSTRUCTORS ── */
#instructors { background: var(--dark); }

.instructors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.instructor-card {
  background: var(--dark-3);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.instructor-avatar {
  width: 200px;
  height: 200px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
.instructor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* hero logo panel */
.hero-logo-panel {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  max-width: 240px;
  margin: 0 auto;
}
.hero-logo-img {
  width: 160px;
  height: auto;
  display: block;
}

.instructor-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.instructor-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.6rem;
}


.instructor-bio {
  font-size: 0.92rem;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

.instructor-achievements {
  list-style: none;
  width: 100%;
  text-align: left;
}
.instructor-achievements li {
  font-size: 0.82rem;
  color: #888;
  padding: 0.4rem 0 0.4rem 1.2rem;
  border-bottom: 1px solid #2a2a2a;
  position: relative;
}
.instructor-achievements li::before {
  content: '•';
  color: #555;
  position: absolute;
  left: 0;
}
.instructor-achievements li:first-child { border-top: 1px solid #2a2a2a; }

.instructor-achievements--sub {
  margin-top: 0.3rem;
  padding-left: 1rem;
  list-style: none;
}
.instructor-achievements--sub li {
  font-size: 0.76rem;
  color: #666;
  border: none !important;
  padding: 0.15rem 0 0.15rem 1.2rem;
}
.instructor-achievements--sub li::before { content: '◦'; }

/* ── SCHEDULE ── */
#schedule { background: var(--dark-2); }

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.95rem;
}
.schedule-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #2a2a2a;
  font-size: 0.76rem;
}
.schedule-table td {
  padding: 1rem;
  color: #ccc;
  border-bottom: 1px solid #222;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: #1e1e1e; }

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid;
}
.tag-teens  { color: #ccc; border-color: #555; }
.tag-adults { color: #aaa; border-color: #444; }
.tag-all    { color: #fff; border-color: #888; }

.schedule-note { margin-top: 1.5rem; color: #555; font-size: 0.82rem; }

/* ── LOCATION ── */
#location { background: var(--gray-bg); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.address-block address {
  font-style: normal;
  color: #555;
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 1.75rem;
}
.address-block address strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-2);
  margin-bottom: 0.25rem;
}
.hours-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.hours-list { list-style: none; color: #555; font-size: 0.9rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #e0e0e0;
  max-width: 280px;
}
.hours-list li:last-child { border-bottom: none; }
.map-embed iframe { width: 100%; height: 360px; border: none; display: block; }

/* ── CONTACT ── */
#contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.contact-info-item span {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-info-item a,
.contact-info-item p { font-size: 1.05rem; color: var(--dark-2); text-decoration: none; font-weight: 500; }
.contact-info-item a:hover { text-decoration: underline; }

.contact-cta {
  background: var(--white);
  padding: 2.5rem;
  border-left: 4px solid var(--red);
  border-top: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.contact-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark-2);
  margin-bottom: 0.75rem;
}
.contact-cta p { color: #555; margin-bottom: 1.5rem; font-size: 0.95rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #1e1e1e;
}
footer p { color: #555; font-size: 0.82rem; }
footer a { color: #666; text-decoration: none; }
footer a:hover { color: #aaa; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid,
  .classes-grid,
  .instructors-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #222;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 1.5rem; }
  .schedule-table td,
  .schedule-table th { padding: 0.75rem 0.5rem; font-size: 0.82rem; }
  .instructor-card { padding: 1.75rem; }
}
