/* ==========================================================================
   EYF — Global Design System
   Entrepreneur Youth Forum | Premium Black & Gold Theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS 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-body);
  line-height: 1.7;
  color: var(--color-soft-white);
  background-color: var(--color-primary-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--color-metallic-gold);
  outline-offset: 3px;
}

::selection {
  background: var(--color-metallic-gold);
  color: var(--color-primary-black);
}

/* --------------------------------------------------------------------------
   2. CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-primary-black: #050505;
  --color-deep-black: #0B0B0B;
  --color-card-black: #111111;
  --color-soft-dark: #1A1A1A;
  --color-metallic-gold: #D4AF37;
  --color-bright-gold: #F5C542;
  --color-rich-gold: #B8860B;
  --color-light-gold: #FFF1A8;
  --color-white: #FFFFFF;
  --color-soft-white: #F2F2F2;
  --color-muted: #B8B8B8;
  --color-border-gold: rgba(212, 175, 55, 0.35);
  --color-glass: rgba(255, 255, 255, 0.05);
  --color-overlay-dark: rgba(0, 0, 0, 0.65);

  /* Aliases (home page spec) */
  --color-black: #050505;
  --color-gold: #D4AF37;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #B8860B, #FFD700, #FFF1A8);
  --gradient-dark: linear-gradient(135deg, #050505, #111111);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  --gradient-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85));

  /* Typography */
  --font-main: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-heading: "Playfair Display", serif;
  --font-logo: "Orbitron", sans-serif;

  --text-hero: clamp(42px, 6vw, 82px);
  --text-page: clamp(38px, 5vw, 72px);
  --text-section: clamp(30px, 4vw, 54px);
  --text-sub: clamp(22px, 3vw, 32px);
  --text-body: clamp(16px, 1.1vw, 18px);
  --text-small: 14px;

  /* Layout */
  --container-width: 1280px;
  --section-padding: 96px 24px;
  --section-padding-mobile: 60px 18px;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Transitions */
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.4s ease;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 24px rgba(212, 175, 55, 0.25);
  --shadow-gold-strong: 0 0 40px rgba(212, 175, 55, 0.45);

  /* Navbar */
  --navbar-height: 80px;
}

