/* ============================================================
   ANTIOCH CENTRE — Design System
   A Centre for Antiochian Orthodox Christian Studies & Research
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================
   CSS CUSTOM PROPERTIES
   ======================== */
:root {
  /* Primary Palette */
  --color-burgundy: #7A1E3A;
  --color-burgundy-deep: #5C1530;
  --color-burgundy-light: #9E2F50;
  --color-gold: #C9A84C;
  --color-gold-light: #DBBF6B;
  --color-gold-dark: #A8893D;

  /* Neutrals */
  --color-cream: #FAF6F0;
  --color-cream-dark: #F0EBE3;
  --color-navy: #1A1A2E;
  --color-navy-light: #2D2D44;
  --color-charcoal: #3A3A4A;
  --color-grey: #6B6B7B;
  --color-grey-light: #9B9BAA;
  --color-white: #FFFFFF;
  --color-off-white: #FDFCFA;

  /* Functional */
  --color-success: #2E7D4F;
  --color-error: #C0392B;

  /* Typography */
  --font-heading: 'Times New Roman', Times, Georgia, serif;
  --font-body: 'Times New Roman', Times, Georgia, serif;

  /* Font Sizes (fluid) */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.3rem, 1.1rem + 1vw, 1.6rem);
  --text-2xl: clamp(1.6rem, 1.3rem + 1.5vw, 2.2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 30px rgba(26, 26, 46, 0.12);
  --shadow-xl: 0 16px 50px rgba(26, 26, 46, 0.16);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.2);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1200px;
  --content-max: 740px;
  --nav-height: 72px;
}

/* ========================
   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: var(--text-base);
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-navy);
}

h1 { font-size: var(--text-4xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-3xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-lg);
}

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

strong {
  font-weight: 600;
  color: var(--color-navy);
}

em {
  font-style: italic;
}

/* ========================
   LAYOUT
   ======================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.content-narrow {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background-color: var(--color-white);
}

.section--dark {
  background-color: var(--color-navy);
  color: var(--color-cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark strong {
  color: var(--color-cream);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

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

/* ========================
   NAVIGATION
   ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(122, 30, 58, 0.08);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.nav.scrolled {
  background: rgba(250, 246, 240, 0.95);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

.nav__link:hover {
  color: var(--color-burgundy);
  background: rgba(122, 30, 58, 0.06);
}

.nav__link.active {
  color: var(--color-burgundy);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: var(--space-md);
  right: var(--space-md);
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition-fast);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(122, 30, 58, 0.08);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown:hover .nav__dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav__dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.nav__dropdown-menu a:hover {
  background: rgba(122, 30, 58, 0.06);
  color: var(--color-burgundy);
}

.nav__dropdown-menu a.active {
  background: rgba(122, 30, 58, 0.04);
  color: var(--color-burgundy);
  border-left-color: var(--color-gold);
  font-weight: 600;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 10000;
  padding: 10px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--color-burgundy);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--color-burgundy);
}@media (max-width: 900px) {
  .nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(250, 246, 240, 0.98);
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    height: 100dvh !important;
    width: 280px !important;
    max-width: 85vw !important;
    background: var(--color-cream) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 90px 0 40px !important;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.25) !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    gap: 0 !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    border-left: 3px solid var(--color-gold) !important;
  }

  .nav__links.open {
    transform: translateX(0) !important;
  }

  .nav__link {
    display: flex !important;
    align-items: center !important;
    font-family: var(--font-heading) !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    padding: 18px 28px !important;
    color: var(--color-navy) !important;
    border-bottom: 1px solid rgba(122, 30, 58, 0.08) !important;
    border-left: 4px solid transparent !important;
    transition: all var(--transition-base) !important;
  }

  .nav__link:hover,
  .nav__link.active {
    border-left-color: var(--color-gold) !important;
    background: rgba(122, 30, 58, 0.06) !important;
    color: var(--color-burgundy) !important;
    padding-left: 34px !important;
  }

  .nav__link.active::after {
    display: none !important;
  }
}}

  .nav__dropdown-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    background: rgba(122, 30, 58, 0.02);
    min-width: auto;
  }

  .nav__dropdown-menu.open {
    display: block;
  }

  .nav__dropdown-menu a {
    display: block;
    padding: var(--space-md) var(--space-xl) var(--space-md) calc(var(--space-xl) + var(--space-md));
    font-size: var(--text-sm);
    border-bottom: 1px solid rgba(122, 30, 58, 0.03);
    border-left: 4px solid transparent;
  }

  .nav__dropdown-menu a.active {
    border-left-color: var(--color-gold);
    background: rgba(122, 30, 58, 0.04);
    color: var(--color-burgundy);
    font-weight: 600;
  }

  .nav__dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .nav__dropdown-trigger::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform var(--transition-fast);
  }

  .nav__dropdown-trigger.open::after {
    transform: rotate(180deg);
  }
}

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav__overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ========================
   HERO SECTIONS
   ======================== */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--color-burgundy-deep) 0%, var(--color-burgundy) 40%, var(--color-navy) 100%);
  color: var(--color-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero--home {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  pointer-events: none;
}



.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  padding: 2px var(--space-md);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-xl);
}

