/* =========================================================
   PeterJohal.ca — Global Stylesheet
   Author: Peter Johal | Built April 2026
   Mobile-first responsive design
   ========================================================= */

/* ---------- 1. CSS Variables ---------- */
:root {
  --navy: #1B2A4A;
  --navy-dark: #131F38;
  --navy-overlay: rgba(27, 42, 74, 0.4);
  --gold: #C9A84C;
  --gold-dark: #A8893A;
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
  --dark-text: #333333;
  --muted-text: #666666;
  --white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --content-width: 768px;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.14);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus {
  color: var(--gold);
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- 3. Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.6em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted-text);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75em;
}

/* ---------- 4. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: var(--content-width);
}

section {
  padding: 3rem 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--muted-text);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--white);
  color: var(--navy);
}

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

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

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

/* ---------- 6. Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo:hover,
.logo:focus {
  color: var(--gold);
}

.logo .logo-accent {
  color: var(--gold);
}

.nav-toggle {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
}

.nav-toggle:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.main-nav {
  display: none;
  width: 100%;
  background-color: var(--navy);
}

.main-nav.is-open {
  display: block;
}

.main-nav ul {
  flex-direction: column;
  padding: 1rem 0;
}

.main-nav li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: var(--white);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: var(--gold);
}

@media (min-width: 992px) {
  .nav-wrap {
    padding: 1.25rem 1.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    width: auto;
    background-color: transparent;
  }

  .main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.25rem;
  }

  .main-nav li {
    border: none;
  }

  .main-nav a {
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
  }

  .main-nav a.active {
    border-bottom-color: var(--gold);
  }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 32vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 1.75rem 1.25rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 40vh;
    padding: 2.25rem 1.25rem;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--navy-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 4.5vw, 2.75rem);
  margin-bottom: 0.6rem;
}

.hero .subheadline {
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.hero .btn {
  margin: 0.3rem;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 2rem 1.25rem 1.5rem;
  }
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.page-hero .eyebrow {
  margin-bottom: 0.4em;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.45;
}

/* ---------- 8. Cards & Grids ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--navy);
}

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

.card .card-icon {
  font-size: 2.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted-text);
  font-size: 0.98rem;
}

/* ---------- 9. Pillars (homepage) ---------- */
.pillars {
  background-color: var(--light-gray);
}

.pillar-card {
  background-color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.pillar-card .pillar-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pillar-card h3 {
  margin-bottom: 0.75rem;
}

/* ---------- 9b. Bilingual Video Tabs ---------- */
.video-with-langs .lang-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.lang-tab {
  background-color: var(--white);
  border: 1.5px solid var(--medium-gray);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.lang-tab:hover,
.lang-tab:focus {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

.lang-tab.active {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.lang-tab.active:hover,
.lang-tab.active:focus {
  background-color: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

/* ---------- 10. Video Cards & Embed ---------- */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background-color: var(--navy);
  border-radius: var(--radius-md);
}

.video-embed iframe,
.video-embed .video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-dark);
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.video-thumb .play-btn {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform var(--transition);
  box-shadow: var(--shadow-md);
}

.video-thumb:hover .play-btn,
.video-thumb:focus .play-btn {
  transform: scale(1.08);
}

.video-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.video-card .video-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.video-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.topic-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  background-color: rgba(201, 168, 76, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

/* ---------- 11. About Teaser & Two-column ---------- */
.two-col {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .two-col.reverse > :first-child {
    order: 2;
  }
}

.two-col img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ---------- 12. Timeline (About page) ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.6rem;
  top: 0.4rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.timeline-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

/* ---------- 13. Forms ---------- */
.form-wrap {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row.two-up {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .form-row.two-up {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--dark-text);
  background-color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.20);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted-text);
  margin-top: 1rem;
}

/* Email signup bar */
.signup-bar {
  background-color: var(--navy);
  color: var(--white);
  padding: 2rem 1.25rem;
  text-align: center;
}

.signup-bar h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.signup-bar p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

.signup-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-form input[type="email"] {
  flex: 1;
  min-width: 220px;
}

/* Topic anchor offset — keep headings visible below the sticky header */
section[id^="topic-"] {
  scroll-margin-top: 80px;
}

/* ---------- 14. Categories / Topic chips ---------- */
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.category-chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}

.category-chip:hover,
.category-chip:focus,
.category-chip.active {
  background-color: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---------- 15. Article / Blog content ---------- */
.article-meta {
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.article-content h2,
.article-content h3 {
  margin-top: 2rem;
}

.article-content p,
.article-content li {
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-content ul,
.article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1em;
}

.article-content ul li,
.article-content ol li {
  list-style: disc;
  margin-bottom: 0.4em;
}

.article-content ol li {
  list-style: decimal;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-weight: 600;
  color: var(--navy);
}

.article-back:hover {
  color: var(--gold);
}

/* Blog index card */
.post-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.post-card-image {
  aspect-ratio: 16/9;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}

.post-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.post-card .post-excerpt {
  color: var(--muted-text);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.post-card .read-more {
  font-weight: 600;
  color: var(--gold);
  align-self: flex-start;
}

/* ---------- 16. Testimonials ---------- */
.testimonials {
  background-color: var(--light-gray);
}

.testimonial {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}

.testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--muted-text);
  font-size: 0.88rem;
  margin-top: 0.15rem;
}

/* ---------- 16a. Stats Section ---------- */
.stats {
  background-color: var(--navy);
  color: var(--white);
  padding: 3rem 1.25rem;
  text-align: center;
}

.stats h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stats .stats-intro {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  display: block;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.stat-item .stat-source {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

/* ---------- 17a. Quiz Promo (compact CTA card) ---------- */
.quiz-promo {
  background-color: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .quiz-promo {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    padding: 2rem 2.25rem;
    gap: 1.75rem;
  }
}

.quiz-promo .quiz-icon {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.quiz-promo h3 {
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

.quiz-promo p {
  color: var(--muted-text);
  margin-bottom: 0;
  font-size: 0.98rem;
}

.quiz-promo .btn {
  white-space: nowrap;
}

/* ---------- 17. CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 4rem 1.25rem;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  max-width: 580px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* ---------- 18. Footer ---------- */
.site-footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.25rem 1.5rem;
}

.footer-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-wrap {
    grid-template-columns: 2fr 1fr 1fr;
    text-align: left;
  }
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.footer-col a:hover,
.footer-col a:focus {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.10);
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover,
.footer-social a:focus {
  background-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.disclaimer {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 720px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.footer-bottom .legal-links {
  margin-top: 0.5rem;
}

.footer-bottom .legal-links a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0.5rem;
}

/* ---------- 19. Utilities ---------- */
.text-center { text-align: center; }
.text-left   { text-align: left; }

.bg-light    { background-color: var(--light-gray); }
.bg-white    { background-color: var(--white); }
.bg-navy     { background-color: var(--navy); color: var(--white); }
.bg-navy h2,
.bg-navy h3  { color: var(--white); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  z-index: 2000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* ---------- 20. Print ---------- */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .btn {
    display: none !important;
  }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
