@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1c1712;
  --ink-soft: #4a4036;
  --paper: #f7f2ea;
  --paper-2: #efe6d8;
  --cream: #fdfbf7;
  --gold: #a67c52;
  --gold-light: #c4a574;
  --line: #d8ccba;
  --staff: #8a3d36;
  --header: #161310;
  --shadow: 0 24px 50px rgba(28, 23, 18, 0.12);
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --max: 1120px;
  --narrow: 760px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem 0.8rem;
  z-index: 100;
}

.skip:focus {
  top: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header);
  color: var(--cream);
  border-bottom: 1px solid rgba(196, 165, 116, 0.25);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand:hover {
  color: var(--gold-light);
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  color: var(--gold-light);
}

.brand-text strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-text em {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(246, 241, 232, 0.25);
  color: inherit;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: currentColor;
  margin: 0 auto;
  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 ul {
  display: flex;
  gap: 0.15rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: rgba(253, 251, 247, 0.78);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--cream);
  border-bottom-color: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(22, 19, 16, 0.88) 18%, rgba(22, 19, 16, 0.42) 70%, rgba(22, 19, 16, 0.2)),
    url("../img/hero-notes.jpg") center / cover no-repeat;
}

.hero-photo {
  align-items: center;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(253, 251, 247, 0.78) 0%, rgba(253, 251, 247, 0.28) 36%, rgba(253, 251, 247, 0) 52%),
    url("../img/hero.png") 82% center / cover no-repeat;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.4rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.7fr);
  gap: 3rem;
  align-items: end;
  width: 100%;
}

.hero-photo .hero-inner {
  grid-template-columns: minmax(0, 34rem);
  align-items: center;
  min-height: 88vh;
  padding: 5rem 1.4rem;
}

.hero-photo .roles,
.hero-photo .quote {
  color: var(--ink-soft);
}

.hero-photo .quote cite {
  color: var(--gold);
}

.hero-photo .btn-ghost {
  color: var(--ink);
  border-color: var(--ink);
}

.hero-photo .btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.kicker {
  margin: 0 0 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.roles {
  margin: 1rem 0 1.6rem;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.8);
}

.quote {
  max-width: 28rem;
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.35;
  color: rgba(253, 251, 247, 0.92);
}

.quote cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--gold);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-solid {
  background: var(--gold);
  color: var(--header);
}

.btn-solid:hover {
  background: var(--gold-light);
  color: var(--header);
}

.btn-ghost {
  color: var(--cream);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--header);
}

.btn-ink {
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ink:hover {
  background: var(--ink);
  color: var(--cream);
}

.portrait-frame {
  justify-self: end;
  width: min(100%, 340px);
  box-shadow: var(--shadow);
  outline: 1px solid rgba(196, 165, 116, 0.45);
  outline-offset: 10px;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.4rem;
}

.wrap-narrow {
  max-width: var(--narrow);
}

.page-hero {
  padding: 4rem 1.4rem 2.5rem;
  background:
    linear-gradient(180deg, rgba(22, 19, 16, 0.82), rgba(22, 19, 16, 0.72)),
    url("../img/hero-notes.jpg") center 40% / cover no-repeat;
  color: var(--cream);
}

.page-hero .wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.page-hero h1 {
  margin: 0.4rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.section-title {
  margin: 0 0 1.6rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
}

.rule {
  width: 3.2rem;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: var(--cream);
  padding: 1.6rem 1.4rem 1.5rem;
  border: 1px solid var(--line);
}

.card h2,
.card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  margin-top: 0.5rem;
}

.office {
  border-top: 1px solid var(--gold);
  padding-top: 1rem;
}

.office span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.office strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.office p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.split img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
  box-shadow: var(--shadow);
}

.prose p {
  margin: 0 0 1.1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose h2 {
  margin: 2.2rem 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.media-block {
  margin: 2.4rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.media-block video {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  background: var(--header);
}

.media-block figcaption {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.welcome {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-list {
  display: grid;
  gap: 1.4rem;
}

.pullquote {
  margin: 0;
  padding: 1.6rem 1.5rem 1.4rem;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}

.pullquote p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.35;
}

.pullquote footer {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline {
  display: grid;
  gap: 1.1rem;
}

.event {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.4rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.event:first-child {
  border-top: 1px solid var(--line);
}

.event time {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.35rem;
}

.event h2 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.event p {
  margin: 0.15rem 0;
  color: var(--ink-soft);
}

.meta {
  font-size: 0.95rem;
}

.chip {
  display: inline-block;
  margin-top: 0.55rem;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vita-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.vita-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.vita-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.note {
  background: var(--paper-2);
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.contact-form label,
.contact-form .field {
  display: block;
  margin-bottom: 1rem;
}

.contact-form span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  padding: 0.7rem 0.8rem;
}

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.form-actions button {
  cursor: pointer;
  font: inherit;
}

.aside-card {
  background: var(--cream);
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--line);
}

.aside-card h2 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.aside-card p {
  margin: 0 0 0.5rem;
}

.alert {
  padding: 0.9rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.alert-ok {
  border-color: #6d8a5c;
}

.alert-err {
  border-color: var(--staff);
}

.site-footer {
  background: var(--header);
  color: rgba(253, 251, 247, 0.72);
  padding: 2.4rem 1.4rem;
  font-size: 0.92rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cream);
}

.footer-links {
  display: flex;
  gap: 1.1rem;
}

.cta-band {
  background: var(--header);
  color: var(--cream);
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-band p {
  margin: 0 0 1.4rem;
  color: rgba(253, 251, 247, 0.75);
}

.stack {
  margin-top: 1.5rem;
}

.stack-lg {
  margin-top: 1.8rem;
}

@media (max-width: 900px) {
  .hero-inner,
  .cards,
  .offices,
  .split,
  .contact-grid,
  .goals,
  .event {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    justify-self: start;
    width: min(100%, 280px);
  }

  .hero-photo {
    background-position: 85% 18%;
    align-items: end;
  }

  .hero-photo .hero-inner {
    min-height: 0;
    padding: 10rem 1.4rem 3rem;
    background: linear-gradient(180deg, rgba(253, 251, 247, 0) 0%, rgba(253, 251, 247, 0.88) 38%);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--header);
    padding: 0.6rem 1.4rem 1.2rem;
    border-bottom: 1px solid rgba(196, 165, 116, 0.25);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.35rem;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 3.5rem;
  }
}
