@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,600;1,400&display=swap');

:root {
  --burgundy: #6B1E2E;
  --burgundy-dark: #4A1220;
  --burgundy-light: #8C2A3E;
  --burgundy-hero: #5A1828;
  --navy: #162340;
  --navy-mid: #1E3260;
  --navy-light: #2A4580;
  --gold: #C9A84C;
  --gold-light: #E2C87A;
  --cream: #FAF7F2;
  --offwhite: #F2EDE6;
  --text-dark: #1A1A1A;
  --text-mid: #3A3A3A;
  --text-light: #6A6A6A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(22, 35, 64, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}

.nav-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-linkedin {
  background: var(--burgundy) !important;
  color: white !important;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s !important;
  border: 1px solid rgba(201,168,76,0.3);
}

.nav-linkedin:hover { background: var(--burgundy-light) !important; }

/* ── HERO ── */
.hero {
  height: 100vh;
  background: #5A1828;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 64px 60px 60px 60px;
  padding-bottom: 100px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 7.5vw, 8rem);
  font-weight: 400;
  color: white;
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.hero-summary {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.badge {
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: var(--navy);
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(201,168,76,0.25);
  transition: all 0.25s;
  display: inline-block;
  border-radius: 3px;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(22,35,64,0.5);
}

.btn-secondary {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(201,168,76,0.5);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

/* ── HERO PHOTO ── */
.hero-photo-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64px;
  display: block;
  border-radius: 0;
  border: none;
  border-left: 4px solid var(--gold);
}

/* ── SECTIONS ── */
.section {
  padding: 90px 80px;
}

.section-alt {
  background: var(--navy);
  color: white;
}

.section-burgundy {
  background: var(--burgundy-dark);
  color: white;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-eyebrow-light {
  color: var(--gold-light);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
}

.section-title-light {
  color: white;
}

.section-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(107,30,46,0.3), transparent);
}

.section-rule-light {
  background: linear-gradient(to right, rgba(201,168,76,0.4), transparent);
}

/* ── EDUCATION ── */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.edu-card {
  background: white;
  border-left: 3px solid var(--burgundy);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.edu-card:hover {
  box-shadow: 0 8px 30px rgba(107,30,46,0.12);
  transform: translateY(-2px);
}

.edu-period {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 8px;
}

.edu-school {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.edu-location {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.edu-degree {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.edu-detail {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.gpa-chip {
  display: inline-block;
  background: var(--burgundy);
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-top: 10px;
  font-weight: 500;
}

/* ── EXPERIENCE ── */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto 0 220px;
}

.exp-item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.exp-item:last-child { border-bottom: none; }

.exp-header {
  display: grid;
	grid-template-columns: auto minmax(300px, 1fr) auto;
  align-items: start;
  gap: 20px;
  padding: 30px 0;
  cursor: pointer;
}

.exp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}

.exp-company {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}

.exp-role {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.exp-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}



.exp-bullets {
  padding: 0 0 28px 30px;
  display: none;
}

.exp-bullets.open { display: block; }

.exp-bullets ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exp-bullets li {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  padding-left: 18px;
  position: relative;
}

.exp-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.exp-bullets li strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ── EXP HINT & TOGGLE ── */
.exp-hint {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.exp-period {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.exp-toggle-btn {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 3px;
  padding: 5px 12px;
  transition: all 0.2s;
  white-space: nowrap;
}

.exp-header:hover .exp-toggle-btn {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.exp-header:hover .exp-company {
  color: var(--gold-light);
}

/* ── SKILLS ── */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.skill-group-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 18px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: var(--offwhite);
  border: 1px solid rgba(22,35,64,0.12);
  color: var(--navy);
  font-size: 0.78rem;
  padding: 6px 14px;
  font-weight: 500;
  border-radius: 3px;
  transition: all 0.15s;
}

.skill-tag:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ── LEADERSHIP ── */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.leader-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 28px;
  border-radius: 4px;
  transition: background 0.2s;
}

.leader-card:hover {
  background: rgba(255,255,255,0.08);
}

.leader-org {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.leader-role {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 14px;
}

.leader-detail {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── AWARDS ── */
.awards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.award-item {
  padding: 22px;
  border-left: 2px solid var(--burgundy);
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.award-org {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 6px;
}

.award-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.award-year {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── CONTACT ── */
.contact-section {
  background: var(--navy);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}

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

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--gold-light); }

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

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

.cta-big {
  background: var(--burgundy);
  color: white;
  text-decoration: none;
  padding: 20px 36px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  transition: all 0.25s;
  text-align: center;
  display: block;
}

.cta-big:hover {
  background: var(--burgundy-light);
  box-shadow: 0 12px 35px rgba(107,30,46,0.45);
}

.cta-outline {
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 20px 36px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  transition: all 0.25s;
  text-align: center;
  display: block;
}

.cta-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}


/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  padding: 12px 16px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.cta-outline-btn {
  background: transparent;
  color: white;
  padding: 14px 36px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
  width: 100%;
}

.cta-outline-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.form-success {
  color: var(--gold-light);
  font-size: 0.85rem;
  padding: 10px 0;
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--burgundy-dark);
  padding: 24px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-name {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
nav {
  padding: 10px 16px 16px;
  height: auto;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.nav-name { font-size: 0.9rem; }
.nav-links {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a { font-size: 0.72rem; }
.nav-linkedin { padding: 6px 16px; font-size: 0.72rem; }

  .hero {
    height: auto;
    min-height: 100vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
  }
  .hero-text { padding: 20px 32px 40px; order: 2; }
  .hero-photo-wrap { order: 1; width: 100%; padding-top: 100px; }
  .hero-photo { width: 100%; height: auto; object-fit: contain; object-position: center top; border-left: none; border-bottom: 4px solid var(--gold); }
  .hero-badges, .hero-ctas { justify-content: center; }
  .hero-divider { margin: 0 auto 28px; }
  .hero-summary { margin: 0 auto 40px; }

  .section { padding: 60px 32px; }
  .experience-list {
	max-width: 100%;
	margin: 0;
	}
	
	.exp-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .exp-period {
    font-size: 0.65rem;
  }

  .exp-toggle-btn {
    padding: 4px 8px;
    font-size: 0.65rem;
  }
	
	
  .skills-grid, .leadership-grid { grid-template-columns: 1fr; }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 60px 32px;
  }

  footer { padding: 20px 32px; flex-direction: column; gap: 8px; text-align: center; }
}
