:root {
    --paper:#f5f3ee;
    --ink:#202824;
    --muted:#60655e;
    --line:#d8d9d1;
    --accent:#a64b35;
    --serif:Georgia,'Times New Roman',serif;
    --sans:-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
}

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
    scroll-padding-top:2rem;
}

body {
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:var(--sans);
    font-size:16px;
    line-height:1.65;
    -webkit-font-smoothing:antialiased;
}

h1,h2,h3,p,figure {
    margin:0;
}

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

button,input,select,textarea {
    font:inherit;
}

button,summary {
    cursor:pointer;
}

img {
    display:block;
    max-width:100%;
    height:auto;
}

h1,h2 {
    font-family:var(--serif);
    font-weight:400;
    letter-spacing:-.045em;
    line-height:1.08;
}

h3 {
    line-height:1.3;
}

em {
    font-weight:inherit;
}

::selection {
    background:#e3c9ba;
    color:var(--ink);
}

:focus-visible {
    outline:2px solid var(--accent);
    outline-offset:5px;
}

main:focus {
    outline:none;
}

[x-cloak] {
    display:none!important;
}

.page-width {
    width:calc(100% - 112px);
    max-width:1440px;
    margin-inline:auto;
}

.eyebrow {
    text-transform:uppercase;
    letter-spacing:.15em;
    font-size:.67rem;
    font-weight:600;
    line-height:1.6;
    color:var(--muted);
}

.skip-link {
    position:fixed;
    z-index:100;
    top:8px;
    left:16px;
    padding:10px 20px;
    background:var(--ink);
    color:white;
    transform:translateY(-160%);
}

.skip-link:focus {
    transform:translateY(0);
}

.site-header {
    border-bottom:1px solid var(--line);
    background:var(--paper);
    position:relative;
    z-index:30;
}

.site-nav {
    min-height:98px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
}

.wordmark {
    display:inline-flex;
    align-items:center;
    flex-shrink:0;
}

.wordmark img {
    width:112px;
    height:auto;
    mix-blend-mode:multiply;
}

.site-footer .wordmark img {
    mix-blend-mode:screen;
}

.desktop-nav {
    display:flex;
    align-items:center;
    gap:40px;
    font-size:12px;
    font-weight:500;
}

.desktop-nav>a {
    padding-block:12px;
    position:relative;
}

.desktop-nav>a:hover,.desktop-nav a[aria-current] {
    color:var(--accent);
}

.desktop-nav>a[aria-current]:after {
    content:'';
    position:absolute;
    left:0;
    right:0;
    bottom:4px;
    height:1px;
    background:currentColor;
}

.mobile-menu {
    display:none;
}

.site-nav summary {
    list-style:none;
}

.site-nav summary::-webkit-details-marker {
    display:none;
}

.nav-dropdown {
    position:relative;
}

.nav-dropdown>summary {
    display:flex;
    gap:8px;
    align-items:center;
    padding:12px 0;
}

.nav-dropdown-panel {
    position:absolute;
    right:0;
    top:100%;
    width:260px;
    padding:12px;
    background:var(--paper);
    border:1px solid var(--line);
}

.nav-dropdown-panel a,.nav-submenu summary {
    display:flex;
    padding:10px;
    justify-content:space-between;
}

.nav-dropdown-panel a:hover {
    background:#e9e7df;
}

.nav-submenu>div {
    margin-left:12px;
    border-left:1px solid var(--line);
}

.button {
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    padding:16px 22px;
    font-size:12px;
    font-weight:500;
    line-height:1.5;
    border:1px solid var(--ink);
    min-height:52px;
    transition:background .2s,color .2s;
}

.button span,.text-link span {
    font-size:19px;
    line-height:1;
}

.button-dark {
    background:var(--ink);
    color:#fff;
}

.button-dark:hover {
    background:#39483f;
    border-color:#39483f;
}

.text-link {
    display:inline-flex;
    gap:40px;
    align-items:center;
    font-size:12px;
    font-weight:500;
    padding:12px 0;
    border-bottom:1px solid var(--ink);
}

.text-link:hover {
    color:var(--accent);
    border-color:var(--accent);
}

.home-intro {
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:64px;
    align-items:end;
    padding-top:76px;
    padding-bottom:58px;
}

