:root {
    --bg: #f6efe5;
    --bg-strong: #efe3d1;
    --surface: rgba(255, 251, 246, 0.86);
    --surface-solid: #fffaf4;
    --surface-deep: #1f241f;
    --text: #1e221d;
    --muted: #5b6358;
    --sage: #30443c;
    --sage-soft: #dce6de;
    --accent: #a55433;
    --accent-deep: #7d371f;
    --gold: #c4995d;
    --line: rgba(48, 68, 60, 0.14);
    --shadow: 0 24px 60px rgba(39, 32, 24, 0.12);
    --shadow-soft: 0 16px 40px rgba(39, 32, 24, 0.08);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(196, 153, 93, 0.18), transparent 28%),
        radial-gradient(circle at left center, rgba(48, 68, 60, 0.12), transparent 24%),
        linear-gradient(180deg, #fbf6ef 0%, #f4ebde 100%);
    line-height: 1.7;
}

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

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

h1,
h2,
h3 {
    margin: 0 0 1rem;
    font-family: "Cormorant Garamond", serif;
    line-height: 1;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1rem;
}

.page-shell {
    position: relative;
    overflow-x: clip;
}

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

.narrow {
    width: min(100%, 820px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 0;
    backdrop-filter: blur(16px);
    background: rgba(246, 239, 229, 0.72);
    border-bottom: 1px solid rgba(48, 68, 60, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-deep);
    letter-spacing: 0.04em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem;
    border: 1px solid rgba(48, 68, 60, 0.1);
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.78);
    box-shadow: var(--shadow-soft);
}

.nav-link {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--muted);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-current {
    color: var(--surface-solid);
    background: linear-gradient(135deg, var(--sage), #203029);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    background: var(--surface-solid);
    color: var(--sage);
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.hero,
.page-hero,
.recipe-hero {
    padding: 5.5rem 0 2rem;
}

.hero-grid,
.recipe-hero-grid,
.story-grid,
.contact-grid,
.split-panel {
    display: grid;
    gap: 2rem;
}

.hero-grid,
.recipe-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.hero-copy h1,
.page-hero h1,
.recipe-hero h1 {
    font-size: clamp(3.2rem, 7vw, 6rem);
    margin-bottom: 1.2rem;
}

.page-hero h1,
.recipe-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
}

.eyebrow,
.feature-kicker,
.note-label,
.recipe-category {
    margin-bottom: 0.8rem;
    color: var(--accent-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lead {
    max-width: 56ch;
    font-size: 1.08rem;
    color: var(--muted);
}

.button-row,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fffaf5;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(125, 55, 31, 0.2);
}

.button-secondary {
    background: rgba(255, 251, 246, 0.84);
    color: var(--sage);
    border: 1px solid rgba(48, 68, 60, 0.12);
}

.hero-stats,
.feature-strip,
.three-up {
    display: grid;
    gap: 1rem;
}

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

.hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.2rem;
}

.stat-card,
.feature-card,
.content-card,
.quote-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.8rem;
    font-family: "Cormorant Garamond", serif;
    color: var(--sage);
}

.art-panel,
.hero-image-frame,
.panel-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.art-panel img,
.hero-image-frame img,
.panel-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.floating-note {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(28, 35, 30, 0.74);
    color: #f9f2e8;
    backdrop-filter: blur(14px);
}

.floating-note h2 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.section {
    padding: 2rem 0 5rem;
}

.top-tight {
    padding-top: 0;
}

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

.section-heading h2,
.story-panel h2,
.content-card h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.text-link,
.inline-link {
    color: var(--accent-deep);
    font-weight: 700;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.recipe-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 251, 246, 0.88);
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 58px rgba(39, 32, 24, 0.16);
}

.recipe-media img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.recipe-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.4rem;
}

.recipe-body h3 {
    font-size: 2rem;
}

.recipe-body p:not(.recipe-category) {
    color: var(--muted);
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
    color: var(--accent-deep);
    font-size: 0.9rem;
    font-weight: 700;
}

.story-grid,
.contact-grid,
.split-panel,
.three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.panel-image {
    min-height: 100%;
}

.quote-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(48, 68, 60, 0.96), rgba(27, 37, 32, 0.96));
    color: #f7efe4;
}

.quote-card p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-list {
    display: grid;
    gap: 1rem;
}

.contact-list strong {
    display: block;
    margin-bottom: 0.2rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

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

.form-field label {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--sage);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(48, 68, 60, 0.12);
    border-radius: 16px;
    background: #fffdf9;
    color: var(--text);
    font: inherit;
}

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

.form-feedback {
    margin: 0;
    color: var(--accent-deep);
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item h3 {
    font-size: 1.9rem;
}

.policy-copy h2 {
    margin-top: 2rem;
    font-size: 2rem;
}

.policy-copy p:last-child {
    margin-bottom: 0;
}

.recipe-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 1.5rem;
}

.recipe-sidebar,
.recipe-content {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.ingredients-list,
.direction-list {
    padding-left: 1.2rem;
    margin: 0;
}

.ingredients-list li,
.direction-list li {
    margin-bottom: 0.75rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(48, 68, 60, 0.14);
    background: rgba(255, 251, 246, 0.84);
    color: var(--sage);
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.site-footer {
    margin-top: 2rem;
    padding: 2rem 0 1.5rem;
    border-top: 1px solid rgba(48, 68, 60, 0.1);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 0.6rem;
}

.footer-copy {
    max-width: 40rem;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-content: start;
}

.footer-links a {
    color: var(--muted);
    font-weight: 700;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(48, 68, 60, 0.08);
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 1080px) {
    .hero-grid,
    .recipe-hero-grid,
    .story-grid,
    .contact-grid,
    .split-panel,
    .recipe-layout,
    .three-up,
    .feature-strip,
    .recipe-grid,
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .recipe-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 840px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.65rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.7rem;
        border-radius: 24px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero-grid,
    .recipe-hero-grid,
    .story-grid,
    .contact-grid,
    .split-panel,
    .three-up,
    .feature-strip,
    .recipe-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero,
    .page-hero,
    .recipe-hero {
        padding-top: 4.5rem;
    }

    .art-panel img,
    .hero-image-frame img,
    .panel-image {
        min-height: 360px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(calc(100% - 1.1rem), var(--max-width));
    }

    .hero-copy h1,
    .page-hero h1,
    .recipe-hero h1 {
        font-size: 2.8rem;
    }

    .brand {
        font-size: 1.75rem;
    }

    .recipe-body h3,
    .faq-item h3 {
        font-size: 1.7rem;
    }
}
