:root {
    --bg: #faf8f5;
    --ink: #2a2a2a;
    --ink-soft: #5a5a5a;
    --accent: #436e57;
    --accent-soft: #6a9281;
    --rule: #e8e2d6;
    --serif: "Iowan Old Style", "Palatino", "Georgia", serif;
    --sans:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

main {
    max-width: 640px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
}

.hero {
    text-align: center;
    padding: 3rem 0 4rem;
    border-bottom: 1px solid var(--rule);
}

.logo {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 1.5rem auto 1.75rem;
    /* Increased slightly for a softer, more "boutique" feel */
    border-radius: 12px;
    mix-blend-mode: multiply;
    /* Combine both filters here so they both work at once */
    filter: contrast(1.08) drop-shadow(0 10px 15px rgba(67, 110, 87, 0.15));
}

h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 2.5rem;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
    mix-blend-mode: multiply;

    /* Slight opacity helps the blend feel more natural */
    opacity: 0.92;
}

.tagline {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin: 0;
    max-width: 28rem;
    margin-inline: auto;
}

.section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--rule);
}

.section:last-of-type {
    border-bottom: none;
}

h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0 0 1.25rem;
    color: var(--accent);
    mix-blend-mode: multiply;

    /* Slight opacity helps the blend feel more natural */
    opacity: 0.92;
}

h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.25rem;
    margin: 0 0 0.35rem;
    mix-blend-mode: multiply;

    /* Slight opacity helps the blend feel more natural */
    opacity: 0.92;
}

.product {
    margin-bottom: 1.5rem;
}

.product p {
    margin: 0;
    color: var(--ink-soft);
}

a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-soft);
    transition:
        color 0.15s,
        border-color 0.15s;
}

a:hover {
    color: var(--accent-soft);
    border-color: transparent;
    mix-blend-mode: multiply;
}

footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
    text-align: center;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

footer nav {
    margin-bottom: 0.75rem;
}
footer nav a {
    margin: 0 0.25rem;
}
footer nav span {
    color: var(--rule);
    margin: 0 0.1rem;
}
.copyright {
    margin: 0;
    font-size: 0.85rem;
}

/* Legal pages */
.legal h1 {
    text-align: left;
    font-size: 2rem;
}
.legal p,
.legal li {
    color: var(--ink);
}
.legal h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
}
.legal .updated {
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-style: italic;
}
.legal .back {
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}
