/* ZODDIAK Foundation - Design System Implementation v1.0.0 */

/* Design tokens (CSS variables) */
:root {
  /* colors */
  --bg-dark: #161616;
  --bg-deep: #111214;
  --text-prim: #F2F2F2;
  --text-sec: #BEBEBE;
  --text-muted: #FFFFFF80;
  --gold-500: #CDA24A;
  --gold-400: #E1C572;
  --divider: rgba(255,255,255,.08);

  /* thematic colors */
  --theme-history: #D45163;     /* history, culture, spirituality */
  --theme-business: #6C7B9F;    /* business, investments, charity */
  --theme-science: #9F5A53;     /* science, education, enlightenment */
  --theme-sport: #698678;       /* sport, health, ecology */

  /* sizing */
  --container: 1400px;
  --gutter: 24px;
  --nav-h: 72px;
  --nav-h-scrolled: 64px;
  --nav-gap: 28px;

  /* hero */
  --hero-h: 720px;
  --seal-size: 280px;
  --tagline-fs: 22px;
  --cta-fs: 14px;

  /* typography */
  --font-primary: "Rock Star Narrow", "Arial Narrow", Impact, system-ui, sans-serif;
  --font-secondary: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-display: var(--font-primary);
  --font-body: var(--font-secondary);

  /* motion */
  --dur-fast: 120ms;
  --dur: 320ms;
  --ease: cubic-bezier(.2,0,0,1);
}

/* Local Font Declarations */
@font-face {
  font-family: 'Rock Star Narrow';
  src: url("/static/fonts/RockStarNarrow-Regular.554a1bad27b4.eot");
  src: url("/static/fonts/RockStarNarrow-Regular.554a1bad27b4.eot?#iefix") format('embedded-opentype'),
       url("/static/fonts/RockStarNarrow-Regular.2c41817c1e0e.woff2") format('woff2'),
       url("/static/fonts/RockStarNarrow-Regular.a6945e99e728.woff") format('woff'),
       url("/static/fonts/RockStarNarrow-Regular.fc736597deba.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url("/static/fonts/SourceSerif4Roman-Regular.90153ef0913a.eot");
  src: url("/static/fonts/SourceSerif4Roman-Regular.90153ef0913a.eot?#iefix") format('embedded-opentype'),
       url("/static/fonts/SourceSerif4Roman-Regular.6775c8928ea3.woff2") format('woff2'),
       url("/static/fonts/SourceSerif4Roman-Regular.43db4969197c.woff") format('woff'),
       url("/static/fonts/SourceSerif4Roman-Regular.885d51a70cbd.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: var(--bg-dark);
  color: var(--text-prim);
  font: 400 18px/1.6 var(--font-primary);
}

/* Navigation */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 140px;
  z-index: 1000;
  transition: background var(--dur) var(--ease), height var(--dur) var(--ease), border-color var(--dur) var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.nav__inner {
  margin: 0 auto;
  max-width: var(--container);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px clamp(16px, 4vw, 32px) 0;
  position: relative;
}

/* Logo container centered at top */
.nav__logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--gold-500);
}

.nav__brand-img { height: 28px; width: auto; display: block; }

/* Navigation menu below logo */
.nav__menu {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between; /* spread across full container width */
  flex-wrap: nowrap;
  width: 100%;
}

.nav__item {
  position: relative;
  text-decoration: none;
  color: var(--text-sec);
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
  padding: 6px 0;
}

.nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.nav__item:hover {
  color: var(--gold-500);
}

.nav__item:hover::after {
  transform: scaleX(1);
}

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



.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  border: 1px solid var(--divider);
  border-radius: 0;
  padding: 12px 20px;
  margin-top: 0;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
  z-index: 1001;
}

.nav__dropdown.show .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-item {
  display: block;
  padding: 15px 0px;
  color: var(--text-sec);
  text-decoration: none;
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease);
  position: relative;
  border-bottom: 1px solid var(--divider);
}


