/* ============================================================
   LES KAYE 2026 — Campaign Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1b2a4a;
  --navy-deep: #0f1a30;
  --navy-mid: #1f3358;
  --navy-light: #2a4270;
  --gold: #c49131;
  --gold-light: #dab05e;
  --gold-pale: #f0ddb3;
  --gold-glow: rgba(196,145,49,0.15);
  --teal: #2e7d6f;
  --teal-light: #3a9e8c;
  --sand: #f5f0e8;
  --cream: #faf8f4;
  --charcoal: #2b2b2b;
  --slate: #5a6577;
  --muted: #8892a0;
  --border: #e2dbd0;
  --border-dark: rgba(255,255,255,0.08);
  --white: #ffffff;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-editorial: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(27,42,74,0.06);
  --shadow-md: 0 4px 20px rgba(27,42,74,0.09);
  --shadow-lg: 0 8px 40px rgba(27,42,74,0.13);
  --shadow-gold: 0 4px 24px rgba(196,145,49,0.25);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --radius: 10px;
  --radius-lg: 18px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.vis { opacity: 1; transform: translateY(0); }

.reveal-l {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-l.vis { opacity: 1; transform: translateX(0); }

.reveal-r {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-r.vis { opacity: 1; transform: translateX(0); }

.reveal-s {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-s.vis { opacity: 1; transform: scale(1); }

/* Stagger */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.24s; }
.stagger > *:nth-child(4) { transition-delay: 0.36s; }
.stagger > *:nth-child(5) { transition-delay: 0.48s; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,26,48,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-nav.scrolled {
  background: rgba(15,26,48,0.96);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.nav-brand {
  display: flex;
  align-items: center;
}
.nav-brand-logo {
  height: 76px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.nav-brand-logo:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-links a.active {
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta-link {
  margin-left: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy-deep) !important;
  font-weight: 700 !important;
  padding: 9px 24px !important;
  border-radius: 6px !important;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta-link:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 28px rgba(196,145,49,0.4) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 28px 40px;
    gap: 2px;
    transition: right 0.4s var(--ease);
    box-shadow: -8px 0 40px rgba(0,0,0,0.35);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.95rem; padding: 13px 16px; }
  .nav-cta-link { margin-left: 0 !important; margin-top: 14px; text-align: center; }
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  transition: all 0.25s var(--ease);
  letter-spacing: 0.01em;
  position: relative;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,145,49,0.4);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


/* ============================================================
   HERO — CAMPAIGN STYLE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
  /* Two-tone split background */
  background:
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
}

/* Angled bottom edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

/* Subtle grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

/* Decorative glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb--gold {
  width: 500px; height: 500px;
  top: -15%; right: 5%;
  background: rgba(196,145,49,0.1);
}
.hero-orb--teal {
  width: 400px; height: 400px;
  bottom: -10%; left: -5%;
  background: rgba(46,125,111,0.07);
}

/* Subtle educational icons */
.hero-deco {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  color: var(--white);
}
.hero-deco svg {
  width: 100%;
  height: 100%;
}
.hero-deco-1 {
  top: 15%; right: 10%;
  width: 180px; height: 180px;
  transform: rotate(15deg);
}
.hero-deco-2 {
  bottom: 20%; left: 45%;
  width: 120px; height: 120px;
  transform: rotate(-10deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  text-align: left;
  padding: 80px 0 120px;
}

/* Left column: text */
.hero-content {}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196,145,49,0.1);
  border: 1px solid rgba(196,145,49,0.2);
  border-radius: 100px;
  padding: 7px 20px 7px 14px;
  margin-bottom: 28px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.hero-tag .pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 .em {
  color: var(--gold-light);
  position: relative;
  white-space: nowrap;
}
.hero h1 .em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  opacity: 0.5;
}

.hero-lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 0 36px 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

/* Right column: candidate photo */
.hero-card-area { display: flex; justify-content: flex-end; align-items: center; }

.hero-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  z-index: 2;
  margin-left: auto;
}

/* We style the photo to sit well against the navy background even with its red curtain */
.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 40px 140px 40px 140px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 
              0 0 0 8px rgba(255,255,255,0.06);
  display: block;
}

.hero-photo-deco {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--gold) 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: -1;
  opacity: 0.6;
}

.hero-photo-tag {
  position: absolute;
  bottom: 40px;
  left: -30px; /* Point to Les on the left */
  background: var(--white);
  color: var(--navy-deep);
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.25), 0 10px 15px -5px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-photo-tag .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.hero-photo-tag .role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-lead { margin: 0 auto 36px auto; }
  .hero-buttons { justify-content: center; }
  .hero-card-area { display: flex; justify-content: center; margin-top: 20px; }
  .hero-photo-wrapper { margin-left: 0; }
  .hero-photo-tag { left: 20px; right: auto; bottom: 30px; }
  .hero { min-height: auto; padding-bottom: 120px; }
}


/* ============================================================
   CAMPAIGN STRIP — thin gold bar with scrolling text vibe
   ============================================================ */
.campaign-strip {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  padding: 14px 0;
  position: relative;
  z-index: 4;
}
.campaign-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.campaign-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.campaign-strip-item .star {
  font-size: 0.65rem;
  opacity: 0.5;
}


/* ============================================================
   SECTION HELPERS
   ============================================================ */
section { position: relative; }

