:root {
    --ib-black: #14110f;
    --ib-ivory: #f6f0e8;
    --ib-red: #b8322a;
    --ib-green: #183c32;
    --ib-gold: #d7a84f;
    --ib-stone: #d8d1c7;
    --ib-white: #fffdf8;
    --ib-muted: rgba(255, 253, 248, .72);
    --ib-shadow: 0 24px 70px rgba(20, 17, 15, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ib-black);
}

.ib-page {
    min-height: 100vh;
    color: var(--ib-black);
    background: var(--ib-ivory);
    font-family: Manrope, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

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

.ib-page a {
    color: inherit;
    text-decoration: none;
}

.ib-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 28px;
    padding: 28px clamp(20px, 5vw, 58px);
    color: var(--ib-white);
    transition: background .28s ease, padding .28s ease, backdrop-filter .28s ease;
}

.ib-header.is-scrolled,
.ib-header.is-open {
    padding-top: 16px;
    padding-bottom: 16px;
    background: rgba(20, 17, 15, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 253, 248, .09);
}

.ib-logo {
    display: inline-grid;
    width: max-content;
    color: var(--ib-white);
    line-height: 1;
    text-transform: uppercase;
}

.ib-logo-mark {
    color: var(--ib-gold);
    font-size: 23px;
    line-height: 1;
}

.ib-logo-text {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(24px, 2.3vw, 34px);
    letter-spacing: 0;
}

.ib-logo-sub {
    margin-top: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.ib-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 38px);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.ib-nav a {
    position: relative;
    padding: 10px 0;
    color: rgba(255, 253, 248, .88);
}

.ib-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--ib-gold);
    transition: right .22s ease;
}

.ib-nav a:hover::after,
.ib-nav a.is-active::after {
    right: 0;
}

.ib-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 253, 248, .24);
    background: rgba(255, 253, 248, .08);
    color: var(--ib-white);
}

.ib-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.ib-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 26px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.ib-btn:hover {
    transform: translateY(-2px);
}

.ib-btn-primary {
    background: var(--ib-red);
    color: var(--ib-white);
}

.ib-btn-primary:hover {
    background: #9f2922;
}

.ib-btn-glass {
    border-color: rgba(255, 253, 248, .62);
    color: var(--ib-white);
    background: rgba(255, 253, 248, .03);
}

.ib-btn-dark {
    background: var(--ib-green);
    color: var(--ib-white);
}

.ib-btn-outline {
    border-color: rgba(255, 253, 248, .72);
    color: var(--ib-white);
}

.ib-btn-outline-light {
    border-color: rgba(255, 253, 248, .8);
    color: var(--ib-white);
}

.ib-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 148px clamp(22px, 6vw, 76px) 92px;
    color: var(--ib-white);
    background-size: cover;
    background-position: center;
}

.ib-hero-content {
    width: min(790px, 100%);
}

.ib-eyebrow {
    margin: 0 0 18px;
    color: var(--ib-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ib-hero h1,
.ib-page-hero h1 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(62px, 10vw, 126px);
    font-weight: 600;
    line-height: .92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ib-hero p:not(.ib-eyebrow),
.ib-page-hero p:not(.ib-eyebrow) {
    max-width: 640px;
    margin: 24px 0 0;
    color: rgba(255, 253, 248, .82);
    font-size: clamp(17px, 2vw, 21px);
}

.ib-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.ib-info-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, #12352c, #0f2b24);
    color: var(--ib-white);
    padding: 0 clamp(18px, 5vw, 58px);
}

.ib-info-bar article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 28px 20px;
    border-right: 1px solid rgba(255, 253, 248, .12);
}

.ib-info-bar article:last-child {
    border-right: 0;
}

.ib-info-bar h2 {
    margin: 0 0 7px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.ib-info-bar p {
    margin: 0;
    color: rgba(255, 253, 248, .78);
    font-size: 13px;
    line-height: 1.55;
}

.ib-info-bar a {
    color: var(--ib-gold);
    text-decoration: underline;
}

.ib-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(215, 168, 79, .74);
    border-radius: 50%;
    color: var(--ib-gold);
}

