@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a2e5a;
  --teal:    #0c7a7a;
  --teal-lt: #e6f4f4;
  --gold:    #c4922a;
  --gold-lt: #fdf4e3;
  --cream:   #f7f5f0;
  --white:   #ffffff;
  --dark:    #1a1a2e;
  --mid:     #4a4a6a;
  --border:  #d4cfc4;
  --shadow:  rgba(26,46,90,0.10);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body:  'Lora', 'Times New Roman', serif;
  --font-sans:  'Source Sans 3', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--cream);
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); text-decoration: underline; }

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

/* ─── Utility ───────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  background: var(--teal-lt);
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.tag--gold { background: var(--gold-lt); color: var(--gold); }
.tag--navy { background: var(--navy); color: var(--white); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-lt);
  border: 1px solid #e8d5a0;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}
.coming-soon-badge::before { content: '◑'; font-size: 0.9rem; }

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.6rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--teal); color: var(--white); }
.btn--primary:hover { background: var(--navy); color: var(--white); }
.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #a57820; color: var(--white); }
.btn--sm { padding: 0.45rem 1rem; font-size: 0.82rem; }

/* ─── Top Bar ───────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  letter-spacing: 0.02em;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: #fff; text-decoration: none; }
.top-bar__meta { display: flex; gap: 1.5rem; align-items: center; }
.top-bar__divider { opacity: 0.3; }

/* ─── Site Header ───────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header__brand { text-decoration: none; }
.site-header__brand:hover { text-decoration: none; }
.brand__abbr {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand__name {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--mid);
  font-weight: 400;
  font-style: italic;
  display: block;
  line-height: 1.3;
  max-width: 340px;
}

/* ─── Navigation ────────────────────────────────────────────── */
.site-nav { position: relative; }
.site-nav__list {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}
.site-nav__item { position: relative; }
.site-nav__link {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: color 0.18s, background 0.18s;
}
.site-nav__link:hover { color: var(--teal); background: var(--teal-lt); text-decoration: none; }
.site-nav__link.active { color: var(--teal); }
.site-nav__link--cta {
  background: var(--teal);
  color: var(--white) !important;
  margin-left: 0.5rem;
}
.site-nav__link--cta:hover { background: var(--navy); color: var(--white); }

.site-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
  min-width: 200px;
  z-index: 100;
  border-radius: 2px;
}
.site-nav__item:hover .site-nav__dropdown { display: block; }
.site-nav__dropdown a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--dark);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
}
.site-nav__dropdown a:last-child { border-bottom: none; }
.site-nav__dropdown a:hover { background: var(--cream); color: var(--teal); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,46,90,0.92) 40%, rgba(12,122,122,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}
.hero__label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(196,146,42,0.9);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 740px;
  margin-bottom: 1.25rem;
}
.hero__title em { font-style: italic; color: #a8d4d4; }
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Announcement Bar ──────────────────────────────────────── */
.announce-bar {
  background: var(--gold-lt);
  border-bottom: 1px solid #e8d5a0;
  padding: 0.75rem 0;
}
.announce-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
}
.announce-bar__icon { font-size: 1rem; flex-shrink: 0; }
.announce-bar strong { color: var(--navy); }

/* ─── Section ───────────────────────────────────────────────── */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--teal { background: var(--teal); color: var(--white); }

.section__header { margin-bottom: 2.5rem; }
.section__header--center { text-align: center; }
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section--dark .section__title,
.section--teal .section__title { color: var(--white); }
.section__lead {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 640px;
  line-height: 1.7;
}
.section--dark .section__lead,
.section--teal .section__lead { color: rgba(255,255,255,0.8); }
.section__header--center .section__lead { margin: 0 auto; }

