/* ============================================
   SAMUEL MATHAI FOR FOMAA VP — CAMPAIGN SITE
   Design System & Styles
   ============================================ */

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

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Primary Palette — Royal Blue & Gold */
  --clr-primary: #1E3A6E;
  --clr-primary-dark: #152C55;
  --clr-primary-deeper: #122548;
  --clr-primary-light: #2C5494;
  --clr-primary-muted: #E5ECF5;
  --clr-primary-glass: rgba(30, 58, 110, 0.08);

  /* Accent & Secondary */
  --clr-accent: #B8942C;
  --clr-accent-light: #E2D09E;
  --clr-accent-dark: #8B7020;

  /* Neutrals */
  --clr-white: #FFFFFF;
  --clr-off-white: #F8F9FC;
  --clr-light-gray: #E8ECF2;
  --clr-mid-gray: #7A8899;
  --clr-dark-gray: #3A4455;
  --clr-charcoal: #1C1C2E;
  --clr-black: #0C0E1A;

  /* Gradients */
  --grad-hero: linear-gradient(180deg, #FFFFFF 0%, #F4F6FA 100%);
  --grad-banner: linear-gradient(135deg, #152C55 0%, #1E3A6E 100%);
  --grad-card: linear-gradient(180deg, rgba(30, 58, 110, 0.03) 0%, rgba(30, 58, 110, 0.08) 100%);
  --grad-accent: linear-gradient(135deg, #B8942C 0%, #E2D09E 100%);
  --grad-dark: linear-gradient(180deg, #0C0E1A 0%, #1C1C2E 100%);

  /* Typography */
  --ff-heading: 'Playfair Display', 'Georgia', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-accent: 'Outfit', 'Inter', sans-serif;

  /* Font Sizes (Fluid) */
  --fs-hero: clamp(2.8rem, 5vw + 1rem, 5.5rem);
  --fs-h1: clamp(2.2rem, 3vw + 0.8rem, 3.8rem);
  --fs-h2: clamp(1.8rem, 2.5vw + 0.6rem, 3rem);
  --fs-h3: clamp(1.4rem, 2vw + 0.4rem, 2rem);
  --fs-h4: clamp(1.1rem, 1.2vw + 0.4rem, 1.5rem);
  --fs-body: clamp(0.95rem, 0.8vw + 0.3rem, 1.125rem);
  --fs-small: clamp(0.8rem, 0.6vw + 0.3rem, 0.95rem);
  --fs-xs: clamp(0.7rem, 0.5vw + 0.2rem, 0.85rem);
  --fs-label: 0.75rem;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;

  /* Container */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --container-padding: clamp(1.25rem, 4vw, 3rem);

  /* Borders & Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(12, 14, 26, 0.06);
  --shadow-md: 0 4px 20px rgba(12, 14, 26, 0.1);
  --shadow-lg: 0 8px 40px rgba(12, 14, 26, 0.12);
  --shadow-xl: 0 16px 60px rgba(12, 14, 26, 0.15);
  --shadow-glow: 0 0 30px rgba(30, 58, 110, 0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--clr-dark-gray);
  background: var(--clr-white);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

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

.section-label {
  font-family: var(--ff-accent);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-sm);
  display: inline-block;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-md);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--clr-mid-gray);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform var(--duration-normal) var(--ease-out);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(30, 58, 110, 0.35);
}

.btn--primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(30, 58, 110, 0.45);
}

.btn--accent {
  background: var(--grad-accent);
  color: var(--clr-charcoal);
  box-shadow: 0 4px 15px rgba(184, 148, 44, 0.3);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184, 148, 44, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--clr-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}

.btn--outline-dark:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* ============================================
   1. NAVIGATION BAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.8rem 0;
  transition: all var(--duration-normal) var(--ease-out);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(21, 44, 85, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo-monogram {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--clr-primary);
  letter-spacing: 0.05em;
  line-height: 1;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.navbar__logo-monogram:hover {
  opacity: 0.85;
}

/* Scrolled state: switch to white text on blue background */
.navbar.scrolled .navbar__logo-monogram {
  color: var(--clr-white);
}

.navbar.scrolled .navbar__link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--clr-white);
}

.navbar.scrolled .navbar__toggle span {
  background: var(--clr-white);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.navbar__link {
  font-family: var(--ff-accent);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-dark-gray);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--duration-normal) var(--ease-out);
}

.navbar__link:hover {
  color: var(--clr-primary);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  background: var(--clr-accent);
  color: var(--clr-charcoal) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar__cta:hover {
  background: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 168, 78, 0.4);
}

.navbar__cta::after {
  display: none;
}

/* Mobile Menu Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--clr-charcoal);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   2. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-white);
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(30, 58, 110, 0.04) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(184, 148, 44, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__bg-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-lines::before,
.hero__bg-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(30, 58, 110, 0.06), transparent);
}

.hero__bg-lines::before {
  left: 25%;
}

.hero__bg-lines::after {
  left: 75%;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero__text {
  max-width: 650px;
}

.hero__slogan {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 2.5vw + 0.5rem, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, red 0%, blue 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-md);
}

.hero__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--clr-charcoal);
  line-height: 1.05;
  margin-bottom: var(--sp-md);
  letter-spacing: -0.02em;
}

.hero__name em {
  font-style: italic;
  color: var(--clr-primary);
}

.hero__subtitle {
  font-family: var(--ff-accent);
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--clr-mid-gray);
  margin-bottom: var(--sp-sm);
  line-height: 1.5;
}

.hero__subtitle strong {
  color: var(--clr-charcoal);
  font-weight: 600;
}

.hero__tagline {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  color: var(--clr-mid-gray);
  margin-bottom: var(--sp-lg);
  line-height: 1.8;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

.hero__image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero__image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-lg);
  opacity: 0.4;
  z-index: 1;
}

.hero__image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--clr-accent);
  color: var(--clr-charcoal);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--ff-accent);
  font-weight: 700;
  font-size: var(--fs-small);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  line-height: 1.3;
}

.hero__image-badge span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

/* Hero bottom divider */
.hero__divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
}

