:root {
    color-scheme: light;
    --paper: #f6f1ea;
    --paper-strong: #efe7dd;
    --ink: #141414;
    --muted: #5f5951;
    --line: rgba(20, 20, 20, 0.14);
    --line-strong: rgba(20, 20, 20, 0.3);
    --shadow: 0 25px 80px rgba(20, 20, 20, 0.08);
    --max-width: 1240px;
    --content-width: 760px;
    --header-height: 86px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 42%),
        radial-gradient(circle at top right, rgba(233, 225, 214, 0.7), transparent 30%),
        linear-gradient(180deg, #fbf8f3 0%, var(--paper) 54%, #f3ece3 100%);
    color: var(--ink);
    font-family: "Jost", "Helvetica Neue", "Arial", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(20, 20, 20, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 20, 20, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 85%);
    opacity: 0.35;
}

img {
    display: block;
    width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    position: relative;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--header-height);
    padding: 1.2rem 2rem;
    backdrop-filter: blur(16px);
    background: rgba(248, 243, 236, 0.84);
    border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.menu-toggle {
    position: absolute;
    left: 2rem;
    top: 50%;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 17px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.brandmark {
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.brandmark-script {
    font-family: "Monsieur La Doulaise", cursive;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    line-height: 0.8;
}

.brandmark-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: var(--muted);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 32;
    background: rgba(20, 20, 20, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.menu-panel {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 35;
    width: min(320px, 86vw);
    padding: 6.3rem 2rem 2rem;
    background: rgba(249, 245, 239, 0.98);
    border-right: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: var(--shadow);
    transform: translateX(-104%);
    transition: transform 0.28s ease;
}

.menu-panel.is-active {
    transform: translateX(0);
}

.menu-copy {
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 24ch;
}

.menu-nav {
    display: grid;
    gap: 0.85rem;
}

.menu-link {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--line);
    transition: opacity 0.2s ease;
}

.menu-link:hover,
.menu-link[aria-current="page"] {
    opacity: 0.58;
}

.page-wrap {
    padding: calc(var(--header-height) + 1.8rem) 1.2rem 3rem;
}

.container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    align-items: end;
    padding: clamp(2.2rem, 5vw, 5rem) 0 2.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 54px;
    height: 1px;
    background: var(--line-strong);
}

.hero h1,
.article-hero h1,
.page-hero h1 {
    font-size: clamp(3.6rem, 10vw, 7.7rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    font-weight: 400;
    max-width: 10ch;
}

.hero h1 span,
.article-hero h1 span,
.page-hero h1 span {
    display: block;
    font-family: "Monsieur La Doulaise", cursive;
    font-size: 0.76em;
    letter-spacing: 0;
    text-transform: none;
    line-height: 0.7;
    margin-left: 0.24em;
    margin-bottom: 0.2em;
}

.hero-dek,
.page-dek {
    max-width: 34rem;
    margin-top: 1.6rem;
    color: var(--muted);
    font-size: 1.02rem;
}

.hero-actions,
.cta-row {
    display: flex;
    gap: 0.95rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.button-link,
.ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.3rem;
    border: 1px solid var(--ink);
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

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

.button-link:hover,
.ghost-link:hover {
    transform: translateY(-2px);
}

.ghost-link:hover {
    background: rgba(20, 20, 20, 0.05);
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: stretch;
}

.hero-card {
    position: absolute;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: var(--shadow);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-large {
    inset: 0 12% 6% 0;
}

.hero-card-small {
    right: 0;
    bottom: 0;
    width: 46%;
    height: 45%;
}

.hero-caption {
    position: absolute;
    right: 1rem;
    top: 1rem;
    display: grid;
    gap: 0.3rem;
    padding: 0.9rem 1rem;
    background: rgba(246, 241, 234, 0.94);
    max-width: 210px;
    border: 1px solid rgba(20, 20, 20, 0.08);
}

.hero-caption strong,
.meta-chip strong {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 400;
}

.hero-caption span,
.meta-chip span {
    color: var(--muted);
    font-size: 0.88rem;
}

.marquee {
    margin: 1.4rem 0 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 2.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    animation: scroll-track 26s linear infinite;
}

@keyframes scroll-track {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.section {
    padding: 4.2rem 0;
}

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

.section-head h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-weight: 400;
    max-width: 10ch;
}

.section-head p {
    max-width: 34ch;
    color: var(--muted);
}

.feature-grid,
.shopping-grid,
.three-up {
    display: grid;
    gap: 1.3rem;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.shopping-card,
.info-card,
.callout-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(20, 20, 20, 0.1);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
}

.feature-card img,
.shopping-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.feature-copy,
.shopping-copy,
.info-card,
.callout-card {
    padding: 1.2rem 1.2rem 1.4rem;
}

.card-kicker {
    display: inline-block;
    margin-bottom: 0.9rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--muted);
}

.feature-copy h3,
.shopping-copy h3 {
    font-size: 1.35rem;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.feature-copy p,
.shopping-copy p,
.info-card p,
.callout-card p {
    color: var(--muted);
}

.meta-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.meta-chip {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    padding: 0.55rem 0.7rem;
    background: rgba(20, 20, 20, 0.04);
    border: 1px solid rgba(20, 20, 20, 0.06);
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.4rem;
}

.editorial-pane {
    padding: clamp(1.4rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.36);
    border: 1px solid rgba(20, 20, 20, 0.08);
}

.editorial-pane h3 {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 0.98;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    font-weight: 400;
    margin-bottom: 1rem;
}

.editorial-pane p + p {
    margin-top: 1rem;
}

.editorial-note {
    padding-top: 1.1rem;
    margin-top: 1.1rem;
    border-top: 1px solid var(--line);
    font-size: 0.92rem;
    color: var(--muted);
}

.quote-card {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(239, 231, 221, 0.72));
    border: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: var(--shadow);
}

.quote-card blockquote {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    max-width: 16ch;
}

.quote-card cite {
    font-style: normal;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--muted);
}

.shopping-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--line);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
}

