@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

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

:root {
  --cream: #FAF8F4;
  --cream-dark: #F0EDE5;
  --amber: #D4871E;
  --amber-light: #E89E3A;
  --amber-dark: #B5710E;
  --graphite: #2C2C2C;
  --graphite-mid: #4A4A4A;
  --graphite-light: #6B6B6B;
  --gray-border: #D8D2C8;
  --gray-light: #E8E4DC;
  --white: #FFFFFF;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(44,44,44,0.08);
  --shadow-md: 0 4px 16px rgba(44,44,44,0.10);
  --shadow-lg: 0 8px 32px rgba(44,44,44,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--amber); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--amber-dark); }
img { max-width: 100%; height: auto; display: block; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--graphite);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--graphite-mid); }
p:last-child { margin-bottom: 0; }

.text-amber { color: var(--amber); }
.text-muted { color: var(--graphite-light); font-size: 0.9rem; }
.text-center { text-align: center; }
.text-serif { font-family: var(--font-serif); }

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 110px 0; }
.section--gray { background: var(--gray-light); }
.section--dark { background: var(--graphite); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--dark p, .section--dark li { color: #C8C2B8; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }

/* ─── HEADER ─── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--graphite);
  letter-spacing: -0.02em;
}
.logo span { color: var(--amber); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--graphite-mid);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--cream-dark);
  color: var(--amber);
}

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px 0;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.86rem;
  color: var(--graphite-mid);
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--cream-dark); color: var(--amber); }

.header-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.header-cta:hover { background: var(--amber-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--graphite);
  transition: 0.3s;
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  padding: 16px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--graphite-mid);
  border-bottom: 1px solid var(--gray-light);
}

/* ─── HERO ─── */
.hero {
  background: var(--white);
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--gray-border);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: block;
}
.hero-title { margin-bottom: 24px; font-size: clamp(2rem, 3.5vw, 2.8rem); }
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--graphite-mid);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-img-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}
.btn--primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--graphite);
  border-color: var(--gray-border);
}
.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: transparent;
}
.btn--ghost {
  background: transparent;
  color: var(--amber);
  border-color: transparent;
  padding-left: 0;
}
.btn--ghost:hover { color: var(--amber-dark); }
.btn--dark {
  background: var(--graphite);
  color: var(--cream);
  border-color: var(--graphite);
}
.btn--dark:hover { background: var(--graphite-mid); }
.btn--sm { font-size: 0.82rem; padding: 8px 18px; }
.btn--lg { font-size: 1rem; padding: 15px 32px; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.card-title { font-size: 1.1rem; margin-bottom: 10px; color: var(--graphite); }
.card-excerpt { font-size: 0.88rem; color: var(--graphite-light); line-height: 1.6; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--graphite-light);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.card--horizontal {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-radius: 10px;
}
.card--horizontal .card-img { aspect-ratio: auto; min-height: 160px; }

.card--program {
  border-left: 4px solid var(--amber);
  padding: 28px;
  border-radius: 0 10px 10px 0;
}
.card--stat {
  padding: 28px;
  text-align: center;
}
.card--stat .stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--amber);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.card--stat .stat-label { font-size: 0.88rem; color: var(--graphite-light); }

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-lead { font-size: 1.02rem; color: var(--graphite-light); line-height: 1.7; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--graphite-light);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--graphite-light); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep { color: var(--gray-border); }
.breadcrumb .current { color: var(--graphite-mid); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--graphite);
  padding: 60px 0 52px;
}
.page-hero h1 { color: var(--cream); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.page-hero p { color: #A8A29A; font-size: 1rem; max-width: 620px; }
.page-hero .breadcrumb { margin-bottom: 20px; }
.page-hero .breadcrumb a { color: #A8A29A; }
.page-hero .breadcrumb .sep { color: #5A5450; }
.page-hero .breadcrumb .current { color: var(--cream); }

/* ─── ARTICLE CONTENT ─── */
.article-content { font-size: 1.02rem; line-height: 1.8; }
.article-content h2 { margin: 2.5rem 0 1rem; }
.article-content h3 { margin: 2rem 0 0.75rem; }
.article-content p { margin-bottom: 1.2rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-content li { margin-bottom: 0.5rem; }
.article-content blockquote {
  border-left: 4px solid var(--amber);
  padding: 16px 24px;
  margin: 2rem 0;
  background: var(--cream-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--graphite);
}
.article-content img {
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.article-content table th,
.article-content table td {
  border: 1px solid var(--gray-border);
  padding: 10px 14px;
  text-align: left;
}
.article-content table th {
  background: var(--gray-light);
  font-weight: 600;
  color: var(--graphite);
}

/* ─── SIDEBAR ─── */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--amber);
}
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 8px 0; border-bottom: 1px solid var(--gray-light); font-size: 0.88rem; }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--graphite-mid); }
.sidebar-list a:hover { color: var(--amber); }

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--graphite);
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,135,30,0.12);
}
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }

