/* ==========================================================================
   JAMAICA2CANADA.COM — Design System
   Signature motif: the "flight path" — a dashed line + waypoint dots that
   recur across banners and dividers, tracing Kingston -> Toronto. It stands
   in for photography we don't have yet and literalizes the brand promise:
   a mapped, guided route rather than a leap of faith.
   ========================================================================== */

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

:root {
  --navy: #14192B;
  --navy-deep: #0B0E1A;
  --navy-mid: #232A44;
  --gold: #C9A227;
  --gold-light: #E8D48B;
  --gold-bg: #FBF7EC;
  --ivory: #F6F4EE;
  --ivory-dark: #EDE9DD;
  --charcoal: #26262B;
  --slate: #5B6478;
  --maple: #B3222E;
  --green: #1F5C4A;
  --white: #FFFFFF;
  --line: rgba(20,25,43,0.10);
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-accent: 'Fraunces', Georgia, serif;
  --radius: 4px;
  --maxw: 1180px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- motion ---------- */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px);} to {opacity:1; transform:translateY(0);} }
.fade-up { animation: fadeUp .7s ease-out both; }

/* ==========================================================================
   TOP BAR + NAV
   ========================================================================== */
.top-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.04em;
}
.top-bar strong { color: var(--gold); font-weight: 600; }
.top-bar .sep { opacity: 0.4; margin: 0 10px; }

nav.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.nav-logo .mark { color: var(--gold); }
.nav-logo .dotcom { color: rgba(255,255,255,0.45); font-size: 0.62em; font-family: var(--font-body); letter-spacing: 0.1em; margin-left: 4px; }
.logo-img { height: 44px; width: auto; display: block; }

.nav-toggle { display: flex; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); display: block; }

.nav-links {
  position: absolute; top: 76px; left: 0; right: 0;
  background: var(--navy); flex-direction: column; align-items: flex-start;
  padding: 8px 28px 24px; gap: 4px; display: none;
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.nav-links.open { display: flex; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); border-color: var(--gold); }
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  border-bottom: none;
  margin-top: 8px;
  text-align: center;
}
.nav-links a.nav-cta:hover { background: var(--gold-light); }

@media (min-width: 901px) {
  .nav-toggle { display: none; }
  .nav-links {
    position: static; top: auto; left: auto; right: auto;
    background: none; flex-direction: row; align-items: center;
    padding: 0; gap: 30px; display: flex;
    border-bottom: none;
  }
  .nav-links a { width: auto; padding: 6px 0; border-bottom: 2px solid transparent; }
  .nav-links a.nav-cta { padding: 10px 20px; margin-top: 0; text-align: left; }
}

/* ==========================================================================
   FLIGHT PATH MOTIF (signature element)
   ========================================================================== */
.flight-path { display: flex; align-items: center; gap: 10px; }
.flight-path .pt { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.flight-path .ln {
  flex: 1; height: 1px;
  background-image: linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  background-size: 12px 1px; background-repeat: repeat-x;
  min-width: 40px;
}
.flight-path .city { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; white-space: nowrap; }

/* Full-width decorative banner used in place of photography */
.motif-banner {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  overflow: hidden;
}
.motif-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 14% 30%, rgba(201,162,39,0.16) 0, transparent 40%),
    radial-gradient(circle at 86% 70%, rgba(179,34,46,0.14) 0, transparent 45%);
}
.motif-banner .route {
  position: relative; z-index: 1;
  max-width: 620px; margin: 0 auto;
  padding: 18px 0;
}
.motif-banner .route .flight-path .city { color: rgba(255,255,255,0.85); }
.motif-banner .route .flight-path .pt { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,0.18); }

/* Inner page hero (replaces photographic banners) */
.page-hero {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative;
  padding: 76px 0 56px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; right: -8%; top: -30%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201,162,39,0.14) 0%, transparent 70%);
}
.page-hero .eyebrow { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-heading); color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; max-width: 780px; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 620px; }

