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

:root {
  --black:   #0a0a0a;
  --dark:    #141414;
  --white:   #ffffff;
  --off:     #f4f4f4;
  --accent:  #1b3d7a;
  --accent2: #2a5cad;
  --accentlt:#7aaaff;
  --text:    #1a1a1a;
  --muted:   #666666;
  --light:   #e8e8e8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: rgba(10,10,10,0.97);
  border-bottom: 3px solid var(--accent);
  flex-shrink: 0;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 0 1.1rem;
  height: 64px;
  display: flex; align-items: center;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); border-bottom-color: var(--accentlt); }

/* ── PAGE BODY ── */
.page-body { padding-top: 64px; flex: 1; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--black);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}
.page-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

/* ── CONTENT ── */
.content-wrap { max-width: 900px; margin: 0 auto; padding: 3.5rem 2rem; }
.content-wrap-wide { max-width: 1200px; margin: 0 auto; padding: 3.5rem 2rem; }

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.section-rule { width: 50px; height: 3px; background: var(--accent); margin-bottom: 2rem; }

/* ── RULED SECTIONS ── */
.ruled-section { border-top: 1px solid var(--light); padding: 2.5rem 0; }
.ruled-section:first-child { border-top: none; padding-top: 0; }

/* ── INTRO TEXT ── */
.intro-text { font-size: 1.05rem; font-weight: 300; line-height: 1.8; margin-bottom: 1.2rem; color: #333; }
.services-list { list-style: none; margin: 1rem 0 1.5rem; }
.services-list li {
  font-size: 1rem; padding: 0.5rem 0 0.5rem 1.2rem;
  border-bottom: 1px solid var(--light);
  position: relative;
}
.services-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px; background: var(--accent);
}
.experience-note { font-size: 0.9rem; font-style: italic; color: var(--muted); }

/* ── COACHING LIST ── */
.coaching-list { list-style: none; }
.coaching-list li {
  display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: baseline;
  padding: 0.8rem 0; border-bottom: 1px solid var(--light); font-size: 1rem;
}
.coaching-list li:last-child { border-bottom: none; }
.coaching-list a { font-weight: 600; color: var(--black); text-decoration: none; transition: color 0.2s; }
.coaching-list a:hover { color: var(--accent); }
.coaching-meta { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }
.notable-students {
  margin-top: 1.5rem; padding: 1.2rem 1.5rem;
  background: var(--off); border-left: 3px solid var(--accent);
}
.notable-students strong {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 0.4rem;
}
.notable-students span { font-size: 0.95rem; color: var(--muted); font-style: italic; }

/* ── COMP LIST ── */
.comp-list { list-style: none; }
.comp-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.7rem 0; border-bottom: 1px solid var(--light); font-size: 1rem;
}
.comp-list li:last-child { border-bottom: none; }
.comp-list li::before {
  content: ''; width: 6px; height: 6px; background: var(--accent);
  flex-shrink: 0; margin-top: 0.55rem;
}

/* ── VIDEOS ── */
.video-section { margin-bottom: 3rem; }
.video-section-label {
  font-size: 1rem; font-weight: 300; font-style: italic;
  color: var(--muted); margin-bottom: 1.2rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--light);
}
.video-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
}
.video-embed {
  position: relative; width: 100%; padding-bottom: 56.25%;
  background: var(--black); overflow: hidden;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
}
.gallery-grid img {
  width: 100%; height: 240px; object-fit: cover; display: block;
  transition: opacity 0.2s, transform 0.3s; cursor: pointer;
}
.gallery-grid img:hover { opacity: 0.85; transform: scale(1.02); }

/* ── LIGHTBOX ── */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.94);
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
#lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2rem; color: var(--white); cursor: pointer;
  background: none; border: none; line-height: 1;
}

/* ── BLOG LIST ── */
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-card {
  display: block; text-decoration: none; color: inherit;
  padding: 2rem 0 2rem 1.5rem;
  border-left: 4px solid var(--light);
  border-bottom: 1px solid var(--light);
  transition: border-left-color 0.2s;
}
.blog-card:hover { border-left-color: var(--accent); }
.blog-date {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.4rem;
}
.blog-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--black); margin-bottom: 0.5rem; transition: color 0.2s;
}
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt { font-size: 0.95rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* ── BLOG POST ── */
.post-date {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--light);
}
.post-date a { color: var(--accent); text-decoration: none; }
.post-body { font-size: 1.05rem; font-weight: 300; line-height: 1.85; color: #333; }
.post-body p { margin-bottom: 1.2rem; }
.post-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--black); margin: 2rem 0 0.8rem;
}
.post-body blockquote {
  border-left: 4px solid var(--accent); margin: 1.5rem 0;
  padding: 0.5rem 1.5rem; font-style: italic; color: var(--muted);
}

/* ── PRODUCTS ── */
.product-list { display: flex; flex-direction: column; }
.product-item { border-bottom: 1px solid var(--light); padding: 2.5rem 0; }
.product-item:first-child { padding-top: 0; }
.product-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--accent); margin-bottom: 0.3rem;
}
.product-level {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.product-desc { font-size: 1rem; font-weight: 300; line-height: 1.8; margin-bottom: 0.8rem; color: #333; }
.product-bullets { list-style: none; margin: 0.5rem 0 1rem; }
.product-bullets li {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  padding: 0.3rem 0 0.3rem 1.2rem; position: relative; color: #333;
}
.product-bullets li::before {
  content: ''; position: absolute; left: 0; top: 0.75rem;
  width: 6px; height: 6px; background: var(--accent);
}
.product-note { font-size: 0.9rem; font-style: italic; color: var(--muted); margin-top: 0.5rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-detail { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-row { display: flex; gap: 1rem; align-items: baseline; }
.contact-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); min-width: 80px; flex-shrink: 0;
}
.contact-val { font-size: 1rem; font-weight: 300; }
.contact-val a { color: var(--black); text-decoration: none; transition: color 0.2s; }
.contact-val a:hover { color: var(--accent); }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.form-input, .form-textarea {
  font-family: 'Barlow', sans-serif; font-size: 1rem; color: var(--text);
  background: var(--white); border: 1px solid var(--light);
  border-bottom: 2px solid var(--light);
  padding: 0.7rem 1rem; outline: none; transition: border-color 0.2s; width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-submit {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; background: var(--accent); color: var(--white);
  border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--accent2); transform: translateY(-1px); }
.form-success {
  display: none; font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: #1a5c2a; background: #e8f5ec; border-left: 4px solid #2d7a4f;
  padding: 1rem 1.2rem; margin-top: 0.5rem;
}
.form-error {
  display: none; font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: #7a1a1a; background: #f5e8e8; border-left: 4px solid #c0392b;
  padding: 1rem 1.2rem; margin-top: 0.5rem;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; background: var(--accent); color: var(--white);
  text-decoration: none; display: inline-block; text-align: center;
  transition: background 0.2s, transform 0.15s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-outline {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 2.2rem; border: 2px solid var(--accent); color: var(--accent);
  text-decoration: none; display: inline-block; text-align: center;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 3px solid var(--accent);
  padding: 1.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
}
.footer-logo span { color: var(--accentlt); }
.footer-schola {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 0.2rem;
}
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.2rem; }
  .nav-links a { padding: 0 0.6rem; font-size: 0.72rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .video-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.5rem; padding: 1.2rem; text-align: center; }
}
@media (max-width: 500px) {
  .nav-links a { padding: 0 0.4rem; font-size: 0.65rem; letter-spacing: 0.08em; }
}
