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

:root {
  --navy: #0A1628;
  --steel: #4A5568;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --light-bg: #F7F8FA;
  --border: #E2E8F0;
  --navy-light: #1A2A44;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, blockquote {
  font-family: 'Playfair Display', Georgia, serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(10, 22, 40, 0.08);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel);
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
}

.hero-container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.badge-icon {
  font-size: 1rem;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-subline {
  font-size: 1.05rem;
  color: var(--steel);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-bio {
  font-size: 1.05rem;
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

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

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-grid-lines {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(10, 22, 40, 0.06);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-grid-lines::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(10, 22, 40, 0.04);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-grid-lines::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.profile-photo-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  z-index: 1;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: #E8ECF1;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--steel);
}

/* ===== THREE PILLARS ===== */
.pillars {
  background: var(--navy);
  padding: 64px 24px;
}

.pillars-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.pillar-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ===== SECTION COMMON ===== */
.section-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 100px 24px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.section-title-light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--steel);
  margin-top: -24px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 40px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.about-narrative p {
  font-size: 1.05rem;
  color: var(--steel);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-narrative p:last-child {
  margin-bottom: 0;
}

/* ===== EXPERIENCE TIMELINE ===== */
.experience {
  background: var(--light-bg);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.timeline-item:hover {
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
}

.timeline-header {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.timeline-company {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-role {
  font-size: 0.9rem;
  color: var(--steel);
  margin-bottom: 2px;
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

.timeline-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--steel);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-item.active .timeline-toggle {
  transform: rotate(45deg);
}

.timeline-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.timeline-item.active .timeline-body {
  max-height: 600px;
  padding: 0 28px 24px;
}

.timeline-body ul {
  list-style: none;
  padding: 0;
}

.timeline-body li {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.7;
  padding: 6px 0 6px 20px;
  position: relative;
}

.timeline-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-also {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
}

/* ===== CAMPAIGNS ===== */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.campaign-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
}

.campaign-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.campaign-brand {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.campaign-desc {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 16px;
}

.campaign-takeaway {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  line-height: 1.6;
}

.campaign-card-more {
  background: var(--light-bg);
  border: none;
  display: flex;
  align-items: center;
}

.campaign-card-more p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--steel);
  line-height: 1.7;
}

.campaign-card-more:hover {
  transform: none;
  box-shadow: none;
}

/* ===== DIGITAL WORK ===== */
.digital {
  background: var(--light-bg);
}

.digital-intro {
  font-size: 1.1rem;
  color: var(--steel);
  margin-bottom: 48px;
  line-height: 1.7;
}

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

.digital-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.digital-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
}

.digital-block-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.digital-block p {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.7;
}

/* ===== AWARDS ===== */
.award-primary {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 36px 32px;
  margin-bottom: 40px;
}

.award-primary-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.award-primary-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.award-primary-org {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.award-primary-desc {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--steel);
}

.award-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.award-photo {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (max-width: 640px) {
  .award-photos {
    grid-template-columns: 1fr;
  }
}

.education-strip {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.education-school {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.education-program {
  font-size: 0.85rem;
  color: var(--steel);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--navy);
  color: var(--white);
}

.contact .section-container {
  padding: 80px 24px;
  text-align: center;
}

.contact-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  transition: all 0.2s ease;
  min-width: 220px;
}

.contact-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.03);
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 24px;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-bio {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .profile-photo-wrapper {
    width: 220px;
    height: 220px;
  }

  .hero-grid-lines {
    width: 260px;
    height: 260px;
  }

  .hero-grid-lines::before {
    width: 310px;
    height: 310px;
  }

  .hero-grid-lines::after {
    width: 210px;
    height: 210px;
  }

  .pillars-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .campaigns-grid,
  .digital-grid {
    grid-template-columns: 1fr;
  }

  .education-strip {
    flex-direction: column;
    gap: 20px;
  }

  .pull-quote {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 80px 20px 40px;
    min-height: auto;
  }

  .hero-headline {
    font-size: 1.85rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .section-container {
    padding: 64px 20px;
  }

  .pillars {
    padding: 48px 20px;
  }

  .timeline-header {
    padding: 20px;
  }

  .timeline-item.active .timeline-body {
    padding: 0 20px 20px;
  }

  .campaign-card {
    padding: 24px;
  }

  .digital-block {
    padding: 24px;
  }

  .award-primary {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .contact-link {
    width: 100%;
    max-width: 300px;
  }

  .footer-nav {
    gap: 16px;
  }
}
