/* ============================================
   DOUBLETAKE DANCE STUDIO — SITE STYLES
   Brand: Passion Red #ED371F / Drama Black #000000 / Spot Light White #FFFFFF
   ============================================ */

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

:root {
  /* Brand colors (from brand guide) */
  --passion: #ED371F;
  --passion-dark: #C42A14;
  --tan-tint: #EDE3CE;
  --tan-tint-soft: rgba(210, 184, 138, 0.22);
  --drama: #000000;
  --spotlight: #FFFFFF;

  /* Supporting neutrals (not in brand guide — used for warmth & hierarchy) */
  --cream: #FBF7F1;
  --charcoal: #1A1815;
  --text-muted: #57534E;
  --placeholder-bg: #DAD5CE;
  --placeholder-text: #8A8478;
  --border-hairline: #E8E2D8;

  /* Type */
  --font-display: 'Raleway', sans-serif;
  --font-serif: 'Lora', serif;
  --font-body: 'Raleway', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--spotlight);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.05rem; }

p { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--drama);
  color: var(--spotlight);
}
.btn-primary:hover { background: #2B2925; }
.btn-primary:active { transform: translateY(0); }

.btn-dark {
  background: var(--drama);
  color: var(--spotlight);
}
.btn-dark:hover { background: #2B2925; }

.btn-outline {
  background: transparent;
  border-color: var(--drama);
  color: var(--drama);
}
.btn-outline:hover { background: var(--drama); color: var(--spotlight); }

.btn-outline-light {
  background: transparent;
  border-color: var(--spotlight);
  color: var(--spotlight);
}
.btn-outline-light:hover { background: var(--spotlight); color: var(--drama); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 1.2rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--spotlight);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--drama);
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--passion);
  color: var(--passion-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--drama); border-radius: 2px; }

/* ---------- Top info bar ---------- */
.topbar {
  background: var(--drama);
  color: var(--spotlight);
  font-size: 0.82rem;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--spotlight); }
.topbar-cities { color: #C9C6C2; }
.topbar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-contact span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Image placeholders ---------- */
.img-placeholder {
  background: repeating-linear-gradient(
    135deg,
    var(--placeholder-bg),
    var(--placeholder-bg) 10px,
    #E4E0D9 10px,
    #E4E0D9 20px
  );
  border: 1px dashed #B8B2A6;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--placeholder-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  min-height: 220px;
  padding: 20px;
}

.icon-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--placeholder-text);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Real photo container — same rounded corners as .img-placeholder, no
   dashed border or gray pattern. Wrap an <img> in a div with this class,
   e.g. <div class="img-frame"><img src="..." alt="..."></div> */
.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Star accents (brand motif) ---------- */
.star { color: var(--passion); }
.star-white { color: var(--spotlight); }

/* ---------- Hero ---------- */
/* BACKGROUND IMAGE SETUP: replace the repeating-linear-gradient() below with
   url('assets/yobackground.jpg') once photography is ready. Keep the dark
   overlay gradient layered in front of it — it's what keeps the white
   headline and card legible over a busy photo. */
.hero {
  position: relative;
  background-image:
    url('assets/background.jpg'),
    repeating-linear-gradient(135deg, var(--placeholder-bg), var(--placeholder-bg) 10px, #E4E0D9 10px, #E4E0D9 20px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 90px 0;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 { margin-bottom: 20px; color: var(--spotlight); }

.hero-copy .lede {
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.92);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Registration sidebar card ---------- */
.reg-card {
  background: var(--spotlight);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.22);
}
.reg-card::before {
  content: "";
  display: block;
  height: 5px;
  border-radius: 5px;
  background: var(--passion);
  margin: -30px -28px 22px;
}
.reg-image {
  overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--placeholder-bg), var(--placeholder-bg) 10px, #E4E0D9 10px, #E4E0D9 20px);
  aspect-ratio: 21 / 9;
  margin: -22px -28px 22px;
}
.reg-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reg-card h3 { color: var(--charcoal); margin-bottom: 10px; font-size: 1.5rem; }
.reg-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 22px; }
.reg-card .btn-primary { margin-bottom: 12px; }
.reg-card .fine-print {
  font-size: 0.74rem;
  color: var(--placeholder-text);
  text-align: center;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--drama); color: var(--spotlight); }
