/* ==========================================================================
   HOTEL SCHOOL — theme design system
   Navy + gold palette sampled from logo.png. Serif display (Fraunces) for
   headings, humanist sans (Be Vietnam Pro) for body — tuned for Vietnamese
   copy. BEM-ish class naming (.block__element, .block--modifier).
   ========================================================================== */

:root {
  /* Brand palette — 2026-08-12 pass: kept the navy+gold family (the logo
     mark itself is navy/gold, so a full hue swap would clash), but warmed
     and separated it from SHM's palette so the two sites — same tenant,
     same original template — stop reading as siblings: navy tilted toward
     a deeper teal-indigo, gold pushed to a warmer amber/terracotta, and
     --hs-green promoted from a minor utility color to a real secondary
     brand accent (heritage-academy pairing: ink + amber + forest, not
     just ink + gold like a generic consulting template). */
  --hs-navy: #0d2740;
  --hs-navy-2: #123452;
  --hs-navy-3: #1a4562;
  --hs-navy-deep: #071827;
  --hs-gold: #c67a35;
  --hs-gold-light: #e6b06a;
  --hs-gold-dark: #935f24;
  --hs-white: #ffffff;
  --hs-cream: #faf5e9;
  --hs-cream-2: #f1e9d5;
  --hs-text: #1c2733;
  --hs-muted: #5c6b7d;
  --hs-border: #e7e2d3;
  --hs-red: #b0392f;
  --hs-green: #3c7a52;
  --hs-green-light: #cfe3d5;

  /* Typography */
  --font-heading: "Fraunces", "Be Vietnam Pro", Georgia, serif;
  --font-body: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1220px;
  --container-narrow: 860px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 6px 18px rgba(14, 42, 77, 0.08);
  --shadow-card: 0 18px 45px rgba(14, 42, 77, 0.1);
  --shadow-lg: 0 30px 70px rgba(8, 26, 48, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--hs-text);
  background: var(--hs-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--hs-navy);
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  color: var(--hs-muted);
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

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

button {
  font-family: inherit;
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--hs-navy);
  color: var(--hs-white);
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Reveal-on-scroll (progressively enhanced by script.js) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hs-gold-dark);
  margin-bottom: 12px;
}

.eyebrow--light {
  color: var(--hs-gold-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--hs-gold-light), var(--hs-gold));
  color: var(--hs-navy-deep);
}

.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(193, 137, 46, 0.38);
}

.btn--navy {
  background: var(--hs-navy);
  color: var(--hs-white);
}

.btn--navy:hover {
  transform: translateY(-1px);
  background: var(--hs-navy-2);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--hs-white);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--outline-navy {
  border-color: var(--hs-navy);
  color: var(--hs-navy);
}

.btn--outline-navy:hover {
  background: var(--hs-navy);
  color: var(--hs-white);
}

.btn--lg {
  padding: 15px 32px;
  font-size: 15.5px;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--hs-navy);
  border-bottom: 2px solid var(--hs-gold);
  padding-bottom: 2px;
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--hs-navy-deep);
  color: var(--hs-gold-light);
  font-size: 12.5px;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 9px 24px;
  position: relative;
  text-align: center;
}

.announcement-bar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: absolute;
  right: 24px;
}

.lang-switch {
  opacity: 0.75;
}

.announcement-bar__close {
  background: none;
  border: none;
  color: inherit;
  font-size: 17px;
  cursor: pointer;
  line-height: 1;
}

.announcement-bar.is-hidden {
  display: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14, 42, 77, 0.78);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: var(--hs-navy);
  box-shadow: 0 6px 24px rgba(8, 26, 48, 0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--hs-white);
  padding: 3px;
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand__name strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hs-white);
}

.brand__name em {
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--hs-gold-light);
}

.main-nav {
  display: flex;
  align-items: center;
  /* 8 links (longest: "Chương trình đào tạo", "Đội ngũ giảng viên") left
     under ~25px of slack at the header's own max-width even at a wide
     viewport — the header's own container caps how much room nav can ever
     get, so this wrapped to 2 lines on every desktop width, not just narrow
     ones. Tightened gap + link font-size below to fit with real margin. */
  gap: 14px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.15s ease;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--hs-gold-light);
}

.main-nav a.is-active {
  color: var(--hs-gold-light);
  border-bottom-color: var(--hs-gold);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--hs-white);
  border-radius: 2px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 14px 0;
  background: var(--hs-cream);
  border-bottom: 1px solid var(--hs-border);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  font-size: 12.5px;
  color: var(--hs-muted);
}