.nav__dropdown-item:hover {
  color: var(--gold-500);
}
.nav__dropdown-item:hover::before,
.nav__dropdown-item:hover::after {
  background: var(--gold-500);
}

/* Language switcher positioned top right */
.nav__lang {
  position: absolute;
  top: 24px;
  right: clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__langBtn {
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: 0;
  padding: 6px 2px;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
}

.nav__langBtn.is-active {
  color: var(--text-prim);
}

.nav__langBtn:hover {
  color: var(--gold-500);
}

.nav__sep {
  color: var(--text-muted);
  font-size: 14px;
}

/* burger (hidden on desktop) */
.nav__burger {
  display: none;
  position: absolute;
  top: 24px;
  right: clamp(16px, 4vw, 32px);
  width: 36px;
  height: 28px;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav__burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text-prim);
  transform-origin: center;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav__burger span:nth-child(1) {
  top: 4px;
}

.nav__burger span:nth-child(2) {
  top: 13px;
}

.nav__burger span:nth-child(3) {
  top: 22px;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* SCROLLED STATE (matches "menu transformation" screenshot) */
.nav.is-scrolled {
  height: 140px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--divider);
}

.nav.is-scrolled .nav__logo-container {
  margin-bottom: 0;
}


.nav.is-scrolled .nav__menu {
  margin: 30px auto;
  gap: 28px;
}


.nav.is-scrolled .nav__item:hover {
  color: var(--gold-500);
}
/* mobile overlay */
.nav__overlay[hidden] {
  display: none;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,12,13,.96);
  padding: 24px 24px 24px;
  z-index: 999;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.nav__overlayTop { display: flex; justify-content: center; }

.nav__overlayMenu {
  max-width: 720px;
  margin: 0 auto; /* center the block */
  display: flex;
  flex-direction: column;
  align-items: center; /* center items */
  gap: 24px;
  padding: 48px clamp(8px, 4vw, 40px) 0; /* more top padding */
}

.nav__overlayItem {
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-prim);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: none;
  text-align: center;
  width: 100%;
}

.nav__overlayItem--toggle {
  background: none;
  border: 0;
  text-align: center;
  cursor: pointer;
}

.nav__overlayLang {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.nav__overlayLang--top { margin: 8px 0 0 0; gap: 20px; }

.nav__overlaySubmenu[hidden] { display: none; }

.nav__overlaySubgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, max-content));
  gap: 14px 32px;
  padding: 12px 0 6px;
  justify-items: center;
  justify-content: center;
  margin: 0 auto;
}

.nav__overlaySubItem {
  display: inline-block;
  color: var(--text-sec);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease);
}

.nav__overlaySubItem:hover { color: var(--gold-500); }

.nav__overlayBottom { display: flex; align-items: flex-end; justify-content: center; }

.nav__overlayFollow { margin-left: 0; text-align: center; }

.nav__overlayFollowLabel {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.nav__overlaySocial { display: flex; gap: 18px; font-size: 22px; justify-content: center; }

.nav__overlaySocial a { color: var(--text-prim); opacity: .9; }

.nav__overlaySocial a:hover { color: var(--gold-500); opacity: 1; }

/* Ensure burger (X) stays above overlay and changes color */
.nav__burger { z-index: 1002; }
.nav__burger.is-open { position: fixed; top: 24px; right: clamp(16px, 4vw, 32px); }
.nav__burger.is-open span { background: var(--gold-500); }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 75%),
    url("/static/images/back.12987637c21c.png") center/cover no-repeat;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 25vh;
}

/* seal (gold 189 emblem) */
.hero__seal {
  width: 320px;
  height: auto;
  display: block;
  margin: 170px 0 40px 0;
}

/* tagline */
.hero__tagline {
  font-family: "Source Serif 4";
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #CBA25C;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero__tagline.secondary {
  font-family: "Rock Star Narrow";
  font-size: 38px;
}

