:root {
    --white: #F6F6F2;
    --grey: #6FB3B8;
    --grey-tint: #badfe7d5;
    --grey-tint-2: #C2EDCE;
    --brown: #388087;
    --ink: #2d696e;
    --red: #68832b;
    --red-dark: #2C666B;
    --red-soft: #C2EDCE;
    --display: 'Fraunces', serif;
    --body: 'Nunito', sans-serif;
    --hand: 'Caveat', cursive;
    
}



* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 600;
    margin: 0;
    line-height: 1.12;
    color: var(--ink);
}

p {
    margin: 0;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}

.hand {
    font-family: var(--hand);
    color: var(--brown);
}

/* ---------- Nav ---------- */
header.site {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 246, 242, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--grey-tint-2);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    max-width: 1120px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.brand span {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;
    color: var(--ink);
}

nav.links {
    display: flex;
    gap: 26px;
}

nav.links a {
    color: var(--brown);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
}

nav.links a:hover {
    color: var(--red);
}

.nav-cta {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--red-dark);
}

.burger {
    display: none;
    background: none;
    border: none;
    color: var(--ink);
    padding: 4px;
}

@media (max-width:820px) {
    nav.links {
        display: none;
    }

    .burger {
        display: block;
    }
}

section {
    padding: 84px 0;
    position: relative;
}

.bg-tint {
    background: var(--grey-tint);
}

.kicker {
    display: inline-block;
    font-family: var(--body);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    max-width: 19ch;
}

.lede {
    font-size: 17px;
    color: var(--brown);
    max-width: 58ch;
    margin-top: 16px;
}

.squiggle {
    position: relative;
    white-space: nowrap;
}

.squiggle svg {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 10px;
}

.wave {
    display: block;
    width: 100%;
    height: 44px;
}

/* ---------- Hero ---------- */
.hero {
    padding: 70px 0 40px;
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}

@media (max-width:900px) {
    .hero .wrap {
        grid-template-columns: 1fr;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-soft);
    color: var(--red-dark);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.03em;
    padding: 8px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(32px, 4.6vw, 50px);
    max-width: 13ch;
}

.hero .sub {
    margin-top: 20px;
    font-size: 17.5px;
    color: var(--brown);
    max-width: 44ch;
}

.signature {
    margin-top: 22px;
    font-family: var(--hand);
    font-size: 22px;
    color: var(--brown);
}

.hero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform .15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--red);
    color: #fff;
}

.btn-primary:hover {
    background: var(--red-dark);
}

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

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

/* polaroid collage */
.collage {
    position: relative;
    height: 420px;
}

.polaroid {
    position: absolute;
    background: #fff;
    border: 1px solid var(--grey-tint-2);
    border-radius: 6px;
    padding: 10px 10px 34px;
    box-shadow: 0 18px 34px -14px rgba(25, 23, 26, 0.28);
    width: 200px;
}

.polaroid:hover{
    z-index: 999;
}

.polaroid .frame {
    aspect-ratio: 1;
    border-radius: 3px;
    background: var(--grey-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
}

.polaroid figcaption {
    font-family: var(--hand);
    font-size: 17px;
    color: var(--brown);
    text-align: center;
    margin-top: 8px;
}

.tape {
    position: absolute;
    width: 56px;
    height: 20px;
    background: rgba(246, 246, 242, 0.92);
    border: 1px solid rgba(56, 128, 135, 0.25);
}

.p1 {
    top: 0;
    left: 10%;
    transform: rotate(-7deg);
    z-index: 2;
}

.p1 .tape {
    top: -10px;
    left: 70px;
    transform: rotate(-8deg);
}

.p2 {
    top: 60px;
    right: 0;
    transform: rotate(6deg);
    width: 180px;
    z-index: 1;
}

.p2 .tape {
    top: -10px;
    left: 60px;
    transform: rotate(6deg);
}

.p3 {
    bottom: 0;
    left: 22%;
    transform: rotate(-3deg);
    width: 170px;
    z-index: 3;
}

.p3 .tape {
    top: -10px;
    left: 56px;
    transform: rotate(-4deg);
}

@media (max-width:900px) {
    .collage {
        height: 340px;
    }

    .polaroid {
        width: 150px;
    }

    .p2 {
        width: 140px;
    }

    .p3 {
        width: 130px;
    }
}

@media (max-width:520px) {
    .collage {
        height: 300px;
    }
}

/* ---------- Origin ---------- */
.origin-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: start;
}