.hero__divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

/* ============================================
   3. CORE LEGACY BANNER
   ============================================ */
.legacy {
  background: var(--grad-banner);
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}

.legacy::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(200, 168, 78, 0.06);
  pointer-events: none;
}

.legacy__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.legacy__eyebrow {
  font-family: var(--ff-accent);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-sm);
}

.legacy__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
  line-height: 1.2;
}

.legacy__title em {
  font-style: italic;
  color: var(--clr-accent-light);
}

.legacy__description {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.75);
  max-width: 750px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.8;
}

.legacy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  max-width: 1000px;
  margin: 0 auto;
}

.legacy__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
  backdrop-filter: blur(8px);
}

.legacy__item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.legacy__item-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-sm);
  background: var(--clr-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.legacy__item-title {
  font-family: var(--ff-accent);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-xs);
}

.legacy__item-text {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ============================================
   4. BUSINESS & PROFESSIONAL ACCOMPLISHMENTS
   ============================================ */
.accomplishments {
  padding: var(--sp-3xl) 0;
  background: var(--clr-off-white);
}

.accomplishments__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.accomplishments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.accomplishment-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid var(--clr-light-gray);
}

.accomplishment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transition: transform var(--duration-normal) var(--ease-out);
  transform-origin: left;
}

.accomplishment-card:hover::before {
  transform: scaleX(1);
}

.accomplishment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.accomplishment-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--clr-primary-muted);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--sp-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.accomplishment-card:hover .accomplishment-card__icon {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: scale(1.05);
}

.accomplishment-card__years {
  font-family: var(--ff-accent);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
  margin-bottom: var(--sp-xs);
}

.accomplishment-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.accomplishment-card__desc {
  font-size: var(--fs-small);
  color: var(--clr-mid-gray);
  line-height: 1.8;
}

/* ============================================
   5. MEET THE CANDIDATE
   ============================================ */
.meet {
  padding: var(--sp-3xl) 0;
  background: var(--clr-white);
}

.meet__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.meet__image-col {
  position: relative;
}

.meet__photo-wrapper {
  position: relative;
}

.meet__photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.meet__highlight-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  max-width: 260px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.meet__highlight-card p {
  font-size: var(--fs-xs);
  line-height: 1.6;
  opacity: 0.9;
}

.meet__highlight-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--ff-accent);
  font-size: var(--fs-small);
  color: var(--clr-accent-light);
}

/* Photo Collage Gallery */
.meet__gallery {
  position: relative;
  height: 420px;
  margin-top: var(--sp-2xl);
}

.meet__gallery-item {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-out);
  border: 4px solid var(--clr-white);
}

.meet__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.meet__gallery-item:hover {
  z-index: 10;
  transform: scale(1.04) rotate(0deg) !important;
  box-shadow: var(--shadow-xl);
}

.meet__gallery-item--1 {
  width: 55%;
  height: 340px;
  top: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: 2;
}

.meet__gallery-item--2 {
  width: 50%;
  height: 300px;
  top: 30px;
  right: 0;
  left: auto;
  transform: rotate(2.5deg);
  z-index: 3;
}

.meet__gallery-item--3 {
  width: 58.5%;
  height: 216px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  z-index: 4;
}

.meet__gallery-item--3:hover {
  transform: translateX(-50%) scale(1.04) rotate(0deg) !important;
  z-index: 10;
  box-shadow: var(--shadow-xl);
}

