/* ─────────────────────────────────────────────────────────
   cal · askcal.io
   v3.6.9 — May 2026
   Paper · Ink · Cal Green · Fraunces · Inter · IBM Plex Mono

   notes for the next person in this file:
   - the green is #2d6a4f. don't make it brighter to "pop." it's
     already popping. you just need to look at it longer.
   - no gradients. no glows. no inner shadows. anything that looks
     like it belongs on a 2014 mortgage broker's homepage is wrong.
   - if you find yourself reaching for !important, take a walk.
     then come back and refactor.
   - the rest of this css is fewer lines than your closing docs.
   ───────────────────────────────────────────────────────── */

@font-face {
    font-family: 'Fraunces';
    src: url('/fonts/Fraunces-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Fraunces';
    src: url('/fonts/Fraunces-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Fraunces';
    src: url('/fonts/Fraunces-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --paper: #f3f1ec;
    --paper-deep: #ebe7dd;
    --ink: #1a1a1a;
    --ink-2: #3a3a3a;
    --dim: #6b6b6b;
    --rule: #d8d4c8;
    --green: #2d6a4f;
    --green-deep: #1b4332;
    --blue: #1f4f9c;
    --amber: #a06820;

    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --mono: 'IBM Plex Mono', 'JetBrains Mono', 'Courier New', monospace;

    --max: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

p { color: var(--ink-2); }

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

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .container { padding: 0 22px; }
}

/* ───── EYEBROWS ───── */
/* eyebrow text — IBM Plex Mono tracked tighter than typewriter-default.
   editorial, not fax-cover-sheet. */
.eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--dim);
    font-weight: 500;
}

.eyebrow-green { color: var(--green); }
.eyebrow-amber { color: var(--amber); }
.eyebrow-blue { color: var(--blue); }
.eyebrow-paper { color: rgba(243,241,236,0.62); }

/* ───── RULES ───── */
.rule {
    border: none;
    height: 1px;
    background: var(--rule);
    margin: 0;
}

.rule-thick {
    height: 2px;
    background: var(--ink);
}

.rule-thin {
    margin: 16px 0;
}

/* ───── TYPOGRAPHY ───── */
.display, .h-display, h1, h2 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.018em;
    color: var(--ink);
    line-height: 1.05;
}

h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.012em;
    color: var(--ink);
    line-height: 1.2;
}

.display {
    font-size: clamp(40px, 5.6vw, 72px);
    margin-bottom: 28px;
}

.display em {
    font-style: italic;
    color: var(--green);
}

.h-display {
    font-size: clamp(32px, 3.8vw, 48px);
    margin: 12px 0 18px;
}

.h-display.paper { color: var(--paper); }

h3 { font-size: 22px; margin-bottom: 8px; }
h4 { font-size: 17px; margin-bottom: 6px; }

.lede {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(19px, 1.7vw, 22px);
    line-height: 1.45;
    color: var(--ink-2);
    max-width: 720px;
    margin-bottom: 36px;
}

.section-sub {
    font-size: 17px;
    color: var(--ink-2);
    max-width: 720px;
    margin: 0 0 48px;
}

/* ───── TOPBAR ───── */
/* z-index: 40. higher than a stated-income borrower's confidence,
   lower than a wholesale AE's quota. seems about right. */
.topbar {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 40;
}

.topbar-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
}

.mark img { height: 26px; width: auto; }

.topnav {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-self: center;
    font-size: 14px;
}

.topnav a {
    color: var(--ink-2);
    transition: color 0.15s ease;
}

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

.topnav-cta {
    padding: 8px 16px;
    border: 1px solid var(--ink);
    color: var(--ink) !important;
    font-weight: 500;
    transition: all 0.15s ease;
}

.topnav-cta:hover {
    background: var(--ink);
    color: var(--paper) !important;
}

.topmeta {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dim);
    justify-self: end;
}

@media (max-width: 820px) {
    .topnav a:not(.topnav-cta) { display: none; }
    .topmeta { display: none; }
}

/* ───── HERO ───── */
.hero {
    padding: 96px 0 80px;
    background: var(--paper);
}

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

.hero-fine {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dim);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-fine .sep { color: var(--rule); }

/* ───── BUTTONS ───── */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: all 0.18s ease;
    cursor: pointer;
}

/* the green button. same green as a "✓ funded" tag in los, by
   choice, not coincidence. clicking it should feel like the moment
   docs come back from the title company without conditions. */
