/* ============================================================
   URSC — tursc.academy
   Spiritual Lotus Palette · Lora + Source Sans 3
   ============================================================ */

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --color-navy:        oklch(20% 0.07 258);   /* #1B2A4A */
  --color-navy-deep:   oklch(15% 0.06 258);
  --color-gold:        oklch(72% 0.12 82);    /* #C9A84C */
  --color-gold-deep:   oklch(62% 0.13 82);
  --color-pink:        oklch(75% 0.08 10);    /* #E8A0B0 */
  --color-lavender:    oklch(65% 0.09 295);   /* #9B8EC4 */
  --color-white:       oklch(100% 0 0);
  --color-grey-light:  oklch(97% 0 0);
  --color-text:        oklch(25% 0.03 258);
  --color-text-mid:    oklch(35% 0.02 258);
  --color-text-muted:  oklch(45% 0.02 258);
  --color-border:      oklch(85% 0.01 258);

  --font-heading: 'Lora', Georgia, serif;
  --font-body:    'Source Sans 3', Arial, sans-serif;

  --nav-height:   88px;
  --max-width:    1300px;
  --section-pad:  100px 48px;
  --radius:       6px;
  --shadow:       0 4px 20px oklch(20% 0.07 258 / 0.06);
  --shadow-nav:   0 2px 14px oklch(20% 0.07 258 / 0.10);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; }
::selection { background: oklch(72% 0.12 82 / 0.3); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Focus visible ────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  box-shadow: var(--shadow-nav);
  transition: box-shadow 0.2s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
}
.nav-links a {
  color: var(--color-navy);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-gold-deep);
}

.nav-cta {
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
  min-height: 44px;
}
.nav-cta:hover { background: var(--color-gold-deep); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Shared section helpers ───────────────────────────────── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.gold-rule {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 0 auto 24px;
  border: none;
}

.section-centered { text-align: center; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--color-navy);
  padding: 110px 48px 90px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeIn 0.6s ease;
}
.hero--home {
  padding: 130px 48px 110px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 58px);
  color: var(--color-white);
  max-width: 820px;
  line-height: 1.1;
}
.hero-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--color-gold);
}
.hero p {
  font-size: 18px;
  color: oklch(90% 0.01 258);
  max-width: 680px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  padding: 16px 34px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.15s;
  min-height: 44px;
  line-height: 1;
}
.btn-primary:hover { background: var(--color-gold-deep); }

.btn-primary--dark {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn-primary--dark:hover { background: oklch(25% 0.07 258); }

.link-arrow {
  color: var(--color-white);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 1px;
  transition: color 0.15s;
}
.link-arrow:hover { color: var(--color-gold); }

.link-underline {
  color: var(--color-navy);
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 2px;
  transition: color 0.15s;
}
.link-underline:hover { color: var(--color-gold-deep); }

/* ── Mission strip ────────────────────────────────────────── */
.mission-strip {
  background: var(--color-grey-light);
  padding: var(--section-pad);
}
.mission-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.mission-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.mission-icon {
  width: 64px;
  height: 64px;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.mission-icon--gold     { background: var(--color-gold);     color: var(--color-navy); }
.mission-icon--lavender { background: var(--color-lavender); color: var(--color-white); }
.mission-icon--pink     { background: var(--color-pink);     color: var(--color-navy); }
.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  color: var(--color-navy);
}
.mission-card p {
  font-size: 16px;
  color: var(--color-text-mid);
  line-height: 1.6;
}

/* ── Founder section ──────────────────────────────────────── */
.founder-section {
  background: var(--color-white);
  padding: var(--section-pad);
}
.founder-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 70px;
  align-items: flex-start;
}
.founder-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-grey-light);
  border: 4px solid var(--color-gold);
}
.founder-photo--large {
  width: 280px;
  height: 280px;
}
.founder-photo-placeholder {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--color-grey-light);
  border: 2px dashed var(--color-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}