/* --------------------------------------------------------------------------
   3. Typography Classes
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-metallic-gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.08;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.page-title {
  font-family: var(--font-heading);
  font-size: var(--text-page);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-section);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-white);
}

.sub-title {
  font-family: var(--font-main);
  font-size: var(--text-sub);
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-soft-white);
}

.card-title {
  font-family: var(--font-main);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-white);
}

.body-text {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--color-soft-white);
}

.small-text {
  font-family: var(--font-body);
  font-size: var(--text-small);
  line-height: 1.6;
  color: var(--color-muted);
}

.gold-text {
  color: var(--color-metallic-gold);
}

/* Animated gold shimmer for highlighted headline words */
.gold-shimmer {
  background: linear-gradient(100deg, #B8860B 0%, #FFD700 25%, #FFF1A8 50%, #FFD700 75%, #B8860B 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
  to {
    background-position: 220% center;
  }
}

.white-text {
  color: var(--color-white);
}

.muted-text {
  color: var(--color-muted);
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
}

.logo-text span {
  color: var(--color-metallic-gold);
}

/* --------------------------------------------------------------------------
   4. Layout Classes
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 48px;
}

.section {
  padding: var(--section-padding);
}

.section-sm {
  padding: 60px 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.text-center {
  text-align: center;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack-lg {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.full-width {
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. Button Classes
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-primary-black);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-strong);
  color: var(--color-primary-black);
}

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

.btn-secondary:hover {
  background: var(--gradient-gold);
  color: var(--color-primary-black);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-icon .btn-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn-icon:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   6. Card Classes
   -------------------------------------------------------------------------- */
.premium-card,
.glass-card,
.stat-card,
.image-card,
.form-card,
.cta-card {
  background: var(--gradient-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}

.premium-card {
  padding: 36px;
}

.glass-card {
  padding: 32px;
  background: var(--color-glass);
}

.stat-card {
  padding: 28px;
  text-align: center;
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat-card .stat-label {
  font-family: var(--font-main);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 8px;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card .image-card-body {
  padding: 24px;
}

.form-card {
  padding: 40px;
}

.cta-card {
  padding: 48px;
  text-align: center;
  background: var(--gradient-dark);
  border-color: var(--color-metallic-gold);
}

.premium-card:hover,
.glass-card:hover,
.stat-card:hover,
.image-card:hover,
.form-card:hover,
.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212, 175, 55, 0.55);
}

/* --------------------------------------------------------------------------
   7. Image Classes
   -------------------------------------------------------------------------- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-rounded {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.img-overlay {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  pointer-events: none;
  z-index: 1;
}

.img-overlay img {
  position: relative;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: clamp(400px, 60vh, 720px);
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition-smooth);
}

.hover-zoom:hover .gallery-image,
.hover-zoom:hover .img-cover {
  transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   8. Form Classes
   -------------------------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-soft-white);
}

.form-control,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-card-black);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-sm);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-control::placeholder,
.form-textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.7;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-metallic-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D4AF37' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--color-card-black);
  color: var(--color-white);
}

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

.form-upload {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border: 2px dashed var(--color-border-gold);
  border-radius: var(--radius-md);
  background: var(--color-glass);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.form-upload:hover {
  border-color: var(--color-metallic-gold);
}

.form-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.form-error {
  font-size: 13px;
  color: #e74c3c;
  margin-top: 4px;
}

.form-success {
  padding: 20px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-metallic-gold);
  border-radius: var(--radius-md);
  color: var(--color-bright-gold);
  font-family: var(--font-main);
  font-size: 15px;
  text-align: center;
}

.form-control.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: #e74c3c;
}

/* --------------------------------------------------------------------------
   9. Animation Classes
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
  50%       { box-shadow: 0 0 36px rgba(212, 175, 55, 0.45); }
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: opacity, transform;
}

.reveal.is-visible {
  animation: fadeIn 0.8s ease forwards;
}

.reveal-left.is-visible {
  animation: revealLeft 0.8s ease forwards;
}

.reveal-right.is-visible {
  animation: revealRight 0.8s ease forwards;
}

/* Premium transition-based fade-up (with JS stagger via .active) */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.gold-glow {
  box-shadow: var(--shadow-gold);
}

.gold-glow:hover {
  animation: goldPulse 2s ease infinite;
}

.hover-lift {
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.hover-zoom {
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   10. Navbar
   -------------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--navbar-height);
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-gold);
}

.navbar .container {
  height: 100%;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.navbar-logo {
  flex-shrink: 0;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-link {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-soft-white);
  padding: 8px 14px;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--color-metallic-gold);
}

.navbar-link.active::after,
.navbar-link:hover::after {
  transform: scaleX(1);
}

.navbar-cta {
  flex-shrink: 0;
}

.navbar-cta-mobile {
  display: none;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-gold);
}

.navbar-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-metallic-gold);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-deep-black);
  border-top: 1px solid var(--color-border-gold);
  padding: 72px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-heading {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-metallic-gold);
  margin-bottom: 20px;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  font-size: 15px;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold);
  color: var(--color-metallic-gold);
  font-size: 14px;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gradient-gold);
  color: var(--color-primary-black);
  border-color: transparent;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--color-muted);
}

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

/* --------------------------------------------------------------------------
   12. Page Hero (shared inner-page hero)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: 100px 24px 80px;
  background: var(--gradient-dark);
  border-bottom: 1px solid var(--color-border-gold);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  margin-bottom: 16px;
}

.page-hero .body-text {
  max-width: 620px;
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.about-page main {
  background:
    radial-gradient(ellipse at 82% 4%, rgba(212, 175, 55, 0.12) 0%, transparent 36%),
    radial-gradient(ellipse at 12% 28%, rgba(184, 134, 11, 0.08) 0%, transparent 42%),
    var(--color-primary-black);
}

.about-hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero::before {
  z-index: -2;
  background:
    radial-gradient(ellipse at 72% 48%, rgba(245, 197, 66, 0.16) 0%, transparent 34%),
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.96) 31%, rgba(5, 5, 5, 0.58) 58%, rgba(5, 5, 5, 0.78) 100%);
}

.about-hero::after {
  z-index: 2;
  background:
    linear-gradient(90deg, var(--color-primary-black) 0%, var(--color-primary-black) 34%, rgba(5, 5, 5, 0.62) 50%, transparent 70%),
    linear-gradient(180deg, transparent 75%, var(--color-primary-black) 100%);
}

.about-hero .container {
  position: relative;
  z-index: 3;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  min-height: calc(100vh - var(--navbar-height));
}

.about-hero-content {
  max-width: 620px;
  padding: clamp(42px, 7vw, 96px) 0;
}

.about-page-title {
  margin-top: 18px;
  font-family: var(--font-main);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--color-white);
}

.about-hero-content .body-text {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(15px, 1.1vw, 17px);
}

.about-story-btn {
  margin-top: 28px;
}

.about-hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  --about-hero-image-opacity: 1;
  background-image: var(--hero-img, url("../assets/images/eyf-about-logo-wall.webp"));
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  z-index: 1;
  opacity: 0;
  transform: translateX(70px);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 30%, #000 100%);
}

.is-loaded .about-hero-visual {
  animation:
    aboutImageIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards,
    heroFloat 7s ease-in-out 1.3s infinite;
}

@keyframes aboutImageIn {
  to {
    opacity: var(--about-hero-image-opacity, 1);
    transform: translateX(0);
  }
}

.about-section-wrap,
.about-purpose-section,
.about-values-section,
.about-impact-section {
  padding: 38px 0 0;
}

.about-impact-section {
  padding-bottom: 88px;
}

.about-journey-card,
.about-purpose-card,
.about-impact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 8, 8, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 168, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.45);
}

.about-journey-card::before,
.about-purpose-card::before,
.about-impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Journey card — keep dark and cinematic, image only as a faint texture */
.about-journey-card::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(8, 8, 8, 0.9) 60%, rgba(5, 5, 5, 0.93) 100%),
    url("../assets/images/img8.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

/* Vision / Mission — real cinematic photo, dimmed on the text side */
.about-vision::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.74) 46%, rgba(5, 5, 5, 0.42) 100%),
    url("../assets/images/img7.webp");
  background-size: cover;
  background-position: center;
}

