:root {
    --bg-main: #120f0d;
    --bg-soft: #1a1512;
    --surface: rgba(27, 21, 18, 0.9);
    --surface-2: rgba(37, 29, 25, 0.96);
    --surface-3: rgba(48, 38, 33, 0.94);

    --text-main: #f6efe7;
    --text-soft: #dbcdbc;
    --text-muted: #ac9c8d;

    --accent-red: #9e2336;
    --accent-red-2: #cb4b4f;
    --accent-gold: #bc8c42;
    --accent-gold-soft: #e0be7a;
    --accent-cream: #fff0c9;

    --border: rgba(255, 240, 217, 0.1);
    --shadow: rgba(0, 0, 0, 0.34);

    --container: 1180px;
    --container-narrow: 940px;

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;

    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;

    --transition: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p {
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--text-main);
    line-height: 1.7;
    background:
        radial-gradient(circle at top left, rgba(188, 140, 66, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(158, 35, 54, 0.16), transparent 32%),
        linear-gradient(180deg, #0e0c0b 0%, #15110f 30%, #110f0d 100%);
}

main {
    overflow: hidden;
}

.header_logo,
.mise-en-avant,
.menu-section,
.presentation,
.footer-container,
.footer-bottom {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.header_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 0 1.4rem;
}

.header_logo img {
    width: min(390px, 82vw);
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.36));
}

.hero {
    position: relative;
    min-height: 86vh;
    margin-bottom: var(--space-3xl);
}

.banner {
    position: relative;
    min-height: 86vh;
    overflow: hidden;
    background: #0a0908;
    box-shadow: 0 28px 55px var(--shadow);
}

.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.52) 38%, rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0.34) 100%);
    z-index: 1;
}

.banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(to top, rgba(18, 15, 13, 1), rgba(18, 15, 13, 0));
    z-index: 1;
}

.banner img {
    width: 100%;
    height: 86vh;
    object-fit: cover;
    object-position: center;
}

.phrase {
    position: absolute;
    top: 50%;
    left: clamp(1.5rem, 6vw, 6rem);
    transform: translateY(-50%);
    width: min(92%, 680px);
    z-index: 2;
}

.hero-kicker,
.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: var(--accent-gold-soft);
    margin-bottom: 1rem;
}

.phrase::before {
    content: "";
    display: block;
    width: 92px;
    height: 4px;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-red-2) 100%);
}

.phrase h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.02;
    max-width: 11ch;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), 0 10px 26px rgba(0, 0, 0, 0.3);
}

.hero-text {
    margin-top: 1.25rem;
    max-width: 38rem;
    font-size: 1.08rem;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 240, 217, 0.18);
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-gold) 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), background var(--transition);
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.28);
    filter: brightness(1.05);
}

.hero-button:focus-visible {
    outline: 3px solid rgba(224, 190, 122, 0.45);
    outline-offset: 4px;
}

.hero-button-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 240, 217, 0.2);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.hero-button-secondary:hover {
    background: rgba(255, 255, 255, 0.11);
    filter: none;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.hero-info span {
    padding: 0.65rem 1rem;
    border: 1px solid rgba(255, 240, 217, 0.14);
    border-radius: 999px;
    background: rgba(22, 18, 16, 0.68);
    color: var(--text-main);
    backdrop-filter: blur(8px);
}

.mise-en-avant {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: var(--space-3xl);
}

.Food,
.phrase2,
.image-future,
.presentation,
.footer-col {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.Food,
.image-future {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: #0f0d0c;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.Food {
    position: relative;
}

.Food::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(188, 140, 66, 0.08), rgba(158, 35, 54, 0.12));
    pointer-events: none;
}

.Food img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
}

.phrase2 {
    align-self: center;
    padding: 2.3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    border-left: 6px solid var(--accent-gold);
    background: linear-gradient(180deg, rgba(37, 29, 25, 0.98) 0%, rgba(23, 19, 17, 0.98) 100%);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    position: relative;
}

