@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  color-scheme: light;
  --bg: #f6f1e8;
  --bg-soft: #fcfaf6;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #14212f;
  --text-soft: #536171;
  --line: rgba(20, 33, 47, 0.09);
  --line-strong: rgba(20, 33, 47, 0.16);
  --brand: #0f766e;
  --brand-strong: #0b5b55;
  --accent: #d8a15f;
  --shadow: 0 20px 60px rgba(20, 33, 47, 0.08);
  --shadow-soft: 0 14px 34px rgba(20, 33, 47, 0.06);
  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(216, 161, 95, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 28%),
    linear-gradient(180deg, #f2ece2 0%, #f6f1e8 24%, #fcfaf6 100%);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.55;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  border-radius: 999px;
  background: #fff;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 251, 246, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  padding: 12px 14px 12px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
}

.site-nav {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 10px);
  display: none;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.96);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  border-radius: 999px;
  padding: 12px 14px;
  color: var(--text-soft);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current='page'] {
  background: rgba(15, 118, 110, 0.08);
  color: var(--text);
  outline: none;
}

.site-nav .nav-cta {
  background: var(--text);
  color: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #0d1722;
  color: #fff;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 13px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

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

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  color: var(--text);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.97;
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-page {
  padding: 40px 0 80px;
}

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

.about-hero {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.about-hero__copy,
.about-hero__panel,
.surface-card,
.closing-card,
.trust-note {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.86));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.about-hero__copy,
.about-hero__panel,
.about-section,
.closing-card {
  padding: 28px;
}

.about-hero__copy h1 {
  max-width: 11.5ch;
}

.about-lede,
.about-support,
.section-heading p,
.surface-card p,
.about-signal p,
.hero-signal-grid p,
.trust-note p,
.footer-brand p {
  color: var(--text-soft);
}

.about-lede {
  max-width: 54rem;
  font-size: 1.08rem;
  line-height: 1.72;
}

.about-support {
  max-width: 48rem;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-hero__panel {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.14), transparent 36%),
    radial-gradient(circle at bottom left, rgba(216, 161, 95, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 244, 237, 0.9));
}

.about-signal {
  border-bottom: 1px solid rgba(20, 33, 47, 0.08);
  padding-bottom: 18px;
}

.about-signal h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.04em;
}

.hero-signal-grid {
  display: grid;
  gap: 12px;
}

.hero-signal-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
}

.hero-signal-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-signal-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.about-section {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.38);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.about-background-grid,
.purpose-grid,
.surface-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.surface-card {
  padding: 24px;
}

.surface-card--stacked {
  display: grid;
  gap: 8px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border-top: 1px solid rgba(20, 33, 47, 0.08);
  padding-top: 12px;
  color: var(--text-soft);
}

.detail-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.surface-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.surface-card--product {
  display: grid;
  gap: 10px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  color: var(--brand-strong);
  font-weight: 700;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.trust-note {
  margin-top: 18px;
  border-color: rgba(216, 161, 95, 0.2);
  background: rgba(216, 161, 95, 0.1);
  padding: 20px 22px;
}

.closing-card {
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 249, 248, 0.9));
}

.site-footer {
  padding: 0 0 32px;
}

.footer-grid {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(20, 33, 47, 0.08);
  background: #223043;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  outline: none;
}

@media (min-width: 760px) {
  .about-background-grid,
  .purpose-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    align-items: start;
  }
}

@media (min-width: 960px) {
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .about-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  }

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

  .section-heading {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .section-heading > * {
    flex: 1;
  }
}

@media (max-width: 759px) {
  .about-page {
    padding: 22px 0 64px;
  }

  .about-hero__copy,
  .about-hero__panel,
  .about-section,
  .closing-card {
    padding: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }
}
