:root {
    --chef-bg: #f7efe3;
    --chef-cream: #fff8ed;
    --chef-paper: #fffdf8;
    --chef-ink: #201914;
    --chef-muted: #6e6258;
    --chef-dark: #16241f;
    --chef-green: #304e3f;
    --chef-tomato: #bd4b38;
    --chef-gold: #c99445;
    --chef-line: rgba(32, 25, 20, 0.12);
    --chef-line-dark: rgba(255, 248, 237, 0.14);
    --chef-shadow: 0 22px 50px rgba(32, 25, 20, 0.12);
    --chef-accent-shadow: color-mix(in srgb, var(--chef-tomato) 28%, transparent);
    --chef-shell: min(1180px, calc(100vw - 48px));
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--chef-ink);
    background: var(--chef-bg);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.chef-shell {
    width: var(--chef-shell);
    margin: 0 auto;
}

.chef-page {
    position: relative;
    overflow: clip;
    background:
        linear-gradient(135deg, rgba(255, 248, 237, 0.84), rgba(247, 239, 227, 0.88)),
        repeating-linear-gradient(90deg, rgba(32, 25, 20, 0.025) 0 1px, transparent 1px 92px);
}

.chef-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 16px 0;
    border-bottom: 1px solid rgba(32, 25, 20, 0.08);
    background: rgba(247, 239, 227, 0.82);
    backdrop-filter: blur(18px);
}

.chef-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.chef-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.chef-brand__mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--chef-dark);
    color: var(--chef-cream);
    font-family: "Fraunces", Georgia, serif;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(22, 36, 31, 0.2);
}

.chef-brand__copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.chef-brand__name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.chef-brand__tagline {
    max-width: 220px;
    color: var(--chef-muted);
    font-size: 12px;
    line-height: 1.35;
}

.chef-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.chef-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--chef-muted);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.chef-nav__link:hover {
    color: var(--chef-ink);
    background: rgba(189, 75, 56, 0.1);
    transform: translateY(-1px);
}

.chef-section {
    position: relative;
    padding: 92px 0;
    scroll-margin-top: 108px;
}

.chef-section--cream {
    background: rgba(255, 248, 237, 0.72);
}

.chef-section--dark {
    color: var(--chef-cream);
    background:
        linear-gradient(180deg, rgba(48, 78, 63, 0.84), rgba(22, 36, 31, 0.96)),
        repeating-linear-gradient(135deg, rgba(255, 248, 237, 0.045) 0 1px, transparent 1px 22px);
}

.chef-section--dark .chef-section-title,
.chef-section--dark .chef-menu-row__title {
    color: var(--chef-cream);
}

.chef-section--dark .chef-copy,
.chef-section--dark .chef-menu-row__description {
    color: rgba(255, 248, 237, 0.78);
}

.chef-section--dark .chef-eyebrow,
.chef-section--dark .chef-menu-row__course,
.chef-section--dark .chef-menu-row__note {
    color: var(--chef-gold);
}

.chef-hero {
    padding-top: 50px;
}

.chef-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 52px;
    align-items: center;
}

.chef-eyebrow,
.chef-card-kicker,
.chef-footer__title {
    color: var(--chef-tomato);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.chef-title,
.chef-section-title,
.chef-card-title,
.chef-menu-row__title {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: 0;
}

.chef-title {
    max-width: 11ch;
    margin-top: 18px;
    font-size: clamp(3rem, 6.4vw, 5.7rem);
}

.chef-section-title {
    margin-top: 16px;
    font-size: clamp(2.25rem, 4.1vw, 4.25rem);
}

.chef-section-title--small {
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.chef-copy,
.chef-card-copy,
.chef-menu-row__description,
.chef-reservation-card__text,
.chef-footer__copy {
    color: var(--chef-muted);
    font-size: 16px;
    line-height: 1.8;
}

.chef-copy--hero {
    max-width: 590px;
    margin: 26px 0 0;
}

.chef-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.chef-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.chef-button:hover {
    transform: translateY(-2px);
}

.chef-button--primary {
    color: #fffaf1;
    background: linear-gradient(135deg, var(--chef-tomato), #d96d48);
    box-shadow: 0 16px 32px var(--chef-accent-shadow);
}

.chef-button--ghost {
    color: var(--chef-ink);
    background: rgba(255, 253, 248, 0.68);
    border-color: rgba(32, 25, 20, 0.12);
}

.chef-button--full {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.chef-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 36px;
}

.chef-stat {
    min-height: 100px;
    padding: 18px;
    border: 1px solid var(--chef-line);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.68);
}

.chef-stat strong {
    display: block;
    color: var(--chef-ink);
    font-family: "Fraunces", Georgia, serif;
    font-size: 30px;
    line-height: 1;
}

.chef-stat span {
    display: block;
    margin-top: 8px;
    color: var(--chef-muted);
    font-size: 13px;
    line-height: 1.45;
}

.chef-hero__media {
    position: relative;
    min-height: 690px;
}

.chef-plate-card {
    position: absolute;
    inset: 0 0 0 72px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #b06b48;
    background-position: center;
    background-size: cover;
    box-shadow: var(--chef-shadow);
    animation: chefRise 0.85s ease both;
}

.chef-plate-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(22, 36, 31, 0.04), rgba(22, 36, 31, 0.42)),
        linear-gradient(90deg, rgba(247, 239, 227, 0.18), transparent 38%);
}

