/* =========================================================
   Waltham International College — Design System
   Visual language inspired by UEL (University of East London):
   bold black / gold / white, Helvetica-based type, sharp edges.
   ========================================================= */

:root {
  --ink-950: #0a0a0a;
  --ink-900: #141414;
  --ink-800: #1f1f1f;
  --ink-700: #333333;
  --ink-500: #5c5c5c;
  --ink-300: #8a8a8a;
  --line: #dcdcdc;
  --line-strong: #141414;
  --paper-0: #ffffff;
  --paper-50: #f6f5f2;
  --paper-100: #efeee9;

  --gold-500: #f9bf3b;
  --gold-600: #c98f10;
  --gold-100: #fdf1d4;

  /* Alias kept so inline styles referencing the old token keep working */
  --navy-950: var(--ink-950);

  --success: #1f7a3d;

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(10,10,10,0.08);
  --shadow-md: 0 10px 26px rgba(10,10,10,0.14);
  --shadow-lg: 0 26px 60px rgba(10,10,10,0.24);

  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --container-w: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-0);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-950);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-700); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .container { padding-inline: 32px; }
}

section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-950);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 4px;
  background: var(--gold-500);
}

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold-500); color: var(--ink-950); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #ffcf5e; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--paper-0); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--paper-0); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-dark { background: var(--ink-950); color: var(--paper-0); }
.btn-dark:hover { background: var(--ink-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--paper-100); color: var(--ink-950); }
.btn-ghost:hover { background: var(--line); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--ink-950);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 56px; width: auto; flex: none; }
.brand-logo-footer { height: 64px; }
.brand-mark-icon { width: 42px; height: 42px; flex: none; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-900);
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink-950); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

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

.nav-toggle {
  border: 2px solid var(--ink-950);
  background: var(--paper-0);
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.open { visibility: visible; pointer-events: auto; }
.mobile-nav-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.6);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 86vw);
  background: var(--paper-0);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
  border-left: 3px solid var(--ink-950);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mobile-nav-close {
  width: 40px; height: 40px; border: 2px solid var(--ink-950); border-radius: var(--radius-sm);
  background: var(--paper-0); display: flex; align-items: center; justify-content: center;
}
.mobile-nav-panel a {
  display: block;
  padding: 14px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-950);
  border-radius: var(--radius-sm);
}
.mobile-nav-panel a:hover, .mobile-nav-panel a.active { background: var(--gold-100); }
.mobile-nav-panel .btn { margin-top: 16px; }
.mobile-nav-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-500);
}
.mobile-nav-foot a { color: var(--ink-950); font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink-950);
  color: var(--paper-0);
  overflow: hidden;
  padding: 56px 0 72px;
}
@media (min-width: 768px) { .hero { padding: 88px 0 110px; } }
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.88) 38%, rgba(10,10,10,0.66) 72%, rgba(10,10,10,0.46) 100%),
    linear-gradient(0deg, rgba(10,10,10,0.6), transparent 45%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-500);
  color: var(--ink-950);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-950); }
.hero h1 {
  color: var(--paper-0);
  font-size: clamp(2.1rem, 6vw, 3.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero-lede { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 520px;
}
.hero-stats .stat { padding: 0; }
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--gold-500);
}
.hero-stats .stat span { font-size: 0.78rem; color: rgba(255,255,255,0.68); }

.hero-card {
  position: relative;
  background: var(--paper-0);
  border: 1px solid var(--paper-0);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--ink-950); font-size: 1.15rem; }
.hero-card p { color: var(--ink-700); font-size: 0.92rem; }
.hero-card-list { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-900);
}
.hero-card-list svg { flex: none; width: 20px; height: 20px; color: var(--gold-600); margin-top: 2px; }

/* ---------- Marquee / trust bar ---------- */
.trust-bar { background: var(--gold-500); border-bottom: 3px solid var(--ink-950); padding: 20px 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--ink-950); font-weight: 700; }
.trust-item svg { width: 18px; height: 18px; color: var(--ink-950); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--paper-0);
  border: 2px solid var(--ink-950);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--ink-950);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 700;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { font-size: 0.94rem; margin-bottom: 0; }

.card-gold .card-icon { background: var(--gold-100); color: var(--gold-600); }

/* Subject / course cards */
.subject-card {
  background: var(--paper-0);
  border: 2px solid var(--ink-950);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.subject-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.subject-card-top {
  position: relative;
  overflow: hidden;
  padding: 26px 26px 18px;
  background: var(--ink-950);
  color: var(--paper-0);
  min-height: 168px;
}
.subject-card-top .card-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.subject-card-top::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(195deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.82) 65%, rgba(10,10,10,0.94) 100%);
}
.subject-card-top .card-icon,
.subject-card-top h3,
.subject-card-top p { position: relative; z-index: 2; }
.subject-card-top .card-icon { background: var(--gold-500); color: var(--ink-950); }
.subject-card-top h3 { color: var(--paper-0); margin-bottom: 6px; }
.subject-card-top p { color: rgba(255,255,255,0.78); font-size: 0.88rem; margin: 0; }
.subject-card-body { padding: 22px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.subject-card-body ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; flex: 1; }
.subject-card-body li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--ink-700);
}
.subject-card-body svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--gold-600); }
.subject-card-body .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-950);
  background: var(--gold-100);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  align-self: flex-start;
}

