/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1628;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --silver: #b0b8c1;
  --white: #f4f4f4;
  --dark: #111;
  --gradient: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--white);
  background: var(--navy);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

nav .nav-links a {
  color: var(--silver);
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero-photo {
  flex-shrink: 0;
}

.hero-photo img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 60px rgba(201,168,76,0.3);
}

.hero-text h1 {
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.hero-text .subtitle {
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.hero-text .tagline {
  font-size: 1.05rem;
  color: var(--silver);
  line-height: 1.7;
  max-width: 520px;
  font-style: italic;
}

.hero-text .cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.hero-text .cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

/* ===== SECTION SHARED ===== */
section {
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--silver);
  font-style: italic;
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* ===== IMPACT COUNTERS ===== */
.impact {
  background: var(--dark);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.counters {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.counter-item {
  text-align: center;
  min-width: 160px;
}

.counter-number {
  font-size: 3rem;
  color: var(--gold);
  font-weight: bold;
  display: block;
}

.counter-label {
  font-size: 0.8rem;
  color: var(--silver);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ===== ABOUT / KEYNOTE ===== */
.about {
  background: var(--gradient);
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image img {
  width: 400px;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.about-image .caption {
  text-align: center;
  font-size: 0.75rem;
  color: var(--silver);
  margin-top: 0.8rem;
  font-style: italic;
}

.about-text {
  max-width: 500px;
}

.about-text p {
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text .highlight {
  color: var(--gold-light);
  font-weight: bold;
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials {
  background: var(--dark);
  overflow: hidden;
}

.slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.6s ease;
  padding: 2rem;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slide.exit {
  opacity: 0;
  transform: translateX(-60px);
}

.testimonial-quote {
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: 650px;
}

.testimonial-quote::before { content: '\201C'; font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -0.5em; margin-right: 0.2em; }
.testimonial-quote::after { content: '\201D'; font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -0.5em; margin-left: 0.2em; }

.testimonial-author {
  color: var(--gold);
  font-weight: bold;
  font-size: 1rem;
}

.testimonial-role {
  color: var(--silver);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--silver);
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.slider-dot.active {
  opacity: 1;
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== AWARDS ===== */
.awards {
  background: var(--gradient);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.award-card {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.15);
}

.award-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.award-card h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.award-card p {
  color: var(--silver);
  font-size: 0.85rem;
  line-height: 1.5;
}

.award-year {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.6rem;
  letter-spacing: 1px;
}

/* ===== FEATURED IN ===== */
.featured {
  background: var(--dark);
  text-align: center;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.featured-logos span {
  font-size: 1.3rem;
  color: var(--silver);
  opacity: 0.5;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
}

/* ===== OFFICIAL PORTRAIT ===== */
.portrait {
  background: var(--gradient);
  text-align: center;
}

.portrait-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.portrait-container > img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.portrait-plaque {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid var(--gold);
  padding: 1.2rem 2rem;
  max-width: 360px;
  margin: 1.5rem auto 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.portrait-plaque h3 {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.portrait-plaque p {
  color: var(--silver);
  font-size: 0.85rem;
  line-height: 1.5;
}

.portrait-plaque .plaque-sub {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(176,184,193,0.6);
  margin-top: 0.2rem;
}

/* ===== CLASSIFIED / EARLY YEARS ===== */
.classified {
  background: var(--dark);
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  position: relative;
  overflow: hidden;
}

.classified::before {
  content: 'CLASSIFIED CLASSIFIED CLASSIFIED CLASSIFIED CLASSIFIED CLASSIFIED CLASSIFIED';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  font-size: 6rem;
  font-weight: bold;
  color: rgba(255,0,0,0.03);
  transform: rotate(-15deg);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 20px;
}

.classified-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.classified-image {
  flex-shrink: 0;
  position: relative;
  text-align: center;
}

.classified-image img {
  width: 250px;
  border: 2px solid #444;
  filter: contrast(1.1);
}

.classified-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(255, 0, 0, 0.6);
  border: 4px solid rgba(255, 0, 0, 0.6);
  padding: 0.3rem 1.5rem;
  letter-spacing: 6px;
  font-family: 'Arial Black', sans-serif;
  pointer-events: none;
}

.classified-text {
  max-width: 500px;
}

.classified-text p {
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.redacted {
  background: var(--silver);
  color: var(--silver);
  padding: 0 0.3rem;
  border-radius: 2px;
  user-select: none;
  cursor: not-allowed;
}

/* ===== FIELD OPS ===== */
.field-ops {
  background: var(--dark);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* ===== CONTEMPLATION ===== */
.contemplation {
  background: var(--gradient);
}

.contemplation-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.contemplation-image {
  flex-shrink: 0;
}

.contemplation-image img {
  width: 280px;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.contemplation-caption {
  max-width: 450px;
}

.contemplation-quote {
  color: var(--silver);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.contemplation-source {
  color: var(--gold);
  font-size: 0.8rem;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.contemplation-note {
  color: rgba(176,184,193,0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}


/* ===== PHILOSOPHY ===== */
.philosophy {
  background: var(--gradient);
  text-align: center;
}

.philosophy blockquote {
  max-width: 700px;
  margin: 2rem auto;
  font-size: 1.4rem;
  color: var(--gold-light);
  line-height: 1.8;
  font-style: italic;
}

.philosophy .attribution {
  color: var(--silver);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--dark);
  text-align: center;
  border-top: 2px solid var(--gold);
}

.contact p {
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.contact .email {
  display: inline-block;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.contact .disclaimer {
  margin-top: 3rem;
  font-size: 0.7rem;
  color: rgba(176,184,193,0.3);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  text-align: center;
  padding: 2rem;
  font-size: 0.75rem;
  color: var(--silver);
  opacity: 0.5;
  border-top: 1px solid rgba(201,168,76,0.2);
}

/* ===== FLOATING PARTICLES ===== */
.particle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation: float-up 8s infinite;
}

@keyframes float-up {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content { flex-direction: column; text-align: center; gap: 2rem; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-photo img { width: 220px; height: 220px; }
  .about-grid { flex-direction: column; text-align: center; }
  .about-image img { width: 100%; max-width: 350px; }
  .counters { gap: 2rem; }
  nav .nav-links { display: none; }
  .classified-grid { flex-direction: column; text-align: center; }
  .contemplation-container { flex-direction: column; text-align: center; }
  .contemplation-image img { width: 100%; max-width: 280px; }
}
