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

:root {
  --warm-white: #fdfcfa;
  --ink: #1a1814;
  --ink-light: #4a4540;
  --ink-muted: #8a8278;
  --line: rgba(26, 24, 20, 0.12);
  --content-max: 1296px;
  --type-display: clamp(54px, 6vw, 82px);
  --type-heading: 30px;
  --type-intro: 20px;
  --type-body: 17px;
  --type-small: 13px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--site-font);
  background: var(--warm-white);
  color: var(--ink);
  font-weight: 300;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.about-main {
  padding: 158px 60px 0;
  background: var(--warm-white);
}

.about-shell {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

/* Mission */
.about-mission {
  max-width: 840px;
}

.about-mission h1 {
  max-width: 820px;
  font-family: var(--site-font);
  font-size: var(--type-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.about-mission p {
  max-width: 620px;
  margin-top: 30px;
  font-size: var(--type-intro);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink-light);
}

/* Quote */
.about-quote {
  max-width: 760px;
  margin-top: 88px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.about-quote blockquote {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.about-quote footer {
  margin-top: 24px;
  font-size: var(--type-small);
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-quote footer strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}

/* Journey */
.about-journey {
  max-width: 760px;
  margin-top: 120px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.about-journey h2 {
  font-size: var(--type-heading);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}

.about-journey p {
  font-size: var(--type-body);
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink-light);
}

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

/* Owners */
.about-owners {
  max-width: 760px;
  margin-top: 120px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.about-owners h2 {
  font-size: var(--type-heading);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 44px;
}

.owner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.owner-card {
  display: flex;
  flex-direction: column;
}

.owner-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: rgba(26, 24, 20, 0.04);
  border-radius: 0;
}

.owner-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: rgba(26, 24, 20, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: var(--type-small);
  font-weight: 400;
}

.owner-name {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-decoration: none;
}

a.owner-name:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.owner-role {
  margin-top: 6px;
  font-size: var(--type-small);
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink-muted);
}

/* CTA */
.about-cta {
  max-width: 760px;
  margin-top: 120px;
  padding: 48px 0 132px;
  border-top: 1px solid var(--line);
}

.about-cta p {
  font-size: var(--type-heading);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.about-cta a {
  display: inline-block;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-underline-offset: 5px;
}

.about-cta a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media (max-width: 1080px) {
  .about-main {
    padding-left: 40px;
    padding-right: 40px;
  }

  .owner-cards {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  :root {
    --type-display: clamp(48px, 13vw, 64px);
    --type-heading: 24px;
    --type-intro: 18px;
    --type-body: 16px;
  }

  .about-main {
    padding: 128px 24px 0;
  }

  .about-quote {
    margin-top: 64px;
  }

  .about-quote blockquote {
    font-size: 20px;
  }

  .about-journey,
  .about-owners,
  .about-cta {
    margin-top: 80px;
  }

  .owner-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-cta {
    padding-bottom: 88px;
  }
}