.founder-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founder-content h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--color-navy);
}
.founder-credentials {
  font-weight: 600;
  color: var(--color-gold-deep);
  font-size: 16px;
}
.founder-bio {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.75;
}
.pull-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--color-gold-deep);
  text-align: center;
  margin-top: 10px;
}
.founder-meta {
  font-size: 15px;
  color: var(--color-text-muted);
}
.credential-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.chip {
  background: var(--color-grey-light);
  color: var(--color-navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ── Academic Vision teaser ───────────────────────────────── */
.vision-teaser {
  background: var(--color-grey-light);
  padding: var(--section-pad);
  text-align: center;
}
.vision-teaser h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--color-navy);
  margin-bottom: 18px;
}
.vision-teaser .intro {
  font-size: 17px;
  color: var(--color-text-mid);
  max-width: 760px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.program-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
  text-align: left;
}
.program-card-home {
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.program-card-home .card-icon {
  font-size: 22px;
  color: var(--color-gold-deep);
  margin-bottom: 10px;
}
.program-card-home h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--color-navy);
}
.vision-disclaimer {
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 24px;
}

/* ── Paris partnership ────────────────────────────────────── */
.paris-section {
  background: var(--color-navy);
  padding: var(--section-pad);
  text-align: center;
}
.paris-section h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 18px;
}
.paris-section p {
  font-size: 17px;
  color: oklch(85% 0.01 258);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--color-gold);
  padding: 80px 48px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-navy);
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 17px;
  color: oklch(25% 0.05 258);
  margin-bottom: 30px;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-navy-deep);
  padding: 60px 48px 40px;
  color: oklch(90% 0.01 258);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-gold);
}
.footer-nav {
  display: flex;
  gap: 30px;
  list-style: none;
  font-size: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: oklch(90% 0.01 258);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--color-gold); }
.footer-contact { font-size: 14px; }
.footer-legal {
  font-size: 12px;
  color: oklch(60% 0.02 258);
  max-width: 700px;
  line-height: 1.6;
}

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--color-navy);
  padding: 110px 48px 90px;
  text-align: center;
  animation: fadeIn 0.6s ease;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero .hero-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--color-gold);
}

/* ── Mission & Vision (About) ─────────────────────────────── */
.mission-vision {
  background: var(--color-white);
  padding: var(--section-pad);
}
.mission-vision .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.mission-vision h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-navy);
  margin-bottom: 14px;
}
.mission-vision p { line-height: 1.75; }

/* ── Spiritual Foundation ─────────────────────────────────── */
.spiritual-section {
  background: oklch(65% 0.09 295 / 0.12);
  padding: var(--section-pad);
  text-align: center;
}
.spiritual-section h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-navy);
  margin-bottom: 20px;
}
.spiritual-section p {
  font-size: 17px;
  color: var(--color-text);
  max-width: 820px;
  margin: 0 auto 30px;
  line-height: 1.8;
}
.spiritual-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  color: var(--color-gold-deep);
}

/* ── Operating Territories ────────────────────────────────── */
.territories-section {
  background: var(--color-grey-light);
  padding: var(--section-pad);
}
.territories-section h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 40px;
}
.territories-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.territory-card {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.territory-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-navy);
  margin-bottom: 12px;
}
.territory-card p {
  font-size: 16px;
  color: var(--color-text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.status-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
}
.status-pill--gold     { background: oklch(72% 0.12 82 / 0.2); color: oklch(50% 0.1 82); }
.status-pill--lavender { background: oklch(65% 0.09 295 / 0.2); color: oklch(45% 0.09 295); }

/* ── Compliance banner ────────────────────────────────────── */
.compliance-banner {
  padding: 50px 48px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
.compliance-banner-inner {
  border: 2px solid var(--color-gold);
  background: var(--color-grey-light);
  border-radius: var(--radius);
  padding: 28px 34px;
}
.compliance-label {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 14px;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
}
.compliance-banner-inner p {
  font-size: 16px;
  color: oklch(25% 0.03 258);
  line-height: 1.7;
}

/* ── Program cards (academics page) ──────────────────────── */
.programs-grid {
  padding: 70px 48px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.program-card {
  background: var(--color-white);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dev-pill {
  align-self: flex-start;
  background: oklch(72% 0.12 82 / 0.2);
  color: oklch(50% 0.1 82);
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
}
.program-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  color: var(--color-navy);
}
.program-card h3 .fr {
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  color: var(--color-text-muted);
}
.program-card p {
  font-size: 15px;
  color: var(--color-text-mid);
  line-height: 1.7;
}

/* ── Accreditation pathways ───────────────────────────────── */
.accreditation-section {
  background: var(--color-grey-light);
  padding: 90px 48px 100px;
}
.accreditation-section h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--color-navy);
  text-align: center;
  margin-bottom: 40px;
}

/* ── Contact page ─────────────────────────────────────────── */
.contact-section {
  background: var(--color-white);
  padding: var(--section-pad);
}
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-details h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-navy);
}
.contact-item-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 16px;
  color: var(--color-text);
}

