@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --ember: #c0622a;
    --ember-light: #d4845a;
    --ash: #e8e0d5;
    --smoke: #1a1410;
    --coal: #0d0a08;
    --char: #2a2018;
    --mid: #5a4e42;
    --muted: #8a7d6e;
    --cream: #f5f0e8;
}

body {
    background: var(--coal);
    color: var(--ash);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6
}

.serif {
    font-family: 'Playfair Display', serif
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 3rem;
    transition: all .4s
}

nav.solid {
    background: rgba(13, 10, 8, 0.97);
    border-bottom: 1px solid rgba(192, 98, 42, 0.15);
    padding: 1rem 3rem
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0
}

.nav-logo>div {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.nav-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--ash)
}

.nav-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ember-light);
    margin-top: 2px
}

/* HAMBURGER MENU */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--ash);
    transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu-container {
    display: none;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(13, 10, 8, 0.95);
    border: 1px solid rgba(192, 98, 42, 0.2);
    min-width: 200px;
    padding: 1rem;
    margin-top: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    border-radius: 4px;
    z-index: 300;
}

.nav-dropdown.open {
    display: flex;
}

.dropdown-link {
    color: var(--ash);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(192, 98, 42, 0.1);
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.dropdown-link:hover {
    color: var(--ember-light);
}

.dropdown-link:last-of-type {
    border-bottom: 1px solid rgba(192, 98, 42, 0.2);
}

.nav-dropdown .dropdown-reserve {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

.desktop-reserve {
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color .3s
}

.nav-links a:hover {
    color: var(--ash)
}

.nav-reserve {
    background: transparent;
    border: 1px solid var(--ember-light);
    color: var(--cream);
    padding: 0.5rem 1.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all .3s
}

.nav-reserve:hover {
    background: var(--ember);
    color: var(--ash)
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/interior.jpg') center/cover no-repeat
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13, 10, 8, 0.95) 0%, rgba(13, 10, 8, 0.65) 50%, rgba(13, 10, 8, 0.35) 100%)
}

.hero-overlay2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 10, 8, 1) 0%, rgba(13, 10, 8, 0.6) 30%, transparent 60%)
}

.hero-content {
    position: relative;
    padding: 0 4rem 5rem;
    max-width: 680px
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem
}

.hero-line {
    width: 40px;
    height: 1px;
    background: var(--ember)
}

.hero-eyebrow-text {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ember)
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1;
    color: var(--ash);
    margin-bottom: 0.3rem
}

.hero-title em {
    font-style: italic;
    color: var(--ember-light)
}

.hero-sub {
    font-size: 0.9rem;
    color: rgba(232, 224, 213, 0.55);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    font-style: italic;
    font-family: 'Playfair Display', serif
}

.hero-desc {
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 2.5rem
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap
}

.btn-fire {
    background: var(--ember);
    color: var(--ash);
    padding: 0.9rem 2.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .3s
}

.btn-fire:hover {
    background: var(--ember-light)
}

.btn-ghost {
    background: transparent;
    color: var(--ash);
    padding: 0.9rem 2.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(232, 224, 213, 0.25);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .3s
}

.btn-ghost:hover {
    border-color: var(--ember-light);
    color: var(--ember-light)
}

.michelin-badge {
    position: absolute;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.85
}

.michelin-star {
    width: 54px;
    height: 54px;
    background: var(--ember);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border-radius: 50%
}

.michelin-text {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember-light);
    text-align: center;
    line-height: 1.5
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase
}

.scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ember);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(0.7)
    }
}

/* INFO STRIP */
.info-strip {
    background: var(--char);
    border-top: 1px solid rgba(192, 98, 42, 0.2);
    border-bottom: 1px solid rgba(192, 98, 42, 0.2);
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.info-item {
    padding: 1.3rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-right: 1px solid rgba(192, 98, 42, 0.12)
}

.info-item:last-child {
    border-right: none
}

.info-icon {
    font-size: 0.9rem;
    opacity: 0.7
}

.info-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 0.15rem
}

.info-val {
    font-size: 0.8rem;
    color: var(--ash)
}

