/* =====================================================
   NEW YORK MASSAGE INSTITUTE — Global Stylesheet
   Palette: Gold & Black
   ===================================================== */

:root {
  --sage:        #C9A84C;
  --sage-light:  #E2C97E;
  --sage-dark:   #A07830;
  --stone:       #2A2A2A;
  --stone-light: #F5F0E8;
  --stone-dark:  #1A1A1A;
  --ink:         #111111;
  --ink-soft:    #2C2C2C;
  --white:       #FDFCF8;
  --grey:        #7A7570;
  --grey-light:  #E8E4DA;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.12);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.16);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.22);

  --nav-h:       72px;
  --max-w:       1160px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--ink-soft); max-width: 68ch; }
.lead { font-size: 1.15rem; line-height: 1.7; }
.overline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
/* ── Gold accent on dark backgrounds ── */
.cta-band .overline,
.hero .overline { color: var(--sage-light); }

/* ── Layout helpers ─────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 120px 0; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.22s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--sage); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage-dark);
}
.btn--outline:hover { background: var(--sage-dark); color: var(--white); }
.btn--white {
  background: var(--white);
  color: var(--sage-dark);
}
.btn--white:hover { background: var(--stone-light); }

/* ── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-light);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-text span:first-child {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.nav__logo-text span:last-child {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--sage-dark); background: rgba(201,168,76,0.08); }
.nav__links a.active { color: var(--sage-dark); }
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav__dropdown-toggle::after {
  content: '▾';
  font-size: 0.7rem;
  color: var(--grey);
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 200;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.82rem;
  border-radius: var(--radius);
  color: var(--ink-soft);
  transition: background 0.15s, color 0.15s;
}
.nav__dropdown-menu a:hover { background: rgba(201,168,76,0.08); color: var(--sage-dark); }
.nav__cta {
  margin-left: 16px;
  padding: 10px 22px !important;
  font-size: 0.78rem !important;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A 0%, #111111 55%, #0D0D0D 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(160,120,48,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); }
.hero__title { margin-bottom: 24px; }
.hero__title em {
  font-style: normal;
  color: var(--sage-light);
  border-bottom: 2px solid var(--sage);
}
.hero__title { color: var(--white) !important; }
.hero__text { margin-bottom: 40px; color: rgba(253,252,248,0.75) !important; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__logo-frame {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(201,168,76,0.35), 0 0 60px rgba(201,168,76,0.15);
}
.hero__logo-frame::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.3);
}
.hero__logo-frame img {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: brightness(0) invert(1) sepia(1) saturate(0.5) hue-rotate(5deg) brightness(1.1) drop-shadow(0 0 20px rgba(201,168,76,0.4));
}
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--sage-light);
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(253,252,248,0.55);
  letter-spacing: 0.05em;
}

/* ── Section header ─────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .overline { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { margin: 0 auto; }

/* ── Program Cards ──────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.programs-grid--featured {
  grid-template-columns: 1fr;
  margin-bottom: 28px;
}
.programs-grid--all {
  grid-template-columns: repeat(3, 1fr);
}
.program-card--wide {
  display: grid;
  grid-template-rows: 6px 1fr;
}
.program-card--wide .program-card__banner {
  height: 6px;
}
.program-card--wide .program-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 48px;
  align-items: start;
}
.program-card--wide .program-card__badge {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.program-card--wide .program-card__hours {
  grid-column: 1;
}
.program-card--wide .program-card__title {
  grid-column: 1;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}
.program-card--wide .program-card__desc {
  grid-column: 1;
}
.program-card--wide .program-card__features {
  grid-column: 2;
  grid-row: 2 / 5;
  margin-top: 4px;
  min-width: 260px;
}
.program-card--wide .btn {
  grid-column: 1;
  justify-self: start;
}
.program-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: #fff;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.program-card__banner {
  height: 6px;
  background: var(--sage);
}
.program-card--featured .program-card__banner { background: var(--sage-dark); }
.program-card--sports .program-card__banner { background: var(--stone-dark); }
.program-card__body { padding: 32px 28px; }
.program-card__hours {
  display: inline-block;
  padding: 5px 12px;
  background: var(--stone-light);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: 16px;
}
.program-card__title { margin-bottom: 12px; }
.program-card__desc { font-size: 0.9rem; margin-bottom: 28px; }
.program-card__features {
  margin-bottom: 28px;
}
.program-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-light);
}
.program-card__features li:last-child { border-bottom: none; }
.program-card__features li::before {
  content: '✓';
  color: var(--sage-dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Why NYМИ Strip ─────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.why-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(201,168,76,0.25);
}
.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; max-width: none; }

/* ── CTA Band ───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1A1400 0%, #0D0D0D 50%, #000000 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(201,168,76,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2, .cta-band p { color: var(--white); }
.cta-band p { opacity: 0.8; }
.cta-band .overline { color: var(--sage-light); }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ── Testimonials ───────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--sage);
  opacity: 0.4;
}
.testimonial-card__text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: none;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.88rem; }
.testimonial-card__prog { font-size: 0.78rem; color: var(--grey); }
.testimonial-card__stars { color: #D4AF37; font-size: 0.85rem; margin-bottom: 4px; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: #080808;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand img { height: 52px; width: 52px; object-fit: contain; filter: brightness(0) invert(1); }
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}
.footer__brand-desc { font-size: 0.85rem; line-height: 1.7; max-width: 28ch; }
.footer h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--sage); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer__contact-item span:first-child { color: var(--sage-light); flex-shrink: 0; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--sage); }

/* ── Page Hero (inner pages) ────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, #1A1400 0%, #111111 55%, #0D0D0D 100%);
  padding-bottom: 64px;
  padding-top: calc(var(--nav-h) + 64px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.page-hero .overline { margin-bottom: 12px; color: var(--sage-light); }
.page-hero h1 { margin-bottom: 16px; color: var(--white); }
.page-hero p { font-size: 1.1rem; color: rgba(253,252,248,0.75); }
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(253,252,248,0.85);
}
.page-hero__badge span:first-child { color: var(--sage-light); }

/* ── Curriculum Table ───────────────────────────────── */
.curriculum { background: var(--stone-light); }
.curriculum-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.curriculum-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
}
.curriculum-item__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}
.curriculum-item__title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.curriculum-item__hrs {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ── Outcomes ───────────────────────────────────────── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.outcome-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.outcome-card h4 { margin-bottom: 10px; }
.outcome-card p { font-size: 0.88rem; max-width: none; }

/* ── Certificate Verify ─────────────────────────────── */
.verify-box {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.verify-box h2 { text-align: center; margin-bottom: 12px; }
.verify-box > p { text-align: center; margin: 0 auto 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group input::placeholder { color: var(--grey); }
.verify-result {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius);
  display: none;
}
.verify-result--success {
  background: rgba(201,168,76,0.06);
  border: 1.5px solid rgba(201,168,76,0.35);
}
.verify-result--error {
  background: rgba(220,60,60,0.06);
  border: 1.5px solid rgba(220,60,60,0.3);
}
.verify-result__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.verify-result__status--ok { color: var(--sage); }
.verify-result__status--err { color: #c0392b; }
.verify-result__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.verify-result__row:last-child { border-bottom: none; }
.verify-result__row strong { min-width: 130px; color: var(--ink); font-weight: 600; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-light);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  user-select: none;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--sage-dark);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.92rem;
  max-width: none;
}

/* ── About ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-seal {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, #1A1400, #111111);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.25);
  box-shadow: var(--shadow-md), 0 0 40px rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-seal img { width: 240px; height: 240px; object-fit: contain; }
.timeline { position: relative; padding-left: 24px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--sage-dark), var(--sage));
}
.timeline-item {
  position: relative;
  padding: 0 0 32px 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage-dark);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--sage-dark);
}
.timeline-item__year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; max-width: none; }

/* ── Staff Grid ─────────────────────────────────────── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.staff-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.staff-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(201,168,76,0.2);
}
.staff-card h4 { margin-bottom: 4px; }
.staff-card__title { font-size: 0.8rem; color: var(--grey); margin-bottom: 8px; }
.staff-card__bio { font-size: 0.82rem; color: var(--ink-soft); max-width: none; }

/* ── Accreditation ──────────────────────────────────── */
.accred-strip {
  background: linear-gradient(135deg, #141200 0%, #1A1A1A 100%);
  padding: 48px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.accred-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.accred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(253,252,248,0.6);
}
.accred-item__icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201,168,76,0.25);
}
.accred-item strong { display: block; color: var(--white); font-size: 0.88rem; }

/* ── Mobile ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__logo-frame { width: 280px; height: 280px; margin: 0 auto; }
  .hero__logo-frame img { width: 190px; height: 190px; }
  .hero__stats { justify-content: center; }
  .hero__actions { justify-content: center; }
  .programs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .programs-grid--all { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .program-card--wide .program-card__body { grid-template-columns: 1fr; }
  .program-card--wide .program-card__features { grid-column: 1; grid-row: auto; min-width: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .curriculum-list { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .section { padding: 64px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr 1fr; }
  .verify-box { padding: 32px 24px; }
  .programs-grid--all { grid-template-columns: 1fr; max-width: 480px; }
}

/* ── Utilities ──────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.bg-stone { background: var(--stone-light); }
.divider { width: 48px; height: 2px; background: linear-gradient(to right, var(--sage-dark), var(--sage)); margin: 20px 0; }
.divider--center { margin: 20px auto; }
