/* ============================================
   Eaverly — story-first site
   Editorial letter + scrapbook. Deliberately NOT
   a SaaS landing template: no icon grids, no
   floating stat cards, no gradient hero.
   Palette: paper / ink / deep green / rust.
   (House rule: no mint or pale-green fills.)
   ============================================ */

:root {
    --paper: #F4EFE5;
    --paper-warm: #EAE1CE;      /* warm sand (app primaryPale) */
    --card: #FFFEFA;
    --ink: #221E15;
    --ink-soft: #57503F;
    --green-deep: #1B4332;
    --green: #2D6A4F;
    --rust: #A9512E;
    --border: #DDD3BE;
    --red: #B3261E;

    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --hand: 'Caveat', cursive;

    --container: 1080px;
    --pad: 24px;
    --nav-h: 62px;

    --z-nav: 100;
    --z-modal: 200;

    --shadow-photo: 0 14px 34px rgba(34, 30, 21, 0.16);
    --shadow-soft: 0 8px 26px rgba(34, 30, 21, 0.09);
}

body {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--ink);
    background-color: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Paper grain over everything (very subtle) */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 2; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.field-error {
    flex-basis: 100%;
    margin-top: 6px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    text-align: left;
}
input[aria-invalid="true"] { border-color: var(--red) !important; }
.waitlist__form .field-error { color: #FFD9D5; }

:where(a, button, summary, input, [tabindex]):focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 2px;
    border-radius: 6px;
}
.waitlist :where(a, button, summary, input):focus-visible,
.footer :where(a, button, summary):focus-visible {
    outline-color: #fff;
}

