*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F5EFE3;
    --cream2: #EDE5D4;
    --cream3: #E2D9C5;
    --warm: #FAF7F2;
    --ink: #1C1812;
    --ink2: #2A241C;
    --ink3: #3A3228;
    --muted: #8A7F6E;
    --muted2: #B8AE9E;
    --white: #FFFFFF;
    --terra: #C4572A;
    --terra2: #D9723E;
    --terra-bg: #FDF0EA;
    --sage: #4A6741;
    --gold: #B8922A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* CURSOR */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--terra);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform .1s;
    mix-blend-mode: multiply;
}

.cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid var(--terra);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all .15s ease;
    opacity: .5;
}

/* ============================================================
       IMAGE UTILITY — semua img pakai ini supaya foto crop sendiri
       ============================================================ */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s;
}

nav.scrolled {
    background: rgba(250, 247, 242, .95);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid rgba(28, 24, 18, .07);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .25s;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    padding: 10px 24px;
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--ink);
    color: var(--cream);
}

/* HERO */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-left {
    background: var(--cream);
    padding: 0 60px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 32px;
    border-top-left-radius: 32px;
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 85%, rgba(196, 87, 42, .07) 0%, transparent 55%);
    pointer-events: none;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    margin-bottom: 25px;
}

.hero-tag-line {
    width: 36px;
    height: 1px;
    background: var(--muted2);
}

.hero-tag span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 5.5vw, 74px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.5px;
    color: var(--ink);
    margin-bottom: 28px;
}

.hero-title em {
    font-style: italic;
    color: var(--terra);
}

.hero-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted);
    max-width: 380px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 25px;
}

.btn-primary {
    background: var(--terra);
    color: var(--white);
    padding: 14px 36px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .3s;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--ink);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 13px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    transition: color .25s;
    text-decoration: none;
}

.btn-ghost-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(28, 24, 18, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.btn-ghost:hover {
    color: var(--ink);
}

.btn-ghost:hover .btn-ghost-icon {
    border-color: var(--ink);
    background: rgba(28, 24, 18, .04);
}

.hero-stats {
    position: absolute;
    bottom: 36px;
    left: 60px;
    display: flex;
    gap: 44px;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
}

.hero-stat-label {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted2);
    margin-top: 5px;
}

/* HERO RIGHT */
.hero-right {
    display: grid;
    grid-template-rows: 60fr 40fr;
    position: relative;
    border-radius: 32px;
}

/* ─── Hero main image ─── */
.hero-img-main {
    background: var(--cream2);
    position: relative;
    overflow: hidden;
    /* tinggi ikut grid row, foto yang crop */
    border-top-right-radius: 32px;
}

/* img di dalam hero-img-main */
.hero-img-main .img-cover {
    position: absolute;
    inset: 0;
}

.hero-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* ─── Hero bottom-left panel (terra bg) ─── */
.hero-b1 {
    background: var(--terra);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
}

.hero-b1::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

/* Jika pakai foto di hero-b1, foto crop ke kotak */
.hero-b1-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-b1-img .img-cover {
    opacity: .45;
}

/* overlay gelap supaya teks terbaca */
.hero-b1-content {
    position: relative;
    z-index: 1;
}

.hero-b1-tag {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 8px;
}

.hero-b1-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.25;
}

.hero-b1-name em {
    font-style: italic;
}

/* ─── Hero bottom-right panel (dark bg) ─── */
.hero-b2 {
    background: var(--ink2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom-right-radius: 32px;
}

/* Foto crop ke kotak gelap */
.hero-b2 .img-cover {
    position: absolute;
    inset: 0;
    opacity: .55;
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    background: var(--white);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(28, 24, 18, .1);
}

.hb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #52b96a;
    flex-shrink: 0;
    animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hb-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
}

.hb-sub {
    font-size: 10.5px;
    font-weight: 300;
    color: var(--muted);
}

.hero-scroll {
    position: absolute;
    bottom: 52px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted2);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--muted2));
    animation: sp 2s ease-in-out infinite;
}

@keyframes sp {

    0%,
    100% {
        opacity: .3
    }

    50% {
        opacity: 1
    }
}

/* MARQUEE */
.marquee-wrap {
    padding: 18px 0;
    background: var(--terra);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: ms 22s linear infinite;
}

.marquee-item {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, .72);
    padding: 0 36px;
    white-space: nowrap;
}

.marquee-sep {
    color: rgba(255, 255, 255, .3);
}

@keyframes ms {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* SECTION BASE */
section {
    padding: 112px 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.section-tag-line {
    width: 32px;
    height: 1px;
    background: var(--terra);
}

.section-tag span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--terra);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -.3px;
}

