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

:root {
  --navy: #1a2b4a;
  --navy-dark: #0f1c33;
  --navy-mid: #243558;
  --gray-100: #f7f8fa;
  --gray-200: #eef0f4;
  --gray-300: #d8dce6;
  --gray-400: #a8b0c0;
  --gray-500: #6b7789;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --peach: #e8856a;
  --peach-light: #f5a48e;
  --peach-dark: #c96b50;
  --white: #ffffff;
  --text-main: #1e2d40;
  --text-sub: #4a5568;
  --text-light: #7a8899;
  --border: #e2e6ef;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 4px rgba(26,43,74,0.07);
  --shadow-md: 0 4px 16px rgba(26,43,74,0.10);
  --shadow-lg: 0 8px 32px rgba(26,43,74,0.13);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ─── UTILITY ─────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }
.section--gray { background: var(--gray-100); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy-dark { background: var(--navy-dark); color: var(--white); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--peach);
  border: 1px solid var(--peach);
  border-radius: 3px;
  padding: 2px 9px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 16px;
}

.section-title--white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--text-sub);
  max-width: 600px;
  line-height: 1.7;
}

.section-sub--white { color: rgba(255,255,255,.75); }

.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--peach);
  margin: 16px 0 0;
  border-radius: 2px;
}

.divider--center { margin: 16px auto 0; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--peach);
  color: var(--white);
  border-color: var(--peach);
}
.btn--primary:hover { background: var(--peach-dark); border-color: var(--peach-dark); transform: translateY(-1px); }

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

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--peach);
  border-color: transparent;
  padding-left: 0;
}
.btn--ghost:hover { gap: 14px; }

.btn--sm { padding: 8px 20px; font-size: 13px; }
.btn--lg { padding: 15px 36px; font-size: 16px; }

/* ─── HEADER ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark span {
  color: var(--peach);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Navigation */
.site-nav { display: flex; align-items: center; gap: 4px; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gray-100); }

.nav-link svg { transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 200;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--gray-600);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-dropdown a:hover { background: var(--gray-100); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 300;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open { transform: translateX(0); display: block; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
  padding: 4px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--peach); }

.mobile-nav .sub-group { padding-left: 16px; }

.mobile-nav .sub-group a {
  font-size: 15px;
  color: var(--text-sub);
  padding: 10px 0;
}

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
}

.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,.4); }
.footer-brand .logo-mark { background: var(--peach); }
.footer-brand .logo-mark span { color: var(--white); }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-contact-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-info a,
.footer-contact-info span {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer-contact-info a:hover { color: var(--peach); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--peach); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,74,.95) 0%, rgba(15,28,51,.85) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-title em {
  font-style: italic;
  color: var(--peach-light);
}

.hero-text {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.hero-image-col { position: relative; }

.hero-image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--peach);
  border-radius: 8px;
  z-index: -1;
}

/* ─── CARDS ─────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-light);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.card:hover .card-title { color: var(--peach); }

.card-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  overflow: hidden;
  flex-shrink: 0;
}

.card-author-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
}

.card-read-time {
  font-size: 11px;
  color: var(--text-light);
}

/* Grid layouts */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── ARTICLE HERO ────────────────────────────────── */
.article-hero {
  padding: 56px 0 40px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--border);
}

.article-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.article-hero-cats {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 18px;
}

.article-excerpt {
  font-size: 18px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 24px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-light);
}

.article-byline-author { font-weight: 600; color: var(--text-main); }

/* ─── FEATURED LAYOUT ─────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}

.featured-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-card-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.featured-card-body { padding: 28px; }

.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.28;
  margin: 10px 0 14px;
  transition: color var(--transition);
}

.featured-title:hover { color: var(--peach); }

.side-list { display: flex; flex-direction: column; gap: 20px; }

.side-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.side-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.side-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.side-card-body { padding: 14px 14px 14px 0; }

.side-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 6px 0 6px;
  transition: color var(--transition);
}

.side-card:hover .side-card-title { color: var(--peach); }

.side-card-meta { font-size: 11px; color: var(--text-light); }

/* ─── COURSE CARDS ────────────────────────────────── */
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.course-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course-card-body { padding: 22px; }

.course-level {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--peach);
  margin-bottom: 8px;
}

.course-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.course-desc {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 16px;
  line-height: 1.6;
}

.course-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.course-meta span { display: flex; align-items: center; gap: 4px; }