.home-intro .eyebrow {
    margin-bottom:25px;
}

.home-intro h1 {
    font-size:clamp(48px,4.8vw,76px);
}

.home-intro h1 em {
    color:var(--accent);
}

.home-intro-copy {
    max-width:350px;
    justify-self:end;
    padding-bottom:4px;
}

.home-intro-copy p {
    font-size:15px;
    color:var(--muted);
    margin-bottom:25px;
    line-height:1.8;
}

.home-hero img {
    width:100%;
    height:auto;
    aspect-ratio:2;
    object-fit:cover;
    object-position:center 45%;
}

.home-hero figcaption {
    display:flex;
    justify-content:space-between;
    padding-top:13px;
    font-size:10px;
    color:var(--muted);
    letter-spacing:.04em;
}

.home-system {
    padding-top:104px;
    padding-bottom:100px;
}

.section-heading {
    display:grid;
    grid-template-columns:1fr 1.6fr 1fr;
    gap:32px;
    align-items:start;
    margin-bottom:50px;
}

.section-heading h2 {
    font-size:clamp(32px,3.2vw,48px);
}

.section-heading .eyebrow {
    padding-top:9px;
}

.section-heading .text-link {
    justify-self:end;
    align-self:end;
}

.home-components {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
}

.component-image {
    background:#eeece5;
    aspect-ratio:1.35;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.component-image img {
    width:74%;
    height:85%;
    object-fit:contain;
    mix-blend-mode:multiply;
    transition:transform .3s;
}

.component:hover img {
    transform:translateY(-4px);
}

.component-title {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:24px 0 10px;
}

.component-title h3 {
    font-family:var(--serif);
    font-size:28px;
    font-weight:400;
    letter-spacing:-.025em;
}

.component-title>span {
    font-size:21px;
}

.component p {
    max-width:320px;
    font-size:13px;
    line-height:1.8;
    color:var(--muted);
}

.home-recipes {
    background:#e9e8df;
    padding-block:80px;
}

.recipe-feature {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center;
}

.recipe-feature-image img {
    width:100%;
    aspect-ratio:1.15;
    object-fit:cover;
}

.recipe-feature-copy .eyebrow {
    margin-bottom:30px;
}

.recipe-feature-copy h2 {
    font-size:clamp(36px,3.8vw,56px);
    margin-bottom:25px;
}

.recipe-feature-copy h2 em {
    color:var(--accent);
}

.recipe-feature-copy>p:not(.eyebrow) {
    color:var(--muted);
    font-size:14px;
    max-width:360px;
    line-height:1.9;
    margin-bottom:30px;
}

.home-closing {
    text-align:center;
    padding-block:104px;
}

.home-closing h2 {
    font-size:clamp(38px,4.2vw,60px);
    margin:24px 0;
}

.site-footer {
    background:var(--ink);
    color:var(--paper);
    padding-top:64px;
}

.footer-grid {
    display:grid;
    grid-template-columns:1.7fr 1fr 1fr;
    gap:60px;
    padding-bottom:65px;
}

.footer-brand p {
    font-family:var(--serif);
    font-size:26px;
    line-height:1.3;
    letter-spacing:-.02em;
    margin-top:26px;
    color:#d4d8cd;
}

.footer-label {
    font-family:var(--sans);
    font-size:10px;
    font-weight:500;
    letter-spacing:.13em;
    text-transform:uppercase;
    color:#b8c0b6;
    margin:0 0 20px;
}

.site-footer ul {
    list-style:none;
    margin:0;
    padding:0;
    font-size:12px;
    line-height:2.3;
}

.site-footer a:hover {
    color:#e6b5a4;
}

.site-footer address {
    font-size:12px;
    font-style:normal;
    line-height:1.8;
    margin-top:20px;
    color:#b8c0b6;
}

.footer-bottom {
    border-top:1px solid #485047;
    padding-block:20px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    font-size:10px;
    color:#b8c0b6;
}

.editorial-page {
    padding-top:72px;
    padding-bottom:100px;
    min-height:60vh;
}

.editorial-heading {
    max-width:780px;
    margin-bottom:55px;
}

.editorial-heading .eyebrow {
    margin-bottom:22px;
}

.editorial-heading h1 {
    font-size:clamp(44px,5.5vw,76px);
    margin-bottom:24px;
}

.editorial-heading .lede {
    font-size:18px;
    line-height:1.8;
    color:var(--muted);
    max-width:640px;
}

.editorial-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    border-top:1px solid var(--line);
    padding-top:42px;
}