.section-title em {
    font-style: italic;
    color: var(--terra);
}

/* ABOUT */
#about {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

/* ─── About main image ─── */
.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--cream2);
    overflow: hidden;
    position: relative;
}

/* img otomatis crop ke rasio 4:5 */
.about-img-main .img-cover {
    position: absolute;
    inset: 0;
}

/* ─── About float: POLAROID style ─── */
.about-float {
    position: absolute;
    bottom: -20px;
    right: -16px;
    width: 38%;
    background: var(--white);
    border: none;
    box-shadow: 0 12px 40px rgba(28, 24, 18, .16), 0 2px 8px rgba(28, 24, 18, .08);
    overflow: visible;
    display: flex;
    flex-direction: column;
    transform: rotate(2.5deg);
    transition: transform .4s ease;
}

.about-float:hover {
    transform: rotate(0deg) scale(1.02);
}

/* foto bagian atas polaroid */
.about-float-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: var(--cream2);
}

.about-float-photo .img-cover {
    position: absolute;
    inset: 0;
}

/* strip putih bawah polaroid */
.about-float-caption {
    padding: 14px 16px 16px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.afc-stars {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 2px;
}

.afc-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -1px;
}

.afc-num span {
    color: var(--terra);
    font-size: 18px;
}

.afc-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted2);
}

/* pin/tape di atas polaroid */
.about-float::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 14px;
    background: rgba(196, 87, 42, .18);
    border-radius: 2px;
    z-index: 3;
}

/* fallback jika about-float tidak pakai foto (pakai badge angka) */
.about-float-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--white);
    padding: 14px 18px;
    box-shadow: 0 4px 16px rgba(28, 24, 18, .08);
    z-index: 2;
}

.ab-year {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
}

.ab-lbl {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -.3px;
    margin-bottom: 20px;
}

.about-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 30px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.about-tag {
    font-size: 12px;
    font-weight: 400;
    color: var(--ink);
    padding: 7px 16px;
    border: 1px solid var(--cream3);
    background: var(--warm);
}

.about-quote {
    padding: 20px 24px;
    border-left: 2px solid var(--terra);
    background: var(--terra-bg);
}

.about-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    color: var(--ink);
    line-height: 1.7;
}

.about-quote cite {
    font-size: 11.5px;
    font-weight: 400;
    color: var(--terra);
    font-style: normal;
    margin-top: 8px;
    display: block;
    letter-spacing: .5px;
}

/* MENU */
#menu {
    background: var(--warm);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.menu-tabs {
    display: flex;
    border: 1px solid var(--cream3);
}

.menu-tab {
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 10px 22px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all .25s;
    font-family: 'DM Sans', sans-serif;
    border-right: 1px solid var(--cream3);
}

.menu-tab:last-child {
    border-right: none;
}

.menu-tab.active {
    background: var(--ink);
    color: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.menu-card {
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform .35s;
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-3px);
    z-index: 2;
}

/* ─── Menu card image wrapper ─── */
.menu-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    /* foto crop ke rasio ini */
}

/* warna bg tetap sebagai fallback kalau img belum diisi */
.c1 {
    background: #E8D4B4
}

.c2 {
    background: #D8C8A0
}

.c3 {
    background: #CCBA96
}

.c4 {
    background: #D8C4A4
}

.c5 {
    background: #E4CFAC
}

/* img dalam menu-card-img */
.menu-card-img .img-cover {
    position: absolute;
    inset: 0;
}

.menu-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 12px;
    color: var(--white);
    z-index: 2;
}

.badge-new {
    background: var(--terra)
}

.badge-fav {
    background: var(--sage)
}

.badge-chef {
    background: var(--gold)
}

.menu-card-body {
    padding: 20px 24px 24px;
}

.menu-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.menu-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -.2px;
}

.menu-card-price {
    font-size: 15px;
    font-weight: 500;
    color: var(--terra);
    letter-spacing: -.2px;
    flex-shrink: 0;
}

.menu-card-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 16px;
}

.menu-card-meta {
    display: flex;
    gap: 14px;
    align-items: center;
}

.menu-meta-tag {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted2);
}

.menu-add {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border: 1px solid var(--cream3);
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    color: var(--ink);
    transition: all .2s;
    flex-shrink: 0;
}

.menu-add:hover {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra);
}

/* featured card */
.menu-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.menu-card.featured .menu-card-img {
    aspect-ratio: unset;
    min-height: 260px;
}

.menu-card.featured .menu-card-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card.featured .menu-card-name {
    font-size: 22px;
    margin-bottom: 10px;
}

.menu-card.featured .menu-card-desc {
    font-size: 14px;
    margin-bottom: 24px;
}

/* RESERVATION */
#reservation {
    background: var(--ink);
}