.form-success {
  display: none;
  background: #F0FAF5;
  border: 1px solid #6BCB97;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-top: 20px;
}
.form-success.show { display: block; }
.form-success strong { color: #1E7F4D; display: block; font-size: 1.05rem; margin-bottom: 6px; }
.form-success p { color: #2E6B4A; font-size: 0.9rem; margin: 0; }

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

/* ─── TABS ─── */
.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--gray-border);
  gap: 4px;
  margin-bottom: 32px;
  overflow-x: auto;
}
.tab-btn {
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--graphite-light);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tab-btn.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── ACCORDION ─── */
.accordion-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.2s;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--graphite);
  border: none;
  width: 100%;
  text-align: left;
}
.accordion-header:hover { background: var(--cream-dark); }
.accordion-header.active { background: var(--cream-dark); color: var(--amber); }
.accordion-icon { font-size: 1.2rem; transition: transform 0.25s; flex-shrink: 0; }
.accordion-header.active .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 22px 20px;
  background: var(--white);
  font-size: 0.92rem;
  color: var(--graphite-mid);
  line-height: 1.7;
}
.accordion-body.open { display: block; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--graphite);
  padding: 40px 0;
}
.stats-bar .grid-4 { text-align: center; }
.stats-bar .stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-bar .stat-label { font-size: 0.85rem; color: #A8A29A; }

/* ─── TAGS ─── */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--cream-dark);
  color: var(--graphite-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tag--amber { background: rgba(212,135,30,0.12); color: var(--amber-dark); }
.tag--dark { background: var(--graphite); color: var(--cream); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* ─── LIST ITEMS ─── */
.check-list { list-style: none; }
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.94rem;
  color: var(--graphite-mid);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

.numbered-list { list-style: none; counter-reset: nl; }
.numbered-list li {
  counter-increment: nl;
  padding: 12px 0 12px 48px;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.94rem;
  color: var(--graphite-mid);
}
.numbered-list li::before {
  content: counter(nl, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--amber);
}

/* ─── PERSON CARD ─── */
.person-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
}
.person-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--amber);
}
.person-avatar img { width: 100%; height: 100%; object-fit: cover; }
.person-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.person-role { font-size: 0.82rem; color: var(--amber); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.person-bio { font-size: 0.86rem; color: var(--graphite-light); line-height: 1.6; }

/* ─── QUOTE BLOCK ─── */
.pull-quote {
  background: var(--graphite);
  color: var(--cream);
  padding: 48px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--amber);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: 24px;
  line-height: 1;
}
.pull-quote p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--cream);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.pull-quote cite { font-size: 0.85rem; color: var(--amber); font-style: normal; font-weight: 600; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-border);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--amber);
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--graphite); margin-bottom: 6px; }
.timeline-text { font-size: 0.88rem; color: var(--graphite-light); line-height: 1.6; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--graphite);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--cream); display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: #7A7470; line-height: 1.65; margin-bottom: 20px; }
.footer-address { font-size: 0.82rem; color: #7A7470; line-height: 1.9; }
.footer-address strong { color: #A8A29A; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A8A29A;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #3C3830;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.86rem; color: #7A7470; transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid #3C3830;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: #5A5450; margin: 0; }
.footer-policy-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-policy-links a { font-size: 0.8rem; color: #5A5450; }
.footer-policy-links a:hover { color: var(--amber); }

/* ─── NOTICE BARS ─── */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--graphite);
  color: #C8C2B8;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.cookie-notice p { color: #C8C2B8; margin: 0; }
.cookie-notice a { color: var(--amber); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}
.cookie-btn-decline {
  background: transparent;
  color: #7A7470;
  border: 1px solid #3C3830;
  padding: 9px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
}

/* ─── SEARCH BAR ─── */
.search-bar {
  display: flex;
  gap: 0;
  max-width: 480px;
}
.search-bar input {
  flex: 1;
  padding: 11px 16px;
  font-size: 0.9rem;
  border: 1px solid var(--gray-border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  background: var(--white);
  color: var(--graphite);
}
.search-bar input:focus { border-color: var(--amber); }
.search-bar button {
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.search-bar button:hover { background: var(--amber-dark); }

/* ─── DIVIDER ─── */
.divider { border: none; border-top: 1px solid var(--gray-border); margin: 40px 0; }
.divider--amber { border-top-color: var(--amber); }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: var(--cream-dark);
  border: 1px solid var(--gray-border);
  border-left: 4px solid var(--amber);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.highlight-box p { margin: 0; font-size: 0.93rem; }

/* ─── PROGRAM DETAIL ─── */
.program-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  margin-bottom: 32px;
}
.program-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--gray-light);
  padding: 28px;
  border-radius: 10px;
  margin-bottom: 32px;
}
.program-meta-item .meta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--graphite-light);
  font-weight: 600;
  margin-bottom: 4px;
}
.program-meta-item .meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--graphite);
}

