@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400&family=Plus+Jakarta+Sans:wght@400;500&display=swap");

:root {
  --bg: #faf8f5;
  --bg-alt: #f0ede8;
  --bg-parchment: #e8e4dd;
  --surface: #ffffff;
  --primary: #1b3d2f;
  --primary-muted: #4a6358;
  --accent: #c67b5c;
  --accent-hover: #b36a4d;
  --text-headline: #2c2c2c;
  --text-body: #2c2c2c;
  --text-secondary: #6b6560;
  --text-muted: #9a9590;
  --border: #e8e4dd;
  --shadow-card: 0 2px 8px rgba(44, 44, 44, 0.04), 0 8px 24px rgba(44, 44, 44, 0.06);
  --shadow-hover: 0 4px 12px rgba(44, 44, 44, 0.06), 0 16px 32px rgba(44, 44, 44, 0.08);
  --max-width: 1200px;
  --section-padding-v: 160px;
  --card-padding: 32px;
  --card-radius: 2px;
  --margin-desktop: 120px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-body);
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.005em;
  font-weight: 400;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

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

.about-page {
  background: var(--bg);
}

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

.section {
  padding: var(--section-padding-v) 0;
}

.section.alt {
  background: var(--bg-alt);
}

.overline {
  margin: 0 0 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-muted);
}

.overline.center {
  text-align: center;
}

.overline-green {
  color: var(--primary);
}

.h2 {
  margin: 0;
  color: var(--text-headline);
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.005em;
}

.body-lg {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-secondary);
  letter-spacing: 0;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary {
  padding: 16px 32px;
  background: var(--primary);
  color: var(--bg);
}

.btn-primary:hover {
  background: #2a4f3f;
}

.btn-invert-primary {
  padding: 18px 40px;
  background: var(--bg);
  color: var(--primary);
}

.btn-invert-primary:hover {
  background: var(--bg-alt);
}

.btn-invert-secondary {
  padding: 16px 32px;
  background: transparent;
  color: var(--bg);
  border-color: rgba(250, 248, 245, 0.5);
}

.btn-invert-secondary:hover {
  background: rgba(250, 248, 245, 0.1);
}

/* NAV */
.about-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.about-nav.scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: min(calc(100% - 80px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.wordmark {
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav-link {
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-headline);
}

.nav-link.active {
  color: var(--text-headline);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  border-bottom: 1px solid var(--text-headline);
}

.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-mobile-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-mobile-panel {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  display: grid;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.nav-mobile-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-mobile-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* HERO */
.about-hero {
  margin-top: 80px;
  padding: 128px 0;
  background: linear-gradient(180deg, #faf8f5 0%, #f0ede8 100%);
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-hero .overline {
  margin-bottom: 24px;
}

.about-display {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.015em;
  color: var(--text-headline);
}

.about-hero .body-lg {
  max-width: 680px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 30px;
}

/* FOUNDER */
.founder-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.founder-title {
  margin-bottom: 24px;
  font-size: 42px;
  line-height: 50px;
}

.founder-copy p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 28px;
  color: var(--text-secondary);
}

.founder-copy p:last-of-type {
  margin-bottom: 32px;
}

.founder-quote {
  margin: 0;
  border-left: 3px solid var(--primary);
  padding-left: 24px;
}

.founder-quote-text {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 34px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-headline);
}

.founder-quote-by {
  margin-top: 12px;
  font-size: 14px;
  line-height: 22px;
  color: var(--text-muted);
}

.founder-photo-card {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  background: var(--bg-alt);
  border-radius: var(--card-radius);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.founder-photo-inner {
  width: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
}

.founder-frame {
  width: 60%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
}

.founder-photo-caption {
  margin-top: 16px;
  font-size: 13px;
  line-height: 20px;
  color: var(--text-muted);
  text-align: center;
}

.founder-photo-credit {
  margin-top: 4px;
  font-size: 11px;
  line-height: 16px;
  color: var(--text-muted);
  text-align: center;
}

/* DIFFERENCE */
.difference-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.difference-wrap .h2 {
  margin-bottom: 48px;
  font-size: 42px;
  line-height: 50px;
}

.before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.before-after-item {
  text-align: center;
}

.before-after-label {
  margin: 0 0 8px;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

.before-text-wrap {
  position: relative;
  display: inline-block;
}

.before-text {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--text-secondary);
}

.before-strike {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  border-top: 1px solid rgba(198, 123, 92, 0.5);
}

.before-after-arrow {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.after-title {
  margin: 0 0 2px;
  color: var(--primary);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.after-sub {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 22px;
}

/* PRINCIPLES */
.principles-intro {
  text-align: center;
}

.principles-intro .h2 {
  margin-bottom: 64px;
  font-size: 48px;
  line-height: 56px;
}

.principles-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.principle-card {
  background: var(--surface);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s ease;
}

.principle-card:hover {
  box-shadow: var(--shadow-hover);
}

.principle-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}

.principle-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--text-headline);
}

.principle-body {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-secondary);
}

/* CREDIBILITY */
.credibility-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
}

.credibility-intro .h2 {
  margin-bottom: 24px;
  font-size: 42px;
  line-height: 50px;
}

.credibility-intro .body-lg {
  max-width: 680px;
  margin: 0 auto;
}

.credibility-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.credibility-card {
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  padding: var(--card-padding);
  text-align: center;
  transition: box-shadow 0.4s ease;
}

.credibility-card:hover {
  box-shadow: var(--shadow-hover);
}

.credibility-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 16px;
  color: var(--primary);
}