.meet__content {
  padding-top: var(--sp-sm);
}

.meet__timeline {
  margin-top: var(--sp-lg);
  position: relative;
  padding-left: 2rem;
}

.meet__timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-primary), var(--clr-accent));
  border-radius: 2px;
}

.meet__timeline-item {
  position: relative;
  padding: var(--sp-sm) 0 var(--sp-md);
}

.meet__timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 1.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr-primary);
  border: 3px solid var(--clr-primary-muted);
  transform: translateX(-5px);
}

.meet__timeline-year {
  font-family: var(--ff-accent);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
  margin-bottom: 0.25rem;
}

.meet__timeline-title {
  font-family: var(--ff-accent);
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--clr-charcoal);
  margin-bottom: 0.25rem;
}

.meet__timeline-desc {
  font-size: var(--fs-small);
  color: var(--clr-mid-gray);
  line-height: 1.7;
}

/* ============================================
   6. PLATFORM & VISION
   ============================================ */
.platform {
  padding: var(--sp-3xl) 0;
  background: var(--clr-off-white);
  position: relative;
}

.platform__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.platform__list {
  max-width: 900px;
  margin: 0 auto;
}

.platform-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-lg);
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--clr-light-gray);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: default;
}

.platform-item:first-child {
  border-top: 1px solid var(--clr-light-gray);
}

.platform-item:hover {
  padding-left: var(--sp-sm);
}

.platform-item__number {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--clr-light-gray);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  transition: color var(--duration-normal) var(--ease-out);
  position: relative;
}

.platform-item:hover .platform-item__number {
  color: var(--clr-primary);
}

.platform-item__content {
  padding-left: var(--sp-md);
  border-left: 2px solid var(--clr-light-gray);
  transition: border-color var(--duration-normal) var(--ease-out);
}

.platform-item:hover .platform-item__content {
  border-left-color: var(--clr-primary);
}

.platform-item__title {
  font-family: var(--ff-accent);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-xs);
  line-height: 1.4;
  transition: color var(--duration-normal) var(--ease-out);
}

.platform-item:hover .platform-item__title {
  color: var(--clr-primary);
}

.platform-item__desc {
  font-size: var(--fs-small);
  color: var(--clr-mid-gray);
  line-height: 1.8;
  max-width: 600px;
}

/* ============================================
   7. OTHER EXPERIENCE & CREDENTIALS
   ============================================ */
.credentials {
  padding: var(--sp-3xl) 0;
  background: var(--clr-white);
}

.credentials__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.credentials__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-bottom: var(--sp-2xl);
}

.credentials__pillar {
  padding: var(--sp-md) 0;
  position: relative;
}

.credentials__pillar-accent {
  width: 40px;
  height: 3px;
  background: var(--clr-primary);
  margin-bottom: var(--sp-md);
  border-radius: 2px;
  transition: width var(--duration-normal) var(--ease-out);
}

.credentials__pillar:hover .credentials__pillar-accent {
  width: 60px;
}

.credentials__pillar-label {
  font-family: var(--ff-accent);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
  margin-bottom: var(--sp-xs);
}

.credentials__pillar-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.credentials__pillar-desc {
  font-size: var(--fs-small);
  color: var(--clr-mid-gray);
  line-height: 1.8;
}

.credentials__pillar-desc strong {
  color: var(--clr-dark-gray);
  font-weight: 600;
}

/* Photo Strip */
.photo-strip {
  margin-top: var(--sp-2xl);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  padding: var(--sp-md) 0;
}

.photo-strip__track {
  display: flex;
  gap: var(--sp-md);
  animation: stripScroll 60s linear infinite;
  width: max-content;
}

.photo-strip__track:hover {
  animation-play-state: paused;
}

@keyframes stripScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.photo-strip__item {
  flex-shrink: 0;
  width: 360px;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--clr-white);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.photo-strip__item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-strip__cta {
  text-align: center;
  margin-top: var(--sp-lg);
}

.photo-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-accent);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--duration-fast) var(--ease-out);
}

.photo-strip__link:hover {
  color: var(--clr-accent-dark);
  gap: 0.75rem;
}

.photo-strip__link svg {
  transition: transform var(--duration-fast) var(--ease-out);
}

.photo-strip__link:hover svg {
  transform: translateX(4px);
}

/* Inaugural Credentials Banner */
.credentials__inauguration {
  margin-top: var(--sp-lg);
}

.credentials__inauguration-inner {
  background: var(--grad-banner);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-xl);
  position: relative;
  overflow: hidden;
}

.credentials__inauguration-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(200, 168, 78, 0.06);
  pointer-events: none;
}