/* ─── PAGINATION ─── */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 48px;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--graphite-mid);
  transition: all 0.2s;
}
.page-link:hover, .page-link.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

/* ─── POLICY PAGES ─── */
.policy-content h2 { font-size: 1.4rem; margin: 2.5rem 0 1rem; color: var(--graphite); }
.policy-content h3 { font-size: 1.1rem; margin: 2rem 0 0.75rem; color: var(--graphite); }
.policy-content p { margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.policy-content ul, .policy-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content li { margin-bottom: 0.5rem; font-size: 0.95rem; line-height: 1.7; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
.policy-content table th,
.policy-content table td { border: 1px solid var(--gray-border); padding: 10px 14px; text-align: left; }
.policy-content table th { background: var(--gray-light); font-weight: 600; }
.policy-meta {
  background: var(--cream-dark);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.86rem;
  color: var(--graphite-light);
}
.policy-toc {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.policy-toc h4 { font-size: 0.9rem; margin-bottom: 12px; color: var(--graphite); }
.policy-toc ol { padding-left: 1.2rem; }
.policy-toc li { font-size: 0.86rem; margin-bottom: 6px; }
.policy-toc a { color: var(--amber); }

/* ─── MAP PLACEHOLDER ─── */
.map-frame {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-sidebar { grid-template-columns: 1fr; }
  .program-meta-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-frame { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .card--horizontal { grid-template-columns: 1fr; }
  .card--horizontal .card-img { min-height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .pull-quote { padding: 32px 24px; }
  .pull-quote p { font-size: 1.15rem; }
  .program-header { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 50px; }
  .hero-actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .stats-bar .grid-4 { grid-template-columns: 1fr 1fr; }
  .cookie-notice { flex-direction: column; }
}
