:root{
    --r2-bg: #dfe5ee;
    --r2-bg-soft: #e8edf4;
    --r2-surface: #edf1f6;
    --r2-card: #f6f7f9;
    --r2-white: #ffffff;
    --r2-border: rgba(90, 105, 128, 0.18);
    --r2-border-strong: rgba(63, 76, 97, 0.28);
    --r2-text: #273b59;
    --r2-text-soft: #536378;
    --r2-accent: #c5a36b;
    --r2-accent-dark: #a98a58;
    --r2-shadow: 0 14px 40px rgba(31, 42, 57, 0.10);
    --r2-shadow-soft: 0 8px 22px rgba(31, 42, 57, 0.07);
    --r2-max: 1380px;
    --r2-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --r2-sans: "Helvetica Neue", Arial, sans-serif;
}

*{
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    background: var(--r2-bg);
    color: var(--r2-text);
    font-family: var(--r2-sans);
}

img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a{
    color: inherit;
    text-decoration: none;
}

.restaurant2-page{
    min-height: 100vh;
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.35), rgba(255,255,255,0.10)),
        var(--r2-bg);
}

.r2-header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    background: rgba(233, 238, 245, 0.38);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.25);
}

.r2-header-inner{
    width: min(var(--r2-max), calc(100% - 64px));
    margin: 0 auto;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.r2-brand{
    font-family: var(--r2-serif);
    font-size: 32px;
    letter-spacing: 0.14em;
    color: var(--r2-text);
    font-weight: 700;
    text-align: center;
}

.r2-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.r2-nav a{
    position: relative;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    color: rgba(39, 59, 89, 0.82);
    padding: 4px 0;
}

.r2-nav a.is-active::after,
.r2-nav a:hover::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--r2-accent);
}

.r2-hero{
    position: relative;
    min-height: 10vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-bottom: 8px solid rgba(255,255,255,0.55);
}

.r2-hero-media{
    position: absolute;
    inset: 0;
}

.r2-hero-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(237, 242, 248, 0.92) 0%, rgba(237, 242, 248, 0.88) 35%, rgba(237, 242, 248, 0.52) 55%, rgba(237, 242, 248, 0.28) 100%),
        linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.05) 100%);
}

.r2-hero-content{
    position: relative;
    z-index: 2;
    width: min(var(--r2-max), calc(100% - 64px));
    margin: 0 auto;
    padding: 160px 0 60px;
    max-width: 1380px;
}

.r2-kicker-group{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    position: relative;
}

.r2-kicker-group::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 140px;
    height: 2px;
    background: var(--r2-accent);
}

.r2-kicker-group span{
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--r2-accent-dark);
}

.r2-kicker-group span:not(:last-child)::after{
    content: "•";
    margin-left: 12px;
    color: rgba(197, 163, 107, 0.95);
}

.r2-hero h1{
    width: min(680px, 100%);
    margin: 0 0 22px;
    font-family: var(--r2-serif);
    font-size: clamp(56px, 5.2vw, 82px);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--r2-text);
}

.r2-hero p{
    width: min(610px, 100%);
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
    color: var(--r2-text-soft);
}

.r2-hero-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.r2-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 32px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.r2-btn-primary{
    background: var(--r2-text);
    color: var(--r2-white);
    border-color: var(--r2-accent-dark);
    box-shadow: var(--r2-shadow-soft);
}

.r2-btn-primary:hover{
    background: #30496d;
}

.r2-btn-secondary{
    background: rgba(255,255,255,0.28);
    color: var(--r2-text);
    border-color: var(--r2-border-strong);
    backdrop-filter: blur(1px);
}

.r2-btn-secondary:hover{
    background: rgba(255,255,255,0.52);
}

.r2-main{
    width: min(var(--r2-max), calc(100% - 64px));
    margin: 0 auto;
    padding: 28px 0 0;
}

.r2-story{
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 54px;
    align-items: center;
    padding: 28px 12px 18px;
}

.r2-section-label{
    position: relative;
    display: inline-block;
    margin: 0 0 22px;
    padding-right: 34px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--r2-accent-dark);
}

.r2-section-label::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 22px;
    height: 2px;
    background: var(--r2-accent);
    transform: translateY(-50%);
}

.r2-story h2,
.r2-signature h2,
.r2-experience h2,
.r2-gallery h2,
.r2-reserve h2{
    margin: 0 0 18px;
    font-family: var(--r2-serif);
    font-size: clamp(38px, 3.4vw, 58px);
    line-height: 0.98;
    font-weight: 600;
    color: var(--r2-text);
    letter-spacing: -0.02em;
}

.r2-story p:not(.r2-section-label),
.r2-signature p:not(.r2-section-label),
.r2-reserve p:not(.r2-section-label){
    margin: 0 0 18px;
    font-size: 19px;
    line-height: 1.75;
    color: var(--r2-text-soft);
}

.r2-story-image{
    background: var(--r2-white);
    border: 1px solid rgba(255,255,255,0.85);
    padding: 10px;
    box-shadow: var(--r2-shadow);
}

.r2-story-image img{
    aspect-ratio: 1.42 / 1;
}