.breadcrumb__list a {
  color: var(--hs-navy);
  font-weight: 600;
}

.breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: var(--hs-border);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: 68px 0 60px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(193, 137, 46, 0.2), transparent 45%),
    linear-gradient(160deg, var(--hs-navy) 0%, var(--hs-navy-2) 55%, var(--hs-navy-3) 100%);
}

.page-hero__inner {
  position: relative;
  max-width: 760px;
}

.page-hero h1 {
  color: var(--hs-white);
  font-size: clamp(28px, 4.4vw, 46px);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  max-width: 620px;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--hs-cream) 0%, var(--hs-white) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
}

.hero__eyebrow {
  color: var(--hs-gold-dark);
}

.hero h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  color: var(--hs-gold-dark);
}

.hero__lead {
  font-size: 16.5px;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.hero__brochure {
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-navy);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 3.1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
    linear-gradient(150deg, var(--hs-navy-2) 0%, var(--hs-navy) 60%, var(--hs-navy-deep) 100%);
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero__visual::before {
  width: 55%;
  aspect-ratio: 1;
  right: -12%;
  top: -14%;
  background: radial-gradient(circle, rgba(230, 176, 106, 0.55), transparent 70%);
}

.hero__visual::after {
  width: 42%;
  aspect-ratio: 1;
  left: -10%;
  bottom: -12%;
  background: radial-gradient(circle, rgba(60, 122, 82, 0.4), transparent 70%);
}

.hero__visual-glyph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero__visual-glyph svg {
  width: 46%;
  height: 46%;
  opacity: 0.92;
}

.hero__stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--hs-navy);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero__stat-strip div {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat-strip div:last-child {
  border-right: none;
}

.hero__stat-strip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 25px;
  color: var(--hs-gold-light);
}

.hero__stat-strip span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Quick stat cards ---------- */
.quick-stats {
  padding: 48px 0 8px;
}

.quick-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hs-border);
  background: var(--hs-white);
  box-shadow: var(--shadow-sm);
}

.stat-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--hs-cream);
  color: var(--hs-gold-dark);
  flex-shrink: 0;
}

.stat-card__icon svg {
  width: 24px;
  height: 24px;
}

.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--hs-navy);
}

.stat-card span {
  font-size: 12.5px;
  color: var(--hs-muted);
}

/* ---------- Partners row ---------- */
.partners {
  padding: 52px 0 20px;
}

.partners__label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--hs-muted);
  margin-bottom: 26px;
  text-transform: uppercase;
}

.partners__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px;
  row-gap: 20px;
}

.partners__row span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--hs-navy);
  opacity: 0.5;
  letter-spacing: 0.02em;
}

/* ---------- Section head ---------- */
.section {
  padding: 88px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--cream {
  background: var(--hs-cream);
}

.section--navy {
  background: linear-gradient(160deg, var(--hs-navy) 0%, var(--hs-navy-3) 100%);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head__lead {
  max-width: 640px;
  font-size: 15.5px;
}

.section-head h2 {
  font-size: clamp(24px, 3vw, 34px);
}

/* ---------- About / pillars ---------- */
.about-teaser {
  padding: 88px 0;
}

.about-teaser__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.visual-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--hs-navy-2), var(--hs-navy));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  aspect-ratio: 4 / 3;
}

.visual-block--gold {
  background: linear-gradient(150deg, var(--hs-gold-light), var(--hs-gold));
  color: var(--hs-navy-deep);
}

.visual-block--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.06) 0px,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px,
    transparent 26px
  );
}

.visual-block svg {
  width: 34%;
  height: 34%;
  position: relative;
  opacity: 0.92;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 30px 0 26px;
}

.pillars__item svg {
  width: 26px;
  height: 26px;
  color: var(--hs-gold-dark);
  margin-bottom: 10px;
}

.pillars__item h3 {
  font-size: 15.5px;
  margin: 0 0 6px;
}

.pillars__item p {
  font-size: 13.5px;
  margin: 0;
}