.res-header {
    margin-bottom: 64px;
}

.res-header .section-tag-line {
    background: var(--terra2);
}

.res-header .section-tag span {
    color: var(--terra2);
}

.res-header .section-title {
    color: var(--cream);
}

.res-header .section-title em {
    color: var(--terra2);
}

.res-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--muted2);
    max-width: 520px;
    margin-top: 16px;
}

.res-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.res-plan-label {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 20px;
    display: block;
}

.res-floor-tabs {
    display: flex;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, .1);
    width: fit-content;
}

.res-floor-tab {
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--muted2);
    padding: 9px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all .25s;
    font-family: 'DM Sans', sans-serif;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.res-floor-tab:last-child {
    border-right: none;
}

.res-floor-tab.active {
    background: var(--terra);
    color: var(--white);
}

.floor-plan {
    background: var(--ink2);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.floor-section {
    margin-bottom: 24px;
}

.floor-section:last-child {
    margin-bottom: 0;
}

.floor-section-name {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floor-section-name::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .06);
}

.table-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.table-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all .25s;
}

.table-shape {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, .4);
    transition: all .25s;
    font-family: 'DM Sans', sans-serif;
    position: relative;
}

.table-shape.round {
    border-radius: 50%;
}

.table-shape.rect {
    border-radius: 3px;
    width: 64px;
}

.table-lbl {
    font-size: 9px;
    font-weight: 400;
    color: rgba(255, 255, 255, .22);
    text-align: center;
    transition: color .25s;
}

.table-unit.window .table-shape::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: rgba(135, 170, 220, .3);
}

.table-unit.available:hover .table-shape {
    border-color: var(--terra2);
    color: var(--terra2);
    background: rgba(196, 87, 42, .1);
}

.table-unit.available:hover .table-lbl {
    color: var(--terra2);
}

.table-unit.booked .table-shape {
    border-color: rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .02);
    color: rgba(255, 255, 255, .12);
    cursor: not-allowed;
}

.table-unit.booked .table-lbl {
    color: rgba(255, 255, 255, .1);
}

.table-unit.selected .table-shape {
    border-color: var(--terra);
    background: var(--terra);
    color: var(--white);
}

.table-unit.selected .table-lbl {
    color: var(--terra2);
}

.res-legend {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.res-legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 300;
    color: var(--muted2);
}

.res-legend-dot {
    width: 10px;
    height: 10px;
    border: 1.5px solid;
}

.res-legend-dot.available {
    border-color: rgba(255, 255, 255, .2);
}

.res-legend-dot.booked {
    border-color: rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .02);
}

.res-legend-dot.selected {
    border-color: var(--terra);
    background: var(--terra);
}

.res-form-panel {
    background: var(--ink2);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.res-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 6px;
}

.res-form-sub {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted2);
    margin-bottom: 28px;
    line-height: 1.6;
}

.res-selected-info {
    background: rgba(196, 87, 42, .1);
    border: 1px solid rgba(196, 87, 42, .22);
    padding: 14px 18px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
}

.res-selected-text {
    font-size: 13px;
    font-weight: 400;
    color: var(--terra2);
}

.res-label {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 8px;
    display: block;
}

.res-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 8px 0 10px;
    outline: none;
    margin-bottom: 24px;
    transition: border-color .3s;
}

.res-input:focus {
    border-bottom-color: var(--terra);
}

.res-input::placeholder {
    color: rgba(255, 255, 255, .18);
}

.res-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.res-time-slots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 24px;
}

.time-slot {
    font-size: 12px;
    font-weight: 400;
    color: var(--muted2);
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    cursor: pointer;
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .3px;
}

.time-slot:hover {
    border-color: var(--terra2);
    color: var(--terra2);
}

.time-slot.active {
    background: var(--terra);
    border-color: var(--terra);
    color: var(--white);
}

.time-slot.full {
    border-color: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .15);
    cursor: not-allowed;
    text-decoration: line-through;
}

.res-submit {
    width: 100%;
    background: var(--terra);
    color: var(--white);
    padding: 15px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .3s;
    font-family: 'DM Sans', sans-serif;
    margin-top: 4px;
}

.res-submit:hover {
    background: var(--cream);
    color: var(--ink);
}

.res-note {
    font-size: 11.5px;
    font-weight: 300;
    color: rgba(255, 255, 255, .22);
    text-align: center;
    margin-top: 12px;
}

/* SPECIALS */
#specials {
    background: var(--cream);
}

.specials-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 64px;
}

.specials-header .section-tag {
    justify-content: center;
}

.specials-desc {
    font-size: 14.5px;
    font-weight: 300;
    color: var(--muted);
    margin-top: 14px;
    line-height: 1.8;
}

