:root {
  --navy: #10233f;
  --blue: #284d7a;
  --gold: #c9a45c;
  --light: #f4f6f8;
  --text: #1f2933;
  --muted: #657487;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); line-height: 1.6; }
a { color: inherit; }
.site-header { position: sticky; top: 0; z-index: 10; display: flex; justify-content: space-between; align-items: center; padding: 18px 6%; background: var(--navy); color: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.logo { font-weight: 700; font-size: 1.15rem; text-decoration: none; letter-spacing: .03em; }
.nav { display: flex; gap: 24px; }
.nav a { text-decoration: none; font-size: .95rem; opacity: .92; }
.nav a:hover { color: var(--gold); }
.menu-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 1.6rem; }

/* Hero uses an actual image element so the head is never cropped off. */
.hero {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr);
  align-items: stretch;
  min-height: calc(100vh - 72px);
  background: linear-gradient(120deg, #10233f 0%, #18385f 58%, #f5f7fb 58%, #ffffff 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 6vw 76px 6vw;
  position: relative;
  z-index: 1;
}
.hero-photo-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
  padding: 34px 6vw 0 2vw;
}
.hero-image {
  display: block;
  width: min(100%, 620px);
  height: auto;
  max-height: calc(100vh - 100px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 36px rgba(16,35,63,.28));
}
.about-photo-card {
    text-align: center;
}

.about-photo-card img {
    width: 80%;
    max-width: 800px;   /* Optional: prevents it from becoming too large */
    height: auto;
    display: block;
    margin: 0 auto;
}
.eyebrow, .section-label { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; font-weight: 700; }
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); line-height: .95; margin: 14px 0; }
.hero-text { font-size: clamp(1.35rem, 3vw, 2.3rem); max-width: 680px; margin-bottom: 32px; }
.button { display: inline-block; padding: 13px 22px; border-radius: 999px; text-decoration: none; border: 2px solid transparent; font-weight: 700; cursor: pointer; }
.primary { background: var(--gold); color: var(--navy); }
.secondary { border-color: var(--white); color: var(--white); margin-left: 10px; }
.intro-stats { display: grid; grid-template-columns: repeat(4,1fr); background: var(--navy); color: var(--white); }
.intro-stats div { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.15); }
.intro-stats strong { display: block; font-size: 1.6rem; color: var(--gold); }
.intro-stats span { font-size: .94rem; }
.section { padding: 88px 6%; }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.1; margin: 8px 0 24px; color: var(--navy); }
.light { background: var(--light); }
.cards { display: grid; gap: 24px; margin-top: 28px; }
.cards.two { grid-template-columns: repeat(2,1fr); }
.cards.three { grid-template-columns: repeat(3,1fr); }
.card { background: var(--white); border: 1px solid #e3e8ef; border-radius: 20px; padding: 28px; box-shadow: 0 12px 30px rgba(16,35,63,.06); }
.card h3 { margin-top: 0; color: var(--navy); }
.muted { color: var(--muted); font-weight: 700; }
.navy { background: var(--navy); color: var(--white); }
.navy h2, .navy h3 { color: var(--white); }
.topic-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 30px; }
.topic-grid div { border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 24px; background: rgba(255,255,255,.06); }
.wide-text { max-width: 900px; }
.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.linkedin { color: var(--blue); font-weight: 700; }
.contact-form { background: var(--light); padding: 28px; border-radius: 22px; }
label { display: block; margin-bottom: 16px; font-weight: 700; color: var(--navy); }
input, textarea, select { width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid #cbd5df; border-radius: 10px; font: inherit; }
.site-footer { text-align: center; padding: 30px 6%; background: #0b1728; color: var(--white); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; background: linear-gradient(180deg, #10233f 0%, #18385f 62%, #f5f7fb 62%, #ffffff 100%); }
  .hero-content { padding: 58px 6vw 34px; }
  .hero-photo-wrap { min-height: 0; padding: 0 6vw; align-items: center; }
  .hero-image { max-height: none; width: min(100%, 520px); }
}

@media (max-width: 850px) {
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; top: 64px; right: 6%; background: var(--navy); padding: 18px; border-radius: 12px; flex-direction: column; }
  .nav.open { display: flex; }
  .intro-stats, .cards.two, .cards.three, .topic-grid, .two-column, .contact-section { grid-template-columns: 1fr; }
  .intro-stats div { border-bottom: 1px solid rgba(255,255,255,.15); }
  .secondary { margin-left: 0; margin-top: 12px; }
}

@media (max-width: 520px) {
  .site-header { padding: 14px 5%; }
  .hero-content { padding: 42px 5vw 24px; }
  .hero-photo-wrap { padding: 0 5vw; }
  h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .hero-text { font-size: 1.25rem; }
}