.editorial-grid h2 {
    font-size:32px;
    margin-bottom:20px;
}

.editorial-grid p {
    color:var(--muted);
    max-width:490px;
}

.editorial-grid .text-link {
    margin-top:20px;
}

.editorial-image {
    width:100%;
    aspect-ratio:1.8;
    object-fit:cover;
    margin-top:50px;
}

.contact-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    border-top:1px solid var(--line);
    padding-top:35px;
}

.contact-grid h2 {
    font-family:var(--sans);
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin-bottom:25px;
}

.contact-grid p,.contact-grid address {
    font-size:15px;
    font-style:normal;
    line-height:1.9;
}

.contact-grid a {
    border-bottom:1px solid var(--line);
    padding-block:4px;
}

.contact-grid a:hover {
    color:var(--accent);
}

.contact-grid .contact-note {
    font-size:12px;
    color:var(--muted);
    margin-top:10px;
}

.prose-page {
    max-width:850px;
}

.prose-page .editorial-heading h1 {
    font-size:clamp(40px,5vw,65px);
}

.editorial-content {
    font-size:17px;
    line-height:1.9;
    overflow-wrap:anywhere;
}

.editorial-content p {
    margin-bottom:24px;
}

.editorial-content h2 {
    font-size:34px;
    margin-top:40px;
    margin-bottom:18px;
}

.editorial-content h3 {
    font-size:22px;
    margin-block:25px 15px;
}

.editorial-content a {
    color:var(--accent);
    text-decoration:underline;
    text-underline-offset:4px;
}

.editorial-content img {
    height:auto;
    max-width:100%;
}

.editorial-content ul {
    padding-left:1.5em;
    list-style:disc;
}

.editorial-content ol {
    padding-left:1.5em;
    list-style:decimal;
}

.editorial-content table {
    display:block;
    overflow-x:auto;
    max-width:100%;
}

@media(min-width:1600px) {
    .home-intro {
        padding-top:90px;
    }
    .home-hero img {
        aspect-ratio:2.05;
    }
}

@media(max-width:1050px) {
    .page-width {
        width:calc(100% - 64px);
    }
    .home-intro {
        gap:32px;
        grid-template-columns:1.4fr 1fr;
    }
    .home-intro h1 {
        font-size:54px;
    }
    .home-intro-copy {
        max-width:300px;
    }
    .section-heading {
        grid-template-columns:1fr 2fr;
    }
    .section-heading .text-link {
        grid-column:2;
        justify-self:start;
    }
    .recipe-feature {
        gap:50px;
    }
    .footer-grid {
        gap:35px;
    }
}