/* ---------- Vision / Mission ---------- */
.vm-section { background: var(--ink-950); color: var(--paper-0); position: relative; overflow: hidden; }
.vm-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(249,191,59,0.14), transparent 60%);
}
.vm-section .section-head h2 { color: var(--paper-0); }
.vm-section .section-head p { color: rgba(255,255,255,0.7); }
.vm-section .eyebrow { color: var(--gold-500); }
.vm-section .eyebrow::before { background: var(--gold-500); }
.vm-grid { display: grid; gap: 20px; position: relative; z-index: 1; }
@media (min-width: 900px) { .vm-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.vm-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 30px;
}
.vm-col h3 { color: var(--gold-500); font-size: 1.3rem; }
.vm-col > p { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.vm-list { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.vm-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
}
.vm-list .num {
  flex: none;
  width: 30px; height: 30px;
  border-radius: var(--radius-sm);
  background: var(--gold-500);
  color: var(--ink-950);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}
.vm-list strong { display: block; color: var(--paper-0); font-size: 0.95rem; margin-bottom: 2px; }
.vm-list span { font-size: 0.85rem; color: rgba(255,255,255,0.68); }

/* ---------- Campuses ---------- */
.campus-card {
  display: grid;
  gap: 0;
  border: 2px solid var(--ink-950);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-0);
}
@media (min-width: 768px) { .campus-card { grid-template-columns: 200px 1fr; } }
.campus-media {
  position: relative;
  overflow: hidden;
  background: var(--ink-950);
  color: var(--paper-0);
  padding: 26px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 180px;
}
.campus-media .card-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.campus-media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(200deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.82) 70%, rgba(10,10,10,0.94) 100%);
}
.campus-media svg, .campus-media strong { position: relative; z-index: 2; }
.campus-media svg { width: 30px; height: 30px; color: var(--gold-500); margin-bottom: 10px; }
.campus-media strong { font-family: var(--font-display); font-size: 1.1rem; }
.campus-body { padding: 26px; }
.campus-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.campus-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 14px; }
.campus-meta div { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--ink-500); }
.campus-meta svg { width: 16px; height: 16px; color: var(--ink-950); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold-500);
  border: 3px solid var(--ink-950);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
}
@media (min-width: 768px) { .cta-banner { padding: 56px 40px; } }
.cta-banner h2 { color: var(--ink-950); margin-bottom: 10px; }
.cta-banner p { color: var(--ink-800); max-width: 520px; margin-inline: auto; }
.cta-banner .btn-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

/* ---------- Photo with quote caption (About page) ---------- */
.photo-quote {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid var(--ink-950);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.photo-quote img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.photo-quote::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.58) 45%, rgba(10,10,10,0.05) 75%);
}
.photo-quote blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 28px;
}
.photo-quote blockquote p { font-size: 1.1rem; color: var(--paper-0); font-style: italic; margin-bottom: 10px; }
.photo-quote blockquote cite { font-style: normal; font-weight: 700; color: var(--gold-500); font-size: 0.85rem; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px;
  border: 2px solid var(--ink-950);
  border-radius: var(--radius-md);
}
.contact-info-item .card-icon { margin-bottom: 0; }
.contact-info-item h4 { margin: 0 0 4px; font-size: 0.95rem; color: var(--ink-950); }
.contact-info-item a, .contact-info-item span { font-size: 0.92rem; color: var(--ink-500); }
.contact-info-item a:hover { color: var(--ink-950); }

.form-card {
  background: var(--paper-50);
  border: 2px solid var(--ink-950);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-950);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper-0);
  color: var(--ink-900);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink-950);
  box-shadow: 0 0 0 3px rgba(249,191,59,0.35);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--ink-500); margin-top: 12px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #eaf7ec;
  color: var(--success);
  border: 1px solid #c2e6c8;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.form-success.show { display: flex; }
.form-success svg { width: 18px; height: 18px; flex: none; }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--ink-950);
  height: 100%;
  min-height: 260px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; }

/* ---------- Accreditation strip ---------- */
.accred-strip {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 24px;
}
.accred-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink-950);
  background: var(--paper-0);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-950);
}
.accred-pill svg { width: 18px; height: 18px; color: var(--gold-600); }

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: var(--ink-950);
  color: var(--paper-0);
  padding: 56px 0 60px;
  border-bottom: 4px solid var(--gold-500);
}
.page-hero .eyebrow { color: var(--gold-500); }
.page-hero h1 { color: var(--paper-0); font-size: clamp(1.8rem, 5vw, 2.9rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; font-size: 1.05rem; margin: 0; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.8); font-weight: 700; }

/* ---------- Alt background section ---------- */
.bg-alt { background: var(--paper-50); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-950); color: rgba(255,255,255,0.68); padding-top: 64px; border-top: 4px solid var(--gold-500); }
.footer-top { display: grid; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; max-width: 320px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--gold-500); color: var(--ink-950); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: var(--paper-0); font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.03em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-500); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: space-between;
  padding: 24px 0 32px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-bottom .links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

::selection { background: var(--gold-500); color: var(--ink-950); }