.chef-plate-card__glow {
    position: absolute;
    left: 32px;
    bottom: 32px;
    width: min(58%, 310px);
    height: 6px;
    border-radius: 999px;
    background: var(--chef-gold);
    box-shadow: 0 0 30px rgba(201, 148, 69, 0.46);
    animation: chefPulse 2.6s ease-in-out infinite;
}

.chef-reservation-card {
    position: absolute;
    left: 0;
    bottom: 42px;
    width: min(310px, calc(100% - 36px));
    padding: 24px;
    border: 1px solid rgba(255, 248, 237, 0.64);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.9);
    box-shadow: 0 18px 42px rgba(32, 25, 20, 0.16);
    backdrop-filter: blur(16px);
    animation: chefFloat 5s ease-in-out infinite;
}

.chef-reservation-card__label {
    color: var(--chef-tomato);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.chef-reservation-card__value {
    display: block;
    margin-top: 10px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 38px;
    line-height: 1;
}

.chef-reservation-card__text {
    margin: 12px 0 0;
    font-size: 14px;
}

.chef-section-intro {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.chef-section-intro--dark .chef-copy {
    color: rgba(255, 248, 237, 0.76);
}

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

.chef-special-card,
.chef-feature,
.chef-step,
.chef-testimonial,
.chef-chef-card,
.chef-form-panel {
    border: 1px solid var(--chef-line);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.8);
    box-shadow: 0 16px 36px rgba(32, 25, 20, 0.07);
}

.chef-special-card,
.chef-step,
.chef-testimonial,
.chef-feature {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.chef-special-card:hover,
.chef-step:hover,
.chef-testimonial:hover,
.chef-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(189, 75, 56, 0.26);
    box-shadow: 0 22px 48px rgba(32, 25, 20, 0.1);
}

.chef-special-card {
    overflow: hidden;
}

.chef-special-card__image {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
    background: #d8b480;
}

.chef-special-card__body {
    padding: 24px;
}

.chef-card-title {
    margin-top: 12px;
    font-size: 31px;
}

.chef-card-copy {
    margin: 14px 0 0;
}

.chef-split {
    display: grid;
    grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: center;
}

.chef-split__media {
    position: relative;
}

.chef-split__media::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 42%;
    height: 42%;
    border-right: 2px solid var(--chef-gold);
    border-bottom: 2px solid var(--chef-gold);
    pointer-events: none;
}

.chef-split__image,
.chef-chef-card__image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background: #cfa87a;
}

.chef-split__image {
    aspect-ratio: 0.96 / 1.12;
    box-shadow: var(--chef-shadow);
}

.chef-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.chef-feature {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
}

.chef-feature__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--chef-cream);
    background: var(--chef-green);
}

.chef-feature__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

.chef-menu-board {
    display: grid;
    gap: 12px;
}

.chef-menu-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 120px;
    gap: 22px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--chef-line-dark);
    border-radius: 8px;
    background: rgba(255, 248, 237, 0.06);
}

.chef-menu-row__course,
.chef-menu-row__note {
    color: var(--chef-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.chef-menu-row__title {
    color: var(--chef-cream);
    font-size: 28px;
}

.chef-menu-row__description {
    margin: 10px 0 0;
    color: rgba(255, 248, 237, 0.72);
}

.chef-menu-row__note {
    text-align: right;
}

.chef-process__grid,
.chef-testimonial-layout,
.chef-contact__grid,
.chef-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 36px;
    align-items: start;
}

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

.chef-step {
    padding: 20px;
}

.chef-step__number {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    color: var(--chef-cream);
    background: var(--chef-tomato);
    font-weight: 800;
}

.chef-chef-card {
    overflow: hidden;
}

.chef-chef-card__image {
    aspect-ratio: 0.7 / 1.1;
}

.chef-chef-card__body {
    padding: 26px;
}

.chef-testimonial-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.chef-testimonial {
    padding: 24px;
}

.chef-testimonial__quote {
    margin: 0;
    color: var(--chef-ink);
    font-family: "Fraunces", Georgia, serif;
    font-size: 24px;
    line-height: 1.28;
}

.chef-testimonial__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 18px;
    color: var(--chef-muted);
}