.phrase2::before {
    content: "和";
    position: absolute;
    right: 1rem;
    bottom: 0.2rem;
    font-size: 4.8rem;
    line-height: 1;
    color: rgba(224, 190, 122, 0.12);
    font-weight: 700;
}

.phrase2 h2 {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    line-height: 1.15;
    text-wrap: balance;
    margin-bottom: 1rem;
}

.phrase2 p {
    color: var(--text-soft);
    font-size: 1.02rem;
}

.image-future {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    background: linear-gradient(135deg, rgba(21, 17, 15, 0.98), rgba(39, 29, 24, 0.98));
}

.image-future img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center top;
}

.image-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.image-caption h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.image-caption p:last-child {
    color: var(--text-soft);
}

.menu-section {
    width: min(100% - 2rem, var(--container-narrow));
    margin-inline: auto;
    margin-bottom: var(--space-3xl);
}

.menu-copy {
    text-align: center;
    margin-bottom: 1.5rem;
}

.menu-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 0.9rem;
}

.menu-copy p:last-child {
    max-width: 44rem;
    margin-inline: auto;
    color: var(--text-soft);
}

.menu-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(28, 22, 19, 0.98) 0%, rgba(19, 16, 14, 0.98) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    padding: clamp(0.8rem, 2vw, 1.25rem);
}

.menu-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-gold) 100%);
}

.menu-card img {
    width: 100%;
    border-radius: calc(var(--radius-lg) - 10px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.presentation {
    width: min(100% - 2rem, var(--container-narrow));
    position: relative;
    overflow: hidden;
    padding: clamp(1.7rem, 3vw, 3rem);
    margin-bottom: var(--space-3xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(28, 22, 19, 0.98) 0%, rgba(19, 16, 14, 0.98) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.presentation::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-gold) 100%);
}

.presentation h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 1.6rem;
    text-align: center;
}

.presentation h2::after {
    content: "";
    display: block;
    width: 92px;
    height: 3px;
    margin: 0.9rem auto 0;
    border-radius: 999px;
    background: var(--accent-gold);
}

.presentation .section-kicker {
    text-align: center;
}

.text {
    max-width: 800px;
    margin-inline: auto;
}

.text p {
    margin-bottom: 1.2rem;
    color: var(--text-soft);
    font-size: 1.03rem;
    text-align: justify;
}

.text p:last-child {
    margin-bottom: 0;
}

.text strong {
    color: var(--accent-cream);
}