/* Scroll reveal */
.js .reveal { opacity: 0; transform: translateY(14px) rotate(var(--tilt, 0deg)); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: translateY(0) rotate(var(--tilt, 0deg)); }
@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Brand / logo ---- */
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--green-deep);
    display: inline-flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.brand__mark-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand__text {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.brand--light .brand__text { color: #F4EFE5; }

/* ============================================
   NAV
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: var(--z-nav);
    background: rgba(244, 239, 229, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transition: transform .3s ease;
}
.nav__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 10px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__menu { display: none; align-items: center; gap: 26px; }
.nav__link {
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color .15s ease;
}
.nav__link:hover { color: var(--green-deep); }
.nav__cta {
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 600;
    color: #F4EFE5;
    background: var(--green-deep);
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 999px;
    transition: background .15s ease, transform .15s ease;
}
.nav__cta:hover { background: #143026; transform: translateY(-2px); }

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.nav__toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 820px) {
    .nav__menu { display: flex; }
    .nav__toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    z-index: calc(var(--z-nav) - 1);
    background: var(--paper);
    padding: 28px var(--pad);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.mobile-menu[aria-hidden="false"] { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu__content { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.mobile-menu__cta {
    margin-top: 22px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #F4EFE5;
    background: var(--green-deep);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 999px;
}

/* ============================================
   THE LETTER (hero)
   ============================================ */
.letter {
    padding: calc(var(--nav-h) + 44px) 0 26px;
}
.letter__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}
.letter__eyebrow {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 18px;
}
.letter__headline {
    font-family: var(--serif);
    font-size: clamp(38px, 6.5vw, 54px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 26px;
    max-width: 22ch;
    text-wrap: balance;
}
.letter__headline em {
    font-style: italic;
    font-weight: 500;
    color: var(--green-deep);
    /* hand-ruled underline */
    background-image: linear-gradient(to right, var(--rust), var(--rust));
    background-repeat: no-repeat;
    background-size: 100% 3px;
    background-position: 0 96%;
    padding-bottom: 2px;
}
.letter__prose {
    max-width: 54ch;
    font-size: clamp(17px, 2.1vw, 19.5px);
    line-height: 1.65;
    font-weight: 400;
}
.letter__prose p + p { margin-top: 16px; }
.letter__prose strong { font-weight: 600; }
.letter__mark {
    background: linear-gradient(transparent 58%, rgba(169, 81, 46, 0.22) 58%, rgba(169, 81, 46, 0.22) 92%, transparent 92%);
    font-weight: 600;
}

.letter__form {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 460px;
}
.letter__input {
    flex: 1 1 220px;
    font-family: var(--sans);
    font-size: 16px;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    color: var(--ink);
    transition: border-color .15s ease;
}
.letter__input::placeholder { color: #9A917C; }
.letter__input:focus { border-color: var(--green); outline: none; }
.letter__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: #F4EFE5;
    background: var(--green-deep);
    border: none;
    border-radius: 999px;
    padding: 14px 26px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
}
.letter__submit:hover { background: #143026; transform: translateY(-2px); }
.letter__note {
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 13.5px;
    color: var(--ink-soft);
}
.letter__sig {
    margin-top: 26px;
    font-family: var(--hand);
    font-size: 26px;
    color: var(--green-deep);
    transform: rotate(-1.2deg);
}

.letter__artifact {
    justify-self: center;
    position: relative;
    padding-bottom: 34px;
}
.letter__more {
    display: block;
    text-align: center;
    margin-top: 34px;
    font-family: var(--hand);
    font-size: 22px;
    color: var(--ink-soft);
    text-decoration: none;
}
.letter__more:hover { color: var(--green-deep); }

@media (min-width: 900px) {
    .letter { padding-top: calc(var(--nav-h) + 72px); }
    .letter__container { grid-template-columns: 1.35fr 0.85fr; gap: 56px; }
    .letter__artifact { justify-self: end; margin-top: 30px; }
}

/* ============================================
   POLAROIDS & TAPE (shared artifact styles)
   ============================================ */
.polaroid {
    --tilt: 0deg;
    background: #FFFDF8;
    padding: 12px 12px 10px;
    border: 1px solid rgba(34, 30, 21, 0.08);
    box-shadow: var(--shadow-photo);
    transform: rotate(var(--tilt));
    position: relative;
    display: inline-block;
    max-width: 300px;
}
.polaroid--tilt-r { --tilt: 2.1deg; }
.polaroid--tilt-l { --tilt: -2deg; }
.polaroid img {
    display: block;
    width: 100%;
    height: auto;
}
.polaroid__caption {
    font-family: var(--hand);
    font-size: 19px;
    line-height: 1.25;
    color: var(--ink-soft);
    padding: 10px 4px 4px;
    text-align: center;
}
.polaroid__caption strong { color: var(--rust); font-weight: 600; }
/* masking tape */
.polaroid::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    width: 92px;
    height: 26px;
    transform: translateX(-50%) rotate(-3deg);
    background: rgba(214, 186, 125, 0.55);
    border-left: 1px dashed rgba(34, 30, 21, 0.12);
    border-right: 1px dashed rgba(34, 30, 21, 0.12);
    box-shadow: 0 1px 3px rgba(34, 30, 21, 0.08);
}
.polaroid--phone { max-width: 270px; }

.handnote {
    font-family: var(--hand);
    font-size: 22px;
    color: var(--rust);
    display: inline-block;
}
.handnote--arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    white-space: nowrap;
}

/* ============================================
   THE RECEIPTS
   ============================================ */
.receipts {
    padding: 72px 0 64px;
    background: var(--paper-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.receipts__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.receipts__title {
    font-family: var(--serif);
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.receipts__sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 52ch;
    margin-bottom: 44px;
}
.receipts__board {
    display: flex;
    flex-wrap: wrap;
    gap: 34px 40px;
    align-items: flex-start;
    justify-content: center;
}
.receipts__kicker {
    margin: 52px auto 0;
    max-width: 44ch;
    text-align: center;
    font-size: clamp(19px, 2.6vw, 23px);
    line-height: 1.5;
    font-style: italic;
}
.receipts__kicker strong { font-style: normal; color: var(--green-deep); }

/* Newspaper-style clipping cards */
.clipping {
    --tilt: -0.8deg;
    background: #FBF7EC;
    border: 1px solid rgba(34, 30, 21, 0.14);
    box-shadow: var(--shadow-soft);
    padding: 24px 26px;
    max-width: 340px;
    transform: rotate(var(--tilt));
}
.clipping__kicker {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rust);
    border-bottom: 1px solid rgba(34, 30, 21, 0.18);
    padding-bottom: 8px;
    margin-bottom: 14px;
}
.clipping__head {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 10px;
}
.clipping__text {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.clipping--quote { --tilt: 1.1deg; background: #FFFDF8; }
.clipping--quote blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink);
}
.clipping--quote blockquote::before { content: none; }
.clipping__cite {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.clipping__signature { height: 44px; width: auto; }
.clipping__cite-name {
    font-family: var(--hand);
    font-size: 24px;
    color: var(--green-deep);
}
.clipping__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--paper-warm);
    border: 1.5px solid var(--border);
    object-fit: cover;
}

/* ============================================
   THE APP
   ============================================ */
.app { padding: 76px 0; }
.app__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: center;
}
.app__shot { justify-self: center; }
.app__title {
    font-family: var(--serif);
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.app__prose {
    max-width: 56ch;
    font-size: 17.5px;
    line-height: 1.68;
}
.app__prose p + p { margin-top: 14px; }
.app__prose strong { font-weight: 600; }
.app__cta-line { margin-top: 26px; }
.app__cta {
    font-family: var(--sans);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--green-deep);
    text-decoration: none;
    border-bottom: 2px solid var(--rust);
    padding-bottom: 2px;
}
.app__cta:hover { color: var(--rust); }

