:root {
  --ink: #151614;
  --muted: #686a65;
  --background: #f7f7f3;
  --surface: #fdfdfb;
  --accent: #53665a;
  --line: #dedfd9;
  --radius: 0.75rem;
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.94rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.6rem 0.9rem;
  transform: translateY(-150%);
  border-radius: 0.4rem;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.nav-wrap {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 247, 243, 0.94);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 0.67rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

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

.site-nav .nav-cta {
  margin-left: 0.2rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-0.34rem);
}

.menu-toggle span::after {
  transform: translateY(0.28rem);
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(45deg);
  background: var(--ink);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-1px) rotate(-45deg);
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.7fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
  padding-block: clamp(4rem, 9vw, 7rem);
}

.eyebrow {
  display: block;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.hero h1,
.page-hero h1,
.display-title {
  margin: 0;
  max-width: 10ch;
  font-family: inherit;
  font-size: clamp(3rem, 6.4vw, 5.25rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 span,
.page-hero h1 span {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.hero-lede {
  max-width: 37rem;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.3vw, 1.05rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.button:hover {
  border-color: var(--ink);
}

.button.primary {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.button.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.button svg {
  width: 1rem;
  height: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 32rem;
}

.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e5e5e1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  display: none;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 1.5rem clamp(1rem, 3vw, 2.3rem);
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item small {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7rem);
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading h2,
.story-copy h2,
.cta-panel h2,
.letter-sheet h2 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.section-heading p {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.link-arrow::after {
  content: "\2192";
}

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

.focus-card {
  min-height: 0;
  padding: 1.5rem 0 0;
  border: 0;
  border-top: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.focus-card:nth-child(2),
.focus-card:nth-child(3) {
  color: var(--ink);
  background: transparent;
}

.focus-number,
.focus-card:nth-child(3) .focus-number {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.focus-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.focus-card p,
.focus-card:nth-child(3) p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: 0.8rem;
}

.photo-feature figure,
.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e5e5e1;
}

.photo-feature figure:first-child {
  height: 36rem;
}

.photo-stack {
  display: grid;
  gap: 0.8rem;
}

.photo-stack figure {
  height: 17.6rem;
}

.photo-feature img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 160ms ease;
}

.photo-feature figure:hover img,
.gallery figure:hover img {
  opacity: 0.94;
}

.photo-feature figcaption,
.gallery figcaption,
.gallery-headshot figcaption {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  left: 0.6rem;
  padding: 0.6rem 0.7rem;
  border: 0;
  border-radius: 0.45rem;
  color: #fff;
  background: rgba(21, 22, 20, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  line-height: 1.35;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
  padding-block: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.cta-panel h2 {
  max-width: 15ch;
}

.cta-panel p {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.cta-panel .button {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.cta-panel .button:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.page-hero {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.8vw, 4.75rem);
}

.page-hero .hero-lede {
  max-width: 42rem;
}

.breadcrumb {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.story-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: #e5e5e1;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy p {
  color: var(--muted);
}

.story-copy .lead {
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 520;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.interest-card {
  min-height: 14rem;
  padding: 2rem 2rem 2rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.interest-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.interest-card:nth-child(even) {
  padding-left: 2rem;
}

.interest-card:nth-child(2),
.interest-card:nth-child(3) {
  background: transparent;
}

.interest-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.18rem;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.interest-card p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.interest-icon {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline {
  max-width: 60rem;
  margin-left: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: clamp(1.5rem, 6vw, 5rem);
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-meta {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.timeline-content h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.timeline-content h3 {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-content p {
  max-width: 42rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.timeline-content a {
  color: var(--ink);
  font-weight: 700;
}

.letter-wrap {
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.letter-sheet {
  max-width: 55rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.letter-sheet::before {
  display: none;
}

.letter-sheet h2 {
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
}

.letter-sheet p {
  color: var(--muted);
}

.letter-sheet .signature {
  margin-top: 2rem;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
}

.letter-note {
  max-width: 55rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.gallery-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.gallery-intro p {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.gallery-headshot {
  position: relative;
  width: min(100%, 27rem);
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: #e5e5e1;
}

.gallery-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-headshot figcaption {
  text-align: center;
}

.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 11rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.gallery figure {
  min-height: 23rem;
  grid-row: span 2;
}

.gallery figure.tall {
  min-height: 35rem;
  grid-row: span 3;
}

.gallery figure.wide {
  grid-column: span 2;
}

.gallery a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery figcaption strong {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.74rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.contact-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.contact-copy p {
  max-width: 38rem;
  color: var(--muted);
}

.contact-card {
  padding: 0;
  border-top: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.contact-card small {
  display: block;
  padding-block: 1rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.contact-card a:last-child {
  border-bottom: 1px solid var(--line);
}

.source-note {
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
}

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

.footer-name {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 720;
}

.footer-copy,
.footer-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 650;
}

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

.error-page {
  display: grid;
  min-height: calc(100svh - 4.5rem);
  place-items: center;
  padding-block: 4rem;
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--muted);
  font-size: clamp(6rem, 20vw, 13rem);
  font-weight: 750;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.error-page h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.error-page p {
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 350ms ease, transform 350ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 4.5rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem 1.25rem;
    transform: translateX(100%);
    background: var(--background);
    transition: transform 200ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .site-nav .nav-cta {
    margin: 1rem 0 0;
    text-align: center;
  }

  .hero,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 31rem);
    min-height: 36rem;
    margin-inline: auto;
  }

  .focus-grid {
    gap: 1.3rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery figure.wide {
    grid-column: span 1;
  }
}

@media (max-width: 650px) {
  .container,
  .nav-wrap {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .brand-text {
    font-size: 0.85rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 3.8rem);
  }

  .hero {
    gap: 2.5rem;
  }

  .hero-visual {
    min-height: 30rem;
  }

  .trust-grid,
  .section-heading,
  .focus-grid,
  .photo-feature,
  .interests-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    padding: 1.1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .photo-feature figure:first-child,
  .photo-stack figure {
    height: 29rem;
  }

  .photo-stack figure:last-child {
    height: 22rem;
  }

  .interest-card,
  .interest-card:nth-child(even) {
    min-height: 0;
    padding: 1.8rem 0;
    border-right: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .gallery-intro {
    align-items: start;
    flex-direction: column;
  }

  .gallery {
    display: block;
  }

  .gallery figure,
  .gallery figure.tall {
    height: auto;
    min-height: 0;
    margin-bottom: 0.8rem;
    aspect-ratio: 4 / 5;
  }

  .gallery figure.wide {
    aspect-ratio: 4 / 3;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