.footer {
    padding: 3.5rem 0 1.2rem;
    border-top: 1px solid rgba(188, 140, 66, 0.35);
    background: linear-gradient(180deg, rgba(20, 16, 14, 0.98) 0%, rgba(11, 10, 9, 1) 100%);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.footer-col {
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 240, 217, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
}

.footer-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-title img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-col h4 {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.footer-col p {
    color: var(--text-soft);
    font-size: 0.97rem;
    margin-bottom: 0.45rem;
}

.footer-col a {
    color: var(--accent-gold-soft);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.Food:hover,
.phrase2:hover,
.image-future:hover,
.presentation:hover,
.footer-col:hover {
    transform: translateY(-4px);
}

@media (max-width: 980px) {
    .hero,
    .banner,
    .banner img {
        min-height: 72vh;
        height: 72vh;
    }

    .phrase {
        width: min(92%, 600px);
        left: 2rem;
    }

    .phrase h1 {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
    }

    .mise-en-avant,
    .image-future {
        grid-template-columns: 1fr;
    }

    .Food img {
        min-height: 420px;
    }

    .image-future img {
        min-height: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .hero {
        display: grid;
        gap: 1.25rem;
        min-height: auto;
        margin-bottom: 3rem;
    }

    .banner,
    .banner img {
        min-height: 54vh;
        height: 54vh;
    }

    .banner::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.7) 100%);
    }

    .phrase {
        position: static;
        inset: auto;
        left: auto;
        top: auto;
        transform: none;
        width: min(100% - 1.6rem, 720px);
        margin: 0 auto;
        padding: 1.5rem;
        border: 1px solid rgba(255, 240, 217, 0.1);
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(31, 24, 21, 0.98) 0%, rgba(18, 15, 13, 0.98) 100%);
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
    }

    .phrase h1 {
        max-width: 13ch;
    }

    .hero-text {
        max-width: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-button,
    .hero-info span {
        width: 100%;
        text-align: center;
    }

    .menu-section,
    .presentation {
        width: min(100% - 1.6rem, var(--container));
    }

    .mise-en-avant {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .header_logo,
    .mise-en-avant,
    .menu-section,
    .presentation,
    .footer-container,
    .footer-bottom {
        width: min(100% - 1.1rem, var(--container));
    }

    .header_logo {
        padding: 0.9rem 0 1rem;
    }

    .header_logo img {
        width: min(250px, 72vw);
    }

    .hero {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .banner,
    .banner img {
        min-height: 42vh;
        height: 42vh;
    }

    .banner::after {
        height: 120px;
    }

    .phrase {
        width: min(100% - 1rem, 100%);
        margin: 0 auto;
        padding: 1.25rem;
        border-radius: 24px;
    }

    .phrase::before {
        width: 68px;
        margin-bottom: 0.8rem;
    }

    .hero-kicker,
    .section-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.15em;
        margin-bottom: 0.85rem;
    }

    .phrase h1 {
        font-size: 1.9rem;
        max-width: 11ch;
        line-height: 1.05;
    }

    .hero-text {
        margin-top: 0.95rem;
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .hero-actions {
        margin-top: 1.15rem;
        gap: 0.75rem;
    }

    .hero-button {
        min-height: 3rem;
        padding: 0.85rem 1rem;
        font-size: 0.96rem;
    }

    .hero-info {
        margin-top: 1rem;
    }

    .hero-info span {
        padding: 0.75rem 0.95rem;
        font-size: 0.92rem;
    }

    .mise-en-avant {
        gap: 1.2rem;
        margin-top: 0;
        margin-bottom: 3rem;
    }

    .Food img {
        min-height: 280px;
    }

    .phrase2,
    .image-caption,
    .presentation,
    .footer-col {
        padding: 1.2rem;
    }

    .phrase2 {
        border-left-width: 4px;
        border-radius: 24px;
    }

    .phrase2::before {
        font-size: 2.8rem;
        right: 0.8rem;
    }

    .phrase2 h2,
    .menu-copy h2,
    .presentation h2,
    .image-caption h3 {
        text-wrap: pretty;
    }

    .image-future img {
        min-height: 220px;
    }

    .menu-section {
        margin-bottom: 3rem;
    }

    .menu-copy {
        margin-bottom: 1rem;
    }

    .menu-card {
        padding: 0.65rem;
        border-radius: 24px;
    }

    .menu-card img {
        border-radius: 16px;
    }

    .presentation {
        padding-top: 1.45rem;
        border-radius: 24px;
    }

    .text p {
        text-align: left;
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .footer {
        padding: 2.6rem 0 1rem;
    }

    .footer-container {
        gap: 1rem;
    }

    .footer-col {
        border-radius: 20px;
    }

    .footer-title {
        gap: 0.65rem;
        margin-bottom: 0.7rem;
    }

    .footer-title img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 420px) {
    .hero {
        gap: 0.85rem;
    }

    .banner,
    .banner img {
        min-height: 38vh;
        height: 38vh;
    }

    .phrase {
        margin: 0 auto;
        padding: 1rem;
    }

    .phrase h1 {
        font-size: 1.7rem;
    }

    .hero-button {
        font-size: 0.92rem;
    }

    .menu-copy p:last-child,
    .image-caption p:last-child,
    .text p,
    .footer-col p {
        font-size: 0.95rem;
    }
}