.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card strong {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.cta-band {
    margin-top: 1rem;
    padding: clamp(1.6rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(239, 231, 221, 0.82));
    border: 1px solid rgba(20, 20, 20, 0.1);
    box-shadow: var(--shadow);
}

.cta-band h2 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    font-weight: 400;
    max-width: 10ch;
}

.cta-band p {
    max-width: 34rem;
    margin-top: 1rem;
    color: var(--muted);
}

.article-hero,
.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.95fr);
    gap: clamp(2rem, 4vw, 3.6rem);
    padding: 2.2rem 0 1rem;
    align-items: center;
}

.article-hero-visual img,
.page-hero-visual img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: var(--shadow);
}

.article-meta {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, var(--content-width)) minmax(220px, 280px);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.article-body {
    display: grid;
    gap: 2.1rem;
}

.article-block {
    padding-bottom: 1.9rem;
    border-bottom: 1px solid var(--line);
}

.article-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.article-block h2 {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.article-block p + p {
    margin-top: 1rem;
}

.formula-list,
.note-list {
    display: grid;
    gap: 0.95rem;
    margin-top: 1.1rem;
}

.formula-list li,
.note-list li {
    list-style: none;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.formula-list li strong,
.note-list li strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.article-aside {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    display: grid;
    gap: 1rem;
}

.callout-card strong {
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
}

.shop-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.shop-item {
    padding: 0.9rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
}

.shop-item span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.manual-form {
    display: grid;
    gap: 1rem;
    max-width: 620px;
    margin-top: 2rem;
}

.manual-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field label {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(20, 20, 20, 0.16);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

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

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

.form-note {
    color: var(--muted);
    font-size: 0.94rem;
}

.legal-stack {
    display: grid;
    gap: 1.6rem;
    max-width: var(--content-width);
}

.legal-block {
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(20, 20, 20, 0.08);
}

.legal-block h2 {
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
}

.legal-block ul {
    margin-top: 0.85rem;
    margin-left: 1.2rem;
}

.legal-block li + li {
    margin-top: 0.45rem;
}

.site-footer {
    padding: 1.6rem 0 0.8rem;
    border-top: 1px solid var(--line);
}

.site-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .feature-grid,
    .shopping-grid,
    .three-up,
    .editorial-grid,
    .article-layout,
    .article-hero,
    .page-hero,
    .hero {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .article-hero h1,
    .page-hero h1,
    .section-head h2,
    .cta-band h2 {
        max-width: none;
    }

    .hero-visual {
        min-height: 500px;
    }

    .article-aside {
        position: static;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 80px;
    }

    .site-header {
        padding: 1rem;
    }

    .menu-toggle {
        left: 1rem;
    }

    .page-wrap {
        padding: calc(var(--header-height) + 1.2rem) 1rem 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }

    .hero-card-large {
        inset: 0 4% 20% 0;
    }

    .hero-card-small {
        width: 54%;
        height: 38%;
    }

    .hero-caption {
        left: 1rem;
        right: auto;
        top: auto;
        bottom: 1rem;
        max-width: 190px;
    }

    .marquee-track {
        gap: 1.2rem;
        animation-duration: 18s;
    }

    .manual-form-row,
    .site-footer-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .footer-links {
        gap: 0.85rem;
    }
}
