/* Accreditation International — Global Stylesheet */

:root {
  --navy-deep: #061d33;
  --navy: #0c3357;
  --navy-mid: #154b7e;
  --brand-blue: #2e8ac1;
  --brand-blue-bright: #4aa3d6;
  --brand-blue-mid: #74b8e0;
  --brand-blue-light: #c6e1f0;
  --brand-blue-pale: #e9f3fa;
  --gold: #4aa3d6;
  --gold-soft: #a8d3ea;
  --cream: #f5f9fc;
  --paper: #e9f1f7;
  --line: rgba(12, 51, 87, 0.12);
  --ink: #1c2a3a;
  --muted: #5c6b7d;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(12, 51, 87, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 51, 87, 0.14);
  --shadow-lg: 0 30px 80px rgba(6, 29, 51, 0.2);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --eyebrow: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: var(--brand-blue); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; line-height: 1.15; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: var(--sans); letter-spacing: 0.02em; text-transform: uppercase; }

.eyebrow {
  font-family: var(--eyebrow);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

p { margin-bottom: 1rem; }
p.lead { font-size: 1.25rem; line-height: 1.6; color: var(--ink); font-weight: 300; }

/* Layout */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 2rem; }
section { padding: clamp(5rem, 9vw, 9rem) 0; position: relative; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6, 26, 44, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}
.site-header.scrolled { background: rgba(6, 26, 44, 0.98); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25); }
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand-logo { display: flex; align-items: center; gap: 0.8rem; }
.brand-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.brand-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-logo-text .name { font-family: var(--serif); font-size: 1.55rem; color: var(--white); font-weight: 500; letter-spacing: 0.005em; }
.brand-logo-text .tag { font-family: var(--serif); font-style: italic; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--brand-blue-mid); font-weight: 400; margin-top: 0.15rem; }

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a {
  font-family: var(--sans);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}
.nav a::after { content: ''; position: absolute; bottom: -6px; left: 0; height: 2px; width: 0; background: var(--brand-blue-bright); transition: width 0.3s ease; }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--sans) !important;
  background: var(--brand-blue-bright) !important; color: var(--navy-deep) !important;
  padding: 0.7rem 1.4rem; border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}
.nav-cta:hover { background: var(--white) !important; }
.nav-cta::after { display: none; }

.menu-toggle {
  display: none; background: none; border: none; color: var(--white);
  cursor: pointer; padding: 0.5rem; font-size: 1.5rem;
}

