* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #faf9f5;
  --surface: #f0eee6;
  --surface-2: #e8e5da;
  --ink: #141413;
  --ink-dim: #5e5d59;
  --border: #e3e0d5;
  --border-strong: #d1cec2;
  --accent: #9c6908;
  --accent-dark: #7c5406;
  --accent-rgb: 156, 105, 8;
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-pill: 100px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background:
    radial-gradient(circle at 84% 4%, rgba(156, 105, 8, .08), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -42px;
  left: 0;
  z-index: 20;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-size: 14px;
}

.skip-link:focus {
  top: 0;
}

.about-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 249, 245, .88);
  backdrop-filter: blur(12px);
}

.about-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
}

.about-logo img,
.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.about-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.about-nav-links a {
  color: var(--ink-dim);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}

.about-nav-links a:hover,
.about-nav-links a.active {
  color: var(--ink);
}

.about-nav-links a.active {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.about-nav-cta {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.about-nav-cta:hover {
  background: #33312c;
  transform: translateY(-1px);
}

.about-hero,
.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 32px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  align-items: start;
  gap: 96px;
  min-height: 370px;
  padding-top: 76px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.hero-lede {
  max-width: 650px;
  margin-top: 32px;
  color: var(--ink-dim);
  font-size: 18px;
  line-height: 1.75;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 270px;
  margin-top: 6px;
  color: var(--ink-dim);
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.25;
}

.hero-note-line {
  flex: 0 0 34px;
  height: 1px;
  margin-top: 13px;
  background: var(--accent);
}

.team-section {
  padding-top: 64px;
  padding-bottom: 88px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 540px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 280px;
  color: var(--ink-dim);
  font-size: 15px;
}

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

.team-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .45);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.team-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 14px 30px rgba(20, 20, 19, .08);
  transform: translateY(-3px);
}

.portrait-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 22px;
  background: #171714;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.team-card-copy {
  padding: 20px 20px 22px;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.team-card p {
  margin-top: 4px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.closing-slide {
  max-width: 1200px;
  margin: 0 auto 112px;
  padding: 34px 44px 30px;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 18%, rgba(201, 168, 76, .16), transparent 24rem),
    linear-gradient(135deg, #fffefa, #f2efe6);
  box-shadow: 0 24px 60px rgba(20, 20, 19, .08);
}

.slide-topline,
.slide-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.slide-topline {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  color: var(--accent-dark);
}

.closing-slide-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 48px;
  min-height: 410px;
  padding: 58px 0;
}

.closing-copy h2 {
  max-width: 740px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.7vw, 74px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.closing-support {
  margin-top: 28px;
  color: var(--ink-dim);
  font-size: 17px;
}

.closing-mark {
  width: 180px;
  height: 180px;
  justify-self: end;
  border-radius: 50%;
  overflow: hidden;
  background: #6c5d3d;
  box-shadow: 0 14px 34px rgba(98, 74, 26, .2);
}

.closing-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
}

.slide-bottomline {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.about-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px max(32px, calc((100% - 1136px) / 2));
  border-top: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-dim);
  font-size: 14px;
}

.footer-brand,
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links {
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
  }

  .hero-note {
    max-width: 420px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p:last-child {
    margin-top: 18px;
  }

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

@media (max-width: 640px) {
  .about-nav {
    padding: 12px 20px;
  }

  .about-nav-links {
    gap: 14px;
  }

  .about-nav-links a:first-child,
  .about-nav-cta {
    display: none;
  }

  .about-hero,
  .team-section {
    padding: 58px 20px;
  }

  .about-hero {
    min-height: auto;
    padding-bottom: 52px;
  }

  .team-section {
    padding-top: 58px;
    padding-bottom: 82px;
  }

  .about-hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .team-section {
    padding-bottom: 82px;
  }

  .team-grid {
    gap: 12px;
  }

  .portrait-frame {
    padding: 10px;
  }

  .team-card-copy {
    padding: 14px 12px 16px;
  }

  .team-card h3 {
    font-size: 22px;
  }

  .team-card p {
    font-size: 9px;
    letter-spacing: .02em;
  }

  .closing-slide {
    margin: 0 20px 74px;
    padding: 24px 22px 22px;
  }

  .closing-slide-content {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 42px 0;
  }

  .closing-copy h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .closing-mark {
    width: 112px;
    height: 112px;
    justify-self: start;
  }

  .slide-bottomline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .about-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 36px 20px;
  }

  .footer-brand {
    align-items: flex-start;
  }
}