/* STORY */
.story {
    padding: 7rem 4rem;
    background: var(--coal)
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto
}

.story-images {
    position: relative;
    height: 560px
}

.story-img-main {
    position: absolute;
    inset: 0 60px 60px 0;
    object-fit: cover;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    filter: brightness(0.85)
}

.story-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
    object-fit: cover;
    border: 4px solid var(--coal)
}

.story-tag {
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    background: var(--ember);
    padding: 0.6rem 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ash);
    font-weight: 400;
    writing-mode: vertical-rl;
    text-orientation: mixed
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem
}

.eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--ember)
}

.eyebrow-text {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ember)
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--ash);
    line-height: 1.2;
    margin-bottom: 1rem
}

.section-title em {
    font-style: italic;
    color: var(--ember-light)
}

.divider {
    width: 40px;
    height: 1px;
    background: var(--ember);
    margin: 1.2rem 0
}

.body-text {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1rem
}

.chef-sig {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(192, 98, 42, 0.2)
}

.chef-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--char);
    border: 1px solid rgba(192, 98, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--ember);
    font-weight: 400
}

.chef-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--ash)
}

.chef-title {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted)
}

/* MENU */
.menu-section {
    background: var(--smoke);
    padding: 7rem 4rem
}

.menu-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(192, 98, 42, 0.2)
}

.mtab {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all .3s
}

.mtab.active {
    color: var(--ember);
    border-bottom-color: var(--ember)
}

.mtab:hover:not(.active) {
    color: var(--ash)
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(192, 98, 42, 0.1);
    max-width: 900px;
    margin: 0 auto
}

.menu-card {
    background: var(--smoke);
    padding: 2rem;
    transition: background .3s;
    cursor: default
}

.menu-card:hover {
    background: rgba(192, 98, 42, 0.05)
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--ash);
    font-weight: 400
}

.menu-price {
    font-size: 0.8rem;
    color: var(--ember);
    font-weight: 400;
    white-space: nowrap;
    margin-left: 1rem
}

.menu-item-desc {
    font-size: 0.76rem;
    color: var(--muted);
    line-height: 1.7
}

.menu-tag {
    display: inline-block;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(192, 98, 42, 0.15);
    color: var(--ember-light);
    padding: 0.15rem 0.5rem;
    margin-bottom: 0.5rem
}

/* FIRE FEATURE */
.fire-feature {
    position: relative;
    height: 520px;
    overflow: hidden
}

.fire-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=80') center/cover no-repeat;
    filter: brightness(0.3) saturate(1.2)
}

.fire-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 10, 8, 0.9) 0%, rgba(13, 10, 8, 0.3) 60%, rgba(13, 10, 8, 0.1) 100%)
}

.fire-content {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 5rem;
    max-width: 1100px;
    margin: 0 auto
}

.fire-text {
    max-width: 500px
}

.fire-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--ash);
    line-height: 1.4;
    margin-bottom: 1.5rem
}

.fire-quote span {
    color: var(--ember-light)
}

.fire-attr {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted)
}

/* EXPERIENCE */
.experience {
    padding: 7rem 4rem;
    background: var(--coal)
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(192, 98, 42, 0.12);
    max-width: 1100px;
    margin: 3rem auto 0
}

.exp-card {
    background: var(--coal);
    padding: 2.5rem 2rem;
    transition: background .3s
}

.exp-card:hover {
    background: rgba(192, 98, 42, 0.04)
}

.exp-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgba(192, 98, 42, 0.25);
    font-weight: 400;
    margin-bottom: 0.8rem;
    line-height: 1
}

.exp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--ash);
    margin-bottom: 0.6rem
}

.exp-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.8
}

/* GALLERY */
.gallery {
    background: var(--smoke);
    padding: 7rem 4rem
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 240px 240px;
    gap: 4px;
    max-width: 1100px;
    margin: 0 auto
}

.gitem {
    overflow: hidden
}

.gitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) saturate(0.9);
    transition: all .5s;
    cursor: pointer
}

.gitem:hover img {
    filter: brightness(1) saturate(1.1);
    transform: scale(1.04)
}