.credibility-title {
  margin: 0 0 8px;
  color: var(--text-headline);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.credibility-body {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 24px;
}

.trust-strip {
  max-width: 800px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.trust-strip-item {
  position: relative;
  text-align: center;
  padding: 8px 16px;
}

.trust-strip-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 30%;
  bottom: 30%;
  border-left: 1px solid var(--border);
}

.trust-strip-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  color: var(--primary);
}

.trust-strip-label {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--text-secondary);
}

/* CTA */
.about-cta {
  background: var(--primary);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 20% 20%, #ffffff 1px, transparent 1.2px), radial-gradient(circle at 80% 70%, #ffffff 1px, transparent 1.2px);
  background-size: 12px 12px, 14px 14px;
  pointer-events: none;
}

.about-cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-cta .h2 {
  color: var(--bg);
  margin-bottom: 20px;
  font-size: 48px;
  line-height: 56px;
}

.about-cta .body-lg {
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(250, 248, 245, 0.7);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-fine-print {
  margin: 16px 0 0;
  color: rgba(250, 248, 245, 0.5);
  font-size: 13px;
  line-height: 20px;
}

/* FOOTER */
.about-footer {
  background: var(--primary);
  color: var(--bg);
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--bg);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.footer-tagline {
  margin: 0;
  max-width: 240px;
  color: rgba(250, 248, 245, 0.6);
  font-size: 14px;
  line-height: 22px;
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--bg);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0 0 10px;
}

.footer-links a {
  color: rgba(250, 248, 245, 0.65);
  font-size: 14px;
  line-height: 2.2;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 248, 245, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-copy,
.footer-bottom-links {
  color: rgba(250, 248, 245, 0.4);
  font-size: 13px;
  line-height: 20px;
}

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

/* REVEALS */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-20px);
}

.reveal-right {
  transform: translateX(20px);
  transition-delay: 0.15s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  :root {
    --margin-desktop: 64px;
    --section-padding-v: 96px;
  }

  .about-display {
    font-size: 54px;
    line-height: 62px;
  }

  .founder-grid {
    gap: 52px;
  }
}

@media (max-width: 1024px) {
  :root {
    --margin-desktop: 40px;
  }

  .nav-inner {
    width: min(calc(100% - 48px), var(--max-width));
  }

  .nav-center {
    gap: 24px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo-col {
    order: -1;
  }

  .founder-photo-card {
    margin: 0 auto;
  }

  .principles-grid,
  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-strip-item:not(:first-child)::before {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --margin-desktop: 20px;
    --section-padding-v: 64px;
  }

  .nav-inner {
    width: calc(100% - 40px);
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-center,
  .nav-cta-wrap {
    display: none;
  }

  .nav-mobile-toggle {
    display: inline-flex;
  }

  .about-hero {
    padding: 96px 0 64px;
  }

  .about-display {
    font-size: 40px;
    line-height: 48px;
  }

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

  .body-lg {
    font-size: 17px;
    line-height: 27px;
  }

  .before-after {
    flex-direction: column;
    gap: 20px;
  }

  .before-after-arrow {
    transform: rotate(90deg);
  }

  .about-cta .h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .btn,
  .nav-link,
  .nav-mobile-panel,
  .principle-card,
  .credibility-card,
  .reveal {
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