.hero__content a {
  margin-top: 40px;
  display: inline-block;
  text-decoration: none;
  user-select: none;
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 100%;
  border: 1px solid #FFFFFF80;
  background: transparent;
  color: #FFFFFF80;
  padding: 16px 32px;
  border-radius: 6px;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}

.hero__content a:hover {
  border: 1px solid #CBA25C;
  background: #CBA25C;
  color: #161616;
}

/* CTA button */
.btn {
  display: inline-block;
  text-decoration: none;
  user-select: none;
}

.btn--primary {
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F2F2F2;
  background: transparent;
  padding: 16px 32px;
  border-radius: 6px;
  box-shadow: none;
  transition: all var(--dur) var(--ease);
  border: 1px solid #F2F2F2;
  cursor: pointer;
}

.btn--primary:hover {
  background: rgba(205,162,74,0.1);
  color: var(--gold-500);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
  padding: 10px 22px;
  border-radius: 4px;
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all var(--dur) var(--ease);
}

.btn-ghost:hover {
  background-color: rgba(205,162,74,0.1);
  color: var(--gold-500);
  transform: translateY(-1px);
}

/* Badge */
.badge {
  background-color: rgba(205,162,74,0.15);
  color: var(--gold-500);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-family: "Source Serif 4";
  font-weight: 400;
  font-style: Regular;
  line-height: 100%;
  letter-spacing: 0.16em;
}

/* Typography classes */
.body-text {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.16em;
  color: var(--text-sec);
}

.small-text {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* Focus styles */
.nav__item:focus-visible,
.nav__langBtn:focus-visible,
.nav__burger:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}

/* Join banner (full-bleed) */
.join-banner { padding: 0; min-height: 70vh !important ;}
.join-banner-bg {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/static/images/join_team.563f61f3222d.png") center/cover no-repeat;
  width: 100%;
}
.join-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 75%);
}
.join-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 16px;
}
.join-emblem { width: 120px; height: auto; margin-bottom: 24px; }

.join-banner.partnership {
  height: auto !important;
  padding: 0;
}

.join-banner.partnership .section-title {
  font-size: 36px;
  margin: 0;
}

.join-banner.partnership .section-subtitle {
  font-size: 36px;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  color: var(--gold-500);
  letter-spacing: 0.16em;
}


.contacts-section, .contacts-section .body-text {
  color: var(--gold-500);
}

.contact-subtitle {
  color: var(--gold-500);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}


/* Responsive Design */
@media (max-width: 767px) {
  .nav__menu {
    display: none;
  }
  
  .nav__lang {
    display: none;
  }
  
  .nav__burger {
    display: block;
  }
  
  .hero {
    height: 100vh;
  }
  
  .hero__seal {
    width: 240px;
  }
  
  .hero__content {
    max-width: 320px;
    padding-top: 20vh;
  }

  
  .btn--primary {
    padding: 14px 28px;
    font-size: 16px;
  }
}

/* Legacy styles for existing components */
.section {
  padding: 96px 0;
  background-color: var(--bg-dark);
}

.section.bg-deep {
  background-color: var(--bg-deep);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.direction-content .body-text {
  color: var(--gold-500);
}

.about-section.homepage {
  min-height: 70vh; /* use full viewport height for centering */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  text-align: center;
}

/* Ensure container inside also centers content */
.about-section.homepage .container {
  width: 100%;
}

/* About section (homepage) */
.about-section .about-title { color: #CBA25C; }
.about-section .about-intro p {
  color: #CBA25C;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-section .body-text {
  color: var(--gold-500);
}

.mission-content {
  color: var(--gold-500);
}

.about-section .principles-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 64px 96px; }
@media (max-width: 991.98px) { .about-section .principles-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-section .principle-card { text-align: center; }
.about-section .principle-title {
  color: #CBA25C;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.about-section .principle-text { color: #CBA25C; font-family: var(--font-secondary); letter-spacing: 0.08em; }

.section-subtitle {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Focus Areas Grid */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-top: 24px;
}

/* New Focus Areas Grid - 4 columns x 3 rows on desktop */
.focus-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 64px 48px;
  margin-top: 64px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
}

.focus-area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all var(--dur) var(--ease);
  padding: 16px 0px;
  width: 100%;
}

/* Program detail full-bleed image */
.program-image { width: 100%; }
.program-image .event-detail-image {
  width: 100%;
  height: 60vh; /* smaller fixed height */
  object-fit: cover; /* fill width without stretching */
  object-position: center;
  display: block;
}

.focus-area-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all var(--dur) var(--ease);
}

