@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f3efe6;
  color: #17211d;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: #0f3d3a;
  text-decoration: none;
}
a:hover {
  color: #092825;
  text-decoration: underline;
}
a:focus-visible {
  outline: 3px solid #d69a31;
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(3rem, 14vw, 6.4rem);
  line-height: 0.92;
}

h2 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.35;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 239, 230, 0.94);
  border-bottom: 1px solid #d8cbb7;
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0;
}

.section {
  padding: 64px 0;
}

.section-inverse {
  background: #0f2f2d;
  color: #f8f1e5;
}

.section-surface {
  background: #fffaf0;
  border-block: 1px solid #d8cbb7;
}

.hero-grid,
.content-band,
.direction-panel {
  display: grid;
  gap: 28px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid #d8cbb7;
  color: #5f6a63;
}
.site-footer p {
  margin: 0;
}

@media (min-width: 640px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 900px) {
  .section {
    padding: 88px 0;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
    align-items: end;
  }
  .content-band,
  .direction-panel {
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
    align-items: start;
  }
  .experience-list {
    max-width: 900px;
  }
}
.brand {
  color: #17211d;
  font-weight: 800;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.nav-links a {
  color: #5f6a63;
  font-size: 0.95rem;
  font-weight: 700;
}
.nav-links a:hover {
  color: #0f3d3a;
}

.section-inverse .eyebrow,
.section-inverse .section-kicker {
  color: #c58b2d;
}
.section-inverse .summary,
.section-inverse .section-heading p:not(.section-kicker),
.section-inverse .experience-card__focus,
.section-inverse .experience-card__meta {
  color: #c8d3ce;
}

.hero {
  padding-top: 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: #0f3d3a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.title {
  margin-bottom: 24px;
  color: #c58b2d;
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 800;
}

.summary,
.career-text,
.snapshot-text {
  max-width: 760px;
  color: #5f6a63;
  font-size: 1.08rem;
}

.snapshot-text,
.career-text {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.45;
}

.actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(15, 61, 58, 0.28);
  border-radius: 999px;
  background: #fffaf0;
  color: #0f3d3a;
  font-weight: 800;
  line-height: 1.2;
}
.button:hover {
  border-color: #c58b2d;
  color: #092825;
  text-decoration: none;
}

.button-primary {
  border-color: #c58b2d;
  background: #c58b2d;
  color: #092825;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}
.section-heading p:last-child {
  margin-bottom: 0;
  color: #5f6a63;
}

.profile-facts,
.strength-card,
.direction-panel {
  border: 1px solid #d8cbb7;
  border-radius: 10px;
  background: #fffaf0;
  box-shadow: 0 20px 50px rgba(15, 47, 45, 0.12);
}

.profile-facts {
  align-self: stretch;
  padding: 24px;
}

.profile-fact + .profile-fact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #d8cbb7;
}

.profile-fact__label {
  display: block;
  color: #5f6a63;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-fact__value {
  display: block;
  margin-top: 4px;
  color: #092825;
  font-size: 1.05rem;
}

.strength-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.strength-card {
  padding: 22px;
}
.strength-card__title {
  color: #0f3d3a;
}
.strength-card__list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: #5f6a63;
  list-style: none;
}

.direction-panel {
  padding: 28px;
}

.contact-section {
  background: #fffaf0;
}

.contact-links {
  margin-top: 0;
}
.contact-links .button {
  min-width: 140px;
  border-radius: 10px;
}

@media (min-width: 640px) {
  .strength-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.experience-list {
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(197, 139, 45, 0.6);
}

.experience-card {
  position: relative;
  padding: 0 0 34px 24px;
}
.experience-card::before {
  position: absolute;
  top: 7px;
  left: -8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c58b2d;
  content: "";
}
.experience-card__role {
  margin-bottom: 4px;
  color: #f8f1e5;
}
.experience-card__company {
  margin-bottom: 8px;
  color: #c58b2d;
  font-size: 1rem;
  font-weight: 800;
}
.experience-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.experience-card__location--separated::before {
  margin-right: 10px;
  color: #c58b2d;
  content: "·";
}
.experience-card__focus {
  margin-bottom: 0;
}