.specials-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.special-card {
    background: var(--white);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background .35s;
}

.special-card:hover {
    background: var(--warm);
}

.special-card:nth-child(2) {
    background: var(--ink);
}

.special-card:nth-child(2):hover {
    background: var(--ink2);
}

.special-card:nth-child(2) .sc-name {
    color: var(--cream);
}

.special-card:nth-child(2) .sc-desc {
    color: var(--muted2);
}

.special-card:nth-child(2) .sc-day {
    color: rgba(255, 255, 255, .28);
}

.special-card:nth-child(2) .sc-price {
    color: var(--terra2);
}

.sc-corner {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(196, 87, 42, .06);
}

.sc-day {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 20px;
}

.sc-emoji {
    font-size: 28px;
    margin-bottom: 18px;
    display: block;
}

.sc-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
}

.sc-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.sc-price {
    font-size: 17px;
    font-weight: 500;
    color: var(--terra);
    letter-spacing: -.3px;
}

/* REVIEWS */
#reviews {
    background: var(--white);
}

.reviews-header {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 56px;
}

.reviews-header .section-tag {
    justify-content: center;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.rating-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -1px;
}

.rating-stars {
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--gold);
}

.rating-count {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
}

.testi-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.testi-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    color: var(--ink);
    margin: 40px 0 24px;
}

.testi-author {
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terra);
}

.testi-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testi-dot {
    width: 24px;
    height: 1px;
    background: rgba(28, 24, 18, .18);
    cursor: pointer;
    transition: all .3s;
}

.testi-dot.active {
    background: var(--terra);
    width: 40px;
}

/* CTA */
#cta-section {
    background: var(--cream);
    padding: 112px 60px;
    position: relative;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 180px;
    font-weight: 400;
    font-style: italic;
    color: rgba(28, 24, 18, .04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--ink);
    letter-spacing: -.5px;
    margin-bottom: 18px;
}

.cta-title em {
    font-style: italic;
    color: var(--terra);
}

.cta-desc {
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 48px;
}

.cta-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto 14px;
}

.cta-form input {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--cream3);
    border-right: none;
    color: var(--ink);
    padding: 15px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color .3s;
}

.cta-form input::placeholder {
    color: var(--muted2);
}

.cta-form input:focus {
    border-color: var(--terra);
}

.cta-form button {
    background: var(--terra);
    border: none;
    color: var(--white);
    padding: 15px 28px;
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    transition: background .3s;
}

.cta-form button:hover {
    background: var(--ink);
}

.cta-note {
    font-size: 12px;
    font-weight: 300;
    color: var(--muted2);
}

.cta-perks {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cta-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 400;
    color: var(--muted);
}

.cta-perk::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--terra);
    opacity: .5;
    flex-shrink: 0;
}

/* FOOTER */
footer {
    background: var(--ink);
    padding: 64px 60px 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 52px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted2);
    line-height: 1.75;
    max-width: 220px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    color: var(--muted2);
    letter-spacing: .5px;
}

.footer-social:hover {
    border-color: var(--terra);
    color: var(--terra);
}

.footer-col h5 {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(245, 239, 227, .38);
    text-decoration: none;
    transition: color .25s;
}

.footer-col ul li a:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, .2);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .2);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, .5);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.rd1 {
    transition-delay: .15s
}

.rd2 {
    transition-delay: .3s
}

.rd3 {
    transition-delay: .45s
}

.rd4 {
    transition-delay: .6s
}

/* MOBILE */
@media(max-width:900px) {
    nav {
        padding: 20px 24px
    }

    nav.scrolled {
        padding: 14px 24px
    }

    .nav-links,
    .nav-cta {
        display: none
    }

    .cursor{
        display: none;
    }

    .cursor-ring{
        display: none;
    }

    #hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }

    .hero-left {
        padding: 24px 24px 80px;
        min-height: 70vh;
    }

    .hero-right {
        min-height: 50vw
    }

    .hero-scroll {
        display: none
    }

    .hero-stats {
        position: static;
        margin-top: 48px;
        padding-top: 40px;
        border-top: 1px solid var(--cream3);
        gap: 28px
    }

    section {
        padding: 80px 24px
    }

    #about {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .about-float {
        display: none
    }

    .menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
    }

    .menu-grid {
        grid-template-columns: 1fr
    }

    .menu-card.featured {
        grid-column: span 1;
        display: block
    }

    .res-grid {
        grid-template-columns: 1fr
    }

    .specials-row {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    footer {
        padding: 56px 24px 28px
    }

    .cta-form {
        flex-direction: column
    }

    .cta-form input {
        border-right: 1px solid var(--cream3);
        border-bottom: none
    }
}