.hero__title {
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: var(--space-xs);
  line-height: 1.15;
}

.hero__title em {
  font-style: normal;
  color: var(--color-gold-light);
}

.hero__subtitle {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin-bottom: 0;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ========================
   BLOCKQUOTES
   ======================== */
.quote {
  position: relative;
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-md) 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 16px;
  line-height: 1;
}

.quote p {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.8;
}

.quote cite {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--color-gold-dark);
  font-weight: 600;
}

.quote p.quote__citation-sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-style: normal;
  color: var(--color-charcoal);
  opacity: 0.8;
  line-height: 1.5;
  margin-top: 4px;
}

.quote--hero {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--color-gold);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.quote--hero::before {
  color: var(--color-gold);
  opacity: 0.2;
}

.quote--hero p {
  color: rgba(255, 255, 255, 0.9);
}

.quote--hero .quote__author {
  color: var(--color-gold-light);
}

/* ========================
   CARDS
   ======================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(122, 30, 58, 0.06);
  transition: all var(--transition-slow);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.2);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.card__text {
  color: var(--color-grey);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-base);
}

.card__link:hover {
  gap: 10px;
  color: var(--color-gold-dark);
}

.card__link::after {
  content: '→';
  transition: transform var(--transition-base);
}

/* Newsletter card */
.newsletter-card {
  position: relative;
  overflow: hidden;
}

.newsletter-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
}

.newsletter-card__year {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--color-burgundy);
  opacity: 0.15;
  position: absolute;
  top: var(--space-md);
  left: var(--space-2xl);
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

.btn--primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-navy);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

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

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

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

.btn--outline:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-burgundy);
  border-color: transparent;
  padding: 12px 16px;
}

.btn--ghost:hover {
  background: rgba(122, 30, 58, 0.06);
  color: var(--color-burgundy-deep);
}

/* PDF button */
.btn--pdf {
  background: var(--color-white);
  color: var(--color-burgundy);
  border: 1px solid rgba(122, 30, 58, 0.15);
  font-size: var(--text-sm);
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.btn--pdf:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
  border-color: var(--color-burgundy);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--pdf svg {
  width: 18px;
  height: 18px;
}

/* ========================
   ARTICLE / CONTENT PAGES
   ======================== */
.page-header {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--color-burgundy-deep) 0%, var(--color-burgundy) 50%, var(--color-navy) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}



.page-header h1 {
  color: var(--color-white);
  font-weight: 400;
  max-width: var(--content-max);
}

.page-header .breadcrumb {
  margin-bottom: var(--space-lg);
}

.article-content {
  padding: var(--space-3xl) 0 var(--space-4xl);
}

.article-content .content-narrow p {
  font-size: var(--text-base);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}

.article-content .content-narrow h3 {
  margin: var(--space-2xl) 0 var(--space-lg);
}

