:root {
    --ink: #2b170d;
    --muted: #73513b;
    --cream: #f7ead2;
    --paper: #fff6e5;
    --tomato: #b84124;
    --stock: #d89a3a;
    --herb: #596d35;
    --iron: #33251f;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 10%, rgba(216, 154, 58, 0.24), transparent 28rem),
        linear-gradient(135deg, var(--cream), #ead2aa 55%, #d9a65d);
    font-family: Georgia, "Times New Roman", serif;
}

a {
    color: inherit;
}

.hero {
    min-height: 100vh;
    padding: 1.25rem clamp(1rem, 3vw, 3rem) 4rem;
}

.nav,
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1120px, 100%);
    margin: 0 auto;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand {
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    font-size: 0.95rem;
}

.nav-links a {
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.3em;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    width: min(1120px, 100%);
    margin: 9vh auto 0;
}

.hero-copy h1,
.section h2 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(3.3rem, 8vw, 7.8rem);
    line-height: 0.86;
    letter-spacing: -0.07em;
}

.section h2 {
    font-size: clamp(2.4rem, 5vw, 5rem);
}

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

.eyebrow,
.card-label {
    margin: 0 0 0.85rem;
    color: var(--tomato);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.button,
.signup button {
    display: inline-flex;
    align-items: center;
    min-height: 3.2rem;
    padding: 0 1.25rem;
    border: 2px solid var(--ink);
    border-radius: 999px;
    color: var(--paper);
    background: var(--ink);
    font: 800 0.95rem/1 ui-sans-serif, system-ui, sans-serif;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0.65rem 0 rgba(43, 23, 13, 0.16);
}

.button:focus-visible,
.signup button:focus-visible,
.signup input:focus-visible,
.nav a:focus-visible {
    outline: 3px solid var(--tomato);
    outline-offset: 4px;
}

.pot-card {
    position: relative;
    min-height: 520px;
    border: 2px solid rgba(43, 23, 13, 0.28);
    border-radius: 2rem;
    background:
        linear-gradient(transparent 58%, rgba(43, 23, 13, 0.08) 58%),
        repeating-linear-gradient(90deg, rgba(43, 23, 13, 0.08) 0 1px, transparent 1px 4.5rem),
        var(--paper);
    overflow: hidden;
    box-shadow: 0 2rem 4rem rgba(43, 23, 13, 0.18);
}

.pot-card::before {
    content: "";
    position: absolute;
    inset: 2rem;
    border: 1px dashed rgba(43, 23, 13, 0.22);
    border-radius: 50%;
}

.steam {
    position: absolute;
    bottom: 50%;
    width: 4rem;
    height: 12rem;
    border-left: 0.35rem solid rgba(115, 81, 59, 0.28);
    border-radius: 50%;
}

.steam-one { left: 34%; transform: rotate(16deg); }
.steam-two { left: 48%; height: 14rem; transform: rotate(-10deg); }
.steam-three { left: 61%; transform: rotate(12deg); }

.pot-lid {
    position: absolute;
    right: 22%;
    bottom: 38%;
    width: 56%;
    height: 2rem;
    border-radius: 999px;
    background: var(--iron);
}

.pot {
    position: absolute;
    right: 15%;
    bottom: 13%;
    width: 70%;
    height: 28%;
    border-radius: 0 0 3rem 3rem;
    background: linear-gradient(135deg, var(--tomato), #7a2819);
    border: 0.75rem solid var(--iron);
}

.pot span {
    position: absolute;
    top: 24%;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    background: var(--stock);
}

.pot span:nth-child(1) { left: 18%; }
.pot span:nth-child(2) { left: 38%; background: var(--herb); }
.pot span:nth-child(3) { left: 58%; }
.pot span:nth-child(4) { left: 76%; background: var(--herb); }

.section {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.card {
    min-height: 22rem;
    padding: 1.25rem;
    border: 2px solid rgba(43, 23, 13, 0.22);
    border-radius: 1.4rem;
    background: var(--paper);
    box-shadow: 0 1rem 2rem rgba(43, 23, 13, 0.1);
}

.card h3 {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 0.95;
}

.card p:not(.card-label),
.note-list,
.signup label,
.footer {
    color: var(--muted);
    font: 1rem/1.6 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tomato { background: linear-gradient(160deg, #fff5df, #f1b57c); }
.bean { background: linear-gradient(160deg, #fff8e9, #d9d6ab); }
.barley { background: linear-gradient(160deg, #fff3d6, #c58d55); }

.notes {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    border-top: 2px solid rgba(43, 23, 13, 0.22);
    border-bottom: 2px solid rgba(43, 23, 13, 0.22);
}

.note-list {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.1rem;
}

.note-list li {
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(43, 23, 13, 0.18);
}

.contact {
    text-align: center;
}

.contact h2 {
    margin-inline: auto;
}

.signup {
    width: min(620px, 100%);
    margin: 2rem auto 0;
    text-align: left;
}

.signup-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.signup input {
    min-width: 0;
    flex: 1;
    min-height: 3.2rem;
    padding: 0 1rem;
    border: 2px solid rgba(43, 23, 13, 0.28);
    border-radius: 999px;
    color: var(--ink);
    background: var(--paper);
    font: 1rem ui-sans-serif, system-ui, sans-serif;
}

.footer {
    padding: 2rem clamp(1rem, 3vw, 3rem) 3rem;
    border-top: 1px solid rgba(43, 23, 13, 0.18);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

@media (max-width: 820px) {
    .hero-grid,
    .notes,
    .cards {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        margin-top: 4rem;
    }

    .pot-card {
        min-height: 360px;
    }

    .section-heading,
    .signup-row,
    .nav,
    .footer {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .hero {
        padding-inline: 1rem;
    }

    .hero-copy h1,
    .section h2 {
        letter-spacing: -0.05em;
    }

    .nav-links {
        flex-wrap: wrap;
    }
}