.sec-pad { padding: 100px 0; }
.sec-pad-sm { padding: 70px 0; }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.sec-label .bar {
  width: 28px; height: 2px;
  border-radius: 2px;
}
.sec-label--gold { color: var(--gold); }
.sec-label--gold .bar { background: var(--gold); }
.sec-label--teal { color: var(--teal); }
.sec-label--teal .bar { background: var(--teal); }
.sec-label--white { color: rgba(255,255,255,0.7); }
.sec-label--white .bar { background: rgba(255,255,255,0.4); }

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.sec-sub {
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 580px;
}

.sep {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 3px;
  margin: 18px 0;
}


/* ============================================================
   SECTION: WHY THIS ELECTION MATTERS (white bg)
   ============================================================ */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}

.why-text p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 18px;
}

.why-quote {
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.7;
}

.why-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-highlight-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.why-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.wh-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wh-icon svg { width: 22px; height: 22px; }
.wh-icon--navy { background: var(--navy); }
.wh-icon--navy svg { color: var(--gold-light); }
.wh-icon--teal { background: var(--teal); }
.wh-icon--teal svg { color: var(--white); }
.wh-icon--gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.wh-icon--gold svg { color: var(--navy-deep); }

.wh-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.wh-desc {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ============================================================
   SECTION: THREE PILLARS (navy bg)
   ============================================================ */
.pillars-section {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy) 60%, var(--navy-mid));
  position: relative;
  overflow: hidden;
}
/* Angled top edge */
.pillars-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  z-index: 2;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(196,145,49,0.12);
  border: 1px solid rgba(196,145,49,0.2);
}
.pillar-icon svg { width: 26px; height: 26px; color: var(--gold-light); }

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SECTION: TRACK RECORD (white bg)
   ============================================================ */
.record-section {
  background: var(--white);
}

.record-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.record-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.record-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.record-marker {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 3px;
}
.record-marker svg { width: 18px; height: 18px; color: var(--white); }

.record-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.record-card p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.65;
}
.record-card strong {
  color: var(--navy);
}

@media (max-width: 768px) {
  .record-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SECTION: CTA / TOGETHER BANNER (gold bg)
   ============================================================ */
.together-banner {
  background: linear-gradient(135deg, var(--gold), var(--gold-light) 50%, var(--gold));
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.together-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.together-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.together-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy-deep);
  line-height: 1.3;
  margin-bottom: 16px;
}

.together-banner p {
  font-size: 1rem;
  color: rgba(15,26,48,0.65);
  margin-bottom: 32px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.45);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand h3 em { color: var(--gold-light); font-style: normal; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  padding: 5px 0;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
}
.footer-disclaimer {
  font-style: italic;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}


/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}
.page-header .orb {
  position: absolute;
  top: -25%; right: -8%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(196,145,49,0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 3; }
.page-header .sec-title { color: var(--white); }
.page-header .sec-sub { color: rgba(255,255,255,0.55); }


/* ============================================================
   ABOUT PAGE — Intro Section
   ============================================================ */
.about-intro {
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: start;
  margin-top: 48px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--sand), var(--cream));
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.about-photo .ph-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(27,42,74,0.06);
  display: grid;
  place-items: center;
}
.about-photo .ph-icon svg {
  width: 28px; height: 28px;
  color: var(--slate);
}
.about-photo .ph-label {
  font-size: 0.72rem;
  color: var(--slate);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Badge on photo */
.about-photo-badge {
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-text .quote-block {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-photo {
    max-width: 220px;
    margin: 0 auto;
  }
}


/* ============================================================
   ABOUT PAGE — Experience Cards (3-up)
   ============================================================ */
.experience-section {
  background: var(--sand);
  position: relative;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.exp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.exp-card:hover::before { transform: scaleX(1); }

.exp-icon {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.exp-icon svg { width: 24px; height: 24px; color: var(--gold-light); }

.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.exp-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .exp-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   ABOUT PAGE — Achievements List
   ============================================================ */
.achievements-section {
  background: var(--white);
}

.achieve-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.achieve-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.achieve-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}

.achieve-dot {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.achieve-dot svg { width: 20px; height: 20px; color: var(--white); }

.achieve-item h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.achieve-item p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.65;
}
.achieve-item strong { color: var(--navy); }

@media (max-width: 600px) {
  .achieve-item { flex-direction: column; gap: 14px; padding: 22px; }
}


/* ============================================================
   CTA — Navy Banner (reusable on inner pages)
   ============================================================ */
.cta-navy {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy) 60%, var(--navy-mid));
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-navy::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,145,49,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-navy .cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-navy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 14px;
}
.cta-navy h2 .gold { color: var(--gold-light); }
.cta-navy p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  line-height: 1.7;
}


/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-nav, .site-footer, .btn, .campaign-strip { display: none; }
  body { background: white; color: black; }
  .hero { min-height: auto; background: #1b2a4a !important; }
  .hero::after { display: none; }
}

/* Swearing-in Photo */
.swearing-in-photo-container {
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15,26,48,0.12);
  border: 4px solid var(--white);
}
.swearing-in-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  object-position: center 25%;
}

/* Carousel Styles */
.carousel-container {
  max-width: 900px;
  margin: 40px auto 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15,26,48,0.15);
  border: 4px solid var(--white);
  background: var(--navy-deep);
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 500px; /* fixed height for flow consistency */
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}
.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
  background: rgba(15,26,48,0.7);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.carousel-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.carousel-btn:hover {
  color: var(--gold);
}
@media (max-width: 768px) {
  .carousel-track { height: 300px; }
}