.gitem.g1 {
    grid-column: span 2;
    grid-row: span 2
}

.gitem.g2 {
    grid-column: span 1
}

.gitem.g3 {
    grid-column: span 1
}

.gitem.g4 {
    grid-column: span 2
}

/* PRIVATE DINING */
.private {
    padding: 7rem 4rem;
    background: var(--char)
}

.private-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto
}

.private-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: brightness(0.8)
}

.private-rooms {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem
}

.room-card {
    border: 1px solid rgba(192, 98, 42, 0.2);
    padding: 1.3rem 1.5rem;
    transition: border-color .3s
}

.room-card:hover {
    border-color: var(--ember)
}

.room-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem
}

.room-name {
    font-size: 0.8rem;
    color: var(--ash);
    font-weight: 400
}

.room-price {
    font-size: 0.75rem;
    color: var(--ember)
}

.room-detail {
    font-size: 0.72rem;
    color: var(--muted)
}

/* CTA */
.cta {
    position: relative;
    padding: 8rem 4rem;
    text-align: center;
    overflow: hidden
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
    filter: brightness(0.2) saturate(0.8)
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 10, 8, 0.65)
}

.cta-content {
    position: relative
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--ash);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem
}

.cta-sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-family: 'Playfair Display', serif
}

/* CONTACT */
.contact {
    background: var(--coal);
    padding: 6rem 4rem
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 2rem
}

.cdetail {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.cicon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(192, 98, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0
}

.clabel {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 0.2rem
}

.cval {
    font-size: 0.85rem;
    color: var(--ash)
}

.cval a {
    color: var(--ash);
    text-decoration: none;
    transition: color .3s
}

.cval a:hover {
    color: var(--ember-light)
}

.map-frame {
    width: 100%;
    height: 300px;
    border: 0;
    filter: grayscale(100%) contrast(1.2) brightness(0.45);
    margin-top: 2rem
}

.social-row {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.8rem;
    flex-wrap: wrap
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(192, 98, 42, 0.25);
    padding: 0.5rem 1rem;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    background: none;
    cursor: pointer
}

.soc-btn:hover {
    border-color: var(--ember);
    color: var(--ember-light)
}

/* FOOTER */
footer {
    background: #060402;
    padding: 3.5rem 4rem 2rem;
    border-top: 1px solid rgba(192, 98, 42, 0.12)
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--ash);
    margin-bottom: 0.4rem
}

.footer-brand-tag {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem
}

.footer-about {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 280px
}

.footer-head {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem
}

.footer-list a {
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .3s
}

.footer-list a:hover {
    color: var(--ash)
}

.footer-bottom {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: rgba(138, 125, 110, 0.4)
}