@media (max-width:860px) {
    .origin-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.origin-grid blockquote {
    font-family: var(--display);
    font-style: italic;
    font-size: 21px;
    line-height: 1.55;
    color: var(--ink);
    margin: 0;
}

.origin-grid cite {
    font-family: var(--body);
    font-style: normal;
    font-size: 13px;
    color: var(--ink);
    opacity: .65;
    display: block;
    margin-top: 14px;
}

.postcard {
    background: #fff;
    border: 1px solid var(--grey-tint-2);
    border-radius: 10px;
    padding: 22px 24px;
    position: relative;
    box-shadow: 0 14px 26px -16px rgba(25, 23, 26, 0.2);
    margin-top: 26px;
}

.postcard .tape {
    position: absolute;
    top: -10px;
    left: 24px;
}

.postcard p {
    font-family: var(--hand);
    font-size: 20px;
    color: var(--brown);
    line-height: 1.4;
}

/* ---------- How it works ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 44px;
}

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

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

.step {
    background: #fff;
    border: 1px solid var(--grey-tint-2);
    border-radius: 16px;
    padding: 24px;
}

.step-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--red-soft);
    color: var(--red-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--brown);
}

/* ---------- Pricing ---------- */
.price-card {
    background: #fff;
    border: 1px solid var(--grey-tint-2);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px -22px rgba(25, 23, 26, 0.22);
}

.price-band {
    background: var(--red);
    color: #fff;
    padding: 26px 32px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.price-band h3 {
    color: #fff;
    font-size: 21px;
}

.price-amount {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 700;
}

.price-amount span {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;
    opacity: 0.85;
}

.price-body {
    padding: 28px 32px;
}

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

.price-list li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    color: var(--brown);
}

.price-list li svg {
    flex: none;
    margin-top: 2px;
    color: var(--red);
}

.addons {
    display: grid;
    gap: 0;
    border-top: 2px dashed var(--grey-tint-2);
    padding-top: 18px;
}

.addon-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--grey-tint-2);
}

.addon-row:last-child {
    border-bottom: none;
}

.addon-row .name {
    color: var(--brown);
}

.addon-row .rate {
    font-weight: 800;
    color: var(--ink);
}

.psst {
    margin-top: 18px;
    font-family: var(--hand);
    font-size: 18px;
    color: var(--brown);
}

/* ---------- Areas ---------- */
.areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

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

/* ---------- Trust ---------- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 44px;
}

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

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

.trust-card {
    padding: 24px;
    border: 1px solid var(--grey-tint-2);
    border-radius: 16px;
    background: #fff;
}

.trust-card svg {
    color: var(--red);
    margin-bottom: 14px;
}

.trust-card h3 {
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.trust-card p {
    font-size: 13.5px;
    color: var(--brown);
}

/* ---------- Contact ---------- */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

@media (max-width:900px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-size: 13.5px;
    color: var(--brown);
    margin-bottom: 6px;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--grey-tint-2);
    background: #fff;
    color: var(--ink);
    font-family: var(--body);
    font-size: 14.5px;
}

.field textarea {
    resize: vertical;
    min-height: 100px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--red);
}

.contact-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--ink);
    opacity: .65;
}

.direct {
    display: grid;
    gap: 16px;
}

.direct a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1.5px solid var(--grey-tint-2);
    border-radius: 14px;
    text-decoration: none;
    color: var(--ink);
    background: #fff;
}

.direct a:hover {
    border-color: var(--red);
}

.direct svg {
    color: var(--red);
    flex: none;
}

.direct .lbl {
    font-size: 12px;
    color: var(--ink);
    opacity: .6;
    display: block;
    font-weight: 700;
}

.direct .val {
    font-size: 15px;
    font-weight: 700;
}

#formMsg {
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--red-dark);
    font-weight: 700;
    display: none;
}

footer {
    background: var(--ink);
    color: var(--white);
    padding: 34px 0;
    font-size: 13px;
}

footer .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

footer .made {
    font-family: var(--hand);
    color: var(--white);
    font-size: 16px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion:reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}