@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
}

:root {
    --ink: #121827;
    --muted: #596273;
    --green: #10aa82;
    --green-dark: #087b60;
    --paper: #fffdf9;
    --lavender: #f2ecff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "General Sans", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
    position: fixed;
    top: -5rem;
    left: 1rem;
    z-index: 100;
    padding: .75rem 1rem;
    border-radius: .75rem;
    color: #fff;
    background: var(--ink);
}

.skip-link:focus { top: 1rem; }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(18, 24, 39, .07);
    background: rgba(255, 253, 249, .92);
    backdrop-filter: blur(16px);
}

.nav-inner,
.story,
.closing-inner {
    width: min(100% - 2rem, 72rem);
    margin-inline: auto;
}

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

.brand {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.04em;
}

.brand span { color: currentColor; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
}

.nav-link:hover,
.nav-link[aria-current="page"] { color: var(--green-dark); }

.nav-cta,
.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: var(--green);
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(16, 170, 130, .22);
}

.nav-cta {
    padding: .68rem 1.15rem;
    border-radius: .9rem;
    font-size: .9rem;
}

.story {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, .9fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: start;
    padding-block: clamp(5rem, 10vw, 9rem);
}

.eyebrow {
    margin: 0 0 1.25rem;
    color: var(--green-dark);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1 {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(3.25rem, 7vw, 6.8rem);
    line-height: .92;
    letter-spacing: -.065em;
}

.lead {
    max-width: 36rem;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.55;
}

.founder-photo {
    width: min(100%, 26rem);
    margin: 2.5rem 0 0;
}

.founder-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 22px 50px -28px rgba(18, 24, 39, .5);
}

.founder-photo figcaption {
    margin-top: .7rem;
    color: var(--muted);
    font-size: .78rem;
}

.story-copy {
    padding-top: clamp(1rem, 7vw, 6rem);
    font-size: 1.06rem;
    line-height: 1.78;
}

.story-copy p { margin: 0 0 1.5rem; }

.story-copy h2 {
    margin: 3rem 0 1rem;
    font-size: 1.7rem;
    letter-spacing: -.035em;
}

.memory {
    position: relative;
    margin: 2.25rem 0;
    padding: 1.55rem 1.65rem;
    border-radius: 1.35rem 1.35rem .2rem 1.35rem;
    background: var(--lavender);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.55;
}

.memory::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -.65rem;
    width: 1.15rem;
    height: 1.15rem;
    background: var(--lavender);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.signoff {
    color: var(--green-dark);
    font-weight: 700;
}

.closing {
    padding-block: clamp(4rem, 9vw, 7rem);
    background: var(--ink);
    color: #fff;
}

.closing-inner { text-align: center; }

.closing h2 {
    margin: 0 auto;
    max-width: 18ch;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: -.05em;
}

.closing p {
    margin: 1.25rem auto 2rem;
    max-width: 34rem;
    color: #cbd2dc;
    font-size: 1.08rem;
    line-height: 1.6;
}

.primary-cta {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
}

.site-footer { padding: 3rem 0; color: #fff; background: #111827; }
.site-footer-inner { width: min(100% - 3rem, 80rem); margin-inline: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
.footer-brand, .footer-heading { margin: 0 0 1rem; }
.footer-brand { color: var(--green); font-size: 1.25rem; }
.footer-heading { font-size: 1rem; }
.footer-text { margin: 0; color: #9ca3af; line-height: 1.55; }
.footer-list { display: flex; flex-direction: column; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.footer-link, .footer-email { color: #9ca3af; text-decoration: none; }
.footer-link:hover { color: #fff; }
.footer-email { color: var(--green); }
.footer-bottom { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #1f2937; color: #9ca3af; text-align: center; }
.footer-bottom p { margin: 0; }

@media (max-width: 760px) {
    .nav-inner { gap: 1rem; }
    .nav-links { gap: .9rem; }
    .nav-link { font-size: .78rem; }
    .nav-cta { display: none; }
    .story { grid-template-columns: 1fr; gap: 1.5rem; }
    .story-copy { padding-top: 0; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 390px) {
    .nav-links { gap: .65rem; }
    .nav-link { font-size: .72rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