/* Interview formatting */
.interview-q {
  font-weight: 600;
  color: var(--color-burgundy);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.interview-a {
  margin-bottom: var(--space-xl);
}

.interview-label {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-gold-dark);
  letter-spacing: 0.05em;
  display: inline;
}

/* ========================
   BREADCRUMBS
   ======================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--color-gold-light);
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--color-gold-light);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb__current {
  color: rgba(255, 255, 255, 0.6);
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer__text {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  transition: color var(--transition-base);
}

.footer__links a:hover {
  color: var(--color-gold-light);
}

.footer__bottom {
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer__charity {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__charity a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__charity a:hover {
  color: var(--color-gold-light);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* ========================
   CONTACT FORM
   ======================== */
.form-group {
  margin-bottom: var(--space-xl);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  background: var(--color-white);
  border: 2px solid var(--color-cream-dark);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-message {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

.form-message--success {
  background: rgba(46, 125, 79, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(46, 125, 79, 0.2);
}

.form-message--error {
  background: rgba(192, 57, 43, 0.1);
  color: var(--color-error);
  border: 1px solid rgba(192, 57, 43, 0.2);
}

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-burgundy-deep), var(--color-burgundy));
  padding: var(--space-4xl) 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  position: relative;
}

/* ========================
   MISSION POINTS / FEATURES LIST
   ======================== */
.mission-list {
  display: grid;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(122, 30, 58, 0.06);
}

.mission-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

.mission-item p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  line-height: 1.6;
}

/* ========================
   SECTION HEADERS
   ======================== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.section-header__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--color-grey);
  font-size: var(--text-base);
}

/* Decorative line */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-burgundy), var(--color-gold));
  margin: var(--space-lg) auto 0;
  border-radius: 2px;
}

/* ========================
   SCROLL ANIMATIONS
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================
   MISC UTILITIES
   ======================== */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-burgundy { color: var(--color-burgundy); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* Spacer after nav */
.nav-spacer {
  height: var(--nav-height);
}

/* Decorative divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-burgundy), var(--color-gold));
  border: none;
  border-radius: 2px;
  margin: var(--space-xl) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* PDF download section */
.pdf-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* Source reference */
.source-ref {
  font-size: var(--text-sm);
  color: var(--color-grey);
  font-style: italic;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-cream-dark);
}

/* ========================
   MOBILE OPTIMIZATIONS
   ======================== */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

p, h1, h2, h3, h4, h5, h6, li, span, blockquote, a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  /* Container padding for mobile screens */
  .container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  /* Compact navigation logo & bar on mobile */
  .nav__inner {
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
  }

  .nav__logo-img {
    height: 40px;
    width: auto;
  }

  /* Compact Hero & Page Headers on Mobile */
  .hero, .page-header {
    padding-top: calc(var(--nav-height) + var(--space-lg));
    padding-bottom: var(--space-lg);
  }

  .hero__title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-header h1 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }

  /* Quotes & Aims Section responsiveness */
  .quote {
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-sm) 0;
  }

  .reveal[style*="padding: var(--space-2xl)"] {
    padding: var(--space-lg) var(--space-md) !important;
  }

  ol[style*="padding-left"] {
    padding-left: var(--space-lg) !important;
  }

  /* Full-width PDF Buttons on Mobile for easy touch targets */
  .pdf-downloads {
    margin-top: var(--space-md);
  }

  .btn--pdf {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
    font-size: var(--text-base);
  }

  /* Footer responsiveness */
  .footer {
    padding-top: var(--space-xl);
  }

  .footer__bottom {
    font-size: var(--text-xs);
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .nav__links {
    width: 85vw;
  }

  .btn {
    padding: 10px 16px;
  }
}

/* ========================
   PRINT STYLES
   ======================== */
@media print {
  .nav, .nav-spacer, .footer, .cta-section, .hero::after, .page-header::after {
    display: none !important;
  }

  .hero, .page-header {
    background: none !important;
    color: var(--color-navy) !important;
    padding-top: var(--space-xl) !important;
    min-height: auto !important;
  }

  .hero__title, .page-header h1 {
    color: var(--color-navy) !important;
  }

  body {
    background: white;
  }

  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