/* ── Form ─────────────────────────────────────────────────── */
.interest-form {
  background: var(--color-grey-light);
  padding: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.interest-form h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-navy);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 15px;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  outline: none;
}
.form-group textarea { resize: vertical; }
.form-submit {
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s;
  min-height: 44px;
  margin-top: 8px;
}
.form-submit:hover { background: var(--color-gold-deep); }
.form-fine-print {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Hero logo (large crest above headline) ──────────────── */
.hero-logo {
  width: clamp(110px, 13vw, 170px);
  height: clamp(110px, 13vw, 170px);
  object-fit: contain;
  filter: drop-shadow(0 4px 24px oklch(72% 0.12 82 / 0.35));
  margin-bottom: 8px;
}

/* ── Footer parent company logo ───────────────────────────── */
.footer-parent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid oklch(35% 0.03 258);
}
.footer-parent-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-parent-text {
  font-size: 13px;
  color: oklch(65% 0.02 258);
  line-height: 1.5;
  text-align: left;
}
.footer-parent-text strong {
  display: block;
  color: oklch(78% 0.02 258);
  font-size: 14px;
  margin-bottom: 2px;
}

/* ── Aerial photo placeholder ─────────────────────────────── */
.aerial-band {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, var(--color-navy) 0%, oklch(28% 0.06 258) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: oklch(70% 0.02 258);
  font-size: 15px;
  font-style: italic;
}

/* ── Generic section heading ──────────────────────────────── */
.section-heading {
  font-family: var(--font-heading);
  color: var(--color-navy);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile first
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  :root {
    --section-pad: 60px 24px;
  }

  /* Nav */
  .site-nav {
    padding: 0 24px;
    position: relative;
  }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-nav);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .nav-menu.is-open { display: flex; }
  .nav-links {
    flex-direction: column;
    gap: 16px;
  }
  .nav-cta { width: 100%; text-align: center; }

  /* Hero */
  .hero, .hero--home {
    padding: 70px 24px 60px;
    gap: 16px;
  }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary { width: 100%; text-align: center; }

  /* Mission strip */
  .mission-strip .section-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Founder */
  .founder-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .founder-photo-placeholder,
  .founder-photo,
  .founder-photo--large {
    width: 200px;
    height: 200px;
  }

  /* Academic Vision teaser */
  .program-grid-home {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Paris + CTA */
  .paris-section, .cta-band { padding: 60px 24px; }
  .cta-band .btn-primary { width: 100%; text-align: center; }

  /* Mission & Vision (About) */
  .mission-vision .section-inner { grid-template-columns: 1fr; gap: 36px; }

  /* Territories */
  .territories-grid { grid-template-columns: 1fr; }

  /* Programs grid */
  .programs-grid {
    grid-template-columns: 1fr;
    padding: 50px 24px 70px;
  }

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Compliance banner */
  .compliance-banner { padding: 40px 24px 0; }

  /* Footer */
  .site-footer { padding: 50px 24px 32px; }
  .footer-nav { gap: 16px; }

  /* Page hero */
  .page-hero { padding: 70px 24px 60px; }

  /* Aerial band */
  .aerial-band { height: 200px; }

  /* Accreditation */
  .accreditation-section { padding: 60px 24px; }
  .territories-section { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .program-grid-home { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
}

/* ═══════════════════════════════════════════════════════════
   SUPPLEMENTARY — classes used in inner pages
   ═══════════════════════════════════════════════════════════ */

/* Compliance banner — direct styling (no inner wrapper needed) */
.compliance-banner {
  max-width: var(--max-width);
  margin: 50px auto 0;
  padding: 0 48px;
}
.compliance-banner strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  margin-bottom: 10px;
}
.compliance-banner p {
  font-size: 16px;
  color: oklch(25% 0.03 258);
  line-height: 1.7;
}
/* override: wrap the content in a visible box */
.compliance-banner {
  border: 2px solid var(--color-gold);
  background: var(--color-grey-light);
  border-radius: var(--radius);
  padding: 28px 34px;
  max-width: var(--max-width);
  margin: 50px auto 0;
}

/* Academics intro */
.academics-intro {
  background: var(--color-white);
  padding: var(--section-pad);
  text-align: center;
}
.academics-intro-inner {
  max-width: 860px;
  margin: 0 auto;
}
.academics-intro-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-navy);
  margin-bottom: 18px;
}
.academics-intro-inner p {
  font-size: 17px;
  color: var(--color-text-mid);
  line-height: 1.8;
}