/* ==========================================================================
   TYPE + SECTION SCAFFOLDING
   ========================================================================== */
.section-label { color: var(--maple); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 600; color: var(--navy-deep); line-height: 1.2; margin-bottom: 16px; max-width: 780px; }
.section-subtitle { color: var(--slate); font-size: 1.02rem; max-width: 640px; margin-bottom: 44px; }
section.pad { padding: 84px 0; }
.hr-gold { border: none; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 0 0 44px; max-width: 120px; }

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0 64px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(201,162,39,0.18) 0, transparent 42%),
    radial-gradient(circle at 92% 82%, rgba(179,34,46,0.16) 0, transparent 46%);
}
.hero-content { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.hero-text .eyebrow { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.hero-text h1 { font-family: var(--font-heading); color: var(--white); font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 600; line-height: 1.12; max-width: 780px; margin-bottom: 22px; }
.hero-text h1 em { color: var(--gold-light); font-style: italic; }
.hero-text p { color: rgba(255,255,255,0.74); font-size: 1.12rem; max-width: 600px; margin-bottom: 34px; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary, .btn-secondary, .submit-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  border: none; cursor: pointer; transition: transform .15s, background .2s;
  font-family: var(--font-body);
}
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-stats { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,0.10); border-top: 1px solid rgba(255,255,255,0.10); }
.hero-stat-item { background: rgba(11,14,26,0.55); padding: 26px 20px 0; }
.hero-stat-item .number { font-family: var(--font-heading); color: var(--gold-light); font-size: 2.1rem; font-weight: 600; }
.hero-stat-item .label { color: rgba(255,255,255,0.62); font-size: 0.85rem; margin-top: 6px; line-height: 1.45; padding-bottom: 24px; }
@media (min-width: 721px) { .hero-stats { grid-template-columns: repeat(3,1fr); } }

/* trust bar */
.trust-bar { background: var(--gold-bg); border-bottom: 1px solid rgba(201,162,39,0.25); }
.trust-bar-inner { max-width: var(--maxw); margin: 0 auto; padding: 16px 28px; display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.trust-icon { color: var(--green); font-weight: 800; }

/* ==========================================================================
   CARDS: pathways / services
   ========================================================================== */
.pathways-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.pathway-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.pathway-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,25,43,0.10); }
.card-top { height: 8px; background: linear-gradient(90deg, var(--gold), var(--maple)); }
.pathway-card .inner { padding: 30px 30px 32px; }
.pathway-card h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 12px; color: var(--navy-deep); }
.pathway-card p { color: var(--slate); font-size: 0.94rem; margin-bottom: 18px; }
.pathway-link { color: var(--maple); font-weight: 700; font-size: 0.88rem; }
.pathway-link:hover { color: var(--navy); }
@media (min-width: 901px) { .pathways-grid { grid-template-columns: repeat(3, 1fr); } }
/* 4-across variant (home "Why Canada" preview) scales in its own steps so it never overflows on mobile */
@media (min-width: 640px) { .pathways-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 901px) { .pathways-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.step-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 8px; }
.step-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 26px 18px; text-align: left; }
.step-card .n { font-family: var(--font-heading); font-size: 1.7rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.step-card h4 { font-size: 0.98rem; margin-bottom: 8px; color: var(--navy-deep); }
.step-card p { font-size: 0.84rem; color: var(--slate); }
@media (min-width: 561px) { .step-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 981px) { .step-grid { grid-template-columns: repeat(5,1fr); } }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start; }
@media (min-width: 901px) { .about-grid { grid-template-columns: 1.4fr 1fr; } }
.about-text p { margin-bottom: 18px; color: var(--charcoal); }
.credentials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 28px; }
.credential { border-left: 3px solid var(--gold); padding: 6px 0 6px 16px; }
.credential .degree { font-family: var(--font-heading); font-weight: 600; color: var(--navy-deep); }
.credential .school { font-size: 0.83rem; color: var(--slate); margin-top: 2px; }