@media(max-width:767px) {
    .page-width {
        width:calc(100% - 40px);
    }
    .site-nav {
        min-height:76px;
    }
    .wordmark img {
        width:96px;
    }
    .desktop-nav {
        display:none;
    }
    .mobile-menu {
        display:block;
    }
    .mobile-menu>summary {
        display:flex;
        align-items:center;
        gap:12px;
        font-size:12px;
        min-height:44px;
        padding-left:14px;
    }
    .menu-icon {
        width:18px;
        height:8px;
        border-top:1px solid;
        border-bottom:1px solid;
    }
    .mobile-menu[open] .menu-icon {
        height:1px;
        border-bottom:0;
        transform:rotate(-45deg);
    }
    .mobile-menu-panel {
        position:absolute;
        left:0;
        right:0;
        top:100%;
        padding:15px 20px 25px;
        background:var(--paper);
        border-bottom:1px solid var(--line);
        max-height:calc(100dvh - 76px);
        overflow-y:auto;
    }
    .mobile-menu-panel a,.mobile-submenu summary {
        display:flex;
        justify-content:space-between;
        min-height:48px;
        align-items:center;
        font-size:14px;
        border-bottom:1px solid var(--line);
    }
    .mobile-submenu>div {
        padding-left:20px;
    }
    .home-intro {
        grid-template-columns:1fr;
        gap:25px;
        padding-top:42px;
        padding-bottom:32px;
    }
    .home-intro .eyebrow {
        font-size:9px;
        margin-bottom:23px;
        letter-spacing:.12em;
    }
    .home-intro h1 {
        font-size:clamp(39px,8.5vw,62px);
        line-height:1.12;
    }
    .home-intro-copy {
        max-width:420px;
        justify-self:start;
    }
    .home-intro-copy p {
        font-size:14px;
        margin-bottom:20px;
    }
    .button {
        padding:14px 18px;
        font-size:12px;
        min-height:50px;
    }
    .home-hero img {
        aspect-ratio:1.13;
        object-position:53% center;
    }
    .home-hero figcaption {
        font-size:8px;
        gap:12px;
    }
    .home-system {
        padding-block:60px;
    }
    .section-heading {
        grid-template-columns:1fr;
        gap:20px;
        margin-bottom:30px;
    }
    .section-heading .eyebrow {
        padding:0;
    }
    .section-heading h2 {
        font-size:36px;
    }
    .section-heading .text-link {
        grid-column:auto;
    }
    .home-components {
        grid-template-columns:1fr;
        gap:35px;
    }
    .component-image {
        aspect-ratio:1.65;
    }
    .component-image img {
        width:65%;
        height:90%;
    }
    .component-title {
        margin-top:17px;
    }
    .component-title h3 {
        font-size:27px;
    }
    .component p {
        max-width:100%;
        font-size:13px;
    }
    .home-recipes {
        padding-block:35px;
    }
    .recipe-feature {
        grid-template-columns:1fr;
        gap:32px;
    }
    .recipe-feature-image img {
        aspect-ratio:1.2;
    }
    .recipe-feature-copy {
        padding-bottom:10px;
    }
    .recipe-feature-copy .eyebrow {
        margin-bottom:20px;
    }
    .recipe-feature-copy h2 {
        font-size:38px;
    }
    .home-closing {
        padding-block:65px;
    }
    .home-closing h2 {
        font-size:40px;
    }
    .footer-grid {
        grid-template-columns:1fr 1fr;
        gap:40px 24px;
        padding-bottom:40px;
    }
    .footer-brand {
        grid-column:1/-1;
    }
    .footer-brand p {
        font-size:25px;
        margin-top:20px;
    }
    .site-footer {
        padding-top:42px;
    }
    .footer-bottom {
        font-size:9px;
    }
    .editorial-page {
        padding-block:45px 65px;
    }
    .editorial-heading {
        margin-bottom:35px;
    }
    .editorial-heading .lede {
        font-size:16px;
    }
    .editorial-grid,.contact-grid {
        grid-template-columns:1fr;
        gap:35px;
    }
    .editorial-image {
        aspect-ratio:1.1;
    }
    .editorial-content {
        font-size:16px;
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior:auto;
    }
    *,*:before,*:after {
        transition:none!important;
        animation:none!important;
    }
}

@media print {
    .site-header,.site-footer,.skip-link {
        display:none;
    }
    body {
        background:white;
        color:black;
    }
    .page-width {
        width:100%;
    }
    .editorial-page {
        padding:0;
    }
}

.cms-title {
    font-size:clamp(40px,5vw,65px);
    margin-bottom:26px;
}

.cms-summary {
    color:var(--muted);
    font-size:19px;
    line-height:1.8;
    margin-bottom:42px;
}

.cms-blocks>article,.cms-blocks>figure {
    margin-block:35px;
}

.cms-body {
    white-space:pre-line;
}

.cms-callout {
    padding:30px;
    background:#e9e8df;
    border-left:2px solid var(--accent);
}

.cms-callout h2:first-child {
    margin-top:0;
}

.cms-blocks .button {
    margin-top:20px;
    color:white;
    text-decoration:none;
}

.cms-image-content {
    width:100%;
    height:auto;
}

.cms-caption {
    border-bottom:1px solid var(--line);
    padding-block:12px;
    font-size:12px;
    color:var(--muted);
}

.cms-empty,.editorial-reference {
    border-top:1px solid var(--line);
    padding-top:25px;
    color:var(--muted);
}

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