.about-mission::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.74) 46%, rgba(5, 5, 5, 0.42) 100%),
    url("../assets/images/img6.webp");
  background-size: cover;
  background-position: center right;
}

/* Impact banner — warm wide cinematic backdrop */
.about-impact-card::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.8) 48%, rgba(5, 5, 5, 0.6) 100%),
    url("../assets/images/img10.webp");
  background-size: cover;
  background-position: center;
}

.about-purpose-card:hover::before,
.about-impact-card:hover::before {
  transform: scale(1.08);
}

.about-journey-card > * {
  position: relative;
  z-index: 1;
}

.about-journey-card {
  padding: clamp(26px, 3vw, 36px);
}

.about-section-title {
  margin-top: 10px;
  font-family: var(--font-main);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-white);
}

.about-journey-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.98fr) minmax(260px, 0.68fr) minmax(210px, 0.42fr);
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  margin-top: 24px;
}

.about-journey-media {
  min-height: clamp(260px, 28vw, 370px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
}

.about-journey-media img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-journey-card:hover .about-journey-media img {
  transform: scale(1.045);
}

.about-journey-copy {
  color: var(--color-soft-white);
}

.about-journey-copy p {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: clamp(14px, 1vw, 16px);
}

.about-date-row,
.about-audience-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-date-row strong {
  color: var(--color-bright-gold);
  font-family: var(--font-main);
  font-size: 16px;
}

.about-mini-icon,
.about-large-icon,
.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-metallic-gold);
}

.about-mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.44);
  background: rgba(212, 175, 55, 0.08);
}

.about-mini-icon svg,
.about-value-icon svg {
  width: 22px;
  height: 22px;
}

.about-audience-list {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 28px;
}

.about-audience-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--color-metallic-gold), transparent);
}

.about-audience-list li {
  color: var(--color-soft-white);
  font-family: var(--font-main);
  font-size: 14px;
}

.about-purpose-section > .container > .eyebrow,
.about-values-section > .container > .eyebrow {
  margin-left: 4px;
}

.about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.about-purpose-card {
  min-height: 280px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: clamp(28px, 3.2vw, 44px);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.about-purpose-card:hover,
.about-impact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 197, 66, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 168, 0.1),
    0 26px 80px rgba(212, 175, 55, 0.14);
}

.about-purpose-card > * {
  position: relative;
  z-index: 1;
}

.about-large-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.48);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.08);
}

.about-large-icon svg {
  width: 38px;
  height: 38px;
}

.about-purpose-card h3,
.about-impact-copy h2 {
  margin-top: 8px;
  font-family: var(--font-main);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
}

.about-purpose-card p:not(.eyebrow),
.about-impact-copy p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: clamp(14px, 1vw, 16px);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 94px;
  padding: 12px 14px;
  border-left: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.about-value-item:hover {
  transform: translateY(-5px);
}

.about-value-icon {
  width: 46px;
  height: 46px;
}

.about-value-icon svg {
  width: 34px;
  height: 34px;
}

.about-value-item h3 {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
}

.about-value-item p {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}

.about-impact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 28px;
  padding: clamp(30px, 3.4vw, 46px);
}

.about-impact-card > * {
  position: relative;
  z-index: 1;
}