.btn-green {
    background: var(--green);
    color: var(--paper);
    border-color: var(--green);
}

.btn-green:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--paper);
}

.btn-green-on-ink {
    background: var(--green);
    color: var(--paper);
    border-color: var(--green);
}

.btn-green-on-ink:hover {
    background: var(--paper);
    color: var(--green-deep);
    border-color: var(--paper);
}

.btn-ghost-on-ink {
    background: transparent;
    color: var(--paper);
    border-color: var(--paper);
}

.btn-ghost-on-ink:hover {
    background: var(--paper);
    color: var(--ink);
}

/* ───── THESIS STRIP ───── */
.thesis {
    background: var(--paper);
    padding: 80px 0;
}

.thesis-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 820px) {
    .thesis-grid { grid-template-columns: 1fr; gap: 32px; }
}

.thesis-quote .pull {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin-top: 14px;
}

.thesis-body p {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.65;
}

.thesis-body p:last-child {
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    color: var(--ink);
}

/* ───── SECTIONS ───── */
.section {
    padding: 96px 0;
    background: var(--paper);
}

.section-paper-deep {
    background: var(--paper-deep);
}

.section-ink {
    background: var(--ink);
    color: var(--paper);
}

.section-ink p { color: rgba(243,241,236,0.78); }

/* ───── SURFACES GRID ───── */
.surface-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}

@media (max-width: 760px) {
    .surface-grid { grid-template-columns: 1fr; }
}

.surface-card {
    padding: 36px 32px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--paper);
    transition: background 0.2s ease;
}

.surface-card:hover {
    background: var(--paper-deep);
}

.surface-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--green);
    margin-bottom: 14px;
}

.surface-card h3 {
    font-size: 26px;
    letter-spacing: -0.018em;
    margin-bottom: 4px;
}

.surface-tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--green);
    margin-bottom: 14px;
}

.surface-card p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.surface-list {
    list-style: none;
    border-top: 1px solid var(--rule);
    padding-top: 12px;
}

.surface-list li {
    font-size: 14px;
    color: var(--ink-2);
    padding: 7px 0 7px 18px;
    position: relative;
    line-height: 1.5;
}

.surface-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    background: var(--green);
}

/* ───── PRINCIPLES ───── */
.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}

@media (max-width: 820px) {
    .principles { grid-template-columns: 1fr; }
}

.principle {
    padding: 32px 28px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.principle .eyebrow {
    margin-bottom: 14px;
}

.principle h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.principle p {
    font-size: 15px;
    line-height: 1.6;
}

/* ───── TWO-COL (OPERATOR) ───── */
.two-col {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 820px) {
    .two-col { grid-template-columns: 1fr; gap: 32px; }
}

.col-text p {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.col-text p:last-child {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    border-top: 1px solid var(--rule);
    padding-top: 16px;
    margin-top: 8px;
}

/* ───── FOUNDER CARD ───── */
.founder-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    background: var(--paper-deep);
    border: 1px solid var(--rule);
    padding: 36px;
    margin-top: 16px;
}

@media (max-width: 760px) {
    .founder-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px;
    }
}

/* portrait sits directly on the founder-card paper-deep. no extra
   frame — the headshot has its own treatment baked in. */
.founder-portrait {
    position: relative;
}

.founder-portrait img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-body .eyebrow { margin-bottom: 10px; }

.founder-name {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 38px;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 6px;
}

.founder-title {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink-2);
    margin-bottom: 8px;
}

.founder-title em {
    font-style: italic;
    color: var(--green);
}

.founder-title-sep {
    color: var(--rule);
    margin: 0 6px;
}

.founder-facts {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px 20px;
    margin-bottom: 24px;
    font-size: 14px;
}

@media (max-width: 480px) {
    .founder-facts {
        grid-template-columns: 1fr;
        gap: 4px 0;
    }
    .founder-facts dt { margin-top: 12px; }
}

.founder-facts dt {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dim);
    padding-top: 3px;
}

.founder-facts dd {
    color: var(--ink);
    line-height: 1.55;
}

.founder-facts a {
    color: var(--green);
    border-bottom: 1px solid rgba(45,106,79,0.3);
    transition: border-color 0.15s ease;
}

.founder-facts a:hover {
    border-bottom-color: var(--green);
}

.founder-facts .dim {
    color: var(--dim);
    font-size: 12.5px;
}