.ib-section-light,
.ib-menu-page,
.ib-photo-grid,
.ib-booking-section,
.ib-map-section {
    padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 72px);
}

.ib-split {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: clamp(34px, 6vw, 78px);
    align-items: center;
    background: var(--ib-ivory);
}

.ib-copy {
    max-width: 560px;
}

.ib-copy h2,
.ib-menu-intro h2,
.ib-reservation-banner h2,
.ib-booking-section h2,
.ib-map-section h2 {
    margin: 0 0 24px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(40px, 5.6vw, 68px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
}

.ib-copy p {
    color: rgba(20, 17, 15, .76);
}

.ib-image-panel {
    margin: 0;
    overflow: hidden;
    box-shadow: var(--ib-shadow);
}

.ib-image-panel img {
    width: 100%;
    height: min(48vw, 520px);
    object-fit: cover;
    transition: transform .7s ease;
}

.ib-image-panel:hover img {
    transform: scale(1.035);
}

.ib-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--ib-black);
}

.ib-bento article {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px 34px;
    color: var(--ib-white);
    background-size: cover;
    background-position: center;
    border-right: 1px solid rgba(255, 253, 248, .22);
    transition: transform .28s ease, filter .28s ease;
    isolation: isolate;
}

.ib-bento article:hover {
    transform: translateY(-6px);
    filter: saturate(1.08);
}

.ib-bento h2 {
    margin: 13px 0 7px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}

.ib-bento p {
    min-height: 0;
    margin: 0;
    color: rgba(255, 253, 248, .78);
    max-width: 28ch;
}

.ib-bento a {
    margin-top: 18px;
    color: var(--ib-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ib-card-icon {
    color: var(--ib-gold);
    font-size: 34px;
}

.ib-section-dark {
    background: #11100f;
    color: var(--ib-white);
}

.ib-menu-preview {
    display: grid;
    grid-template-columns: .88fr 1.15fr .75fr;
    gap: clamp(30px, 5vw, 62px);
    align-items: center;
    padding: clamp(64px, 9vw, 104px) clamp(20px, 6vw, 72px);
}

.ib-menu-intro p:not(.ib-eyebrow) {
    color: var(--ib-muted);
}

.ib-tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 253, 248, .14);
    color: rgba(255, 253, 248, .54);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.ib-tabs button {
    padding-bottom: 13px;
    border: 0;
    border-bottom: 2px solid transparent;
    color: inherit;
    background: transparent;
    font: inherit;
    text-transform: inherit;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease;
}

.ib-tabs button:hover,
.ib-tabs .is-active {
    color: var(--ib-white);
    border-bottom-color: var(--ib-gold);
}

.ib-tab-panel {
    display: none;
}

.ib-tab-panel.is-active {
    display: block;
}

.ib-menu-list article,
.ib-menu-column article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 253, 248, .12);
}

.ib-menu-list h3,
.ib-menu-column h3 {
    margin: 0 0 4px;
    font-family: Manrope, Arial, sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.ib-menu-list p,
.ib-menu-column p {
    margin: 0;
    color: rgba(255, 253, 248, .62);
    font-size: 14px;
}

.ib-menu-list strong,
.ib-menu-column strong {
    color: var(--ib-gold);
}

.ib-menu-preview figure {
    margin: 0;
}

.ib-menu-preview img {
    width: 100%;
    aspect-ratio: 1 / 1.04;
    object-fit: cover;
}

.ib-gallery-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--ib-black);
}

.ib-gallery-strip img {
    width: 100%;
    height: 214px;
    object-fit: cover;
    border-right: 1px solid rgba(255, 253, 248, .24);
}

.ib-reservation-banner {
    display: grid;
    grid-template-columns: 1fr 1.1fr auto;
    gap: 28px;
    align-items: center;
    padding: 54px clamp(20px, 6vw, 72px);
    color: var(--ib-white);
    background: linear-gradient(135deg, var(--ib-red), #cf3e32);
}

.ib-reservation-banner h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 58px);
    text-transform: uppercase;
}