.about-sidebar { background: var(--navy-deep); border-radius: 8px; padding: 40px; color: rgba(255,255,255,0.85); position: relative; overflow: hidden; }
.about-sidebar::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 0%, rgba(201,162,39,0.18), transparent 60%); }
.about-sidebar > * { position: relative; z-index: 1; }
.headshot-photo {
  width: 108px; height: 108px; border-radius: 50%;
  object-fit: cover; display: block;
  margin-bottom: 22px; border: 3px solid rgba(255,255,255,0.15);
}
.about-sidebar h3 { font-family: var(--font-heading); color: var(--white); font-size: 1.2rem; margin-bottom: 14px; }
.about-sidebar p { font-size: 0.92rem; color: rgba(255,255,255,0.68); margin-bottom: 14px; }
.highlight { border-left: 3px solid var(--gold); padding-left: 16px; margin-top: 20px; font-style: italic; color: var(--gold-light); font-family: var(--font-accent); font-size: 0.98rem; }

/* ==========================================================================
   ACCORDION (Why Canada)
   ========================================================================== */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 4px; font-family: var(--font-heading); font-size: 1.15rem; color: var(--navy-deep); font-weight: 600;
}
.acc-head .plus { color: var(--gold); font-size: 1.3rem; font-weight: 400; transition: transform .2s; flex-shrink: 0; margin-left: 16px; }
.acc-item.open .acc-head .plus { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-item.open .acc-body { max-height: 600px; }
.acc-body p { padding: 0 4px 26px; color: var(--slate); max-width: 780px; }

/* ==========================================================================
   COLLEGES
   ========================================================================== */
.colleges { background: var(--navy-deep); padding: 72px 0; }
.colleges .section-label { color: var(--gold); }
.colleges .section-title { color: var(--white); }
.colleges .section-subtitle { color: rgba(255,255,255,0.6); margin-left: auto; margin-right: auto; }
.college-logos { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.college-chip { border: 1px solid rgba(201,162,39,0.35); color: rgba(255,255,255,0.82); padding: 10px 18px; border-radius: 30px; font-size: 0.84rem; font-weight: 500; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { background: var(--ivory-dark); position: relative; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  background: var(--white); border: 1px solid var(--line); color: var(--slate);
  min-height: 44px; display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: 30px; font-size: 0.83rem; font-weight: 600; cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 30px; display: flex; flex-direction: column; }
.testimonial-quote { font-family: var(--font-accent); font-style: italic; color: var(--charcoal); font-size: 0.98rem; margin-bottom: 20px; flex: 1; }
.testimonial-quote::before { content: "\201C"; color: var(--gold); font-size: 1.6rem; }
.testimonial-author { font-weight: 700; color: var(--navy-deep); font-size: 0.9rem; }
.testimonial-detail { font-size: 0.78rem; color: var(--slate); margin-top: 2px; }
@media (min-width: 621px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 981px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.scholarship-list { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin-top: 20px; }
.scholarship-row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 22px; border-bottom: 1px solid var(--line); font-size: 0.92rem; background: var(--white); }
.scholarship-row:last-child { border-bottom: none; }
.scholarship-row .who { font-weight: 600; color: var(--navy-deep); }
.scholarship-row .what { color: var(--slate); text-align: right; }

/* ==========================================================================
   SERVICES DETAIL LIST
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 30px 44px; margin-top: 8px; }
.service-item { display: flex; gap: 16px; }
.service-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--maple); margin-top: 8px; flex-shrink: 0; }
.service-item h4 { font-family: var(--font-heading); font-size: 1.08rem; margin-bottom: 6px; color: var(--navy-deep); }
.service-item p { color: var(--slate); font-size: 0.92rem; }
@media (min-width: 801px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-group-label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 40px 0 18px; }
.service-group-label:first-of-type { margin-top: 0; }

/* CRS factor cards */
.crs-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 8px 0 36px; }
.crs-card { border: 1px solid var(--line); background: var(--white); border-radius: 8px; padding: 24px 26px; }
.crs-card .pts { font-family: var(--font-heading); color: var(--maple); font-size: 1.5rem; font-weight: 600; }
.crs-card h4 { margin: 6px 0 8px; color: var(--navy-deep); }
.crs-card p { color: var(--slate); font-size: 0.9rem; }
@media (min-width: 701px) { .crs-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   SCAM WARNING
   ========================================================================== */
.scam-warning { background: #FBEAE9; border: 1px solid rgba(179,34,46,0.3); border-left: 4px solid var(--maple); border-radius: 6px; padding: 30px 34px; margin-top: 56px; }
.scam-warning h3 { color: var(--maple); font-family: var(--font-heading); margin-bottom: 12px; font-size: 1.15rem; }
.scam-warning p { color: #6b1f24; font-size: 0.93rem; margin-bottom: 10px; }
.scam-warning p:last-child { margin-bottom: 0; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: start; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 641px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy-deep); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 4px;
  font-family: var(--font-body); font-size: 1rem; background: var(--ivory); color: var(--charcoal);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-group label { display: flex; align-items: center; gap: 7px; font-size: 0.88rem; font-weight: 500; color: var(--charcoal); min-height: 44px; }
.submit-btn { background: var(--navy-deep); color: var(--white); width: 100%; justify-content: center; }
.submit-btn:hover { background: var(--navy); }
.form-note { font-size: 0.78rem; color: var(--slate); margin-top: 12px; text-align: center; }
@media (min-width: 901px) { .contact-grid { grid-template-columns: 1.3fr 1fr; } }

.contact-info h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 22px; color: var(--navy-deep); }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-detail .text strong { display: block; font-size: 0.82rem; color: var(--navy-deep); margin-bottom: 3px; }
.contact-detail .text { color: var(--slate); font-size: 0.92rem; }
.verification-box { background: var(--gold-bg); border: 1px solid rgba(201,162,39,0.3); border-radius: 6px; padding: 20px 22px; margin-top: 10px; }
.verification-box p { font-size: 0.86rem; color: var(--navy-deep); margin-bottom: 6px; }
.verification-box p:last-child { margin-bottom: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 28px 48px; display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 801px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 18px; }
.footer-grid p { font-size: 0.88rem; margin-bottom: 10px; line-height: 1.6; }
.footer-badges { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.badge { border: 1px solid rgba(201,162,39,0.4); color: var(--gold-light); font-size: 0.68rem; text-align: center; padding: 8px 12px; border-radius: 4px; line-height: 1.3; }
.footer-links a { display: block; font-size: 0.88rem; padding: 6px 0; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.78rem; max-width: var(--maxw); margin: 0 auto; }

/* ==========================================================================
   MISC / UTIL
   ========================================================================== */
.two-col { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: start; }
@media (min-width: 901px) { .two-col { grid-template-columns: 1fr 1fr; } }
.list-check { margin-top: 6px; }
.list-check li { position: relative; padding-left: 24px; margin-bottom: 12px; color: var(--charcoal); font-size: 0.95rem; }
.list-check li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cta-band { background: var(--navy-deep); border-radius: 10px; padding: 52px 48px; text-align: center; margin-top: 20px; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 20%, rgba(201,162,39,0.16), transparent 55%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h3 { font-family: var(--font-heading); color: var(--white); font-size: 1.7rem; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.68); margin-bottom: 26px; max-width: 520px; margin-left: auto; margin-right: auto; }
.category-tag { display: inline-block; background: var(--gold-bg); color: var(--navy); font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 30px; letter-spacing: 0.03em; margin-bottom: 10px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--navy-deep); padding: 10px 16px; z-index: 999; font-weight: 700; }
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