/* ---------- Program cards ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.program-card__cover {
  position: relative;
  height: 168px;
  display: grid;
  place-items: center;
}

.program-card__cover svg {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.92);
}

.program-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hs-navy);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.program-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.program-card p {
  font-size: 13.5px;
  margin-bottom: 14px;
  flex: 1;
}

.program-card__meta {
  font-size: 12px;
  color: var(--hs-muted);
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.program-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.program-card a.link-arrow {
  align-self: flex-start;
}

.cover--1 { background: linear-gradient(150deg, #123563, #0e2a4d); }
.cover--2 { background: linear-gradient(150deg, #184180, #123563); }
.cover--3 { background: linear-gradient(150deg, #c1892e, #96691f); }
.cover--4 { background: linear-gradient(150deg, #e2bb73, #c1892e); }
.cover--5 { background: linear-gradient(150deg, #0e2a4d, #081a30); }
.cover--6 { background: linear-gradient(150deg, #c1892e, #184180); }

/* ---------- Why-choose reason band ---------- */
.reasons {
  padding: 84px 0;
  background: linear-gradient(160deg, var(--hs-navy-deep) 0%, var(--hs-navy) 60%, var(--hs-navy-3) 100%);
  color: var(--hs-white);
}

.reasons h2,
.reasons .eyebrow {
  color: var(--hs-white);
  text-align: center;
}

.reasons .eyebrow {
  color: var(--hs-gold-light);
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.reason-card {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.reason-card__num {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--hs-gold-light);
  display: block;
  margin-bottom: 10px;
}

.reason-card h3 {
  color: var(--hs-white);
  font-size: 14.5px;
  margin-bottom: 8px;
}

.reason-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin: 0;
}

/* ---------- Timeline (learning journey) ---------- */
.journey {
  padding: 88px 0;
}

.journey__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  margin-top: 20px;
}

.journey__track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--hs-border) 0 8px, transparent 8px 14px);
  z-index: 0;
}

.journey__step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.journey__step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--hs-navy);
  color: var(--hs-gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}

.journey__step h3 {
  font-size: 14.5px;
  margin-bottom: 6px;
}

.journey__step p {
  font-size: 12.5px;
  margin: 0;
}

/* Vertical timeline variant (used on program-detail & about pages) */
.timeline-v {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--hs-border);
  padding-left: 28px;
  margin-left: 10px;
}

.timeline-v__item {
  position: relative;
  padding-bottom: 34px;
}

.timeline-v__item:last-child {
  padding-bottom: 0;
}

.timeline-v__item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hs-gold);
  box-shadow: 0 0 0 4px var(--hs-cream);
}

.timeline-v__item h3 {
  font-size: 15.5px;
  margin-bottom: 4px;
}

.timeline-v__item p {
  font-size: 13.5px;
  margin: 0;
}

.timeline-v__year {
  font-family: var(--font-heading);
  color: var(--hs-gold-dark);
  font-weight: 700;
  font-size: 13.5px;
  display: block;
  margin-bottom: 4px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
}

.gallery-item__visual {
  height: 160px;
  display: grid;
  place-items: center;
  position: relative;
}

.gallery-item__visual svg {
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.92);
}

.gallery-item__caption {
  padding: 14px 16px 18px;
}

.gallery-item__caption h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.gallery-item__caption p {
  font-size: 12.5px;
  margin: 0;
}

.gallery--six .gallery-item__visual { height: 130px; }

/* ---------- Faculty cards ---------- */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.faculty-card {
  display: flex;
  flex-direction: column;
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.faculty-card__avatar {
  height: 150px;
  display: grid;
  place-items: center;
}

.faculty-card__avatar svg {
  width: 46px;
  height: 46px;
  color: rgba(255, 255, 255, 0.92);
}

.faculty-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 22px;
}

.faculty-card h3 {
  font-size: 15px;
  margin-bottom: 2px;
}

.faculty-card__title {
  font-size: 12px;
  color: var(--hs-gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.faculty-card p {
  font-size: 12.5px;
  margin-bottom: 10px;
}

.faculty-card a {
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--hs-navy);
}

/* ---------- Career icon grid ---------- */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.career-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.career-item__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--hs-gold-light), var(--hs-gold));
  color: var(--hs-navy-deep);
  flex-shrink: 0;
}

.career-item__icon svg {
  width: 22px;
  height: 22px;
}

.career-item h3 {
  color: var(--hs-white);
  font-size: 14px;
  margin: 0 0 4px;
}

.career-item p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  margin: 0;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--hs-cream);
}

.testimonial-card blockquote {
  margin: 0 0 20px;
  font-size: 14.5px;
  color: var(--hs-text);
  font-style: italic;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--hs-gold-light), var(--hs-gold));
  flex-shrink: 0;
}

.testimonial-card figcaption strong {
  display: block;
  font-size: 13.5px;
  color: var(--hs-navy);
}

.testimonial-card figcaption span {
  font-size: 12px;
  color: var(--hs-muted);
}