.about-impact-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-impact-stat {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 150px;
  padding: 18px 12px;
  text-align: center;
  border-left: 1px solid rgba(212, 175, 55, 0.22);
}

.about-impact-stat strong {
  font-family: var(--font-main);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-bright-gold);
}

.about-impact-stat span:last-child {
  color: var(--color-soft-white);
  font-size: 14px;
}

@media (min-width: 1440px) {
  .about-hero-visual {
    width: min(64vw, 1180px);
  }

  .about-hero-content {
    max-width: 680px;
  }
}

@media (max-width: 1180px) {
  .about-journey-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-audience-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding-left: 0;
  }

  .about-audience-list::before {
    display: none;
  }

  .about-audience-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    min-height: 78vh;
  }

  .about-hero-content {
    max-width: 650px;
    padding: 72px 0 82px;
  }

  .about-hero-visual {
    width: 100%;
    --about-hero-image-opacity: 0.34;
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 100%);
    mask-image: linear-gradient(to right, #000 0%, #000 100%);
  }

  .about-hero::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.76) 100%),
      linear-gradient(180deg, transparent 72%, var(--color-primary-black) 100%);
  }

  .about-purpose-grid,
  .about-impact-card {
    grid-template-columns: 1fr;
  }

  .about-impact-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-page-title {
    font-size: clamp(38px, 10vw, 56px);
  }

  .about-section-wrap,
  .about-purpose-section,
  .about-values-section,
  .about-impact-section {
    padding-top: 28px;
  }

  .about-journey-grid {
    grid-template-columns: 1fr;
  }

  .about-audience-list,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-purpose-card {
    grid-template-columns: 1fr;
  }

  .about-value-item,
  .about-impact-stat {
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
  }
}

@media (max-width: 576px) {
  .about-hero-content {
    padding: 52px 0 64px;
  }

  .about-story-btn {
    width: 100%;
  }

  .about-journey-card,
  .about-purpose-card,
  .about-impact-card {
    border-radius: 18px;
  }

  .about-impact-stats {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Mission 2026 Page
   -------------------------------------------------------------------------- */
/* Inner-page heroes reuse the Home hero (.hero .hero-bg) — swap the image,
   widen it slightly, and use a longer left fade so there is no hard seam. */
.mission-page .hero-bg::before {
  background-image: url("../assets/images/eyf-mission-hero.webp");
  width: 60%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
}

.about-page .hero-bg::before {
  background-image: url("../assets/images/eyf-about-logo-wall.webp");
  width: 60%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
}

/* Mission hero: text sits just below the navbar (top-aligned, not centered) so
   there is no large empty gap, and the heading is noticeably larger. */
.mission-page .hero {
  align-items: flex-start;
  min-height: auto;
  padding-top: clamp(24px, 4.5vh, 56px);
  padding-bottom: clamp(48px, 7vh, 96px);
}

/* Desktop: give the Mission hero the same full height as the Home hero so its
   (same-aspect-ratio) image renders just as large/wide. Text stays top-aligned.
   On tablet/mobile the responsive rules above keep the compact, stacked hero. */
@media (min-width: 1101px) {
  .mission-page .hero {
    min-height: calc(100vh - var(--navbar-height));
    padding-top: clamp(48px, 12vh, 140px);
  }
}

/* Match the Figma hero: lighter heading weight (less chunky than the 800 used
   elsewhere), plain gold label (no pill), two readable light paragraphs, and a
   Title-Case "Watch Mission Overview" button. */
.mission-page .hero-title {
  font-size: clamp(52px, 7.4vw, 104px);
  font-weight: 700;
}

.mission-page .hero-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-bright-gold);
}

.mission-page .hero-desc {
  color: var(--color-soft-white);
  max-width: 480px;
}

.mission-page .hero-actions .btn {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 16px;
}

/* On narrower screens, pull the Mission hero text right up under the navbar */
@media (max-width: 1100px) {
  .mission-page .hero {
    padding-top: 8px;
    padding-bottom: 48px;
  }
}

.mission-support-section,
.mission-process-section {
  padding: 56px 0 0;
}

.mission-process-section {
  padding-bottom: 40px;
}

.mission-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
}

.mission-section-head .about-section-title {
  margin-top: 4px;
}

/* Support cards (numbered) — 12-col grid: top row 4 (span 3), bottom row 3 (span 4) */
.mission-support-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.mission-support-grid .mission-card {
  grid-column: span 3;
}

.mission-support-grid .mission-card:nth-child(n + 5) {
  grid-column: span 4;
}