/* The newsletter card — same DNA as the cal mark, on purpose.
   If a reader spots the bracket+square echo, they're paying attention.   */
.newsletter-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 14px 16px;
    background: var(--paper);
    border: 1px solid var(--rule);
    margin-top: 2px;
    align-items: start;
}

.newsletter-mark {
    width: 56px;
    height: 56px;
    background: var(--paper-deep);
    border: 1px solid var(--rule);
    display: grid;
    place-items: center;
    padding: 8px;
}

.newsletter-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.newsletter-body { min-width: 0; }

.newsletter-label {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 3px;
}

.newsletter-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 17px;
    letter-spacing: -0.012em;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 4px;
}

.newsletter-tag {
    font-size: 12.5px;
    color: var(--dim);
    line-height: 1.45;
    margin-bottom: 8px;
}

.newsletter-cta {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    border-bottom: 1px solid rgba(45,106,79,0.35);
    padding-bottom: 1px;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.newsletter-cta:hover {
    color: var(--green-deep);
    border-bottom-color: var(--green-deep);
}

.founder-cta {
    padding-top: 8px;
    border-top: 1px solid var(--rule);
    margin-bottom: 24px;
}

.founder-disclaimer {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.04em;
    line-height: 1.6;
    color: var(--dim);
    padding-top: 16px;
    border-top: 1px solid var(--rule);
}

/* ───── PRICING ───── */
/* three tiers. cal green on the featured one. no gradients, no halos.
   "most shops pick this" earns the green border because it's the truth,
   not because we made it sparkle. */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 24px;
}

@media (max-width: 920px) {
    .price-grid { grid-template-columns: 1fr; }
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--paper-deep);
    border: 1px solid var(--rule);
    transition: border-color 0.18s ease, transform 0.18s ease;
}

.price-card:hover {
    border-color: rgba(26,26,26,0.35);
    transform: translateY(-2px);
}

.price-featured {
    background: var(--paper);
    border: 1px solid var(--green);
    border-left-width: 4px;
    padding-left: 25px;
}

.price-featured:hover { border-color: var(--green-deep); }

.price-flag {
    position: absolute;
    top: -11px;
    left: 22px;
    background: var(--green);
    color: var(--paper);
    padding: 4px 11px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 500;
}

.price-card .eyebrow { margin-bottom: 14px; }

.price-amount {
    font-family: var(--serif);
    line-height: 1;
    letter-spacing: -0.024em;
    color: var(--ink);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-num {
    font-size: 48px;
    font-weight: 500;
}

.price-per {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--dim);
    font-weight: 400;
    letter-spacing: 0;
}

.price-blurb {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
}

.price-features {
    list-style: none;
    margin-bottom: 22px;
    flex: 1;
}

.price-features li {
    font-size: 14px;
    color: var(--ink-2);
    padding: 8px 0 8px 20px;
    position: relative;
    line-height: 1.55;
}

.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--green);
}

.price-features li code {
    background: rgba(45,106,79,0.08);
    padding: 1px 6px;
    font-size: 12.5px;
    color: var(--green-deep);
    border-radius: 0;
}

.price-cta {
    align-self: stretch;
    justify-content: center;
    text-align: center;
}

.price-fine {
    text-align: center;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.05em;
    color: var(--dim);
    padding: 16px 24px;
    background: var(--paper-deep);
    border: 1px solid var(--rule);
    border-width: 1px 0;
    line-height: 1.7;
}

/* ───── TRIAL FORM ───── */
.trial-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 820px) {
    .trial-grid { grid-template-columns: 1fr; gap: 36px; }
}

.trial-text p {
    font-size: 17px;
    line-height: 1.65;
    margin: 16px 0 22px;
}

/* "on the road" notice — small amber-tinted block above the trial-list
   so anyone submitting sees the expectation BEFORE they hit send. */
.trial-notice {
    background: rgba(160,104,32,0.06);
    border-left: 3px solid var(--amber);
    padding: 12px 16px;
    margin: 0 0 22px;
}
.trial-notice .eyebrow {
    display: block;
    margin-bottom: 4px;
}
.trial-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-2);
}

.trial-list {
    list-style: none;
    border-top: 1px solid var(--rule);
}

.trial-list li {
    font-size: 14.5px;
    color: var(--ink-2);
    padding: 10px 0 10px 22px;
    border-bottom: 1px solid var(--rule);
    position: relative;
}