.credentials__inauguration-header {
  margin-bottom: var(--sp-lg);
  position: relative;
  z-index: 2;
}

.credentials__inauguration-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.credentials__inauguration-subtitle {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  line-height: 1.8;
}

.credentials__inauguration-subtitle strong {
  color: var(--clr-accent-light);
  font-weight: 600;
}

.credentials__figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  position: relative;
  z-index: 2;
}

.credentials__figure {
  padding: var(--sp-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.credentials__figure:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.credentials__figure-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.credentials__figure-role {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ============================================
   8. ACTION / FOOTER
   ============================================ */
.action {
  padding: var(--sp-3xl) 0 var(--sp-2xl);
  background: var(--grad-banner);
  position: relative;
  overflow: hidden;
}

.action::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(184, 148, 44, 0.04);
  pointer-events: none;
}

.action__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.action__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  color: var(--clr-white);
  margin-bottom: var(--sp-sm);
}

.action__subtitle {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.action__form {
  display: flex;
  gap: var(--sp-sm);
  max-width: 520px;
  margin: 0 auto var(--sp-2xl);
  flex-wrap: wrap;
  justify-content: center;
}

.action__input {
  flex: 1;
  min-width: 240px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--clr-white);
  font-size: var(--fs-small);
  font-family: var(--ff-accent);
  transition: all var(--duration-normal) var(--ease-out);
}

.action__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  text-transform: none;
}

.action__input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(184, 148, 44, 0.2);
}

.action__submit {
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  background: var(--clr-accent);
  color: var(--clr-charcoal);
  font-family: var(--ff-accent);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.action__submit:hover {
  background: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 148, 44, 0.4);
}

.action__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 520px;
  margin: 0 auto;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.action__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--clr-accent);
  cursor: pointer;
}

.action__checkbox-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  font-family: var(--ff-body);
}

.action__checkbox-text a {
  color: var(--clr-accent);
  text-decoration: underline;
}

.action__checkbox-text a:hover {
  color: var(--clr-accent-light);
}

/* Footer */
.footer {
  background: var(--clr-black);
  padding: var(--sp-xl) 0 var(--sp-lg);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__brand-icon {
  width: 36px;
  height: 36px;
  background: var(--clr-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--clr-charcoal);
}

.footer__brand-text {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
}

.footer__links {
  display: flex;
  gap: var(--sp-md);
}

.footer__link {
  font-family: var(--ff-accent);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--clr-accent);
}

/* Disclaimer */
.footer__disclaimer {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  text-align: center;
  margin-bottom: var(--sp-md);
}

.footer__disclaimer p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

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

.footer__bottom {
  text-align: center;
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

.reveal-delay-4 {
  transition-delay: 400ms;
}

.reveal-delay-5 {
  transition-delay: 500ms;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.2s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.lightbox__close svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2.5;
}

.lightbox__img-wrap {
  cursor: zoom-in;
  max-width: 85vw;
  max-height: 85vh;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform var(--duration-normal) var(--ease-out);
}

.lightbox.active .lightbox__img-wrap {
  transform: scale(1);
}

.lightbox__img-wrap.zoomed {
  cursor: zoom-out;
  overflow: auto;
  max-width: 95vw;
  max-height: 95vh;
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.lightbox__img-wrap.zoomed .lightbox__img {
  max-width: none;
  max-height: none;
  transform: scale(2);
  transform-origin: center center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    max-width: 100%;
    order: 2;
  }

  .hero__slogan {
    justify-content: center;
  }

  .hero__tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__image {
    order: 1;
    justify-content: center;
  }

  .hero__image-wrapper {
    max-width: 350px;
  }

  .meet__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .meet__image-col {
    max-width: 400px;
    margin: 0 auto;
  }

  .legacy__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .accomplishments__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 61, 35, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--sp-lg);
    gap: var(--sp-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar__links.open {
    display: flex;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero__image-wrapper::before {
    display: none;
  }

  .hero__image-badge {
    bottom: -12px;
    left: -8px;
    padding: 0.75rem 1rem;
    font-size: var(--fs-xs);
  }

  .platform-item {
    flex-direction: column;
    gap: var(--sp-sm);
  }

  .platform-item__number {
    min-width: auto;
  }

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

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

  .meet__highlight-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--sp-sm);
  }

  .meet__gallery {
    height: 280px;
    margin-top: var(--sp-lg);
  }

  .meet__gallery-item--1 {
    width: 55%;
    height: 220px;
  }

  .meet__gallery-item--2 {
    width: 50%;
    height: 200px;
  }

  .meet__gallery-item--3 {
    width: 100%;
    height: 140px;
  }

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

  .action__input {
    min-width: auto;
  }

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

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__name {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

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

  .btn {
    justify-content: center;
  }
}