.section-dark p { color: #C9C6C2; }
.section-dark h2, .section-dark h3 { color: var(--spotlight); }
.section-tan { background: var(--cream); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Positioning pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.pillar {
  background: var(--spotlight);
  border-top: 4px solid var(--passion);
  border-radius: 8px;
  padding: 36px 30px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,0,0,0.1); }
.pillar .icon-placeholder { margin-bottom: 18px; }
.pillar-icon { margin-bottom: 18px; }
.pillar-icon img { width: 80px; height: 80px; object-fit: contain; display: block; }
.pillar h3 { margin-bottom: 12px; font-size: 1.2rem; color: var(--passion); }
.pillar p { font-size: 0.94rem; }

/* ---------- Ticket-stub class cards ---------- */
.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

.ticket-card {
  background: var(--spotlight);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.ticket-top {
  padding: 22px 22px 0;
}
.ticket-top .age { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--drama); }
.ticket-top .style-tag {
  font-size: 0.72rem;
  color: var(--passion-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticket-body { padding: 12px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.ticket-body p { font-size: 0.92rem; flex: 1; }

/* ---------- Staff grid ---------- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.staff-card {
  background: var(--spotlight);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  text-align: center;
}
.staff-photo {
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(135deg, var(--placeholder-bg), var(--placeholder-bg) 10px, #E4E0D9 10px, #E4E0D9 20px);
}
.staff-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.staff-info { padding: 20px 18px 24px; }
.staff-info h3 { font-size: 1.2rem; margin-bottom: 4px; color: var(--charcoal); }
.staff-role {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--passion-dark);
  margin-bottom: 12px;
}
.staff-classes { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Benefit grid (4-col) ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* ---------- Company snapshot ---------- */
.company-snap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.company-snap .img-placeholder { min-height: 380px; }
.company-facts { list-style: none; margin: 24px 0 28px; }
.company-facts li {
  display: flex;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--border-hairline);
  font-size: 0.95rem;
}
.company-facts li strong { min-width: 150px; display: inline-block; color: var(--drama); }

/* ---------- Testimonials ---------- */
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--spotlight);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--border-hairline);
}
.testimonial-card .stars { color: var(--passion-dark); margin-bottom: 14px; font-size: 0.95rem; }
.testimonial-card p.quote {
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 18px;
  font-size: 0.96rem;
}
.testimonial-name { font-weight: 700; font-size: 0.88rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- Local area / SEO section ---------- */
.area-band {
  background: var(--passion);
  color: var(--spotlight);
  padding: 50px 0;
}
.area-band .container { text-align: center; }
.area-band h3 { color: var(--spotlight); margin-bottom: 18px; font-size: 1.6rem; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  justify-content: center;
  list-style: none;
  font-size: 1.15rem;
  font-weight: 700;
}
.area-list li { padding: 0 16px; }
.area-list li:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.4); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--passion) 0%, #A82710 100%);
  color: var(--spotlight);
  text-align: center;
}
.final-cta h2 { color: var(--spotlight); margin-bottom: 16px; }
.final-cta p { max-width: 50ch; margin: 0 auto 32px; font-size: 1.05rem; color: rgba(255,255,255,0.92); }
.final-cta .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Social / Instagram feed ---------- */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.social-post {
  background: var(--spotlight);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform 0.2s ease;
}
.social-post:hover { transform: translateY(-4px); }
.social-post .img-placeholder { min-height: 0; aspect-ratio: 1; border-radius: 0; border: none; }
.social-post-meta { padding: 16px; }
.social-post-caption { font-size: 0.88rem; color: var(--charcoal); margin-bottom: 8px; line-height: 1.4; }
.social-post-likes { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.social-cta { text-align: center; margin-top: 36px; }
.social-cta p { margin-bottom: 16px; font-size: 1rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background-color: var(--drama);
  background-image:
    url('assets/background.jpg'),
    repeating-linear-gradient(135deg, var(--placeholder-bg), var(--placeholder-bg) 10px, #E4E0D9 10px, #E4E0D9 20px);
  background-size: cover;
  background-position: center;
  color: var(--spotlight);
  padding: 70px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, var(--tan-tint-soft), transparent 65%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--spotlight); margin-bottom: 16px; font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.page-hero p { color: #C9C6C2; max-width: 60ch; font-size: 1.05rem; }
.breadcrumb {
  font-size: 0.82rem;
  color: #928E88;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: #C9C6C2; }
.breadcrumb a:hover { color: var(--passion); }

/* ---------- Age pathway (Programs page) ---------- */
.pathway {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pathway-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-hairline);
  align-items: center;
}
.pathway-row:first-child { padding-top: 0; }
.pathway-age {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--passion);
  line-height: 1;
}
.pathway-age .sub { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 8px; }
.pathway-content h3 { margin-bottom: 10px; }
.pathway-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.pathway-head h3 { margin-bottom: 10px; }
.pathway-price {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--drama);
  white-space: nowrap;
}
.pathway-price .per {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-left: 2px;
}
.pathway-content p { margin-bottom: 12px; }
.pathway-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pathway-tags span {
  background: var(--tan-tint);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- FAQ / accordion-style (static) ---------- */
.faq-item {
  border-bottom: 1px solid var(--border-hairline);
  padding: 22px 0;
}
.faq-item h4 { text-transform: none; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; color: var(--drama); }
.faq-item p { font-size: 0.95rem; }

/* ---------- Two-column info (Contact page) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.location-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.location-card h3 { margin-bottom: 6px; font-size: 1.3rem; }
.location-card .tag { color: var(--passion-dark); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; display: block; }
.location-card address { font-style: normal; margin-bottom: 14px; font-size: 0.95rem; }
.location-card .img-placeholder { min-height: 180px; margin-bottom: 16px; }
.studio-map {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border-hairline);
}
.studio-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
  pointer-events: none;
}
.contact-detail-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-detail-row .icon-placeholder { width: 40px; height: 40px; font-size: 0.5rem; }
.contact-detail-row strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-muted); margin-bottom: 3px; }

/* Real icon container to replace .icon-placeholder once artwork is ready.
   e.g. <div class="icon-frame"><img src="assets/icon-call.png" alt=""></div>
   Sizes itself to whatever width/height context it's placed in (see the
   .contact-detail-row override just below for the 40px contact-icon size). */
.icon-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-frame img { width: 100%; height: 100%; object-fit: contain; }
.contact-detail-row .icon-frame { width: 20px; height: 20px; }

.form-embed-wrap {
  border-radius: var(--radius);
  max-width: 520px;
  margin: 0 auto;
}
.form-embed-frame {
  background: var(--spotlight);
  border-radius: 8px;
  overflow: hidden;
  min-height: 520px;
}
.form-embed-frame iframe { width: 100%; height: 900px; border: none; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--drama);
  color: #C9C6C2;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-logo img { height: 40px; margin-bottom: 16px; }
.footer-grid p { font-size: 0.88rem; color: #928E88; }
.footer-col h4 { color: var(--spotlight); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: #C9C6C2; }
.footer-col a:hover { color: var(--passion); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social .icon-placeholder { width: 38px; height: 38px; font-size: 0.5rem; }
.footer-bottom {
  border-top: 1px solid #2B2925;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #928E88;
}
.footer-legal { display: flex; gap: 12px; align-items: center; }
.footer-legal a { color: #928E88; }
.footer-legal a:hover { color: var(--passion); }

/* Legal / long-form content pages */
.legal-content { max-width: 820px; }
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--drama);
  margin: 36px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; font-size: 1rem; }
.legal-content ul, .legal-content ol { margin: 0 0 16px 22px; }
.legal-content li { margin-bottom: 8px; color: var(--text-muted); }
.legal-content a { color: var(--passion-dark); font-weight: 600; }
.legal-content .updated { font-size: 0.85rem; color: var(--placeholder-text); margin-bottom: 28px; }

/* Fees / tuition table (Contact page) */
.fees-wrap { margin-top: 8px; }
.fees-callout {
  background: var(--drama);
  color: var(--spotlight);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.fees-callout strong { font-size: 1.35rem; font-family: var(--font-display); display: block; }
.fees-callout span { font-size: 0.92rem; color: #C9C6C2; }
.fees-callout-muted {
  background: var(--tan-tint);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 24px;
}
.fees-callout-muted strong { font-size: 1rem; font-family: var(--font-body); font-weight: 700; display: block; margin-bottom: 2px; }
.fees-callout-muted span { font-size: 0.88rem; color: var(--text-muted); }
.fees-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--spotlight);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
}
.fees-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--passion-dark);
  padding: 16px 18px 6px;
}
.fees-table th, .fees-table td {
  text-align: left;
  padding: 12px 18px;
  border-top: 1px solid var(--border-hairline);
  font-size: 0.92rem;
  vertical-align: top;
}
.fees-table th { color: var(--charcoal); font-weight: 700; }
.fees-table th.price { text-align: right; }
.fees-table td.price { white-space: nowrap; font-weight: 700; color: var(--drama); text-align: right; }
.fees-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.style-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 0; }
.style-list span {
  background: var(--tan-tint);
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .company-snap { grid-template-columns: 1fr; }
  .testimonial-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pathway-row { grid-template-columns: 1fr; gap: 14px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .topbar-contact { gap: 12px; }
  .topbar .container { justify-content: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

body.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--spotlight);
  padding: 20px 24px;
  border-bottom: 3px solid var(--drama);
  gap: 18px;
}