.mission-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "desc desc";
  column-gap: 18px;
  row-gap: 14px;
  align-items: center;
  padding: 28px 30px 32px;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(9, 9, 9, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 168, 0.07),
    0 18px 50px rgba(0, 0, 0, 0.4);
  transition:
    transform var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.mission-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-metallic-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mission-card:hover,
.mission-card:focus-visible {
  transform: translateY(-10px);
  border-color: rgba(245, 197, 66, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 168, 0.12),
    0 28px 70px rgba(212, 175, 55, 0.16);
  outline: none;
}

.mission-card:hover::after,
.mission-card:focus-visible::after {
  opacity: 1;
}

.mission-card-icon {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-metallic-gold);
  box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.1);
  transition: transform var(--transition-smooth);
}

.mission-card-icon svg {
  width: 26px;
  height: 26px;
}

.mission-card:hover .mission-card-icon {
  transform: translateY(-4px);
}

.mission-card-title {
  grid-area: title;
  font-family: var(--font-main);
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-white);
}

.mission-card .small-text {
  grid-area: desc;
  position: relative;
  z-index: 1;
}

.mission-card-num {
  position: absolute;
  right: 24px;
  bottom: 16px;
  font-family: var(--font-main);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  line-height: 1;
  color: rgba(212, 175, 55, 0.5);
  letter-spacing: -0.02em;
  pointer-events: none;
}

/* Process timeline */
.mission-process-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 56px) clamp(24px, 3vw, 48px);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse at 50% -10%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(8, 8, 8, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.mission-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.timeline-step {
  position: relative;
  text-align: center;
  padding: 0 6px;
}

/* Connector line between steps */
.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 33px;
  left: calc(50% + 38px);
  right: calc(-50% + 38px);
  height: 2px;
  background-image: linear-gradient(90deg, var(--color-metallic-gold) 0 6px, transparent 6px 12px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  opacity: 0.6;
  z-index: 0;
}

.timeline-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold);
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.18), transparent 70%),
    var(--color-deep-black);
  color: var(--color-metallic-gold);
  box-shadow:
    inset 0 0 18px rgba(212, 175, 55, 0.12),
    0 0 0 6px rgba(5, 5, 5, 0.9);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.timeline-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.timeline-num {
  position: absolute;
  top: -8px;
  right: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-primary-black);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 800;
}

.timeline-step:hover .timeline-badge {
  transform: translateY(-5px);
  box-shadow:
    inset 0 0 22px rgba(212, 175, 55, 0.22),
    0 0 28px rgba(212, 175, 55, 0.3),
    0 0 0 6px rgba(5, 5, 5, 0.9);
}

.timeline-title {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.timeline-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 200px;
  margin-inline: auto;
}

.cta-subtext {
  margin-top: 8px;
  max-width: 460px;
}

/* Mission responsive */
@media (max-width: 992px) {
  .mission-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-support-grid .mission-card,
  .mission-support-grid .mission-card:nth-child(n + 5) {
    grid-column: auto;
  }

  .mission-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 18px;
  }

  .timeline-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .mission-support-section,
  .mission-process-section {
    padding-top: 40px;
  }

  .mission-section-head {
    margin-bottom: 32px;
  }

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

@media (max-width: 576px) {
  .mission-support-grid {
    grid-template-columns: 1fr;
  }

  .mission-timeline {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .timeline-desc {
    max-width: 280px;
  }

  .mission-card-num {
    font-size: 34px;
  }
}

/* --------------------------------------------------------------------------
   13. Utility Helpers
   -------------------------------------------------------------------------- */
.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;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin-block: 20px;
}

.divider-gold.center {
  margin-inline: auto;
}

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

.bg-card {
  background-color: var(--color-card-black);
}

/* --------------------------------------------------------------------------
   14. Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   15. Responsive — Laptop (992px)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .container {
    padding-inline: 36px;
  }

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

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

  .navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    max-height: calc(100vh - var(--navbar-height));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-gold);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform var(--transition-smooth),
      opacity var(--transition-smooth),
      visibility var(--transition-smooth);
  }

  .navbar-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-link {
    padding: 14px 16px;
    font-size: 16px;
  }

  .navbar-link::after {
    left: 16px;
    right: auto;
    width: 30px;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu .navbar-cta-mobile {
    display: block;
    margin-top: 16px;
  }

  .navbar-menu .navbar-cta-mobile .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   16. Responsive — Tablet (768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }

  .container {
    padding-inline: 24px;
  }

  .section {
    padding: var(--section-padding-mobile);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .premium-card,
  .glass-card,
  .form-card,
  .cta-card {
    padding: 28px;
  }

  .page-hero {
    padding: 80px 18px 60px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   17. Responsive — Mobile (576px)
   -------------------------------------------------------------------------- */