/* ─── Grid ──────────────────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--sidebar { grid-template-columns: 1fr 320px; gap: 3rem; }

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 24px var(--shadow); transform: translateY(-2px); }

.card__img { width: 100%; height: 200px; object-fit: cover; }
.card__body { padding: 1.5rem; }
.card__meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--mid);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}
.card__title a { color: inherit; }
.card__title a:hover { color: var(--teal); text-decoration: none; }
.card__excerpt {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.card__authors {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 0.3rem;
}
.card__footer {
  padding: 0.85rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
}

/* ─── Issue Card ────────────────────────────────────────────── */
.issue-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.issue-card:hover { box-shadow: 0 6px 24px var(--shadow); }
.issue-card__cover {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.issue-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.issue-card:hover .issue-card__cover img { transform: scale(1.03); }
.issue-card__cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,90,0.7) 0%, transparent 60%);
}
.issue-card__vol {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.issue-card__body { padding: 1.5rem; flex: 1; }
.issue-card__theme {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.issue-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.issue-card__desc { font-size: 0.92rem; color: var(--mid); line-height: 1.65; }
.issue-card__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ─── Article listing ───────────────────────────────────────── */
.article-list { display: flex; flex-direction: column; gap: 0; }
.article-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.article-item:first-child { padding-top: 0; }
.article-item__type {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.article-item__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.article-item__title a { color: inherit; }
.article-item__title a:hover { color: var(--teal); text-decoration: none; }
.article-item__authors {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--mid);
  margin-bottom: 0.75rem;
}
.article-item__abstract {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.article-item__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.article-item__meta span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--mid);
}
.article-item__keywords {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.keyword {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  color: var(--teal);
  background: var(--teal-lt);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}

/* ─── Focus Area Cards ──────────────────────────────────────── */
.focus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  padding: 1.75rem;
  border-radius: 2px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.focus-card:hover { box-shadow: 0 6px 24px var(--shadow); transform: translateY(-2px); }
.focus-card__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.focus-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.focus-card__desc { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }

/* ─── Policy / Prose ────────────────────────────────────────── */
.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.75rem 0 0.5rem;
}
.prose p { margin-bottom: 1rem; color: #333; line-height: 1.8; }
.prose ul, .prose ol { margin: 0.5rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; line-height: 1.7; color: #333; }
.prose strong { color: var(--navy); }
.prose a { color: var(--teal); }

.policy-box {
  background: var(--cream);
  border-left: 4px solid var(--teal);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 2px 2px 0;
}
.policy-box p { margin: 0; color: var(--dark); }

/* ─── Stat Strip ────────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin: 3rem 0;
}
.stat-strip__item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}
.stat-strip__label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── Timeline / Steps ──────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.step__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.step__desc { font-size: 0.92rem; color: var(--mid); line-height: 1.65; }

/* ─── Sidebar ───────────────────────────────────────────────── */
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-box__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-box ul { list-style: none; }
.sidebar-box ul li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
}
.sidebar-box ul li:last-child { border-bottom: none; }
.sidebar-box ul li strong { color: var(--dark); }
.sidebar-box a { color: var(--teal); font-size: 0.88rem; }

/* ─── Page Header (internal pages) ─────────────────────────── */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-header__inner { position: relative; z-index: 1; }
.page-header__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.page-header__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  line-height: 1.65;
}

/* ─── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--mid);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { margin: 0 0.4rem; color: var(--border); }

/* ─── Table ─────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.88rem;
}
th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: #333;
  vertical-align: top;
}
tr:nth-child(even) td { background: var(--cream); }

/* ─── Alert / Notice ────────────────────────────────────────── */
.notice {
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  margin: 1.5rem 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
}
.notice--info { background: var(--teal-lt); border-left: 4px solid var(--teal); color: var(--navy); }
.notice--warn { background: var(--gold-lt); border-left: 4px solid var(--gold); color: #5a3a00; }
.notice--dark { background: var(--navy); color: rgba(255,255,255,0.9); border-left: 4px solid var(--gold); }

/* ─── Coming Soon Panel ─────────────────────────────────────── */
.coming-soon-panel {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--cream);
  border: 1px dashed var(--border);
  border-radius: 2px;
}
.coming-soon-panel__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.coming-soon-panel__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.coming-soon-panel__desc { color: var(--mid); max-width: 480px; margin: 0 auto 1.5rem; line-height: 1.7; }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
  font-family: var(--font-sans);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer__about {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.footer__issn {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.5rem; }
.footer__col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.18s;
}
.footer__col ul a:hover { color: var(--white); text-decoration: none; }
.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom a { color: rgba(255,255,255,0.5); }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--sidebar { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .site-nav.open { display: block; }
  .site-nav__list { flex-direction: column; padding: 1rem 0; }
  .site-nav__dropdown { position: static; box-shadow: none; border: none; background: var(--cream); }
  .site-header__inner { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .hero { min-height: 420px; }
  .hero__content { padding: 3.5rem 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .top-bar__meta { flex-wrap: wrap; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}