/* Programs section & grid */
.programs-section {
  background: var(--color-grey-light);
  padding: var(--section-pad);
}
.programs-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.program-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 0;
  overflow: hidden;
}
.program-card-icon {
  background: var(--color-navy);
  color: var(--color-gold);
  font-size: 26px;
  padding: 28px 22px;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}
.program-card-body {
  padding: 28px 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.program-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-navy);
  line-height: 1.3;
}
.program-card-body p {
  font-size: 15px;
  color: var(--color-text-mid);
  line-height: 1.7;
}
.program-pill {
  display: inline-block;
  background: oklch(72% 0.12 82 / 0.2);
  color: oklch(50% 0.1 82);
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  align-self: flex-start;
}
.program-outcomes {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--color-text-mid);
  line-height: 1.8;
}
.program-note {
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Paris expanded note */
.paris-note {
  font-size: 15px;
  color: oklch(75% 0.01 258);
  max-width: 780px;
  margin: 16px auto 0;
  line-height: 1.7;
  font-style: italic;
}

/* Accreditation grid */
.accreditation-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.accreditation-card {
  background: var(--color-white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accreditation-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-navy);
}
.accreditation-card p {
  font-size: 15px;
  color: var(--color-text-mid);
  line-height: 1.7;
}

/* Contact page */
.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
}
.contact-details h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-navy);
  margin-bottom: 10px;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-block h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold-deep);
  margin-bottom: 4px;
}
.contact-block address,
.contact-block p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.7;
  font-style: normal;
}
.contact-block a { color: var(--color-navy); border-bottom: 1px solid var(--color-gold); }
.contact-block a:hover { color: var(--color-gold-deep); }
.contact-territory-note {
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-muted);
}
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-navy);
}
.form-intro {
  font-size: 16px;
  color: var(--color-text-mid);
  line-height: 1.7;
}
.interest-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--color-grey-light);
  padding: 36px;
  border-radius: var(--radius);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 15px;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color 0.15s;
  min-height: 44px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 13px;
}
.btn-submit {
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s;
  min-height: 44px;
  margin-top: 6px;
}
.btn-submit:hover { background: var(--color-gold-deep); }
.form-disclaimer {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Responsive additions for inner-page classes */
@media (max-width: 768px) {
  .compliance-banner { margin: 32px 24px 0; padding: 22px 24px; }
  .program-grid { grid-template-columns: 1fr; }
  .accreditation-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .academics-intro { padding: 50px 24px; }
  .programs-section { padding: 50px 24px; }
}