@media (max-width: 576px) {
  .container {
    padding-inline: 18px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Tap-friendly buttons: allow wrapping, comfortable height, centred. */
  .btn,
  .btn-lg {
    width: 100%;
    white-space: normal;
    min-height: 56px;
    text-align: center;
  }

  .btn-sm {
    width: auto;
    min-height: 0;
  }

  .flex-between {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .form-card {
    padding: 24px 20px;
  }

  .cta-card {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   18. HOME PAGE
   ========================================================================== */

/* Navbar logo image */
.navbar-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Page load animations */
.load-up {
  opacity: 0;
  transform: translateY(28px);
}

.load-fade {
  opacity: 0;
  transform: scale(1.04);
}

.is-loaded .load-up {
  animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-loaded .load-fade {
  animation: heroFade 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-loaded .load-up[data-delay="0"] { animation-delay: 0.05s; }
.is-loaded .load-up[data-delay="1"] { animation-delay: 0.15s; }
.is-loaded .load-up[data-delay="2"] { animation-delay: 0.28s; }
.is-loaded .load-up[data-delay="3"] { animation-delay: 0.40s; }
.is-loaded .load-up[data-delay="4"] { animation-delay: 0.52s; }

@keyframes heroFade {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background-color: var(--color-primary-black);
}

/* Right-side hero image — clearly visible, blends into black on its left edge */
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  background-image: url("../assets/images/eyf-hero.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 30%, #000 100%);
  z-index: 0;
  opacity: 0;
  transform: translateX(70px);
}

/* Slide in from the right on load, then settle into a gentle float */
.is-loaded .hero-bg::before {
  animation:
    heroSlideIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards,
    heroFloat 7s ease-in-out 1.3s infinite;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Soft bottom fade so the hero blends into the section below */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 72%, var(--color-primary-black) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--color-border-gold);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.06);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-bright-gold);
  margin-bottom: 26px;
}

.hero-pill-star {
  color: var(--color-metallic-gold);
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-wrap: balance;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Word-by-word reveal (words slide in from left to right, one by one) */
.hero-title-anim .word {
  display: inline-block;
  vertical-align: top;
}

.hero-title-anim .word > span {
  display: inline-block;
  transform: translateX(-44px);
  opacity: 0;
}

.is-loaded .hero-title-anim .word > span {
  animation: wordSlide 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-loaded .hero-title-anim .word:nth-child(1) > span { animation-delay: 0.15s; }
.is-loaded .hero-title-anim .word:nth-child(2) > span { animation-delay: 0.27s; }
.is-loaded .hero-title-anim .word:nth-child(3) > span { animation-delay: 0.39s; }
.is-loaded .hero-title-anim .word:nth-child(4) > span { animation-delay: 0.51s; }
.is-loaded .hero-title-anim .word:nth-child(5) > span { animation-delay: 0.63s; }
.is-loaded .hero-title-anim .word:nth-child(6) > span { animation-delay: 0.75s; }

@keyframes wordSlide {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-subheading {
  font-family: var(--font-main);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--color-soft-white);
  margin-top: 22px;
}

.hero-desc {
  margin-top: 16px;
  color: var(--color-muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.btn-play {
  gap: 10px;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Highlight Cards
   -------------------------------------------------------------------------- */
.highlights .grid-4 {
  gap: 28px;
}

.highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  min-height: 300px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 110%, rgba(245, 197, 66, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0b0b0b;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 45px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    opacity 0.6s ease;
}

/* Decorative faint gold dot pattern, fading toward the bottom glow */
.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(circle at 50% 125%, #000 0%, transparent 62%);
  mask-image: radial-gradient(circle at 50% 125%, #000 0%, transparent 62%);
}

/* Shine sweep on hover */
.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 75%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 1;
  transition: left 0.75s ease;
}

.highlight-card:hover::before,
.highlight-card:focus-visible::before {
  left: 150%;
}

.card-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.04));
  color: var(--color-metallic-gold);
  margin-bottom: 26px;
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.04), 0 8px 20px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    background 0.45s ease;
}

.highlight-card .card-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin-bottom: 14px;
}

.highlight-card .card-title .gold-text {
  color: var(--color-bright-gold);
}

.highlight-card .small-text {
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-muted);
}

.card-glow {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 75%;
  height: 70px;
  background: radial-gradient(ellipse at center, rgba(245, 197, 66, 0.32) 0%, transparent 70%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.45s ease, height 0.45s ease;
}

.highlight-card:hover,
.highlight-card:focus-visible {
  transform: translateY(-18px) scale(1.035);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.65),
    0 0 45px rgba(212, 175, 55, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 197, 66, 0.65);
  outline: none;
}

.highlight-card:hover .card-glow,
.highlight-card:focus-visible .card-glow {
  opacity: 1;
  height: 110px;
}

.highlight-card:hover .card-icon,
.highlight-card:focus-visible .card-icon {
  transform: translateY(-6px);
  background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.28), rgba(212, 175, 55, 0.06));
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.45);
}