/* Mobile nav */
@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed; top: 76px; right: 0; bottom: 0;
    width: min(320px, 80vw);
    background: var(--navy-deep);
    flex-direction: column; align-items: flex-start;
    padding: 2.5rem 2rem; gap: 1.5rem;
    transform: translateX(100%); transition: transform 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; }
  .nav-cta { margin-top: 1rem; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 1rem 2rem; font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.25s ease;
  border-radius: 2px; font-family: var(--sans);
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--navy-deep); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.4); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-navy { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-ghost-navy:hover { background: var(--navy); color: var(--white); }
.btn .arrow { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
  padding: 7rem 0 0;
}
.hero-main {
  flex: 1;
  display: flex; align-items: center;
  width: 100%;
  padding: 3rem 0;
  position: relative; z-index: 2;
}
.hero-stats-strip {
  position: relative;
  z-index: 2;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}
.hero-stats-strip .stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-stats-strip .stat-item {
  text-align: center;
  padding: 0.4rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-stats-strip .stat-item:last-child { border-right: none; }
.hero-stats-strip .stat-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 400;
  color: var(--brand-blue-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hero-stats-strip .stat-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
@media (max-width: 700px) {
  .hero-stats-strip .stats-bar-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-stats-strip .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
  }
  .hero-stats-strip .stat-item:last-child { border-bottom: none; }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(74, 163, 214, 0.4) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(116, 184, 224, 0.25) 0%, transparent 55%),
    linear-gradient(135deg, #061d33 0%, #0c3357 50%, #154b7e 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1600' height='800' viewBox='0 0 1600 800'><g fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.22'><ellipse cx='800' cy='400' rx='780' ry='380'/><ellipse cx='800' cy='400' rx='600' ry='300'/><ellipse cx='800' cy='400' rx='420' ry='220'/><ellipse cx='800' cy='400' rx='260' ry='150'/><line x1='20' y1='400' x2='1580' y2='400'/><line x1='800' y1='20' x2='800' y2='780'/><path d='M 20 400 Q 800 100 1580 400'/><path d='M 20 400 Q 800 700 1580 400'/><circle cx='800' cy='400' r='5' fill='%234aa3d6'/></g></svg>");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { max-width: 720px; }

.hero-image {
  aspect-ratio: 4/5;
  width: 100%;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(74, 163, 214, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(255,255,255,0.04) 12px, rgba(255,255,255,0.04) 13px);
}
.hero-image-frame {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.4);
}
.hero-image-icon { width: 64px; height: 64px; }
.hero-image-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image { aspect-ratio: 16/10; max-height: 320px; }
}
.hero-eyebrow {
  font-family: var(--eyebrow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}
.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero-lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}
.hero-stat {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat:first-of-type { border-top: none; padding-top: 0.5rem; }
.hero-stat:last-of-type { padding-bottom: 0.5rem; }
.hero-stat .num {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5.5vw, 4.6rem);
  font-weight: 400;
  color: var(--brand-blue-bright);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.hero-stat-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Horizontal stats bar (under hero) */
.stats-bar {
  background: var(--navy);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 400;
  color: var(--brand-blue-bright);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}
@media (max-width: 700px) {
  .stats-bar-grid { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.8rem 0;
  }
  .stat-item:last-child { border-bottom: none; }
}

/* Recognized Member (post-hero) */
.recognized {
  background: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.recognized::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-blue-light), transparent);
}
.recognized-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3.5rem;
}
.recognized-head .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--brand-blue);
}
.recognized-head .eyebrow::before { background: var(--brand-blue); }
.recognized-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.55;
  color: var(--navy-mid);
  font-weight: 400;
  margin: 0;
}
.recognized-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2.5rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.recognized-logos img {
  max-height: 110px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
}
.recognized-logos img:hover { opacity: 1; transform: translateY(-3px); }
@media (max-width: 800px) {
  .recognized-logos { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .recognized-logos img { max-height: 80px; }
}

/* Trust bar (legacy, kept for compatibility) */
.trust-bar {
  background: var(--navy-deep);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 4rem; flex-wrap: wrap;
}
.trust-bar-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.trust-bar img {
  height: 50px;
  width: auto;
  opacity: 0.65;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s ease;
}
.trust-bar img:hover { opacity: 1; }

/* Section headers */
.section-head { max-width: 780px; margin: 0 auto 4rem; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.2rem; color: var(--muted); font-size: 1.1rem; }

/* Five Areas (Pillars) */
.pillars {
  background: var(--paper);
  padding: clamp(6rem, 10vw, 11rem) 0;
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--brand-blue-light), transparent);
}
.pillars-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.pillars-intro .pillars-counter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brand-blue);
  letter-spacing: 0.04em;
}
.pillars-intro .pillars-counter::before { display: none; }
.pillars-intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 400;
}
.pillars-intro h2 em { font-style: italic; color: var(--brand-blue); font-family: var(--serif); }
.pillars-intro p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--navy-mid);
  margin: 0;
}
@media (max-width: 800px) {
  .pillars-intro { grid-template-columns: 1fr; gap: 1.5rem; }
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--white);
  padding: 3rem 2rem;
  transition: all 0.3s ease;
  position: relative;
}
.pillar:hover { background: var(--navy); color: var(--white); transform: scale(1.02); z-index: 2; box-shadow: var(--shadow-lg); }
.pillar:hover h3, .pillar:hover .pillar-num, .pillar:hover p { color: var(--white); }
.pillar:hover .pillar-num { color: var(--gold); }
.pillar-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.pillar h3 { font-size: 1.4rem; margin-bottom: 1rem; transition: color 0.3s ease; }
.pillar p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; transition: color 0.3s ease; }

