:root {
  --navy: #082f59;
  --green: #18783c;
  --gold: #efbd24;
  --cream: #fbfaf5;
  --white: #fff;
  --ink: #18324d;
  --muted: #526575;
  --line: rgba(8, 47, 89, 0.14);
  --shadow: 0 18px 55px rgba(8, 47, 89, 0.1);
  --radius: 22px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font:
    400 1rem/1.7 Montserrat,
    Arial,
    sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
p {
  margin: 0 0 1.25rem;
}
h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
  margin: 0 0 1rem;
}
h1,
h2,
h3,
.eyebrow,
.nav-links,
.button {
  font-family: "Arial Narrow", Montserrat, Arial, sans-serif;
}
h1 {
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: 1.35rem;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 12px;
  z-index: 100;
  background: var(--gold);
  color: var(--navy);
  padding: 0.7rem 1rem;
  font-weight: 800;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 245, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 190px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: 0.82rem;
}
.nav-links a {
  text-decoration: none;
  border-bottom: 3px solid transparent;
  padding: 0.5rem 0;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--green);
  border-color: var(--gold);
}
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  padding: 0.5rem;
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: stretch;
  background: linear-gradient(120deg, var(--cream) 0 56%, #eef3ed 56%);
}
.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) max(20px, calc((100vw - var(--max)) / 2))
    clamp(4rem, 8vw, 8rem) max(20px, 4vw);
}
.eyebrow {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.slogan {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 700;
  font-style: italic;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.lead {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  max-width: 680px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 900;
  font-size: 0.83rem;
  padding: 0.92rem 1.25rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
}
.button:hover,
.button:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
}
.button.secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 250, 245, 0.24),
    transparent 28%
  );
  pointer-events: none;
}
.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}
.section.alt {
  background: #fff;
}
.section.green {
  background: var(--green);
  color: #fff;
}
.section.green h2,
.section.green h3 {
  color: #fff;
}
.section-head {
  max-width: 760px;
  margin-bottom: 2.6rem;
}
.section-head p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}
.bio-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}
.about-headshot {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.bio-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.bio-card h3 {
  color: #fff;
}
.fact {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}
.fact:last-child {
  border: 0;
}
.fact .icon {
  color: var(--gold);
  flex: 0 0 auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: 0 12px 35px rgba(8, 47, 89, 0.055);
}
.card .icon-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #edf5ef;
  color: var(--green);
  margin-bottom: 1.15rem;
}
.card .icon {
  width: 28px;
  height: 28px;
}
.text-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: var(--green);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  color: var(--navy);
  border-left: 5px solid var(--gold);
  padding-left: 1.4rem;
}
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(135deg, #eef5ef, var(--cream) 64%);
  border-bottom: 1px solid var(--line);
}
.page-hero p {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}
.priority-detail {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.4rem;
  padding: 2.1rem 0;
  border-top: 1px solid var(--line);
}
.priority-detail:first-child {
  border-top: 0;
}
.priority-number {
  font:
    900 2.2rem/1 "Arial Narrow",
    Arial,
    sans-serif;
  color: var(--gold);
}
.contact-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.notice {
  background: #fff6d8;
  border-left: 4px solid var(--gold);
  padding: 1rem 1.15rem;
}
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 3.5rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  color: #fff;
  text-decoration: none;
  line-height: 1.05;
}
.footer-wordmark strong {
  font-family: "Arial Narrow", Montserrat, Arial, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.footer-wordmark span {
  width: fit-content;
  margin-top: 0.55rem;
  padding: 0.3rem 0.55rem;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-left: 3px solid var(--gold);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-links a {
  color: #fff;
  font-weight: 700;
  text-underline-offset: 4px;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  font-size: 0.78rem;
  color: #eef3f7;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green);
  font-weight: 800;
}
.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-clean li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.list-clean .icon {
  color: var(--green);
  flex: none;
  margin-top: 0.2rem;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }
  .nav-links {
    position: absolute;
    top: 132px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding: 1.2rem 20px 1.6rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 0.65rem;
  }
  .hero {
    grid-template-columns: 1fr;
    background: var(--cream);
  }
  .hero-copy {
    padding: 4.5rem 20px;
  }
  .hero-photo {
    min-height: 420px;
  }
  .bio-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .cta,
  .footer-grid {
    display: block;
  }
  .cta .actions {
    margin-top: 1.5rem;
  }
  .footer-links {
    margin-top: 2rem;
  }
}
@media (max-width: 480px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }
  .brand img {
    width: 126px;
  }
  .nav {
    min-height: 96px;
  }
  .nav-links {
    top: 96px;
  }
  .hero-copy {
    padding: 4rem 20px;
  }
  .hero-copy h1 {
    font-size: clamp(2.1rem, 10.5vw, 2.65rem);
    overflow-wrap: anywhere;
  }
  .actions {
    align-items: stretch;
  }
  .actions .button {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .hero-photo {
    min-height: 340px;
  }
  .priority-detail {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