/* --------------------------------------------------------------------------
   Home section spacing rhythm (~70px desktop between sections)
   -------------------------------------------------------------------------- */
.highlights {
  padding: 70px 0 0;
}

.about-section {
  padding: 70px 0 0;
}

.cta-section {
  padding: 70px 0 96px;
}

/* --------------------------------------------------------------------------
   Section heading (home)
   -------------------------------------------------------------------------- */
.section-heading {
  font-family: var(--font-main);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   About Preview
   -------------------------------------------------------------------------- */
.about-card {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--color-deep-black);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(212, 175, 55, 0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(36px, 4vw, 56px);
}

.about-content .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.about-content .section-heading {
  margin-bottom: 20px;
}

.about-content .body-text {
  margin-bottom: 30px;
}

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.video-card .img-cover {
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .img-cover {
  transform: scale(1.06);
}

.video-card.img-overlay::after {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.55) 100%);
  z-index: 1;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.55);
  border: 2px solid var(--color-metallic-gold);
  color: var(--color-metallic-gold);
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gradient-gold);
  color: var(--color-primary-black);
  box-shadow: var(--shadow-gold);
}

.video-play .play-icon {
  border: none;
  width: auto;
  height: auto;
}

.video-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
}

.video-caption-title {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-white);
}

.video-caption-date {
  font-size: 13px;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Final CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-gold);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(11, 11, 11, 0.75) 50%, rgba(5, 5, 5, 0.55) 100%),
    radial-gradient(ellipse at 85% 120%, rgba(212, 175, 55, 0.3) 0%, transparent 60%),
    url("../assets/images/img7.webp");
  background-size: cover;
  background-position: center 30%;
}

/* Static gold light (no animation) */
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 130%, rgba(245, 197, 66, 0.28) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-banner .cta-btn {
  position: relative;
  z-index: 1;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-metallic-gold);
  flex-shrink: 0;
}

.cta-title {
  font-family: var(--font-main);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
}

