:root {
  --ink: #101820;
  --navy: #142433;
  --navy-deep: #0c1824;
  --gulf: #2a6b66;
  --gold: #c4a056;
  --gold-dark: #9c7a32;
  --sand: #e9e1d2;
  --paper: #f5f0e6;
  --white: #fcfaf6;
  --muted: #5d6a73;
  --line: rgba(196, 160, 86, 0.35);
  --shadow: 0 18px 40px rgba(16, 24, 32, 0.12);
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img {
  max-width: 100%;
}

a {
  color: var(--gulf);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold-dark);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  margin: 0.15em 0 0.35em;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 0.4rem;
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.5rem 0.8rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 24, 36, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 160, 86, 0.2);
}

.header-inner,
.footer-inner,
.section-inner,
.hero-inner,
.stats-grid {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--sand);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav {
  display: flex;
  gap: 1.6rem;
}

.site-nav a {
  color: var(--sand);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold);
}

.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(196, 160, 86, 0.18), transparent 38%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 58%, #16353d 100%);
  color: var(--white);
  padding: 5.5rem 0 5rem;
}

.hero h1,
.page-hero h1 {
  color: inherit;
}

.hero h1 {
  color: var(--white);
}

.hero-name {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0.15em 0 0.35em;
}

.hero-name h1 {
  margin: 0;
}

.hero-thumb {
  width: 5.25rem;
  height: 5.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid var(--gold);
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-role {
  font-size: 1.15rem;
  color: var(--sand);
  margin-bottom: 1.2rem;
}

.hero-lead,
.page-lead {
  max-width: 42rem;
  font-size: 1.18rem;
  color: var(--sand);
}

.page-hero .page-lead {
  color: #f3ece0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  padding: 0.75rem 1.35rem;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  background: #d4b56c;
  color: var(--navy-deep);
}

.btn-ghost {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(196, 160, 86, 0.12);
  color: var(--sand);
}

.form-note {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.stats {
  background: var(--navy);
  color: var(--sand);
  padding: 2.4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.stat-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  color: var(--gold);
  margin: 0;
  line-height: 1.1;
}

.stat-label {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: #c9c2b5;
}

.section {
  padding: 4.5rem 0;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  padding: 1.6rem 1.5rem 1.4rem;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.section-alt .card {
  background: var(--paper);
}

.card-meta {
  margin: 0 0 0.5rem;
  color: var(--gulf);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.focus-list,
.strengths,
.plain-list,
.role ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list li,
.strengths li,
.role li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.focus-list li::before,
.strengths li::before,
.role li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
}

.strengths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 3.8rem 0 3.2rem;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.15fr;
  gap: 2.4rem;
  align-items: center;
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.role {
  margin: 0 0 2.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.role-header p {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.subhead {
  margin-top: 1.6rem;
}

.expertise {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-form {
  display: grid;
  gap: 0.35rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 0.7rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc6b6;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.7rem 0.8rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.contact-form .btn {
  margin-top: 1.1rem;
  justify-self: start;
}

.alert {
  padding: 0.9rem 1rem;
  margin-bottom: 1.2rem;
}

.alert-success {
  background: #e6f0ea;
  border-left: 4px solid var(--gulf);
}

.alert-error {
  background: #f7ece6;
  border-left: 4px solid #a24b2f;
}

.alert ul {
  margin: 0;
  padding-left: 1.1rem;
}

.error-stack {
  overflow: auto;
  background: var(--navy-deep);
  color: var(--sand);
  padding: 1rem;
  font-size: 0.85rem;
}

.site-footer {
  background: var(--navy-deep);
  color: #c9c2b5;
  padding: 2.2rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--sand);
  font-size: 1.25rem;
  margin: 0;
}

.footer-meta,
.footer-copy {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
}

.footer-meta a {
  color: var(--sand);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--gold);
}

.footer-copy {
  text-align: right;
}

.footer-nav {
  display: flex;
  gap: 1.2rem;
}

.footer-nav a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.9rem;
}

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

@media (max-width: 900px) {
  .stats-grid,
  .card-grid,
  .split,
  .strengths,
  .contact-layout,
  .about-hero,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    max-width: 22rem;
  }

  .footer-copy,
  .footer-nav {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: var(--navy-deep);
    flex-direction: column;
    padding: 0.6rem 1.2rem 1.2rem;
    gap: 0.8rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .page-hero,
  .section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}