/* Interactive Pillars Showcase (homepage 5 areas) */
.pillars-showcase {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.5rem;
  min-height: 560px;
}
.showcase-display {
  position: relative;
  background:
    radial-gradient(circle at 85% 75%, rgba(74, 163, 214, 0.42) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
}
.showcase-display::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='900' height='560' viewBox='0 0 900 560'><g fill='none' stroke='%234aa3d6' stroke-width='0.6' opacity='0.35'><circle cx='700' cy='280' r='240'/><circle cx='700' cy='280' r='175'/><circle cx='700' cy='280' r='110'/><circle cx='700' cy='280' r='45'/><line x1='460' y1='280' x2='940' y2='280'/><line x1='700' y1='40' x2='700' y2='520'/><path d='M 460 280 Q 700 80 940 280'/><path d='M 460 280 Q 700 480 940 280'/></g></svg>");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.showcase-panel {
  position: absolute;
  inset: 0;
  padding: 3.8rem 4rem;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.showcase-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.showcase-panel .panel-num {
  font-family: var(--eyebrow);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.showcase-panel .panel-icon {
  width: 72px; height: 72px;
  color: var(--brand-blue-bright);
  margin-bottom: 1.8rem;
  stroke-width: 1.4;
}
.showcase-panel h3 {
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 560px;
}
.showcase-panel h3 em { font-style: italic; color: var(--brand-blue-bright); }
.showcase-panel p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}

.showcase-list {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}
.showcase-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.3rem;
  padding: 1.5rem 1.6rem;
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
  position: relative;
  transition: background 0.25s ease, padding-left 0.25s ease;
  flex: 1;
}
.showcase-item:last-child { border-bottom: none; }
.showcase-item:hover, .showcase-item.active {
  background: var(--paper);
  outline: 2px solid var(--brand-blue);
  outline-offset: -2px;
  z-index: 1;
}
.showcase-item .item-num {
  font-family: var(--eyebrow);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  min-width: 22px;
  transition: color 0.25s ease;
}
.showcase-item.active .item-num,
.showcase-item:hover .item-num { color: var(--brand-blue); }
.showcase-item .item-icon {
  width: 30px; height: 30px;
  color: var(--brand-blue);
  stroke-width: 1.5;
  flex-shrink: 0;
}
.showcase-item .item-body {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.showcase-item .item-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
}
.showcase-item .item-sub {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.showcase-item .item-arrow {
  color: var(--brand-blue);
  font-family: var(--serif);
  font-size: 1.3rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.showcase-item:hover .item-arrow,
.showcase-item.active .item-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1000px) {
  .pillars-showcase { grid-template-columns: 1fr; min-height: 0; }
  .showcase-display { min-height: 420px; }
}
@media (max-width: 600px) {
  .showcase-panel { padding: 2.4rem 2rem; }
}

/* Pillars Bento (legacy class kept for any other pages still using it) */
.pillars-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.bento-card {
  background: var(--white);
  padding: 2.8rem;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  box-shadow: var(--shadow-sm);
}
.bento-card.span-8 { grid-column: span 8; min-height: 480px; padding: 4rem 4rem 3.5rem; }
.bento-card.span-4 { grid-column: span 4; }

.bento-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s ease;
}
.bento-card:hover::before { transform: scaleX(1); }
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-blue-light); }

.bento-num {
  font-family: var(--eyebrow);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--brand-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.bento-icon {
  width: 54px; height: 54px;
  color: var(--brand-blue);
  margin-bottom: 1.6rem;
  stroke-width: 1.4;
}
.bento-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.9rem;
  color: var(--navy-deep);
  line-height: 1.15;
}
.bento-card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
}