/* MOBILE - TABLET (768px and below) */
@media(max-width:768px) {

    /* NAVIGATION */
    nav {
        padding: 1rem 1.2rem;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .nav-logo {
        gap: 0.6rem;
        flex-shrink: 0;
    }

    .nav-logo-img {
        height: 32px;
    }

    .nav-logo-sub {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .desktop-reserve {
        display: none;
    }

    .nav-menu-container {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger span {
        width: 24px;
        height: 2px;
        background: var(--ash);
    }

    .nav-dropdown {
        right: -1rem;
        padding: 1.2rem;
        min-width: 220px;
    }

    .dropdown-link {
        font-size: 0.7rem;
        padding: 0.5rem 0;
    }

    .dropdown-reserve {
        padding: 0.8rem 1.2rem;
        font-size: 0.65rem;
    }

    nav.solid {
        padding: 0.8rem 1.2rem;
    }

    /* HERO SECTION */
    .hero {
        min-height: 600px;
        align-items: flex-end;
    }

    .hero-content {
        padding: 0 1.2rem 3rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-desc {
        font-size: 0.8rem;
        max-width: 100%;
        margin-bottom: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .btn-fire,
    .btn-ghost {
        width: 100%;
        padding: 1rem 1.2rem;
        font-size: 0.7rem;
        min-height: 44px;
    }

    .michelin-badge {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    /* INFO STRIP */
    .info-strip {
        flex-direction: column;
        gap: 0;
    }

    .info-item {
        padding: 1.2rem 1rem;
        border-right: none !important;
        border-bottom: 1px solid rgba(192, 98, 42, 0.12);
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .info-icon {
        font-size: 1.2rem;
    }

    /* SECTIONS */
    .story,
    .menu-section,
    .experience,
    .gallery,
    .private,
    .contact,
    .cta {
        padding: 3rem 1.2rem;
    }

    .story-grid,
    .private-grid,
    .contact-grid,
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* STORY */
    .story-images {
        height: 280px;
        margin-bottom: 2rem;
    }

    .story-img-main {
        inset: 0 30px 30px 0;
        width: calc(100% - 30px);
        height: calc(100% - 30px);
    }

    .story-img-accent {
        width: 50%;
        height: 40%;
    }

    /* MENU */
    .menu-grid,
    .exp-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .menu-card,
    .exp-card {
        padding: 1.5rem 1.2rem;
    }

    .menu-item-name {
        font-size: 0.95rem;
    }

    .menu-price {
        font-size: 0.75rem;
        margin-left: 0.5rem;
    }

    .menu-tabs {
        gap: 0;
        flex-wrap: wrap;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .mtab {
        padding: 0.7rem 1rem;
        font-size: 0.65rem;
    }

    /* GALLERY */
    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2px;
    }

    .gitem {
        min-height: 200px;
    }

    .gitem.g1,
    .gitem.g2,
    .gitem.g3,
    .gitem.g4 {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* FIRE FEATURE */
    .fire-feature {
        height: 380px;
    }

    .fire-content {
        padding: 2rem 1.2rem;
    }

    .fire-quote {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
        margin-bottom: 1rem;
    }

    .fire-attr {
        font-size: 0.65rem;
    }

    /* EXPERIENCE */
    .exp-card:hover {
        background: var(--coal);
    }

    .exp-num {
        font-size: 2rem;
    }

    .exp-title {
        font-size: 1rem;
    }

    /* PRIVATE DINING */
    .private-img {
        aspect-ratio: 4/3;
    }

    .room-card {
        padding: 1rem 1.2rem;
    }

    /* CTA */
    .cta-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 0.8rem;
    }

    .cta-sub {
        font-size: 0.8rem;
    }

    /* CONTACT */
    .cdetail {
        gap: 0.8rem;
    }

    .cicon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .clabel {
        font-size: 0.55rem;
    }

    .cval {
        font-size: 0.8rem;
    }

    .map-frame {
        height: 250px;
    }

    /* FOOTER */
    footer {
        padding: 2rem 1.2rem 1rem;
    }

    .footer-inner {
        gap: 2rem;
    }

    .footer-brand-name {
        font-size: 1.1rem;
    }

    .footer-about {
        font-size: 0.75rem;
        max-width: 100%;
    }

    .footer-list a {
        font-size: 0.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.6rem;
    }
}

/* TABLET/IPAD (769px - 1024px) */
@media(min-width:769px) and (max-width:1024px) {
    nav {
        padding: 1.2rem 2rem;
        justify-content: space-between;
        gap: 0;
        flex-wrap: nowrap;
    }

    .nav-logo {
        gap: 0.8rem;
        flex-shrink: 0;
    }

    .nav-logo-img {
        height: 36px;
    }

    .nav-logo-main {
        font-size: 1.05rem;
    }

    .nav-logo-sub {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-menu-container {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .desktop-reserve {
        display: none;
    }

    .nav-hamburger span {
        width: 24px;
        height: 2px;
        background: var(--ash);
    }

    .nav-dropdown {
        right: -1rem;
        padding: 1.2rem;
    }

    .dropdown-reserve {
        padding: 0.8rem 1.4rem;
        font-size: 0.7rem;
        width: 100%;
    }

    /* HERO */
    .hero {
        min-height: 550px;
    }

    .hero-content {
        padding: 0 2.5rem 4rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 0.85rem;
    }

    .hero-desc {
        font-size: 0.82rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: row;
        gap: 1rem;
        width: auto;
    }

    .btn-fire,
    .btn-ghost {
        width: auto;
        padding: 0.85rem 2rem;
    }

    .michelin-badge {
        display: none;
    }

    /* INFO STRIP */
    .info-strip {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-item {
        padding: 1.2rem 1.5rem;
        border-right: 1px solid rgba(192, 98, 42, 0.12);
        flex-direction: row;
        border-bottom: none;
    }

    .info-item:last-child {
        border-right: none;
    }

    /* SECTIONS */
    .story,
    .menu-section,
    .experience,
    .gallery,
    .private,
    .contact,
    .cta {
        padding: 5rem 2rem;
    }

    /* STORY */
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .story-images {
        height: 400px;
    }

    /* MENU */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-card {
        padding: 1.8rem 1.5rem;
    }

    .menu-item-name {
        font-size: 1rem;
    }

    /* EXPERIENCE */
    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exp-card {
        padding: 2rem 1.5rem;
    }

    .exp-num {
        font-size: 2.2rem;
    }

    .exp-title {
        font-size: 1.05rem;
    }

    /* GALLERY */
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 3px;
    }

    .gitem {
        min-height: 220px;
    }

    .gitem.g1,
    .gitem.g2,
    .gitem.g3,
    .gitem.g4 {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* FIRE FEATURE */
    .fire-feature {
        height: 420px;
    }

    .fire-content {
        padding: 0 3rem;
    }

    .fire-quote {
        font-size: clamp(1.3rem, 3vw, 1.9rem);
    }

    /* PRIVATE DINING */
    .private-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .private-img {
        aspect-ratio: 3/4;
    }

    /* CTA */
    .cta {
        padding: 6rem 2rem;
    }

    .cta-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }

    /* CONTACT */
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    /* FOOTER */
    footer {
        padding: 3rem 2rem 1.5rem;
    }

    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }
}

/* SMALL MOBILE (480px and below) */
@media(max-width:480px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    nav {
        padding: 0.8rem 1rem;
        justify-content: space-between;
    }

    .nav-logo-main {
        font-size: 1rem;
    }

    .nav-logo-sub {
        display: none;
    }

    .nav-logo-img {
        height: 28px;
    }

    .nav-links {
        display: none;
    }

    .desktop-reserve {
        display: none;
    }

    .nav-menu-container {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
        gap: 4px;
    }

    .nav-hamburger span {
        width: 20px;
        height: 1.5px;
        background: var(--ash);
    }

    .nav-dropdown {
        right: -0.5rem;
        padding: 1rem;
        min-width: 180px;
    }

    .dropdown-link {
        font-size: 0.65rem;
        padding: 0.5rem 0;
    }

    .dropdown-reserve {
        padding: 0.7rem 1rem;
        font-size: 0.6rem;
    }

    /* HERO */
    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 0 1rem 2.5rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 0.8rem;
    }

    .hero-eyebrow {
        margin-bottom: 1rem;
    }

    .hero-eyebrow-text {
        font-size: 0.6rem;
    }

    .hero-sub {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.75rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        gap: 0.6rem;
    }

    .btn-fire,
    .btn-ghost {
        padding: 0.85rem 1rem;
        font-size: 0.65rem;
    }

    /* INFO STRIP */
    .info-strip {
        gap: 0;
    }

    .info-item {
        padding: 1rem 0.8rem;
        gap: 0.4rem;
    }

    .info-label {
        font-size: 0.55rem;
    }

    .info-val {
        font-size: 0.75rem;
    }

    .info-icon {
        font-size: 1rem;
    }

    /* SECTIONS */
    .story,
    .menu-section,
    .experience,
    .gallery,
    .private,
    .contact,
    .cta {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 0.8rem;
    }

    .eyebrow {
        margin-bottom: 0.8rem;
    }

    .eyebrow-line {
        width: 20px;
    }

    .eyebrow-text {
        font-size: 0.6rem;
    }

    .body-text {
        font-size: 0.8rem;
        line-height: 1.7;
    }

    .divider {
        width: 30px;
        margin: 1rem 0;
    }

    /* STORY */
    .story-images {
        height: 250px;
        margin-bottom: 1.5rem;
    }

    .story-img-main {
        inset: 0 20px 20px 0;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }

    .story-tag {
        padding: 0.5rem 0.8rem;
        font-size: 0.5rem;
    }

    .chef-sig {
        margin-top: 1.5rem;
        padding-top: 1rem;
        gap: 0.8rem;
    }

    .chef-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.7rem;
    }

    .chef-name {
        font-size: 0.85rem;
    }

    .chef-title {
        font-size: 0.6rem;
    }

    /* MENU */
    .menu-header {
        margin-bottom: 2.5rem;
    }

    .menu-tabs {
        margin-bottom: 2rem;
    }

    .mtab {
        padding: 0.6rem 0.8rem;
        font-size: 0.6rem;
    }

    .menu-card {
        padding: 1.2rem 1rem;
    }

    .menu-card-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .menu-item-name {
        font-size: 0.9rem;
    }

    .menu-price {
        font-size: 0.7rem;
        margin-left: 0;
    }

    .menu-item-desc {
        font-size: 0.72rem;
    }

    .menu-tag {
        font-size: 0.5rem;
        padding: 0.1rem 0.4rem;
        margin-bottom: 0.4rem;
    }

    /* FIRE FEATURE */
    .fire-feature {
        height: 320px;
    }

    .fire-content {
        padding: 1.5rem 1rem;
    }

    .fire-quote {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .fire-text {
        max-width: 100%;
    }

    /* EXPERIENCE */
    .exp-grid {
        grid-template-columns: 1fr;
        gap: 1px;
        margin-top: 2rem;
    }

    .exp-card {
        padding: 1.2rem 1rem;
    }

    .exp-num {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .exp-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .exp-desc {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    /* GALLERY */
    .gallery-header {
        margin-bottom: 2rem;
    }

    .gallery-mosaic {
        gap: 2px;
    }

    .gitem {
        min-height: 180px;
    }

    /* PRIVATE DINING */
    .private-grid {
        gap: 2rem;
    }

    .private-img {
        aspect-ratio: 3/4;
    }

    .room-card {
        padding: 1rem;
    }

    .room-name {
        font-size: 0.75rem;
    }

    .room-price {
        font-size: 0.7rem;
    }

    .room-detail {
        font-size: 0.68rem;
    }

    /* CTA */
    .cta {
        padding: 3rem 1rem;
    }

    .cta-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 0.6rem;
    }

    .cta-sub {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    /* CONTACT */
    .contact-detail {
        margin-top: 1.5rem;
        gap: 1.5rem;
    }

    .cdetail {
        gap: 0.6rem;
    }

    .cicon {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .clabel {
        font-size: 0.52rem;
    }

    .cval {
        font-size: 0.75rem;
    }

    .map-frame {
        height: 200px;
        margin-top: 1.5rem;
    }

    .soc-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.6rem;
        min-height: 40px;
    }

    /* FOOTER */
    footer {
        padding: 1.5rem 1rem 0.8rem;
    }

    .footer-inner {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-brand-name {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .footer-brand-tag {
        font-size: 0.55rem;
        margin-bottom: 0.8rem;
    }

    .footer-about {
        font-size: 0.72rem;
        line-height: 1.6;
    }

    .footer-head {
        font-size: 0.55rem;
        margin-bottom: 0.8rem;
    }

    .footer-list {
        gap: 0.4rem;
    }

    .footer-list a {
        font-size: 0.72rem;
    }

    .footer-bottom {
        margin-top: 1rem;
        gap: 0.3rem;
    }
}

/* DESKTOP/LAPTOP (1025px and above) */
@media(min-width:1025px) {
    nav {
        padding: 1.4rem 3rem;
        justify-content: space-between;
    }

    .nav-logo {
        gap: 1rem;
    }

    .nav-logo-img {
        height: 40px;
    }

    .nav-links {
        display: flex;
        gap: 2.2rem;
        list-style: none;
    }

    .nav-links a {
        font-size: 0.72rem;
    }

    .desktop-reserve {
        display: block;
    }

    .nav-menu-container {
        display: none;
    }

    .nav-hamburger {
        display: none;
    }
}