.trial-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 8px;
    background: var(--green);
}

.trial-form {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trial-form-head { margin-bottom: 4px; }

.trial-form-head .eyebrow { margin-bottom: 8px; }

.trial-form-head h3 {
    font-size: 24px;
    letter-spacing: -0.018em;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dim);
}

.field .optional {
    color: var(--rule);
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 10px;
}

.field input,
.field select,
.field textarea {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--rule);
    border-bottom-color: var(--ink);
    border-radius: 0;
    padding: 11px 14px;
    width: 100%;
    transition: all 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green);
    background: var(--paper-deep);
}

.field select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'><path fill='none' stroke='%231a1a1a' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 11px;
    padding-right: 38px;
}

.field textarea {
    resize: vertical;
    min-height: 84px;
    line-height: 1.5;
}

/* the honeypot. positioned 10000px off-screen, which is roughly
   the same distance most bots are from understanding what a DTI is.
   if a human ever fills this in, they have bigger problems than
   subscribing to a mortgage tech newsletter. */
.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.trial-submit {
    margin-top: 8px;
    justify-content: center;
    padding: 15px 22px;
}

.trial-submit .submit-sending { display: none; }
.trial-form.is-sending .trial-submit .submit-default { display: none; }
.trial-form.is-sending .trial-submit .submit-sending { display: inline; }
.trial-form.is-sending .trial-submit { pointer-events: none; opacity: 0.7; }

.trial-status {
    font-size: 14.5px;
    line-height: 1.55;
    padding: 0;
    color: var(--ink-2);
    min-height: 1px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.trial-status.ok {
    color: var(--green-deep);
    padding: 14px 16px;
    background: rgba(45,106,79,0.1);
    border-left: 4px solid var(--green);
    font-size: 15px;
}

.trial-status.err {
    color: #803f10;
    padding: 14px 16px;
    background: rgba(160,104,32,0.12);
    border-left: 4px solid var(--amber);
    font-size: 15px;
}

/* field-level error highlight when the user skips a required input */
.field input.field-err,
.field select.field-err,
.field textarea.field-err {
    border-color: var(--amber);
    border-bottom-color: var(--amber);
    background: rgba(160,104,32,0.06);
}

.trial-fine {
    font-size: 12px;
    color: var(--dim);
    line-height: 1.55;
    margin: 0;
}

.trial-fine a {
    color: var(--ink-2);
    border-bottom: 1px solid var(--rule);
}

/* ───── VOICE STRIP ───── */
.voice-strip {
    background: var(--paper);
    padding: 96px 0;
    text-align: center;
}

.voice-strip blockquote p {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin-bottom: 18px;
}

.voice-strip cite {
    font-family: var(--mono);
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dim);
}

/* ───── ACCESS (on ink) ───── */
.section-ink .eyebrow { color: rgba(243,241,236,0.5); }

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 36px;
}

@media (max-width: 760px) {
    .access-grid { grid-template-columns: 1fr; }
}

.access-card {
    padding: 32px 28px;
    border: 1px solid rgba(243,241,236,0.16);
    background: rgba(243,241,236,0.02);
}

.access-card .eyebrow {
    color: rgba(243,241,236,0.55);
    margin-bottom: 16px;
}

.access-card h3 {
    color: var(--paper);
    font-size: 26px;
    margin-bottom: 12px;
}

.access-card p {
    font-size: 15.5px;
    margin-bottom: 22px;
    line-height: 1.6;
}

/* ───── FOOTER ───── */
footer {
    background: var(--ink);
    color: var(--paper);
    padding: 64px 0 36px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 56px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(243,241,236,0.12);
}

@media (max-width: 760px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

.footer-mark img {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
}

.footer-tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: rgba(243,241,236,0.6);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 520px) {
    .footer-cols { grid-template-columns: 1fr 1fr; }
}

.footer-col .eyebrow {
    margin-bottom: 12px;
    color: rgba(243,241,236,0.5);
}

.footer-col a {
    display: block;
    color: rgba(243,241,236,0.78);
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.15s ease;
}

.footer-col a:hover { color: var(--paper); }

.footer-fine {
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(243,241,236,0.5);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* ───── PICTURE WRAPPER (founder portrait uses <picture> for webp) ───── */
.founder-portrait picture { display: block; }

/* ───── REDUCED MOTION ─────
   Respect users who ask the OS to minimise animation (vestibular safety). */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto !important; }
}