.chef-contact {
    color: var(--chef-cream);
    background:
        linear-gradient(135deg, rgba(22, 36, 31, 0.98), rgba(48, 78, 63, 0.96)),
        repeating-linear-gradient(90deg, rgba(255, 248, 237, 0.04) 0 1px, transparent 1px 70px);
}

.chef-contact .chef-section-title {
    color: var(--chef-cream);
}

.chef-contact .chef-eyebrow {
    color: var(--chef-gold);
}

.chef-contact .chef-copy {
    color: rgba(255, 248, 237, 0.76);
}

.chef-contact-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.chef-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 248, 237, 0.84);
}

.chef-contact-item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    border-radius: 8px;
    color: var(--chef-dark);
    background: var(--chef-gold);
}

.chef-form-panel {
    padding: 28px;
    background: var(--chef-paper);
}

.chef-form {
    display: grid;
    gap: 14px;
}

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

.chef-input {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(32, 25, 20, 0.14);
    border-radius: 8px;
    background: #fff;
    color: var(--chef-ink);
    font: inherit;
    box-sizing: border-box;
}

textarea.chef-input {
    min-height: 142px;
    padding-top: 15px;
    resize: vertical;
}

.chef-input:focus {
    border-color: rgba(189, 75, 56, 0.42);
    box-shadow: 0 0 0 4px rgba(189, 75, 56, 0.1);
    outline: none;
}

.chef-input--full {
    grid-column: 1 / -1;
}

.chef-footer {
    padding: 84px 0 34px;
    color: rgba(255, 248, 237, 0.78);
    background: #101916;
}

.chef-footer__grid {
    grid-template-columns: 1.25fr 0.8fr 0.95fr;
}

.chef-footer .chef-brand__name,
.chef-footer .chef-brand__tagline,
.chef-footer a {
    color: rgba(255, 248, 237, 0.86);
}

.chef-footer__copy {
    max-width: 440px;
    margin: 22px 0 0;
    color: rgba(255, 248, 237, 0.66);
}

.chef-footer__links,
.chef-footer__contact {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.chef-footer__title--social {
    margin-top: 26px;
}

.chef-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.chef-socials a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 248, 237, 0.08);
    color: var(--chef-cream);
    transition: transform 0.2s ease, background 0.2s ease;
}

.chef-socials a:hover {
    transform: translateY(-2px);
    background: rgba(201, 148, 69, 0.26);
}

.chef-footer__bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 248, 237, 0.1);
}

.chef-footer__bottom p {
    margin: 0;
    font-size: 14px;
}

.chef-stat--add,
.chef-special-card--add,
.chef-feature--add,
.chef-menu-row--add,
.chef-step--add,
.chef-testimonial--add {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.04);
}

@keyframes chefRise {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes chefFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes chefPulse {
    0%,
    100% {
        opacity: 0.58;
        transform: scaleX(0.92);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@media (max-width: 1100px) {
    .chef-hero__grid,
    .chef-split,
    .chef-process__grid,
    .chef-testimonial-layout,
    .chef-contact__grid,
    .chef-footer__grid {
        grid-template-columns: 1fr;
    }

    .chef-hero__media {
        min-height: 620px;
    }

    .chef-plate-card {
        left: 0;
    }

    .chef-special-grid,
    .chef-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    :root {
        --chef-shell: min(100vw - 28px, 100%);
    }

    .chef-header__inner {
        align-items: stretch;
        flex-direction: column;
    }

    .chef-nav__list {
        justify-content: flex-start;
    }

    .chef-section {
        padding: 70px 0;
    }

    .chef-title {
        max-width: 12ch;
        font-size: clamp(2.7rem, 14vw, 4.3rem);
    }

    .chef-stats,
    .chef-special-grid,
    .chef-step-grid,
    .chef-form-grid {
        grid-template-columns: 1fr;
    }

    .chef-hero__media {
        min-height: auto;
    }

    .chef-plate-card {
        position: relative;
        inset: auto;
        min-height: 470px;
    }

    .chef-reservation-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        margin-top: 14px;
        animation: none;
    }

    .chef-menu-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .chef-menu-row__note {
        text-align: left;
    }

    .chef-form-panel {
        padding: 20px;
    }
}

@media (max-width: 460px) {
    .chef-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .chef-button {
        width: 100%;
    }

    .chef-brand__tagline {
        max-width: 190px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