.focus-area-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all var(--dur) var(--ease);
}

/* Icon color inheritance - use direct color for SVG icons */
.focus-area-icon.text-history {
  color: var(--theme-history);
}

.focus-area-icon.text-history img {
  color: var(--theme-history);
  fill: currentColor;
}

.focus-area-icon.text-business {
  color: var(--theme-business);
}

.focus-area-icon.text-business img {
  color: var(--theme-business);
  fill: currentColor;
}

.focus-area-icon.text-science {
  color: var(--theme-science);
}

.focus-area-icon.text-science img {
  color: var(--theme-science);
  fill: currentColor;
}

.focus-area-icon.text-sport {
  color: var(--theme-sport);
}

.focus-area-icon.text-sport img {
  color: var(--theme-sport);
  fill: currentColor;
}

.focus-area-item h4 {
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  transition: all var(--dur) var(--ease);
  text-align: center;
  width: 100%;
}

.focus-area-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.focus-area-link:hover {
  text-decoration: none;
}

.focus-area-item:hover {
  transform: translateY(-4px);
}

.focus-area-item:hover .focus-area-icon {
  transform: scale(1.05);
}

.direction-card {
  background-color: transparent;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all var(--dur) var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.direction-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-500);
}

.direction-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 36px;
  transition: all var(--dur) var(--ease);
  stroke: var(--gold-500);
  stroke-width: 1.5px;
}

.direction-card:hover .direction-icon {
  color: var(--gold-400);
  stroke: var(--gold-400);
}

.direction-card h4 {
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: #F2F2F2;
  text-transform: uppercase;
  margin-bottom: 8px;
  transition: color var(--dur) var(--ease);
}

.direction-card:hover h4 {
  color: var(--gold-500);
}

.direction-card p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  color: var(--text-sec);
  margin: 0;
}

/* Project Cards */
.projects-grid {
  display: grid;
  /* base grid, specific pages may override */
  gap: 48px;
  margin-top: 32px;
}

/* Center short rows (1-2 items) without stretching cards */
.projects-grid.projects-grid--center {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}

/* Fixed card width when centering 1–2 items */
.projects-grid.projects-grid--center .project-card {
  width: 420px;
  max-width: 100%;
}

.project-card {
  background-color: transparent;
  border-radius: 0; /* no rounded corners */
  overflow: hidden;
  transition: transform var(--dur) var(--ease);
  border: 0; /* remove any surrounding border */
  display: block; /* allow anchor to behave as block card */
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-2px);
  /* no shadow around cards */
}

.project-image {
  width: 100%;
  height: 400px;
  background-color: var(--bg-deep);
  background-size: cover;
  background-position: center center;
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}

.project-card:hover .project-image {
  transform: scale(1.04);
}

.project-content { padding: 20px 0px; text-align: left; }