.stars {
  color: var(--hs-gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

/* ---------- News ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.news-card {
  background: var(--hs-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--hs-border);
  display: flex;
  flex-direction: column;
}

.news-card__cover {
  height: 130px;
}

.news-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card__tag {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--hs-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card h3 {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.4;
  flex: 1;
}

.news-card a.link-arrow {
  font-size: 12.5px;
}

.news-grid--listing {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------- Brochure CTA ---------- */
.brochure {
  padding: 0 0 88px;
}

.brochure__panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: var(--hs-cream-2);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.brochure__visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--hs-navy-2), var(--hs-navy));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
}

.brochure__visual svg {
  width: 30%;
  height: 30%;
  color: var(--hs-gold-light);
}

.brochure__content h2 {
  font-size: 24px;
}

.brochure__list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 16px 0 24px;
}

.brochure__list li {
  font-size: 13.5px;
  color: var(--hs-text);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.brochure__list li::before {
  content: "✓";
  color: var(--hs-gold-dark);
  font-weight: 700;
}

.brochure__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.brochure__form input,
.brochure__form select {
  border: 1.5px solid var(--hs-border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 13.5px;
  font-family: inherit;
}

.brochure__form button {
  grid-column: 1 / -1;
}

/* ---------- Forms (registration / contact) ---------- */
.form-panel {
  background: var(--hs-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 16px;
}

.form-panel--embedded {
  box-shadow: var(--shadow-card);
  border: 1px solid var(--hs-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-panel label {
  /* See the matching comment on .contact__form label in the SHM theme —
     display:grid split the label text, the required-field asterisk span,
     and the field itself onto three separate lines. */
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-text);
}

.form-panel label span.required {
  color: var(--hs-red);
  margin-left: 2px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1.5px solid var(--hs-border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  color: var(--hs-text);
  background: var(--hs-white);
}

.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
  outline: 2px solid var(--hs-gold);
  outline-offset: 1px;
  border-color: var(--hs-gold);
}

.form-note {
  margin: 0;
  font-size: 13px;
  color: var(--hs-navy);
  font-weight: 600;
  min-height: 1.2em;
}

.form-note.is-error {
  color: var(--hs-red);
}

.registration {
  padding: 88px 0;
  background: linear-gradient(160deg, var(--hs-navy) 0%, var(--hs-navy-3) 100%);
}

.registration__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.registration__copy h2 {
  color: var(--hs-white);
  font-size: clamp(24px, 3vw, 32px);
}

.registration__copy > p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 26px;
}

.registration__info {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.registration__info div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.registration__info svg {
  width: 18px;
  height: 18px;
  color: var(--hs-gold-light);
  flex-shrink: 0;
}

/* .registration__info is styled for the dark .registration band (white
   text on navy) — lien-he/index.html reuses it inside a plain white
   .section for its address/phone/hours block, which made that text
   invisible (white on white). Override just that context. */
.section .registration__info div {
  color: var(--hs-text);
}

.section .registration__info svg {
  color: var(--hs-gold);
}

/* ---------- FAQ accordion ---------- */
.faq {
  display: grid;
  gap: 12px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--hs-border);
  border-radius: var(--radius-md);
  background: var(--hs-white);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--hs-navy);
  cursor: pointer;
}

.faq-item__q::after {
  content: "+";
  font-size: 20px;
  color: var(--hs-gold-dark);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__q::after {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item__a p {
  padding: 0 20px 20px;
  margin: 0;
  font-size: 14px;
}

.faq-item.is-open .faq-item__a {
  max-height: 400px;
}

/* ---------- Map placeholder ---------- */
.map-placeholder {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--hs-cream-2), var(--hs-cream));
  border: 1px solid var(--hs-border);
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(14, 42, 77, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 42, 77, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-placeholder__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
}

.map-placeholder__pin svg {
  width: 40px;
  height: 40px;
  color: var(--hs-gold-dark);
}

.map-placeholder__pin span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--hs-navy);
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ---------- Article page ---------- */
.article {
  padding: 56px 0 96px;
}

.article__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--hs-muted);
  margin-bottom: 14px;
}

.article__meta span {
  font-weight: 600;
  color: var(--hs-gold-dark);
}

.article h1 {
  font-size: clamp(26px, 4vw, 40px);
  max-width: var(--container-narrow);
}

.article__cover {
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  margin: 28px auto 40px;
  max-width: var(--container-narrow);
  background: linear-gradient(150deg, var(--hs-navy-2), var(--hs-navy));
  box-shadow: var(--shadow-card);
}

.article__body {
  max-width: var(--container-narrow);
  margin: 0 auto;
  font-size: 16px;
}

