:root {
  --background: #ffffff;
  --text: #111111;
  --secondary: #5a5a5a;
  --muted: #7a7a7a;
  --divider: #e9e9e9;
  --max-page-width: 1280px;
  --content-width: 760px;
  --wide-width: 920px;
  --page-padding: 48px;
  --button-bg: #111111;
  --button-hover: #222222;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(calc(100% - (var(--page-padding) * 2)), var(--max-page-width));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--divider);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  font-size: 15px;
  line-height: 20px;
  color: var(--secondary);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-button {
  white-space: nowrap;
}

.section-first {
  padding-top: 144px;
}

.hero,
.page-hero,
.section {
  padding-bottom: 112px;
}

.divider-top {
  border-top: 1px solid var(--divider);
}

.wide-wrap {
  max-width: var(--wide-width);
}

.narrow-wrap,
.form-wrap {
  max-width: var(--content-width);
}

.center-wrap,
.section-wrap,
.form-wrap {
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.statement-block {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

h1 {
  max-width: 860px;
  margin-inline: auto;
  font-size: 60px;
  line-height: 66px;
  letter-spacing: -0.02em;
}

h2 {
  max-width: 720px;
  margin-inline: auto;
  font-size: 34px;
  line-height: 42px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 28px;
  line-height: 36px;
  text-align: left;
}

.hero-copy,
.intro-copy {
  max-width: 640px;
  margin: 28px auto 0;
  color: var(--secondary);
  font-size: 19px;
  line-height: 31px;
}

.body-lead,
.body-copy,
.dash-list,
label,
input,
textarea,
button,
.footer-inner,
.site-nav a {
  font-size: 16px;
  line-height: 28px;
}

.body-lead {
  margin: 24px 0 0;
  color: #444444;
  text-align: center;
}

.body-copy {
  max-width: 640px;
  margin: 28px auto 0;
  color: #444444;
}

.body-copy p,
.statement-block p,
.dash-list li {
  margin: 0;
}

.copy-gap {
  margin-top: 28px !important;
}

.centered-copy {
  text-align: center;
}

.left-copy {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.compact-list {
  max-width: 560px;
}

.dash-list {
  max-width: 620px;
  list-style: none;
  padding: 0;
  margin: 18px auto 0;
  color: #444444;
  text-align: left;
}

.dash-list li {
  position: relative;
  padding-left: 18px;
}

.dash-list li + li {
  margin-top: 12px;
}

.dash-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
}

.statement-block {
  max-width: 620px;
  margin: 0 auto;
  font-size: 30px;
  line-height: 42px;
  text-align: center;
}

.statement-block p + p {
  margin-top: 2px;
}

.headshot-block {
  max-width: 200px;
  margin: 0;
}

.headshot-layout {
  max-width: 760px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  align-items: center;
  gap: 40px;
}

.headshot-text {
  text-align: left;
}

.intro-copy-wide {
  max-width: 760px;
}

.intro-copy-headshot {
  margin: 0;
  color: #444444;
}

.headshot-copy {
  margin-top: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
}

.headshot-cta {
  margin-top: 22px;
}

.headshot-cta .button {
  width: auto;
}

.supporting-copy {
  margin-top: 28px;
}

.headshot-name {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 22px;
  color: var(--secondary);
  text-align: center;
}

.headshot-image {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 12px;
}

.split-columns {
  max-width: var(--wide-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
}

.cta-row {
  margin-top: 34px;
}

.center-cta {
  display: flex;
  justify-content: center;
}

.button,
.form-submit {
  min-height: 48px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  background: var(--button-bg);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: background 150ms ease;
  -webkit-appearance: none;
  appearance: none;
  -webkit-text-fill-color: #ffffff;
}

.button:hover,
.form-submit:hover {
  background: var(--button-hover);
}

.form-wrap {
  text-align: left;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--divider);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--text);
  font-family: inherit;
  background: #ffffff;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #111111;
}

.hidden-field {
  display: none;
}

.closing-section {
  padding-bottom: 140px;
}

.site-footer {
  border-top: 1px solid var(--divider);
  padding: 28px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--secondary);
}

.fade-in {
  animation: fadeIn 260ms ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  :root {
    --page-padding: 32px;
  }

  .section-first {
    padding-top: 120px;
  }

  .hero,
  .page-hero,
  .section {
    padding-bottom: 88px;
  }

  h1 {
    font-size: 48px;
    line-height: 54px;
  }

  h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .hero-copy,
  .intro-copy {
    font-size: 18px;
    line-height: 29px;
  }

  .split-columns {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .headshot-layout {
    max-width: 640px;
    gap: 32px;
  }
}


@media (max-width: 768px) {
  :root {
    --page-padding: 20px;
  }

  .site-header {
    position: static;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    justify-content: center;
  }

  .section-first {
    padding-top: 88px;
  }

  .hero,
  .page-hero,
  .section {
    padding-bottom: 72px;
  }

  h1 {
    font-size: 38px;
    line-height: 44px;
  }

  h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .body-copy,
  .body-lead,
  .dash-list,
  label,
  input,
  textarea,
  button,
  .footer-inner,
  .site-nav a {
    font-size: 16px;
    line-height: 27px;
  }

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

  .headshot-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .headshot-text,
  .intro-copy-headshot,
  .headshot-copy {
    text-align: center;
  }

  .headshot-block {
    order: -1;
    margin: 0 auto;
  }

  .headshot-cta {
    display: flex;
    justify-content: center;
  }

  .button,
  .form-submit {
    width: 100%;
  }
}