/* ─── TEAM ────────────────────────────────────────── */
.team-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--gray-200);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--peach);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}

.team-bio { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

/* ─── STAT BLOCKS ──────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label { font-size: 13px; color: rgba(255,255,255,.55); }

/* ─── CTA BANNER ──────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner-text { font-size: 15px; color: rgba(255,255,255,.65); }

.cta-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── BREADCRUMB ──────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
  padding: 14px 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-light); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--peach); }
.breadcrumb span { color: var(--text-main); font-weight: 500; }

/* ─── FORMS ──────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 7px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-main);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,43,74,.07);
}

.form-textarea { resize: vertical; min-height: 130px; }

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

.form-consent { display: flex; gap: 10px; align-items: flex-start; }
.form-consent input { margin-top: 3px; flex-shrink: 0; }
.form-consent label { font-size: 13px; color: var(--text-sub); }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #2e7d32;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

.form-success.visible { display: flex; }

/* ─── QUOTE ──────────────────────────────────────── */
.pull-quote {
  padding: 24px 32px;
  border-left: 4px solid var(--peach);
  background: var(--gray-100);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 32px 0;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

.pull-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-light);
  font-style: normal;
}

/* ─── TABLE OF CONTENTS ───────────────────────────── */
.toc {
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 36px;
}

.toc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-bottom: 14px;
}

.toc ol { counter-reset: toc; }

.toc ol li {
  counter-increment: toc;
  margin-bottom: 7px;
}

.toc ol li::before {
  content: counter(toc) ". ";
  font-weight: 600;
  color: var(--peach);
  font-size: 13px;
}

.toc a {
  font-size: 14px;
  color: var(--gray-600);
  transition: color var(--transition);
}

.toc a:hover { color: var(--peach); }

/* ─── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 64px 0 52px;
  color: var(--white);
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  line-height: 1.7;
}

/* ─── HIGHLIGHT BOX ───────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
}

.highlight-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 10px;
}

.highlight-box p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.65; }

/* ─── ACCORDION ───────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.accordion-btn:hover { color: var(--peach); }

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-500);
}

.accordion-btn.open .accordion-icon {
  background: var(--peach);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding-bottom: 18px;
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
}

.accordion-body.open { display: block; }

/* ─── TAGS / FILTERS ──────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ─── NEWSLETTER ──────────────────────────────────── */
.newsletter-section {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
}

.newsletter-input:focus { border-color: var(--navy); }

/* ─── TIMELINE ────────────────────────────────────── */
.timeline { position: relative; padding-left: 28px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--peach);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--peach);
}

.timeline-date {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--peach);
  margin-bottom: 5px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-text { font-size: 14px; color: var(--text-sub); line-height: 1.6; }

/* ─── ICON BOX ────────────────────────────────────── */
.icon-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.icon-box:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.icon-box-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,133,106,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.icon-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.icon-box p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ─── BADGE ROW ───────────────────────────────────── */
.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--gray-100);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
}

/* ─── PROSE (article body) ────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; }

.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
  line-height: 1.3;
}

.prose h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 30px 0 10px;
}

.prose p {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 18px;
}

.prose ul, .prose ol {
  margin: 0 0 18px 20px;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 6px;
}

.prose a { color: var(--peach); text-decoration: underline; }
.prose strong { color: var(--text-main); font-weight: 600; }

.prose-image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 28px 0;
  object-fit: cover;
  max-height: 420px;
}

/* ─── POLICY PAGES ────────────────────────────────── */
.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 0 80px;
}

.policy-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 6px;
}

.policy-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 36px;
  display: block;
}

.policy-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--navy);
  margin: 36px 0 12px;
}

.policy-wrap p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 16px;
}

.policy-wrap ul {
  margin: 0 0 16px 22px;
  list-style: disc;
}

.policy-wrap li {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 5px;
}

.policy-wrap a { color: var(--peach); text-decoration: underline; }

/* ─── PAGINATION ──────────────────────────────────── */
.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.page-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.page-btn:hover, .page-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ─── SEARCH ──────────────────────────────────────── */
.search-wrap {
  position: relative;
  max-width: 440px;
}

.search-input {
  width: 100%;
  padding: 10px 44px 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}

.search-input:focus { border-color: var(--navy); }

.search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 15px;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-col { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section--lg { padding: 64px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; }
  .newsletter-section { flex-direction: column; }
  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