.ib-reservation-banner p {
    margin: 0;
    color: rgba(255, 253, 248, .84);
}

.ib-footer {
    padding: 54px clamp(20px, 6vw, 72px) 26px;
    color: var(--ib-white);
    background: #11100f;
}

.ib-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 42px;
}

.ib-footer h2 {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.ib-footer p,
.ib-footer a {
    display: block;
    margin: 0 0 10px;
    color: rgba(255, 253, 248, .66);
    font-size: 14px;
}

.ib-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.ib-socials a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 253, 248, .1);
}

.ib-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 253, 248, .1);
    color: rgba(255, 253, 248, .52);
    font-size: 13px;
}

.ib-page-hero {
    min-height: 54vh;
    padding: 160px clamp(22px, 6vw, 76px) 84px;
    color: var(--ib-white);
    background-size: cover;
    background-position: center;
}

.ib-page-hero h1 {
    max-width: 980px;
    font-size: clamp(48px, 8vw, 92px);
    text-transform: none;
}

.ib-menu-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 72px;
    background: #11100f;
    color: var(--ib-white);
}

.ib-menu-column {
    padding: 34px;
    border: 1px solid rgba(255, 253, 248, .1);
    background: rgba(255, 253, 248, .025);
}

.ib-menu-column h2 {
    margin: 0 0 22px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 42px;
    font-weight: 500;
}

.ib-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
    background: var(--ib-ivory);
}

.ib-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 12px 34px rgba(20, 17, 15, .1);
}

.ib-photo-grid .is-large {
    grid-column: span 2;
    grid-row: span 2;
}

.ib-photo-grid .is-wide {
    grid-column: span 2;
}

.ib-booking-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: start;
    background: var(--ib-ivory);
}

.ib-contact-box,
.ib-zenchef-card {
    margin-top: 28px;
    padding: 28px;
    background: var(--ib-white);
    border: 1px solid rgba(20, 17, 15, .08);
    box-shadow: 0 18px 46px rgba(20, 17, 15, .08);
}

.ib-contact-box h3,
.ib-zenchef-card h2 {
    margin: 0 0 10px;
}

.ib-contact-box a {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--ib-red);
    font-size: 26px;
    font-weight: 800;
}

.ib-zenchef-widget {
    min-height: 420px;
    padding: 20px;
    border: 1px solid rgba(20, 17, 15, .1);
    background: var(--ib-white);
    box-shadow: var(--ib-shadow);
}

.ib-booking-widget {
    padding: clamp(22px, 3vw, 34px);
}

.ib-booking-widget form,
.ib-booking-widget .rtb-booking-form {
    display: grid;
    gap: 18px;
    margin: 0;
}

.ib-booking-widget fieldset {
    margin: 0;
    padding: 22px;
    border: 1px solid rgba(20, 17, 15, .12);
    background: rgba(246, 240, 232, .36);
}

.ib-booking-widget legend {
    padding: 0 10px;
    color: var(--ib-green);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-weight: 600;
}

.ib-booking-widget label {
    display: block;
    margin: 0 0 7px;
    color: rgba(20, 17, 15, .72);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.ib-booking-widget input,
.ib-booking-widget select,
.ib-booking-widget textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(20, 17, 15, .16);
    border-radius: 3px;
    background: var(--ib-white);
    color: var(--ib-black);
    font: 500 16px/1.4 Manrope, Arial, sans-serif;
    box-shadow: none;
}

.ib-booking-widget input:focus,
.ib-booking-widget select:focus,
.ib-booking-widget textarea:focus {
    outline: 2px solid rgba(215, 168, 79, .42);
    border-color: var(--ib-gold);
}

.ib-booking-widget textarea {
    min-height: 118px;
    resize: vertical;
}

