:root {
    --bg: #f7f8f4;
    --surface: #ffffff;
    --ink: #171a16;
    --muted: #5f665d;
    --line: rgba(23, 26, 22, 0.12);
    --accent: #17482f;
    --accent-2: #e75832;
    --gold: #b98a35;
    --soft: #eef2e8;
    --shadow: 0 28px 80px rgba(19, 31, 22, 0.14);
    --shadow-soft: 0 18px 48px rgba(19, 31, 22, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(231, 88, 50, 0.10), transparent 28rem),
        radial-gradient(circle at 88% 18%, rgba(23, 72, 47, 0.10), transparent 30rem),
        var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    background-image: linear-gradient(rgba(23, 26, 22, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 26, 22, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

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

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

.site-header,
.site-footer,
.hero-content,
.page-section,
.recipe-detail,
.feature-strip {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    backdrop-filter: blur(18px);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 900;
}

.site-logo::before {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    content: "";
    background: conic-gradient(from 160deg, var(--accent), #66a06b, var(--accent-2), var(--accent));
    box-shadow: 0 10px 24px rgba(23, 72, 47, 0.22);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 800;
}

.site-nav a {
    border-radius: 999px;
    padding: 9px 12px;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
    background: rgba(23, 72, 47, 0.08);
    color: var(--accent);
    transform: translateY(-1px);
}

.nav-menu {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero {
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(23, 26, 22, 0.06);
    background:
        linear-gradient(90deg, rgba(10, 14, 10, 0.84), rgba(10, 14, 10, 0.54) 45%, rgba(10, 14, 10, 0.20)),
        url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=2200&q=86") center/cover;
    color: #fff;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 420px);
    align-items: center;
    gap: 52px;
    padding: 90px 0;
}

.hero h1 {
    max-width: 780px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.7rem, 9vw, 8.8rem);
    line-height: 0.86;
    text-wrap: balance;
}

.hero p:not(.eyebrow) {
    max-width: 600px;
    margin: 26px 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.22rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--accent-2);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(231, 88, 50, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    background: #d94b29;
    box-shadow: 0 22px 44px rgba(231, 88, 50, 0.30);
    transform: translateY(-2px);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.hero-feature-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.32);
    isolation: isolate;
    transform: rotate(1.2deg);
    transition: transform 260ms ease;
}

.hero-feature-card:hover {
    transform: rotate(0deg) translateY(-4px);
}

.hero-feature-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-feature-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.04) 58%);
}

.hero-card-label,
.hero-card-title {
    position: absolute;
    left: 24px;
    right: 24px;
}

.hero-card-label {
    top: 24px;
    width: fit-content;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.90);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-card-title {
    bottom: 112px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1;
}

.hero-feature-card .recipe-meta {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    margin-top: -44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.feature-strip div {
    padding: 26px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
}

.feature-strip strong,
.feature-strip span {
    display: block;
}

.feature-strip strong {
    margin-bottom: 4px;
    font-size: 1rem;
}

.feature-strip span {
    color: var(--muted);
    font-size: 0.95rem;
}

.page-section {
    padding: 88px 0;
}

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

.section-heading h1,
.section-heading h2,
.recipe-detail-header h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 5vw, 5rem);
    line-height: 0.95;
    text-wrap: balance;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent-2);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.recipe-search {
    min-width: min(100%, 330px);
}

.recipe-search span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
}

.recipe-search input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    outline: none;
    box-shadow: var(--shadow-soft);
}

.recipe-search input:focus {
    border-color: rgba(23, 72, 47, 0.45);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.filter-chip {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 900;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

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

.post-card {
    overflow: hidden;
    border: 1px solid rgba(23, 26, 22, 0.10);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.post-card:hover {
    border-color: rgba(23, 72, 47, 0.25);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.post-card[hidden] {
    display: none;
}

.card-image {
    position: relative;
    overflow: hidden;
    background: var(--soft);
}

.card-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 420ms ease;
}

.post-card:hover .card-image img {
    transform: scale(1.06);
}

.card-image span {
    position: absolute;
    top: 14px;
    left: 14px;
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(255, 255, 255, 0.90);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 950;
}

.post-card-body {
    padding: 24px;
}

.post-card h2,
.post-card h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    line-height: 1.08;
}

.post-card p {
    color: var(--muted);
}

.rating {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 0.84rem;
    font-weight: 950;
    text-transform: uppercase;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.recipe-meta li {
    border: 1px solid rgba(23, 26, 22, 0.10);
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(238, 242, 232, 0.88);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 900;
}

.recipe-meta span {
    margin-right: 5px;
    color: var(--muted);
    font-weight: 800;
}

.recipe-detail {
    padding: 78px 0;
}

.recipe-detail-header {
    max-width: 900px;
    margin-bottom: 30px;
}

.featured-image {
    overflow: hidden;
    margin: 0 0 38px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.featured-image img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.content {
    max-width: 780px;
    font-size: 1.1rem;
}

.content h2,
.content h3 {
    margin-top: 1.9em;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.1;
}

.content li + li {
    margin-top: 7px;
}

.empty-state {
    border: 1px dashed rgba(23, 72, 47, 0.28);
    border-radius: 8px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--muted);
    font-weight: 800;
}

.contact-hero {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 86px 0 100px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
    gap: 54px;
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 110px;
}

.contact-copy h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 6.4rem);
    line-height: 0.9;
    text-wrap: balance;
}

.contact-copy p:not(.eyebrow) {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.16rem;
}

.contact-form {
    display: grid;
    gap: 18px;
    border: 1px solid rgba(23, 26, 22, 0.10);
    border-radius: 8px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 950;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 15px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
    min-height: 50px;
}

.contact-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
    background-position: calc(100% - 18px) 21px, calc(100% - 12px) 21px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(23, 72, 47, 0.48);
    box-shadow: 0 0 0 4px rgba(23, 72, 47, 0.10);
}

.contact-form .button {
    width: fit-content;
    border: 0;
    cursor: pointer;
}

.form-notice {
    margin: 0;
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 900;
}

.form-notice.success {
    background: rgba(23, 72, 47, 0.10);
    color: var(--accent);
}

.form-notice.error {
    background: rgba(231, 88, 50, 0.12);
    color: #a3331e;
}

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

.reservation-form {
    position: relative;
    overflow: hidden;
}

.reservation-form::before {
    position: absolute;
    top: -90px;
    right: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    content: "";
    background: rgba(231, 88, 50, 0.12);
    pointer-events: none;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 30px 0 46px;
    color: var(--muted);
}

.premium-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

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

    *,
    *::before,
    *::after {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
    }
}

@media (max-width: 920px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-feature-card {
        min-height: 420px;
        transform: none;
    }

    .feature-strip,
    .post-grid,
    .contact-hero {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        position: static;
    }

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

@media (max-width: 640px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav,
    .nav-menu {
        flex-wrap: wrap;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 64px 0 84px;
    }

    .hero h1 {
        font-size: clamp(3rem, 18vw, 4.5rem);
    }

    .feature-strip {
        margin-top: -32px;
    }
}
