:root {
  --ink: #172027;
  --muted: #5f6b72;
  --paper: #f8f6f0;
  --white: #ffffff;
  --line: #d8d2c6;
  --green: #235347;
  --green-dark: #14362f;
  --copper: #a86135;
  --blue: #2c5364;
  --shadow: 0 24px 80px rgba(23, 32, 39, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--ink);
  background: rgba(248, 246, 240, 0.96);
  box-shadow: 0 1px 0 rgba(23, 32, 39, 0.08);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 246, 240, 0.96);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  padding: 8px 0;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 148px clamp(20px, 6vw, 84px) 110px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(14, 24, 28, 0.88) 0%, rgba(14, 24, 28, 0.72) 46%, rgba(14, 24, 28, 0.28) 100%),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--green), var(--copper), var(--blue));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e7b581;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 8vw, 92px);
}

h2 {
  font-size: clamp(34px, 5vw, 60px);
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

p {
  line-height: 1.65;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.5vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.outline {
  border-color: var(--line);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.74);
}

.button.outline:hover {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-strip {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 34px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 620px;
}

.hero-strip span,
.audience-list span,
.credential-grid span {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(20px, 6vw, 84px);
}

.page-offset {
  padding-top: clamp(118px, 14vw, 164px);
}

.page-hero {
  padding: clamp(132px, 16vw, 184px) clamp(20px, 6vw, 84px) clamp(72px, 9vw, 110px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 24, 28, 0.9), rgba(14, 24, 28, 0.72)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero h1,
.page-title {
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 600;
  line-height: 1.04;
  margin: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  background: var(--paper);
}

.stacked-copy {
  display: grid;
  gap: 18px;
}

.stacked-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-grid,
.section-heading,
.audience-section,
.proof-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.intro p,
.section-heading > p,
.audience-copy p,
.proof-copy p,
.contact-copy p,
.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.section-heading {
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 320px;
  padding: 24px;
  border: 1px solid #e4ded3;
  border-radius: var(--radius);
  background: #fbfaf6;
}

.service-number {
  display: block;
  margin-bottom: 68px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

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

.audience-section .section-kicker {
  color: #e7b581;
}

.audience-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 22px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: center;
}

.audience-route-section,
.proof-section {
  background: #f3efe7;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(23, 32, 39, 0.08);
}

.route-card span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-card strong {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.08;
}

.route-card p {
  margin: auto 0 0;
  color: var(--muted);
}

.proof-copy p {
  margin-top: 22px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid div {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--green-dark);
  font-size: 18px;
}

.proof-grid span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

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

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

.neutral-section .section-kicker {
  color: #e7b581;
}

.neutral-section .section-heading {
  margin-bottom: 0;
}

.neutral-section .section-heading > p {
  color: rgba(255, 255, 255, 0.78);
}

.deliverables-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.deliverables-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--green-dark);
  background: #fbfaf6;
  font-size: 14px;
  font-weight: 800;
}

.question-list {
  display: grid;
  gap: 14px;
}

.question-list p {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: #fbfaf6;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.process-section {
  background: #ece7dd;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border-top: 3px solid var(--green);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(23, 32, 39, 0.08);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.process-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.about-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.portrait-card {
  min-height: 520px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(35, 83, 71, 0.92), rgba(44, 83, 100, 0.88)),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.2), transparent 28%);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-card span {
  display: grid;
  place-items: center;
  width: min(190px, 46vw);
  height: min(190px, 46vw);
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(88px, 18vw, 146px);
}

.portrait-photo {
  background: var(--green-dark);
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

.about-copy {
  align-self: center;
}

.about-copy p {
  margin-top: 22px;
}

.credential-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-grid span {
  border-color: #d8d2c6;
  color: var(--green-dark);
}

.name-note {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  background: #f8f6f0;
}

.name-note h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-dark);
}

.name-note p {
  margin-top: 10px;
  font-size: 16px;
}

.contact-section {
  align-items: start;
}

.contact-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-link {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: clamp(20px, 3vw, 28px);
  font-family: Georgia, "Times New Roman", serif;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-direct a {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.intake-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intake-form label:last-of-type,
.intake-form button {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc7bb;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefb;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ece7dd;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .service-grid,
  .route-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    background: transparent;
    color: inherit;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 88vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 116px 20px 34px;
    background:
      linear-gradient(90deg, rgba(14, 24, 28, 0.9), rgba(14, 24, 28, 0.68)),
      url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1300&q=80") center / cover;
  }

  .hero-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    justify-content: flex-start;
    margin-top: 24px;
  }

  .intro-grid,
  .section-heading,
  .audience-section,
  .proof-section,
  .contact-section,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid.three,
  .route-grid,
  .proof-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 38px;
  }

  .portrait-card {
    min-height: 320px;
  }

  .portrait-photo img {
    min-height: 360px;
    object-position: center 20%;
  }

  .site-footer {
    display: grid;
  }

  .intake-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 40px;
  }

  .page-hero h1,
  .page-title {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  .brand small {
    display: none;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-strip {
    margin-top: 20px;
  }

  .hero-strip span {
    font-size: 12px;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }
}