.article__body p {
  color: var(--hs-text);
  margin-bottom: 1.3em;
}

.article__body h2 {
  font-size: 22px;
  margin-top: 1.6em;
}

.article__body h3 {
  font-size: 17px;
  margin-top: 1.3em;
}

.article__body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 1.3em;
  color: var(--hs-text);
}

.article__body li {
  margin-bottom: 8px;
}

.article__body blockquote {
  border-left: 3px solid var(--hs-gold);
  padding-left: 18px;
  margin: 1.6em 0;
  font-style: italic;
  color: var(--hs-navy);
  font-size: 17px;
}

.article__share {
  max-width: var(--container-narrow);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hs-border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--hs-muted);
}

/* ---------- Accreditation / info note ---------- */
.info-note {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--hs-cream);
  border: 1px solid var(--hs-border);
  font-size: 13.5px;
  color: var(--hs-text);
}

.info-note svg {
  width: 22px;
  height: 22px;
  color: var(--hs-gold-dark);
  flex-shrink: 0;
}

/* ---------- Numbered process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hs-border);
  background: var(--hs-white);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-card__num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--hs-navy);
  color: var(--hs-gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 13px;
  margin: 0;
}

/* ---------- Simple two-col content block ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag-list li {
  list-style: none;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--hs-cream);
  color: var(--hs-navy);
  border: 1px solid var(--hs-border);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--hs-text);
}

.check-list li::before {
  content: "✓";
  color: var(--hs-white);
  background: var(--hs-gold);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Program detail meta bar ---------- */
.program-meta-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--hs-cream);
  border: 1px solid var(--hs-border);
  margin: 28px 0 44px;
}

.program-meta-bar div {
  text-align: center;
}

.program-meta-bar strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--hs-navy);
  margin-bottom: 4px;
}

.program-meta-bar span {
  font-size: 11.5px;
  color: var(--hs-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Curriculum outline list ---------- */
.curriculum {
  display: grid;
  gap: 14px;
}

.curriculum-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hs-border);
  background: var(--hs-white);
}

.curriculum-item__num {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--hs-gold-dark);
  font-size: 14px;
}

.curriculum-item h3 {
  font-size: 14.5px;
  margin-bottom: 4px;
}

.curriculum-item p {
  font-size: 13px;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--hs-navy-deep);
  padding: 72px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) 1.3fr;
  gap: 28px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__brand .brand__name strong {
  color: var(--hs-white);
}

.site-footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 14px 0 18px;
}

.site-footer__social {
  display: flex;
  gap: 10px;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--hs-white);
  font-size: 13px;
  font-weight: 700;
}

.site-footer h4 {
  color: var(--hs-white);
  font-family: var(--font-body);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--hs-gold-light);
}

.site-footer address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  line-height: 1.8;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__demo-note {
  color: var(--hs-gold-light);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .quick-stats__grid,
  .programs-grid,
  .gallery-grid,
  .faculty-grid,
  .careers-grid,
  .testimonials__grid,
  .news-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .reasons__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .journey__track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }
  .journey__track::before {
    display: none;
  }
  .about-teaser__grid,
  .registration__grid,
  .brochure__panel,
  .split {
    grid-template-columns: 1fr;
  }
  .about-teaser__grid .visual-block,
  .split .visual-block {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .program-meta-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .site-header.is-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--hs-navy);
    padding: 20px 24px 28px;
    gap: 6px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .site-header.is-open .main-nav a {
    width: 100%;
    padding: 10px 0;
  }
  .form-row,
  .brochure__form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header__actions .btn {
    display: none;
  }
}

@media (max-width: 720px) {
  .quick-stats__grid,
  .programs-grid,
  .gallery-grid,
  .faculty-grid,
  .careers-grid,
  .testimonials__grid,
  .news-grid,
  .steps,
  .reasons__grid,
  .journey__track {
    grid-template-columns: 1fr;
  }
  .hero__stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__stat-strip div:nth-child(2) {
    border-right: none;
  }
  .hero__stat-strip div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 56px 0 44px;
  }
  .section,
  .about-teaser,
  .reasons,
  .journey,
  .registration,
  .brochure {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .brochure {
    padding-top: 0;
  }
  .brochure__panel {
    padding: 26px;
  }
  .form-panel {
    padding: 24px;
  }
  .announcement-bar__inner {
    flex-direction: column;
    gap: 6px;
    padding: 10px 24px;
  }
  .announcement-bar__actions {
    position: static;
    right: auto;
  }
}
