 :root {
      --navy: #102a43;
      --navy-light: #243b53;
      --gold: #d9a441;
      --gold-light: #f0c66c;
      --text: #1f2933;
      --muted: #52606d;
      --background: #f7f8fa;
      --white: #ffffff;
      --border: #d9e2ec;
      --shadow: 0 10px 30px rgba(16, 42, 67, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--background);
      line-height: 1.7;
    }

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

    a {
      color: inherit;
    }

    .container {
      width: min(1120px, 84%);
      margin: 0 auto;
    }

    header {
      background: var(--navy);
      color: var(--white);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }

    nav {
      min-height: 76px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
    }

    .site-name {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.35rem;
      letter-spacing: 0.03em;
      text-decoration: none;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 6px;
    }

    .nav-links a {
      color: var(--white);
      text-decoration: none;
      padding: 8px 10px;
      border-radius: 4px;
      font-size: 0.94rem;
    }

    .nav-links a:hover,
    .nav-links a:focus {
      background: rgba(255, 255, 255, 0.12);
    }

    .hero {
      background:
        radial-gradient(
          circle at 80% 20%,
          rgba(217, 164, 65, 0.18),
          transparent 32%
        ),
        linear-gradient(135deg, var(--navy), var(--navy-light));
      color: var(--white);
      padding: 96px 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.35fr 0.65fr;
      align-items: center;
      gap: 64px;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.82rem;
      font-weight: bold;
    }

    .hero h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(3rem, 7vw, 5.4rem);
      line-height: 1;
      margin: 0 0 18px;
    }

    .hero h2 {
      max-width: 720px;
      margin: 0 0 24px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.65rem, 3vw, 2.5rem);
      line-height: 1.25;
      font-weight: normal;
      color: #f0f4f8;
    }

    .professional-line {
      margin: 0 0 28px;
      color: #d9e2ec;
      font-weight: bold;
      letter-spacing: 0.04em;
    }

    .hero-lines {
      margin: 30px 0;
      padding-left: 20px;
      border-left: 4px solid var(--gold);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.3rem;
      line-height: 1.65;
    }

    .hero-summary {
      max-width: 700px;
      margin: 0 0 26px;
      color: #e6edf3;
      font-size: 1.06rem;
    }

    .button-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .button {
      display: inline-block;
      padding: 13px 21px;
      border: 2px solid var(--gold);
      border-radius: 5px;
      background: var(--gold);
      color: var(--navy);
      text-decoration: none;
      font-weight: bold;
      transition:
        transform 0.2s ease,
        background 0.2s ease;
    }

    .button:hover,
    .button:focus {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    .button-secondary {
      background: transparent;
      color: var(--white);
    }

    .button-secondary:hover,
    .button-secondary:focus {
      background: rgba(255, 255, 255, 0.1);
    }

   .portrait-placeholder {
    min-height: 520px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .portrait-placeholder strong {
      display: block;
      margin-bottom: 8px;
      color: var(--white);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.25rem;
    }

    main {
      overflow: hidden;
    }

    section {
      padding: 78px 0;
    }

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

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

    .section-heading {
     @media (max-width: 760px) {
  .container {
    width: min(90%, 1120px);
  }

  nav {
    display: block;
    padding: 18px 0;
  }

  .nav-links {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .nav-links a {
    padding-left: 0;
    margin-right: 8px;
  }

  .hero {
    padding: 70px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }
}

.tiger-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}