.ib-booking-widget button,
.ib-booking-widget input[type="submit"],
.ib-booking-widget .button {
    min-height: 52px;
    padding: 15px 24px;
    border: 0;
    border-radius: 3px;
    background: var(--ib-red);
    color: var(--ib-white);
    font: 800 13px/1 Manrope, Arial, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .22s ease, background .22s ease;
}

.ib-booking-widget button:hover,
.ib-booking-widget input[type="submit"]:hover,
.ib-booking-widget .button:hover {
    transform: translateY(-2px);
    background: #9f2922;
}

.ib-map-section {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 42px;
    align-items: stretch;
    background: #11100f;
    color: var(--ib-white);
}

.ib-map-section iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    filter: grayscale(.25) contrast(1.05);
}

@media (max-width: 1024px) {
    .ib-header {
        grid-template-columns: 1fr auto;
    }

    .ib-menu-toggle {
        display: block;
    }

    .ib-header-cta {
        display: none;
    }

    .ib-nav {
        position: absolute;
        top: 100%;
        left: 18px;
        right: 18px;
        display: none;
        padding: 18px;
        background: rgba(20, 17, 15, .96);
        border: 1px solid rgba(255, 253, 248, .1);
        box-shadow: var(--ib-shadow);
    }

    .ib-nav.is-open {
        display: grid;
        gap: 4px;
    }

    .ib-info-bar,
    .ib-bento,
    .ib-menu-preview,
    .ib-footer-grid,
    .ib-menu-page,
    .ib-booking-section,
    .ib-map-section {
        grid-template-columns: 1fr 1fr;
    }

    .ib-menu-preview figure,
    .ib-menu-intro {
        grid-column: span 2;
    }

    .ib-footer-grid > div:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .ib-header {
        padding: 16px 18px;
    }

    .ib-logo-text {
        font-size: 23px;
    }

    .ib-logo-sub {
        font-size: 8px;
    }

    .ib-hero {
        min-height: 74vh;
        padding: 118px 20px 54px;
        background-position: center right;
    }

    .ib-hero h1,
    .ib-page-hero h1 {
        font-size: clamp(48px, 16vw, 68px);
    }

    .ib-actions,
    .ib-reservation-banner {
        grid-template-columns: 1fr;
    }

    .ib-actions .ib-btn,
    .ib-reservation-banner .ib-btn {
        width: 100%;
    }

    .ib-info-bar,
    .ib-split,
    .ib-bento,
    .ib-menu-preview,
    .ib-gallery-strip,
    .ib-footer-grid,
    .ib-menu-page,
    .ib-photo-grid,
    .ib-booking-section,
    .ib-map-section {
        grid-template-columns: 1fr;
    }

    .ib-info-bar {
        padding: 0;
    }

    .ib-info-bar article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 253, 248, .12);
    }

    .ib-section-light,
    .ib-menu-page,
    .ib-photo-grid,
    .ib-booking-section,
    .ib-map-section {
        padding: 58px 20px;
    }

    .ib-copy h2,
    .ib-menu-intro h2,
    .ib-reservation-banner h2,
    .ib-booking-section h2,
    .ib-map-section h2 {
        font-size: 39px;
    }

    .ib-image-panel img {
        height: 340px;
    }

    .ib-bento article {
        min-height: 280px;
    }

    .ib-menu-preview {
        padding: 58px 20px;
    }

    .ib-menu-preview figure,
    .ib-menu-intro,
    .ib-footer-grid > div:first-child {
        grid-column: auto;
    }

    .ib-tabs {
        gap: 18px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .ib-gallery-strip img {
        height: 240px;
    }

    .ib-reservation-banner {
        display: grid;
        padding: 42px 20px;
    }

    .ib-footer-bottom {
        display: grid;
    }

    .ib-page-hero {
        min-height: 50vh;
        padding: 126px 20px 58px;
    }

    .ib-photo-grid {
        grid-auto-rows: 260px;
    }

    .ib-photo-grid .is-large,
    .ib-photo-grid .is-wide {
        grid-column: auto;
        grid-row: auto;
    }
}