.cta-btn {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Home — Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  /* Tablet: cards 2 per row */
  .highlights .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Tablet / portrait hero (Home + About): top-aligned right under the navbar
     with the image as a dimmed full-width backdrop — same clean treatment as
     the Mission hero, so there are no big empty gaps or an overlapping side
     image. (Mission keeps its own layout via higher-specificity rules.) */
  .hero {
    align-items: flex-start;
    min-height: auto;
    padding: 36px 0 64px;
  }

  /* Image becomes a faint backdrop. The load animation ends at opacity:1 with
     `forwards`, so it MUST be disabled here or it overrides this opacity. */
  .hero-bg::before,
  .about-page .hero-bg::before,
  .is-loaded .hero-bg::before,
  .is-loaded .about-page .hero-bg::before {
    width: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0.28;
    transform: none;
    animation: none !important;
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* Mission keeps its nicer side-image layout (60% + left fade) — just dim it
     a little and stop the animation so text stays readable. */
  .mission-page .hero-bg::before,
  .is-loaded .mission-page .hero-bg::before {
    width: 60%;
    opacity: 0.4;
    transform: none;
    animation: none !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
  }

  /* Stronger overlay: dark wash from the left (over the text) + bottom fade. */
  .hero-bg::after {
    background:
      linear-gradient(90deg,
        rgba(5, 5, 5, 0.92) 0%,
        rgba(5, 5, 5, 0.72) 42%,
        rgba(5, 5, 5, 0.4) 100%),
      linear-gradient(180deg,
        rgba(5, 5, 5, 0.35) 0%,
        rgba(5, 5, 5, 0.15) 38%,
        var(--color-primary-black) 100%);
  }
}

@media (max-width: 992px) {
  .navbar-logo-img {
    height: 42px;
  }

  /* Tablet spacing rhythm (~45px) */
  .highlights,
  .about-section {
    padding-top: 45px;
  }

  .cta-section {
    padding: 45px 0 64px;
  }
}

@media (max-width: 768px) {
  /* ---- Mobile hero layout: clean, stacked, readable ---- */
  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.08;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Mobile art direction: image is a very faint backdrop — no animation
     (its `forwards` end-state would otherwise force opacity back to 1), no
     mask, no transform. */
  .hero-bg::before,
  .is-loaded .hero-bg::before {
    width: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0.18;
    transform: none;
    animation: none !important;
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* About: even fainter so the bright gold logo wall never fights the text. */
  .about-page .hero-bg::before,
  .is-loaded .about-page .hero-bg::before {
    opacity: 0.16;
    transform: none;
    animation: none !important;
  }

  /* Mission: keep the side-image layout (looks better), just dimmer. */
  .mission-page .hero-bg::before,
  .is-loaded .mission-page .hero-bg::before {
    width: 60%;
    opacity: 0.32;
    transform: none;
    animation: none !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
  }

  /* Cards stack to a single column on phones */
  .highlights .grid-4,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .highlight-card {
    min-height: 0;
  }

  /* ---- About EYF preview: single column, text first, video below ---- */
  .about-section {
    padding: 42px 0;
  }

  .about-card {
    padding: 28px 22px;
    border-radius: 24px;
    overflow: hidden;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-content {
    width: 100%;
    max-width: 100%;
  }

  .about-content .eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
  }

  .about-content .section-heading,
  .about-content h2 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
  }

  .about-content .body-text {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .about-content .btn {
    width: 100%;
    min-height: 58px;
    padding: 16px 20px;
    white-space: normal;
    text-align: center;
  }

  .about-media {
    order: 0;
    width: 100%;
    max-width: 100%;
  }

  .video-card {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 240px;
    border-radius: 22px;
    overflow: hidden;
  }

  .video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* No hover zoom on touch/mobile (prevents sticky-hover layout quirks). */
  .video-card:hover .img-cover {
    transform: none;
  }

  .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    z-index: 4;
  }

  .video-caption {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 4;
  }

  .video-caption-title {
    font-size: 22px;
    line-height: 1.2;
  }

  .video-caption-date {
    font-size: 16px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
  }

  .cta-banner-content {
    gap: 18px;
  }
}

@media (max-width: 576px) {
  /* Mobile spacing rhythm (~35px) */
  .highlights,
  .about-section {
    padding-top: 35px;
  }

  .cta-section {
    padding: 35px 0 56px;
  }

  .highlights .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-title,
  .mission-page .hero-title {
    font-size: clamp(30px, 8.5vw, 42px);
  }

  .about-content .btn {
    width: 100%;
  }

  /* About preview card: tighter premium padding, text never touches edges. */
  .about-section {
    padding: 36px 0;
  }

  .about-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .about-grid {
    gap: 24px;
  }

  .about-content .section-heading,
  .about-content h2 {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.1;
  }

  .about-content .body-text {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .video-card {
    min-height: 220px;
    aspect-ratio: 16 / 11;
  }

  .video-play {
    width: 66px;
    height: 66px;
  }

  .video-caption {
    left: 18px;
    bottom: 16px;
  }

  .video-caption-title {
    font-size: 20px;
  }

  .video-caption-date {
    font-size: 15px;
  }

  .cta-banner .cta-btn {
    width: 100%;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
  }
}

/* Reduced motion on desktop: reveal the hero image without the slide/float.
   (On tablet/mobile the faint-backdrop opacity rules above take over instead.) */
@media (prefers-reduced-motion: reduce) and (min-width: 1101px) {
  .hero-bg::before {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gold-shimmer {
    animation: none;
    background-position: 50% center;
  }

  .load-up,
  .load-fade {
    opacity: 1;
    transform: none;
  }

  .hero-title-anim .word > span {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   19. LARGE SCREENS (Desktops, Wide Monitors, TVs)
   Scale the layout up so content fills big displays instead of sitting
   in a narrow centred column.
   ========================================================================== */

/* Large desktop (1440px+) — wider container, bigger cards & hero */
@media (min-width: 1440px) {
  :root {
    --container-width: 1400px;
  }

  .highlight-card {
    min-height: 330px;
    padding: 44px;
  }

  .highlights .grid-4 {
    gap: 32px;
  }

  .card-icon {
    width: 68px;
    height: 68px;
  }

  .hero-title {
    font-size: clamp(56px, 3.8vw, 74px);
  }
}

/* Extra-wide / 4K-ish (e.g. 32" displays) — keep container capped, scale hero */
@media (min-width: 1800px) {
  body {
    font-size: 19px;
  }

  .highlight-card {
    min-height: 350px;
  }
}