.bento-featured {
  background:
    radial-gradient(circle at 80% 70%, rgba(74, 163, 214, 0.4) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--white);
  border: none;
}
.bento-featured::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='900' height='560' viewBox='0 0 900 560'><g fill='none' stroke='%234aa3d6' stroke-width='0.6' opacity='0.35'><circle cx='700' cy='280' r='240'/><circle cx='700' cy='280' r='175'/><circle cx='700' cy='280' r='110'/><circle cx='700' cy='280' r='45'/><line x1='460' y1='280' x2='940' y2='280'/><line x1='700' y1='40' x2='700' y2='520'/><path d='M 460 280 Q 700 80 940 280'/><path d='M 460 280 Q 700 480 940 280'/></g></svg>");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0; pointer-events: none;
}
.bento-featured > * { position: relative; z-index: 1; }
.bento-featured .bento-num { color: var(--brand-blue-bright); }
.bento-featured .bento-icon { color: var(--brand-blue-bright); width: 70px; height: 70px; }
.bento-featured h3 {
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
}
.bento-featured h3 em { font-style: italic; color: var(--brand-blue-bright); }
.bento-featured p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 480px;
}
.bento-featured::before {
  background: var(--brand-blue-bright);
  transform: scaleX(1);
  height: 4px;
}
.bento-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

@media (max-width: 1000px) {
  .pillars-bento { grid-template-columns: repeat(6, 1fr); }
  .bento-card.span-8 { grid-column: span 6; min-height: 320px; padding: 2.8rem; }
  .bento-card.span-4 { grid-column: span 3; }
}
@media (max-width: 700px) {
  .pillars-bento { grid-template-columns: 1fr; }
  .bento-card.span-8, .bento-card.span-4 { grid-column: span 1; min-height: 240px; padding: 2.2rem; }
  .bento-featured h3 { font-size: 1.7rem; }
}

/* Two-column section */
.split { background: var(--white); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.split-img { position: relative; }
.split-img .img-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--brand-blue) 100%);
  position: relative;
  overflow: hidden;
}
.split-img .img-frame::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='750' viewBox='0 0 600 750'><g fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.2'><circle cx='300' cy='375' r='340'/><circle cx='300' cy='375' r='260'/><circle cx='300' cy='375' r='180'/><circle cx='300' cy='375' r='100'/><line x1='0' y1='375' x2='600' y2='375'/><line x1='300' y1='35' x2='300' y2='715'/><path d='M 50 375 Q 300 100 550 375'/><path d='M 50 375 Q 300 650 550 375'/><path d='M 100 175 Q 300 375 500 575'/><path d='M 100 575 Q 300 375 500 175'/></g></svg>");
  background-size: cover;
}
.split-img .img-frame::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 50%; height: 50%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.split-img-quote {
  position: absolute;
  bottom: -50px; left: -50px;
  background: var(--gold);
  padding: 2rem;
  max-width: 280px;
  box-shadow: var(--shadow-md);
}
.split-img-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy-deep);
  margin: 0;
  line-height: 1.5;
}
.split-content h2 { margin-bottom: 1.5rem; }
.split-content .lead { margin-bottom: 1.5rem; color: var(--ink); }
.split-content ul { list-style: none; margin-top: 1.5rem; }
.split-content li {
  padding: 0.7rem 0 0.7rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.split-content li:last-child { border-bottom: none; }
.split-content li::before {
  content: '';
  position: absolute; left: 0; top: 1.15rem;
  width: 14px; height: 1px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .split-img-quote { bottom: -30px; left: 20px; max-width: 240px; }
}

/* Big quote */
.big-quote {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.big-quote::before {
  content: '"';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 30rem;
  line-height: 1;
  color: rgba(74, 163, 214, 0.1);
  z-index: 0;
}
.big-quote .container { position: relative; z-index: 1; text-align: center; }
.big-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.5;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  max-width: 980px;
  margin: 0 auto;
}
.big-quote cite {
  display: block;
  margin-top: 2.5rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Process steps */
.process { background: var(--paper); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; padding: 0 1rem; }
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-style: italic;
}
.process-step h3 { text-align: center; margin-bottom: 1rem; font-size: 1.35rem; }
.process-step p { text-align: center; color: var(--muted); font-size: 0.95rem; }

@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid::before { display: none; }
}