@media (min-width: 900px) {
    .app__container { grid-template-columns: 0.8fr 1.2fr; gap: 64px; }
    .app__shot { justify-self: center; }
}

/* ============================================
   WAITLIST (dark green conversion block)
   ============================================ */
.waitlist {
    background: var(--green-deep);
    color: #F4EFE5;
    padding: 76px 0;
}
.waitlist__container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--pad);
    text-align: center;
}
.waitlist__title {
    font-family: var(--serif);
    font-size: clamp(30px, 5vw, 42px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.waitlist__sub {
    font-size: 17.5px;
    line-height: 1.6;
    color: rgba(244, 239, 229, 0.82);
    margin-bottom: 30px;
}
.waitlist__sub strong { color: #fff; }
.waitlist__form { display: flex; flex-direction: column; gap: 12px; }
.waitlist__fields { display: flex; flex-direction: column; gap: 12px; }
.waitlist__input {
    font-family: var(--sans);
    font-size: 16px;
    padding: 15px 20px;
    border: 1.5px solid rgba(244, 239, 229, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    transition: border-color .15s ease, background .15s ease;
}
.waitlist__input::placeholder { color: rgba(244, 239, 229, 0.55); }
.waitlist__input:focus { border-color: #F4EFE5; background: rgba(255, 255, 255, 0.12); outline: none; }
.waitlist__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 16.5px;
    font-weight: 700;
    color: var(--green-deep);
    background: #F4EFE5;
    border: none;
    border-radius: 999px;
    padding: 16px 30px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.waitlist__submit:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25); }
.waitlist__trust {
    margin-top: 20px;
    font-family: var(--sans);
    font-size: 13.5px;
    color: rgba(244, 239, 229, 0.65);
}

@media (min-width: 640px) {
    .waitlist__fields { flex-direction: row; }
    .waitlist__input { flex: 1; }
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 72px 0; }
.faq__container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--pad);
}
.faq__title {
    font-family: var(--serif);
    font-size: clamp(28px, 4.6vw, 38px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
}
.faq__grid { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 600;
    padding: 18px 34px 18px 2px;
    cursor: pointer;
    list-style: none;
    position: relative;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
    content: "+";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--sans);
    font-size: 22px;
    font-weight: 400;
    color: var(--rust);
    transition: transform .2s ease;
}
.faq__item[open] .faq__question::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer {
    padding: 0 2px 20px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 62ch;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #14100A;
    color: #B9B2A2;
    padding: 52px 0 30px;
}
.footer__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.footer__main {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 239, 229, 0.12);
}
.footer__tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    line-height: 1.5;
    color: #8F887A;
}
.footer__social { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__social-link {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: #B9B2A2;
    text-decoration: none;
}
.footer__social-link:hover { color: #F4EFE5; }
.footer__bottom {
    padding-top: 22px;
    font-family: var(--sans);
    font-size: 13px;
    color: #7C7566;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pad);
    background: rgba(20, 16, 10, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.modal[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.modal__content {
    background: var(--card);
    border-radius: 18px;
    padding: 34px 30px;
    max-width: 420px;
    text-align: center;
    box-shadow: var(--shadow-photo);
    transform: translateY(8px);
    transition: transform .2s ease;
}
.modal[aria-hidden="false"] .modal__content { transform: none; }
.modal__title {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
}
.modal__text {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 22px;
}
.modal__close {
    font-family: var(--sans);
    font-size: 15.5px;
    font-weight: 600;
    color: #F4EFE5;
    background: var(--green-deep);
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    cursor: pointer;
}
.modal__close:hover { background: #143026; }

/* ============================================
   V2 ADDITIONS — glimpse sections
   ============================================ */

/* Hero artifact stack: book + baby photo overlapping */
.stack {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 40px;
}
.stack__back { max-width: 190px; z-index: 1; margin-top: 26px; }
.stack__front { max-width: 235px; z-index: 2; margin: 0 0 0 -26px; }
.stack__note {
    position: absolute;
    bottom: 4px;
    right: 16%;
    transform: rotate(-3deg);
    white-space: nowrap;
}
@media (max-width: 480px) {
    .stack__back { max-width: 145px; margin-top: 20px; }
    .stack__front { max-width: 180px; margin-left: -20px; }
    .stack__note { right: 10%; }
}

/* THE APP — pocket section */
.pocket { padding: 64px 0 70px; }
.pocket__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.pocket__shot { justify-self: center; }
.pocket__title {
    font-family: var(--serif);
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}
.glimpses { display: flex; flex-direction: column; gap: 18px; max-width: 46ch; }
.glimpse { display: flex; align-items: flex-start; gap: 14px; }
.glimpse__check {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--green-deep);
    color: #F4EFE5;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.glimpse p {
    font-size: clamp(17.5px, 2.2vw, 20px);
    line-height: 1.45;
}
.glimpse strong { font-weight: 600; }
.pocket__cta-line { margin-top: 28px; }
.pocket__cta {
    font-family: var(--sans);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--green-deep);
    text-decoration: none;
    border-bottom: 2px solid var(--rust);
    padding-bottom: 2px;
}
.pocket__cta:hover { color: var(--rust); }

@media (min-width: 900px) {
    .pocket__container { grid-template-columns: 0.75fr 1.25fr; gap: 60px; }
}

/* THE PLAN — notecard steps + tag grid */
.plan {
    padding: 70px 0;
    background: var(--paper-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.plan__container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--pad);
    text-align: center;
}
.plan__title {
    font-family: var(--serif);
    font-size: clamp(28px, 4.8vw, 42px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.plan__sub {
    font-size: 17.5px;
    color: var(--ink-soft);
    margin-bottom: 36px;
}
.notecard {
    --tilt: -0.5deg;
    background: #FFFDF8;
    border: 1px solid rgba(34, 30, 21, 0.12);
    box-shadow: var(--shadow-soft);
    transform: rotate(var(--tilt));
    padding: 34px 30px 30px;
    text-align: left;
    position: relative;
    /* ruled-paper lines */
    background-image: repeating-linear-gradient(
        transparent, transparent 35px,
        rgba(45, 106, 79, 0.10) 35px, rgba(45, 106, 79, 0.10) 36px
    );
}
.notecard::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 50%;
    width: 100px;
    height: 28px;
    transform: translateX(-50%) rotate(2deg);
    background: rgba(214, 186, 125, 0.55);
    border-left: 1px dashed rgba(34, 30, 21, 0.12);
    border-right: 1px dashed rgba(34, 30, 21, 0.12);
    box-shadow: 0 1px 3px rgba(34, 30, 21, 0.08);
}
.notecard__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    list-style: none;
    margin: 0; padding: 0;
}
.notecard__step { display: flex; gap: 14px; align-items: flex-start; }
.notecard__num {
    font-family: var(--hand);
    font-size: 34px;
    font-weight: 600;
    color: var(--rust);
    line-height: 1;
    margin-top: 2px;
}
.notecard__head {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.notecard__text {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 30ch;
}
@media (min-width: 760px) {
    .notecard { padding: 38px 36px 34px; }
    .notecard__steps { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
}

.tags { margin-top: 34px; }
.tags__label {
    font-family: var(--hand);
    font-size: 24px;
    color: var(--ink-soft);
    margin-bottom: 14px;
    transform: rotate(-1deg);
}
.tags__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0; padding: 0;
}
.tag {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--green-deep);
    background: transparent;
    border: 1.5px solid var(--green-deep);
    border-radius: 4px;
    padding: 7px 13px;
    position: relative;
    transform: rotate(-0.6deg);
}
.tag:nth-child(even) { transform: rotate(0.7deg); }
.tag::before { content: "✓ "; color: var(--rust); font-weight: 700; }

/* VERSUS — two taped lists */
.versus { padding: 70px 0; }
.versus__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--pad);
    text-align: center;
}
.versus__title {
    font-family: var(--serif);
    font-size: clamp(28px, 4.8vw, 42px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
}
.versus__boards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}
.vlist {
    --tilt: -1deg;
    background: #FBF7EC;
    border: 1px solid rgba(34, 30, 21, 0.13);
    box-shadow: var(--shadow-soft);
    transform: rotate(var(--tilt));
    padding: 26px 28px;
    text-align: left;
    position: relative;
}
.vlist::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    width: 88px;
    height: 25px;
    transform: translateX(-50%) rotate(-2deg);
    background: rgba(214, 186, 125, 0.55);
    border-left: 1px dashed rgba(34, 30, 21, 0.12);
    border-right: 1px dashed rgba(34, 30, 21, 0.12);
}
.vlist--new { --tilt: 1deg; background: #FFFDF8; }
.vlist__label {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(34, 30, 21, 0.15);
    color: var(--ink-soft);
}
.vlist--new .vlist__label { color: var(--green-deep); }
.vlist ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.vlist li {
    font-size: 16px;
    line-height: 1.45;
    padding-left: 26px;
    position: relative;
}
.vlist--old li { color: var(--ink-soft); }
.vlist--old li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--rust);
    font-family: var(--sans);
    font-weight: 700;
}
.vlist--old li { text-decoration: line-through; text-decoration-color: rgba(169, 81, 46, 0.55); text-decoration-thickness: 1.5px; }
.vlist--new li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-family: var(--sans);
    font-weight: 700;
}
@media (min-width: 760px) {
    .versus__boards { grid-template-columns: 1fr 1fr; gap: 34px; }
}

/* Receipts spacing tune for slimmer content */
.receipts { padding: 64px 0 58px; }
.receipts__sub { margin-bottom: 40px; }
.receipts__kicker { margin-top: 44px; }