.r2-feature-strip{
    margin: 18px 0 24px;
    background: rgba(255,255,255,0.24);
    border: 1px solid var(--r2-border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.r2-feature-card{
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 26px 28px;
    min-height: 168px;
    position: relative;
}

.r2-feature-card:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    height: calc(100% - 40px);
    background: var(--r2-border);
}

.r2-feature-icon{
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    border: 1px solid var(--r2-border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--r2-accent-dark);
}

.r2-feature-icon svg{
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.r2-feature-number{
    margin-bottom: 10px;
    font-family: var(--r2-serif);
    font-size: 34px;
    line-height: 1;
    color: var(--r2-accent-dark);
}

.r2-feature-body h3{
    margin: 0 0 6px;
    font-family: var(--r2-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--r2-text);
}

.r2-feature-body p{
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: var(--r2-text-soft);
}

.r2-signature{
    display: grid;
    grid-template-columns: 1.06fr 1fr;
    gap: 46px;
    align-items: center;
    padding: 26px 0 6px;
}

.r2-signature-image{
    background: var(--r2-white);
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: var(--r2-shadow);
    padding: 10px;
}

.r2-signature-image img{
    aspect-ratio: 1.65 / 1;
}

.r2-check-list{
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 34px;
}

.r2-check-list li{
    position: relative;
    padding-left: 22px;
    font-size: 18px;
    line-height: 1.55;
    color: var(--r2-text-soft);
}

.r2-check-list li::before{
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--r2-accent-dark);
    font-weight: 700;
}

.r2-experience{
    display: grid;
    grid-template-columns: 1fr 1.9fr;
    gap: 34px;
    align-items: start;
    padding: 36px 0 30px;
}

.r2-experience-intro{
    padding-top: 18px;
}

.r2-experience-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.r2-exp-card{
    min-height: 300px;
    position: relative;
    overflow: hidden;
    background: #d9dee6;
    box-shadow: var(--r2-shadow-soft);
}

.r2-exp-image{
    position: absolute;
    inset: 0;
}

.r2-exp-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 28, 42, 0.02) 22%, rgba(23, 33, 48, 0.78) 100%);
}

.r2-exp-content{
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 300px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 18px 20px;
    color: var(--r2-white);
}

.r2-exp-content h3{
    margin: 0 0 8px;
    font-family: var(--r2-serif);
    font-size: 20px;
    font-weight: 700;
}

.r2-exp-content p{
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.86);
}

.r2-gallery{
    display: grid;
    grid-template-columns: 1fr 1.9fr;
    gap: 34px;
    align-items: center;
    padding: 6px 0 10px;
}

.r2-gallery-row{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.r2-gallery-thumb{
    background: var(--r2-white);
    border: 1px solid rgba(255,255,255,0.88);
    padding: 6px;
    box-shadow: var(--r2-shadow-soft);
}

.r2-gallery-thumb img{
    aspect-ratio: 1.15 / 1;
}

.r2-reserve{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 34px;
    align-items: stretch;
    padding: 10px 0 28px;
}

.r2-reserve-side{
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 18px;
    align-items: start;
}

.r2-reserve-mark{
    color: rgba(169, 138, 88, 0.55);
    padding-top: 18px;
}

.r2-reserve-mark svg{
    width: 64px;
    height: auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.r2-reserve-panel{
    background: rgba(255,255,255,0.48);
    border: 1px solid var(--r2-border);
    box-shadow: var(--r2-shadow-soft);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px 34px;
}

.r2-reserve-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 24px 34px;
}

.r2-reserve-grid h3{
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--r2-text-soft);
}

.r2-reserve-grid p{
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--r2-text);
}

.r2-footer{
    padding: 18px 20px 22px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: rgba(39, 59, 89, 0.72);
    border-top: 1px solid rgba(255,255,255,0.35);
    background: rgba(181, 193, 210, 0.35);
}

@media (max-width: 1180px){
    .r2-story,
    .r2-signature,
    .r2-experience,
    .r2-gallery,
    .r2-reserve{
        grid-template-columns: 1fr;
    }

    .r2-experience-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .r2-gallery-row{
        grid-template-columns: repeat(3, 1fr);
    }

    .r2-reserve-panel{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px){
    .r2-header{
        position: relative;
        background: rgba(233, 238, 245, 0.94);
        border-bottom: 1px solid var(--r2-border);
    }

    .r2-header-inner{
        width: min(var(--r2-max), calc(100% - 32px));
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
        gap: 16px;
    }

    .r2-nav{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 28px;
    }

    .r2-hero{
        min-height: auto;
    }

    .r2-hero-content,
    .r2-main{
        width: min(var(--r2-max), calc(100% - 32px));
    }

    .r2-hero-content{
        padding: 72px 0 90px;
    }

    .r2-feature-strip{
        grid-template-columns: 1fr;
    }

    .r2-feature-card:not(:last-child)::after{
        top: auto;
        right: auto;
        left: 28px;
        bottom: 0;
        width: calc(100% - 56px);
        height: 1px;
    }

    .r2-experience-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px){
    .r2-brand{
        font-size: 20px;
    }

    .r2-hero h1{
        font-size: 48px;
    }

    .r2-hero p,
    .r2-story p:not(.r2-section-label),
    .r2-signature p:not(.r2-section-label),
    .r2-reserve p:not(.r2-section-label){
        font-size: 17px;
    }

    .r2-story h2,
    .r2-signature h2,
    .r2-experience h2,
    .r2-gallery h2,
    .r2-reserve h2{
        font-size: 40px;
    }

    .r2-feature-card{
        flex-direction: column;
        align-items: flex-start;
    }

    .r2-check-list{
        grid-template-columns: 1fr;
    }

    .r2-gallery-row{
        grid-template-columns: repeat(2, 1fr);
    }

    .r2-reserve-side{
        grid-template-columns: 1fr;
    }

    .r2-reserve-grid{
        grid-template-columns: 1fr;
    }

    .r2-reserve-panel{
        padding: 26px 22px;
    }

    .r2-btn{
        width: 100%;
    }
}