/* Path to Accreditation (5-step chevron flow) */
.path-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3rem;
  overflow: visible;
}
.path-step + .path-step .path-body { border-left: 2px solid var(--paper); }
.path-step {
  display: flex;
  flex-direction: column;
  --chev-color: var(--navy);
  --num-text: var(--navy);
  --accent: var(--brand-blue);
}
.path-step:nth-child(1) { --chev-color: #061d33; --num-text: #061d33; }
.path-step:nth-child(2) { --chev-color: #0c3357; --num-text: #0c3357; }
.path-step:nth-child(3) { --chev-color: #154b7e; --num-text: #154b7e; }
.path-step:nth-child(4) { --chev-color: #2e8ac1; --num-text: #2e8ac1; }
.path-step-final, .path-step:nth-child(5) {
  --chev-color: #4aa3d6;
  --num-text: #4aa3d6;
  --accent: var(--brand-blue-bright);
}
.path-chevron {
  background: var(--chev-color);
  height: 84px;
  position: relative;
  width: calc(100% + 260px);
  margin-left: -130px;
  clip-path: polygon(0 0, calc(100% - 130px) 0, 100% 50%, calc(100% - 130px) 100%, 0 100%, 130px 50%);
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.path-chevron-first {
  width: calc(100% + 130px);
  margin-left: 0;
  padding-right: 130px;
  clip-path: polygon(0 0, calc(100% - 130px) 0, 100% 50%, calc(100% - 130px) 100%, 0 100%);
}
.path-chevron-last {
  width: calc(100% + 130px);
  margin-left: -130px;
  padding-left: 130px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 130px 50%);
}
.path-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  color: var(--num-text);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(6, 29, 51, 0.3);
  flex-shrink: 0;
}
.path-body {
  background: linear-gradient(180deg, #a3c4dc 0%, #d2e5f1 100%);
  padding: 1.8rem 1.3rem 2.2rem;
  text-align: center;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  margin-top: 0;
}
.path-step:nth-child(2) .path-body { background: linear-gradient(180deg, #98c2db 0%, #cae2f0 100%); }
.path-step:nth-child(3) .path-body { background: linear-gradient(180deg, #8ac1dd 0%, #c1dfee 100%); }
.path-step:nth-child(4) .path-body { background: linear-gradient(180deg, #7cbedf 0%, #bbdcec 100%); }
.path-step-final .path-body { background: linear-gradient(180deg, #5fb3dc 0%, #b0d6e9 100%); }
.path-body h3 {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.15;
  min-height: 2.4em;
  display: flex; align-items: center; justify-content: center;
  margin: 0;
}
.path-icon {
  width: 52px; height: 52px;
  color: var(--accent);
  flex-shrink: 0;
}
.path-body p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 900px) {
  .path-grid { grid-template-columns: 1fr; gap: 1rem; }
  .path-chevron {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 50% 100%, 0 calc(100% - 20px));
    height: 100px;
    justify-content: center;
    padding-left: 0;
  }
  .path-chevron-first { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 50% 100%, 0 calc(100% - 20px)); padding-left: 0; }
  .path-chevron-last { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); padding-left: 0; }
}

/* Affiliations rail */
.affiliations { background: var(--white); padding: 6rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 3rem 2rem;
  margin-top: 3rem;
  align-items: center;
}
.affiliations-grid img {
  height: 70px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0.55;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}
.affiliations-grid img:hover { opacity: 1; filter: grayscale(0%); }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1200' height='400' viewBox='0 0 1200 400'><g fill='none' stroke='%234aa3d6' stroke-width='0.5' opacity='0.3'><circle cx='1000' cy='200' r='180'/><circle cx='1000' cy='200' r='130'/><circle cx='1000' cy='200' r='80'/><line x1='820' y1='200' x2='1180' y2='200'/><line x1='1000' y1='20' x2='1000' y2='380'/></g></svg>");
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.6;
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-strip h2 { color: var(--white); font-weight: 300; }
.cta-strip h2 em { color: var(--gold-soft); font-style: italic; }
.cta-strip p { color: rgba(255, 255, 255, 0.75); margin-top: 1rem; font-size: 1.05rem; }
.cta-strip-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (max-width: 800px) {
  .cta-strip-grid { grid-template-columns: 1fr; }
}

/* Page hero (interior pages) */
.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 11rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(74, 163, 214, 0.45) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(116, 184, 224, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #061d33 0%, #0c3357 100%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1400' height='500' viewBox='0 0 1400 500'><g fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.15'><ellipse cx='700' cy='250' rx='680' ry='220'/><ellipse cx='700' cy='250' rx='480' ry='170'/><ellipse cx='700' cy='250' rx='300' ry='120'/><line x1='20' y1='250' x2='1380' y2='250'/></g></svg>");
  background-size: cover;
  opacity: 0.5;
}
.page-hero .container { position: relative; z-index: 1; max-width: 920px; }
.page-hero h1 { color: var(--white); font-weight: 300; margin-top: 1.2rem; }
.page-hero h1 em { color: var(--gold-soft); font-style: italic; }
.page-hero p {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  line-height: 1.7;
}
.breadcrumbs {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumbs a { color: var(--gold); }

/* Prose (article content) */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin: 3rem 0 1.2rem; }
.prose h3 { margin: 2.2rem 0 0.9rem; color: var(--navy-mid); }
.prose p { font-size: 1.08rem; line-height: 1.75; color: var(--ink); margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 1.2rem 0 1.5rem 1.5rem; }
.prose li { margin-bottom: 0.6rem; font-size: 1.05rem; line-height: 1.7; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 2rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.5;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}
.card h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* Values columns */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 3rem;
}
.value-item {
  background: var(--white);
  padding: 2rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.value-item .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin-top: 0.2rem;
}
.value-item span { font-size: 0.98rem; color: var(--ink); font-weight: 500; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info { background: var(--navy-deep); color: var(--white); padding: 3rem; }
.contact-info h3 { color: var(--white); margin-bottom: 2rem; }
.contact-info .info-item { margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.contact-info .info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info .info-label {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.contact-info .info-value { font-size: 1.05rem; color: rgba(255, 255, 255, 0.9); line-height: 1.6; }
.contact-info .info-value a { color: rgba(255, 255, 255, 0.9); border-bottom: 1px solid rgba(74, 163, 214, 0.5); }
.contact-info .info-value a:hover { color: var(--gold); }

.contact-form { background: var(--white); padding: 3rem; border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.form-group label {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy); font-weight: 600; margin-bottom: 0.6rem;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: all 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 2rem; }
}

/* Schools list */
.schools-search {
  display: flex; gap: 1rem; align-items: stretch;
  max-width: 720px; margin: 0 auto 4rem;
}
.schools-search input {
  flex: 1; padding: 1.1rem 1.5rem;
  border: 1px solid var(--line);
  font-family: var(--sans); font-size: 1rem;
  background: var(--white);
}
.schools-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.school-item { background: var(--white); padding: 1.5rem 2rem; }
.school-item .school-name { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.3rem; }
.school-item .school-loc { font-size: 0.88rem; color: var(--muted); }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand h4 { color: var(--white); font-family: var(--serif); font-size: 1.5rem; font-weight: 400; text-transform: none; letter-spacing: 0; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 320px; }
.footer-col h5 {
  color: var(--gold); font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.5rem; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Utility */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