.project-title {
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: #CBA25C;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project-caption {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

/* Project image overlay (for first tile) */
.project-figure { position: relative; overflow: hidden; margin: 0; display: block; }
.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.project-overlay .overlay-text {
  color: #CBA25C;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  max-width: 420px;
  margin-bottom: 12px;
}
.project-overlay .overlay-btn {
  display: inline-block;
  border: 1px solid #CBA25C;
  color: #CBA25C;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: "Rock Star Narrow";
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
.project-overlay .overlay-btn:hover { background: rgba(203,162,92,.1); }

/* Reveal details on hover */
.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .project-image { filter: brightness(0.85); }

/* Ensure three large projects per row on homepage (wins over generic rule) */
.home-sections-100vh .projects-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 991.98px) {
  .home-sections-100vh .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .project-image { height: 320px; }
}
@media (max-width: 575.98px) {
  .home-sections-100vh .projects-grid { grid-template-columns: 1fr; gap: 20px; }
  .project-image { height: 220px; }
}

/* Event Cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.event-card {
  background-color: transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  border: 1px solid transparent;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.event-image {
  width: 100%;
  height: 320px;
  background-color: var(--bg-deep);
  background-size: cover;
  background-position: center;
  transition: transform var(--dur) var(--ease);
}

.event-card:hover .event-image {
  transform: scale(1.04);
}

/* Program detail */
.program-hero { padding: 96px 0 24px; background: transparent; padding-top: 200px; }
.program-meta { margin-top: 8px; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.program-image img { width: 100%; height: auto; display: block; }
.program-body .event-description { margin-top: 24px; }
.program-body .body-text { color: var(--gold-500); }
.program-cta .btn { min-width: 140px; }

.program-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.program-tags .badge { background: rgba(205,162,74,.12); border: 1px solid var(--gold-500); color: var(--gold-500); }

/* Remove default link styling for upcoming event cards */
.event-card.link-unstyled {
  color: inherit;
  text-decoration: none;
}
.event-card.link-unstyled:hover,
.event-card.link-unstyled:focus,
.event-card.link-unstyled:visited {
  color: inherit;
  text-decoration: none;
}

.event-content {
  padding: 16px;
}

.event-title {
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: var(--gold-500);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.event-date {
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.event-location {
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.event-excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-sec);
}

/* Partnership CTA */
.partnership-cta {
  background-color: var(--bg-deep);
  padding: 96px 0;
  text-align: center;
}

.partnership-cta .section-title {
  margin-bottom: 24px;
}

.partnership-cta .body-text {
  max-width: 760px;
  margin: 0 auto 24px;
}



/* Forms */
.form-control {
  background-color: var(--bg-deep);
  border: 1px solid var(--divider);
  border-radius: 4px;
  color: var(--text-sec);
  font-family: var(--font-body);
  padding: 12px;
  transition: all var(--dur) var(--ease);
}

.form-control:focus {
  background-color: var(--bg-deep);
  border-color: var(--gold-500);
  color: var(--text-prim);
  box-shadow: 0 0 0 2px rgba(205,162,74,0.25);
  outline: none;
}

/* Language dropdown styling - match form-control */
.nav__lang .form-select,
.nav__lang .form-select-sm,
.nav__overlayLang .form-select {
  background-color: transparent;
  border: 1px solid var(--divider);
  border-radius: 4px;
  color: var(--text-sec);
  font-family: var(--font-primary);
  padding: 12px;
  transition: all var(--dur) var(--ease);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav__lang .form-select-sm {
  padding: 8px 12px;
  font-size: 13px;
}

.nav__lang .form-select:focus,
.nav__lang .form-select-sm:focus,
.nav__overlayLang .form-select:focus {
  background-color: transparent;
  border-color: var(--gold-500);
  color: var(--text-prim);
  box-shadow: none;
  outline: none;
}

.nav__lang .form-select option,
.nav__lang .form-select-sm option,
.nav__overlayLang .form-select option {
  background-color: var(--bg-deep);
  color: var(--text-sec);
  padding: 8px;
}

.nav__lang .form-select option:checked,
.nav__lang .form-select-sm option:checked,
.nav__overlayLang .form-select option:checked {
  background-color: var(--bg-dark);
  color: var(--text-prim);
}

.form-label {
  color: var(--gold-500);
  font-family: "Rock Star Narrow";
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  padding: 48px 0;
  border-top: 1px solid var(--divider);
}

.footer-section {
  margin-bottom: 24px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-title a {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-weight: 400;
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links a:hover {
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid var(--divider);
  padding-top: 16px;
  margin-top: 24px;
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: var(--text-muted);
  font-size: 18px;
  transition: color var(--dur) var(--ease);
}

.social-icons a:hover {
  color: var(--gold-500);
}

.footer-legal {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

/* New Footer Design */
.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 48px 0 24px;
}

.footer-top {
  margin-bottom: 32px;
}

/* Hide/show desktop vs mobile footer top */
.footer-top--mobile { display: none; }
.footer-top--desktop { display: block; }

.footer-focus-areas {
  display: flex;
  gap: 40px;
  margin-top: 16px;
}

.footer-focus-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold-500);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-text {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-social-icons {
  display: flex;
  gap: 8px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #333333;
  color: var(--text-muted);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-social-icons a:hover {
  background-color: #d4af37;
  color: #1a1a1a;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer-legal-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--gold-500);
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}


.direction-join .section-title {
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.16em;
  max-width: 600px;
}

.direction-join .section-subtitle {
  font-size: 30px;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.16em;
}

.direction-join .btn-ghost {
  background: #D9D9D980;
  color: #fff;
  border-color: #D9D9D980;
  font-size: 16px;
  padding: 15px 50px;
  margin-top: 50px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }

/* Thematic Color Classes */
/* Text Colors */
.text-history { color: var(--theme-history); }
.text-business { color: var(--theme-business); }
.text-science { color: var(--theme-science); }
.text-sport { color: var(--theme-sport); }

/* Background Colors */
.bg-history { background-color: var(--theme-history); }
.bg-business { background-color: var(--theme-business); }
.bg-science { background-color: var(--theme-science); }
.bg-sport { background-color: var(--theme-sport); }

/* Background Colors with Opacity */
.bg-history-10 { background-color: rgba(212, 81, 99, 0.1); }
.bg-business-10 { background-color: rgba(108, 123, 159, 0.1); }
.bg-science-10 { background-color: rgba(159, 90, 83, 0.1); }
.bg-sport-10 { background-color: rgba(105, 134, 120, 0.1); }

.bg-history-20 { background-color: rgba(212, 81, 99, 0.2); }
.bg-business-20 { background-color: rgba(108, 123, 159, 0.2); }
.bg-science-20 { background-color: rgba(159, 90, 83, 0.2); }
.bg-sport-20 { background-color: rgba(105, 134, 120, 0.2); }

/* Border Colors */
.border-history { border-color: var(--theme-history); }
.border-business { border-color: var(--theme-business); }
.border-science { border-color: var(--theme-science); }
.border-sport { border-color: var(--theme-sport); }

/* Font Utility Classes */
.font-primary { font-family: var(--font-primary); }
.font-secondary { font-family: var(--font-secondary); }
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }



/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* django CMS toolbar adjustments: keep at top and offset content & fixed nav */
html.cms-toolbar .cms-toolbar {
  top: 0 !important;
  bottom: auto !important;
}

/* Default toolbar height */
html.cms-toolbar body { padding-top: 46px !important; padding-bottom: 0 !important; }
html.cms-toolbar .nav { top: 46px; }

/* Expanded toolbar height */
html.cms-toolbar-expanded .nav { top: 46px; }

/* Ensure mobile nav overlay respects the CMS toolbar heights */
html.cms-toolbar .nav__overlay { top: 46px; }
html.cms-toolbar-expanded .nav__overlay { top: 46px; }
html.cms-ready.cms-toolbar .nav__overlay { top: 46px; }
html.cms-ready.cms-toolbar-expanded .nav__overlay { top: 46px; }

/* Skip to content */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--gold-500);
  color: #000;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1001;
}

.skip-to-content:focus {
  top: 6px;
}

/* Direction page enhancements */
.direction-hero-section { 
  position: relative; 
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff; 
}
.direction-hero-section .direction-hero-overlay { 
  position: relative; 
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.direction-hero-section .direction-hero-overlay img { width: 420px; }
.direction-title { 
  font-size: 48px; 
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: var(--gold-500);
  padding-bottom: 25px;
}
.direction-subtitle { opacity: 0.9; color: var(--gold-500);  font-family: var(--font-secondary); font-weight: 400;}

/* .projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; } */
/* .project-card { background: var(--neutral-bg); border: 1px solid var(--neutral-divider); border-radius: 8px; overflow: hidden; } */
/* .project-image { width: 100%; height: 180px; background-size: cover; background-position: center; } */

.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.media-card { background: var(--neutral-bg); border: 1px solid var(--neutral-divider); border-radius: 8px; overflow: hidden; }
.media-image { width: 100%; height: 200px; background-size: cover; background-position: center; }
.media-content { padding: 16px; }
.badge { display: inline-block; font-size: 12px; border: 1px solid var(--neutral-divider); padding: 2px 8px; border-radius: 999px; }



/* Viewport-height based adjustments (compact layouts on short screens) */
@media (max-height: 900px) {
  /* Home hero emblem + spacing */
  .home-sections-100vh .hero__seal { width: 250px; margin-top: 80px; }
  .home-sections-100vh .hero__content { padding-top: 18vh; }
  .home-sections-100vh .hero__tagline { font-size: 36px; }
  .home-sections-100vh .hero__tagline.secondary { font-size: 34px; }

  /* Direction page hero logo */
  .direction-hero-section .direction-hero-overlay img { width: 360px; }
}

@media (max-height: 800px) {
  .home-sections-100vh .hero__seal { width: 260px; margin-top: 90px; }
  .home-sections-100vh .hero__content { padding-top: 14vh; }
  .home-sections-100vh .hero__tagline { font-size: 32px; }
  .home-sections-100vh .hero__tagline.secondary { font-size: 30px; }

  .direction-hero-section .direction-hero-overlay img { width: 300px; padding-top: 40px; }
  .direction-title { margin-top: 20px !important; padding-top: 20px !important; font-size: 42px; }
}

@media (max-height: 700px) {
  .home-sections-100vh .hero__seal { width: 220px; margin-top: 70px; }
  .home-sections-100vh .hero__content { padding-top: 10vh; }
  .home-sections-100vh .hero__tagline { font-size: 28px; }
  .home-sections-100vh .hero__tagline.secondary { font-size: 26px; }

  .direction-hero-section .direction-hero-overlay img { width: 280px; }
  .direction-title { font-size: 38px; }
}

@media (max-height: 600px) {
  .home-sections-100vh .hero__seal { width: 180px; margin-top: 56px; }
  .home-sections-100vh .hero__content { padding-top: 8vh; }
  .home-sections-100vh .hero__tagline { font-size: 24px; }
  .home-sections-100vh .hero__tagline.secondary { font-size: 22px; }

  .direction-hero-section .direction-hero-overlay img { width: 240px; }
  .direction-title { font-size: 34px; }
}

/* Responsive Design */

@media (min-width: 768px) and (max-width: 991px) {
  /* Use overlay navigation on tablets as well */
  .nav__menu { display: none; }
  .nav__burger { display: block; }
  .nav__lang { display: none; }
  .directions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .program-hero { padding-top: 100px; }
  
  .focus-areas-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    /* Tablet: row flow like desktop */
    grid-auto-flow: row;
    gap: 20px 30px;
    margin-top: 48px;
    padding: 0 0px;
  }
  
  .focus-area-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  
  .focus-area-item h4 {
    font-size: 12px;
  }
  
  .projects-grid,
  .events-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .section {
    padding: 72px 0;
  }
  
  .container {
    padding: 0 16px;
  }

}


/* Extra-small phones */
@media (max-width: 400px) {

  .program-hero { padding-top: 100px; }

  .section-title {
    font-size: 20px;
  }
  
  .focus-area-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }
  .focus-area-item h4 {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .nav__inner { width: auto;}

  .directions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .focus-areas-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: row;
    gap: 56px 32px;
    padding: 0 24px;
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1200px) {
  .directions-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .projects-grid,
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop: 4 columns with explicit placement for stable order */
@media (min-width: 992px) {
  .focus-areas-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: row;
  }
  .focus-areas-grid > :nth-child(1) { grid-column: 1; grid-row: 1; }
  .focus-areas-grid > :nth-child(2) { grid-column: 2; grid-row: 1; }
  .focus-areas-grid > :nth-child(3) { grid-column: 3; grid-row: 1; }
  .focus-areas-grid > :nth-child(4) { grid-column: 4; grid-row: 1; }
  .focus-areas-grid > :nth-child(5) { grid-column: 1; grid-row: 2; }
  .focus-areas-grid > :nth-child(6) { grid-column: 2; grid-row: 2; }
  .focus-areas-grid > :nth-child(7) { grid-column: 3; grid-row: 2; }
  .focus-areas-grid > :nth-child(8) { grid-column: 4; grid-row: 2; }
  .focus-areas-grid > :nth-child(9) { grid-column: 1; grid-row: 3; }
  .focus-areas-grid > :nth-child(10) { grid-column: 2; grid-row: 3; }
  .focus-areas-grid > :nth-child(11) { grid-column: 3; grid-row: 3; }
  .focus-areas-grid > :nth-child(12) { grid-column: 4; grid-row: 3; }
}

/* Mobile Focus Areas Override - Force 3x4 grid */
@media screen and (max-width: 767px) {
  .section.bg-deep .container .focus-areas-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(4, 1fr) !important;
    grid-auto-flow: row !important;
    gap: 32px 16px !important;
    margin-top: 48px !important;
    padding: 0 16px !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  /* Explicit placement for 3x4 order */
  .section.bg-deep .container .focus-areas-grid > :nth-child(1) { grid-column: 1; grid-row: 1; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(2) { grid-column: 2; grid-row: 1; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(3) { grid-column: 3; grid-row: 1; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(4) { grid-column: 1; grid-row: 2; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(5) { grid-column: 2; grid-row: 2; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(6) { grid-column: 3; grid-row: 2; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(7) { grid-column: 1; grid-row: 3; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(8) { grid-column: 2; grid-row: 3; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(9) { grid-column: 3; grid-row: 3; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(10) { grid-column: 1; grid-row: 4; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(11) { grid-column: 2; grid-row: 4; }
  .section.bg-deep .container .focus-areas-grid > :nth-child(12) { grid-column: 3; grid-row: 4; }
  .program-hero { padding-top: 100px; }
}

@media (max-width: 575px) {
  .focus-area-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }
  
  .focus-area-item h4 {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  
  .projects-grid,
  .events-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 16px;
  }

}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-top--desktop { display: none; }
  .footer-top--mobile { display: block; }

  .footer-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-mobile-left .footer-title,
  .footer-mobile-right .footer-title { margin-bottom: 16px; }

  .footer-focus-mobile { display: grid; gap: 16px; }
  .footer-focus-mobile .footer-link { color: var(--text-sec); font-size: 14px; }

  .footer-focus-areas {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .footer-legal-links {
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-bottom .row > div {
    text-align: left !important;
    margin-bottom: 16px;
  }

  /* Mobile bottom layout like screenshot */
  .footer-bottom--mobile { width: 100%; }
  .footer-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
  .footer-bottom-center { text-align: center; margin-top: 16px; }


  .hero__content {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero__seal {
    margin-top: 0px !important;
  }

  .hero__tagline {
    font-size: 20px !important;
  }

  .hero__tagline.secondary {
    font-size: 20px !important;
  }

  .home-sections-100vh > section.section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .about-section .about-intro {
    font-size: 11px !important;
  }

  .about-section .principle-title {
    font-size: 14px !important;
  }

  .about-section .principle-text {
    font-size: 11px !important;
  }

  .partnership-cta .body-text {
    font-size: 11px !important;
  }

  .nav__brand-img {
    height: 15px !important;
  }

  .nav.is-scrolled {
    height: auto !important;
    border: none !important;
    background: none !important;
  }

  .nav__burger {
    top: 15px !important;
    width: 25px !important;
  }

  .nav__burger span {
    height: 1px !important;
  }

  .direction-hero-section .direction-hero-overlay img { width: 220px !important; }
}
