:root {
    --espresso: #1d120d;
    --espresso-2: #2b1a13;
    --coffee: #5a3525;
    --coffee-light: #8a5a40;
    --caramel: #c98954;
    --cream: #fbf7f0;
    --cream-2: #f4ecdf;
    --white: #ffffff;
    --ink: #241914;
    --muted: #7c7069;
    --line: rgba(36, 25, 20, .10);
    --sage: #6f7d61;
    --green: #2f7d4a;
    --shadow: 0 22px 60px rgba(43, 26, 19, .10);
    --shadow-lg: 0 35px 90px rgba(29, 18, 13, .20);
    --radius: 24px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.ambient {
    position: fixed;
    z-index: -1;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .25;
    pointer-events: none;
}

.ambient-one {
    top: -240px;
    left: -220px;
    background: #e6b47e;
}

.ambient-two {
    right: -260px;
    bottom: 10%;
    background: #b7c0a4;
}

/* TOPBAR */
.topbar {
    min-height: 38px;
    background: var(--espresso);
    color: #d9c9bd;
    font-size: 11px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-left,
.topbar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-left span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.topbar i {
    color: var(--caramel);
}

.topbar-separator {
    width: 1px;
    height: 13px;
    background: rgba(255,255,255,.18);
}

.topbar-phone {
    transition: color .25s ease;
}

.topbar-phone:hover {
    color: #fff;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251,247,240,.92);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: .3s var(--ease);
}

.navbar.scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 35px rgba(29,18,13,.07);
}

.nav-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--espresso);
    color: #f6d6ad;
    box-shadow: 0 10px 25px rgba(29,18,13,.16);
    transition: .3s var(--ease);
}

.brand:hover .brand-icon {
    transform: translateY(-2px) rotate(-4deg);
    background: var(--coffee);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    letter-spacing: -.2px;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    position: relative;
    padding: 8px 0;
    color: #665a53;
    font-size: 13px;
    font-weight: 600;
    transition: .25s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--caramel);
    transform: translateX(-50%);
    transition: .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--espresso);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 18px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-order,
.mobile-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 43px;
    padding: 0 17px;
    border-radius: 13px;
    background: var(--espresso);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: .3s var(--ease);
}

.nav-order:hover {
    background: var(--coffee);
    transform: translateY(-2px);
}

.nav-order i,
.mobile-order i {
    color: #9fdaa9;
    font-size: 16px;
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 19px;
    height: 2px;
    border-radius: 10px;
    background: var(--espresso);
    transition: .25s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: rgba(251,247,240,.98);
    border-top: 1px solid var(--line);
}

.mobile-menu-inner {
    padding: 10px 0 22px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    color: #554941;
    font-size: 14px;
    font-weight: 700;
}

.mobile-menu a i {
    width: 24px;
    color: var(--coffee-light);
}

.mobile-menu.show {
    display: block;
}

.mobile-order {
    margin-top: 15px;
    border: 0 !important;
    color: #fff !important;
}



/* HERO */
.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--espresso);
    color: #fff;
}

.hero-image {
    position: absolute;
    inset: 0 0 0 38%;
    background:
        url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1800&q=88")
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(29,18,13,1) 0%, rgba(29,18,13,.98) 34%, rgba(29,18,13,.55) 66%, rgba(29,18,13,.45) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: center;
    gap: 60px;
    min-height: 600px;
}

.hero-content {
    max-width: 680px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d7a56f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 20px;
}

.eyebrow span {
    width: 32px;
    height: 1px;
    background: #d7a56f;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.hero h1::after {
    content: ".";
    color: #d7a56f;
}

.hero-content > p {
    max-width: 620px;
    margin-bottom: 32px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 34px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 21px;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 800;
    transition: .3s var(--ease);
}

.btn-primary {
    background: #c98954;
    color: #fff;
    box-shadow: 0 14px 30px rgba(201,137,84,.25);
}

.btn-primary:hover {
    background: #b97746;
    transform: translateY(-3px);
}

.btn-light {
    background: rgba(255,255,255,.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
}

.btn-light:hover {
    background: rgba(255,255,255,.17);
    transform: translateY(-3px);
}

.btn-light i {
    color: #9fdaa9;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    width: 34px;
    height: 34px;
    margin-left: -5px;
    display: grid;
    place-items: center;
    border: 2px solid var(--espresso);
    border-radius: 50%;
    background: #f0dfc9;
    color: var(--espresso);
    font-size: 11px;
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.hero-note strong,
.hero-note small {
    display: block;
}

.hero-note strong {
    font-size: 11px;
}

.hero-note small {
    margin-top: 2px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
}

.hero-side {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-card-main {
    width: 310px;
    min-height: 255px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.04));
    box-shadow: 0 30px 70px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
}

.hero-card-label {
    align-self: flex-start;
    margin-bottom: auto;
    padding: 8px 10px;
    border-radius: 9px;
    background: rgba(201,137,84,.17);
    color: #efc79f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-card-label i {
    margin-right: 5px;
}

.hero-card-main strong {
    font-family: 'Playfair Display', serif;
    font-size: 33px;
    line-height: 1.08;
}

.hero-card-main p {
    margin-top: 10px;
    color: rgba(255,255,255,.60);
    font-size: 11px;
}

.hero-mini-card {
    position: absolute;
    left: 0;
    bottom: 25px;
    min-width: 220px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(36,25,20,.08);
    border-radius: 15px;
    background: rgba(255,255,255,.96);
    color: var(--ink);
    box-shadow: 0 18px 50px rgba(0,0,0,.20);
}

.mini-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #f3e3d0;
    color: var(--coffee);
}

.hero-mini-card strong,
.hero-mini-card small {
    display: block;
}

.hero-mini-card strong {
    font-size: 12px;
}

.hero-mini-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 9px;
}

.hero-stats {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: -1px;
    width: min(1080px, calc(100% - 48px));
    min-height: 76px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 0 25px;
    border-radius: 20px 20px 0 0;
    background: var(--cream);
    color: var(--ink);
    box-shadow: 0 -10px 40px rgba(0,0,0,.10);
    transform: translateX(-50%);
}

.hero-stats > div {
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 25px;
    border-right: 1px solid var(--line);
}

.hero-stats > div:last-child {
    border-right: 0;
}

.hero-stats strong {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1;
}

.hero-stats span:not(.status-dot) {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
}

.hero-stats .status {
    flex-direction: row;
    align-items: center;
    gap: 9px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #48a868;
    box-shadow: 0 0 0 5px rgba(72,168,104,.12);
}

/* SECTIONS */
.section {
    padding: 115px 0;
}

.categories-section {
    background: var(--cream);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 42px;
}

.section-head h2,
.experience-content h2,
.cta-box h2 {
    margin-top: 8px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.section-head h2 em,
.experience-content h2 em,
.cta-box h2 em {
    color: var(--coffee-light);
    font-style: normal;
}

.section-head > p {
    max-width: 390px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.category-card {
    min-height: 190px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 21px;
    background: rgba(255,255,255,.66);
    transition: .35s var(--ease);
    opacity: 0;
    transform: translateY(18px);
}

.category-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover {
    border-color: rgba(90,53,37,.22);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.category-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #f0e1d0;
    color: var(--coffee);
    font-size: 18px;
}

.category-card h3 {
    margin-bottom: 7px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

.category-card div span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.category-card div span i {
    margin-left: 5px;
    transition: .25s ease;
}

.category-card:hover div span i {
    transform: translateX(4px);
}

.empty-state {
    grid-column: 1 / -1;
    min-height: 220px;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 30px;
    text-align: center;
    border: 1px dashed rgba(36,25,20,.18);
    border-radius: 22px;
}

.empty-state > i {
    margin-bottom: 10px;
    color: var(--coffee-light);
    font-size: 30px;
}

.empty-state h3 {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
}

.empty-state p {
    color: var(--muted);
    font-size: 12px;
}

/* MENU */
.menu-section {
    background: #f4ecdf;
}

.menu-head {
    align-items: flex-end;
}

.section-description {
    max-width: 500px !important;
    margin-top: 12px;
}

.menu-count {
    min-width: 130px;
    padding: 15px 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255,255,255,.60);
    text-align: center;
}

.menu-count strong,
.menu-count span {
    display: block;
}

.menu-count strong {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
}

.menu-count span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
}

.menu-toolbar {
    margin-bottom: 28px;
}

.search-box {
    position: relative;
    height: 56px;
    display: flex;
    align-items: center;
    margin-bottom: 13px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255,255,255,.78);
    transition: .25s ease;
}

.search-box:focus-within {
    border-color: rgba(90,53,37,.35);
    box-shadow: 0 0 0 4px rgba(90,53,37,.06);
}

.search-box > i {
    color: var(--coffee-light);
    font-size: 14px;
}

.search-box input {
    width: 100%;
    height: 100%;
    padding: 0 12px;
    outline: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 13px;
}

.search-box input::placeholder {
    color: #9b9089;
}

.search-box button {
    display: none;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #eaded0;
    color: var(--coffee);
    cursor: pointer;
}

.search-box button.show {
    display: grid;
    place-items: center;
}

.filter-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
    display: none;
}

.menu-filter {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: #71635b;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

.menu-filter:hover,
.menu-filter.active {
    border-color: var(--espresso);
    background: var(--espresso);
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.menu-card {
    overflow: hidden;
    border: 1px solid rgba(36,25,20,.08);
    border-radius: 22px;
    background: #fffdf9;
    box-shadow: 0 10px 30px rgba(43,26,19,.045);
    opacity: 0;
    transform: translateY(18px);
    transition: .35s var(--ease);
}

.menu-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.menu-card[hidden] {
    display: none;
}

.menu-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.menu-image {
    position: relative;
    height: 235px;
    overflow: hidden;
    background: #2b1a13;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.menu-card:hover .menu-image img {
    transform: scale(1.05);
}

.menu-image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.36));
    pointer-events: none;
}

.favorite-badge,
.availability {
    position: absolute;
    z-index: 2;
    top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 9px;
    font-weight: 800;
}

.favorite-badge {
    left: 14px;
    background: #f0d1ad;
    color: #613719;
}

.availability {
    right: 14px;
    color: #fff;
    background: rgba(29,18,13,.72);
    backdrop-filter: blur(6px);
}

.availability > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.availability.available > span {
    background: #7cd49a;
}

.availability.sold-out > span {
    background: #ed9b8e;
}

.menu-body {
    padding: 19px;
}

.menu-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.menu-meta span {
    color: var(--coffee-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.menu-meta i {
    color: var(--sage);
    font-size: 10px;
}

.menu-body h3 {
    margin-bottom: 7px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.2;
}

.menu-body p {
    min-height: 40px;
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.menu-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.price small,
.price strong {
    display: block;
}

.price small {
    color: #a09791;
    font-size: 8px;
}

.price strong {
    margin-top: 1px;
    color: var(--coffee);
    font-family: 'Playfair Display', serif;
    font-size: 21px;
}

.menu-detail-btn {
    min-height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    background: #f0e2d3;
    color: var(--coffee);
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

.menu-detail-btn:hover {
    background: var(--espresso);
    color: #fff;
}

.menu-detail-btn i {
    font-size: 9px;
}

.search-empty {
    display: none;
    padding: 55px 20px;
    text-align: center;
}

.search-empty.show {
    display: block;
}

.empty-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #eadccd;
    color: var(--coffee);
}

.search-empty h3 {
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

.search-empty p {
    color: var(--muted);
    font-size: 11px;
}

.search-empty button {
    margin-top: 17px;
    padding: 11px 15px;
    border-radius: 10px;
    background: var(--espresso);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

/* EXPERIENCE */
.experience-section {
    padding: 125px 0;
    background: var(--cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: .92fr 1fr;
    align-items: center;
    gap: 80px;
}

.experience-photo {
    position: relative;
    min-height: 550px;
    border-radius: 27px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(-20px);
    transition: .7s var(--ease);
}

.experience-photo.revealed {
    opacity: 1;
    transform: translateX(0);
}

.experience-photo img {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
}

.photo-caption {
    position: absolute;
    inset: auto 25px 25px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 17px;
    background: rgba(29,18,13,.72);
    color: #fff;
    backdrop-filter: blur(10px);
}

.photo-caption span,
.photo-caption strong {
    display: block;
}

.photo-caption span {
    margin-bottom: 8px;
    color: #e5b77f;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photo-caption strong {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.2;
}

.experience-content {
    opacity: 0;
    transform: translateX(20px);
    transition: .7s .1s var(--ease);
}

.experience-content.revealed {
    opacity: 1;
    transform: translateX(0);
}

.experience-content > p {
    max-width: 570px;
    margin: 24px 0 30px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.feature-list {
    display: grid;
    gap: 17px;
}

.feature-list > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.feature-list > div > span {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #f0e1d0;
    color: var(--coffee);
}

.feature-list strong,
.feature-list small {
    display: block;
}

.feature-list strong {
    margin-bottom: 2px;
    font-size: 12px;
}

.feature-list small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 0 0 110px;
    background: var(--cream);
}

.cta-box {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 50px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 27px;
    background:
        radial-gradient(circle at 85% 10%, rgba(201,137,84,.28), transparent 28%),
        var(--espresso);
    color: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: .7s var(--ease);
}

.cta-box.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cta-box h2 {
    max-width: 580px;
    margin-top: 10px;
}

.cta-box h2 em {
    color: #d7a56f;
}

.cta-box p {
    margin-top: 10px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    flex-shrink: 0;
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.10);
}

/* FOOTER */
.footer {
    padding: 65px 0 20px;
    background: #150c08;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .75fr .75fr .95fr;
    gap: 55px;
    padding-bottom: 50px;
}

.footer-logo .brand-icon {
    background: #2b1a13;
}

.footer-brand > p {
    max-width: 350px;
    margin-top: 20px;
    color: rgba(255,255,255,.47);
    font-size: 11px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-column h3 {
    margin-bottom: 7px;
    color: #e8c39e;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span,
.footer-column strong,
.footer-column small {
    color: rgba(255,255,255,.58);
    font-size: 10px;
    line-height: 1.7;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column strong {
    color: #fff;
}

.footer-column small {
    color: rgba(255,255,255,.35);
}

.footer-bottom {
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.33);
    font-size: 9px;
}

/* MODAL */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s ease;
}

.menu-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,10,7,.78);
    backdrop-filter: blur(9px);
}

.menu-modal-content {
    position: relative;
    z-index: 2;
    width: min(850px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    display: grid;
    grid-template-columns: .85fr 1fr;
    overflow: hidden;
    border-radius: 26px;
    background: #fffdf9;
    box-shadow: 0 45px 120px rgba(0,0,0,.36);
    transform: translateY(22px) scale(.97);
    transition: .35s var(--ease);
}

.menu-modal.show .menu-modal-content {
    transform: translateY(0) scale(1);
}

.menu-modal-close {
    position: absolute;
    z-index: 5;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(29,18,13,.72);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.menu-modal-image {
    position: relative;
    min-height: 570px;
    background: var(--espresso);
}

.menu-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-modal-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
    pointer-events: none;
}

.menu-modal-image > span {
    position: absolute;
    z-index: 2;
    top: 25px;
    left: 25px;
    padding: 9px 11px;
    border-radius: 9px;
    background: #d7a56f;
    color: var(--espresso);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-modal-info {
    min-width: 0;
    overflow-y: auto;
    padding: 48px 40px 40px;
}

.modal-category {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 8px;
    background: #f0e1d0;
    color: var(--coffee);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.menu-modal-info h2 {
    margin: 17px 0 15px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.04;
}

.modal-price {
    margin-bottom: 21px;
}

.modal-price small,
.modal-price strong {
    display: block;
}

.modal-price small {
    color: #9d928b;
    font-size: 9px;
    text-transform: uppercase;
}

.modal-price strong {
    color: var(--coffee);
    font-family: 'Playfair Display', serif;
    font-size: 33px;
}

.modal-status {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fbf5ed;
}

.modal-status > span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #e7f4ea;
    color: var(--green);
}

.modal-status small,
.modal-status strong {
    display: block;
}

.modal-status small {
    color: var(--muted);
    font-size: 8px;
}

.modal-status strong {
    margin-top: 1px;
    font-size: 10px;
}

.modal-description {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.modal-description strong {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
}

.modal-description strong i {
    color: var(--coffee-light);
}

.modal-description p {
    margin-top: 9px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.8;
}

.modal-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 18px 0 22px;
}

.modal-benefits span {
    padding: 8px 9px;
    border-radius: 8px;
    background: #f4ecdf;
    color: #6d5b50;
    font-size: 8px;
    font-weight: 800;
}

.modal-benefits i {
    color: var(--green);
    margin-right: 3px;
}

.modal-order-btn {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    background: var(--espresso);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    transition: .25s ease;
}

.modal-order-btn:hover {
    background: var(--coffee);
}

/* FLOATING */
.floating-whatsapp {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    min-height: 48px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #2f7d4a;
    color: #fff;
    box-shadow: 0 15px 35px rgba(47,125,74,.28);
    font-size: 10px;
    font-weight: 800;
    transition: .3s var(--ease);
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
}

.floating-whatsapp i {
    font-size: 18px;
}

.back-top {
    position: fixed;
    z-index: 899;
    right: 22px;
    bottom: 80px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--espresso);
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s var(--ease);
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* TABLET */
@media (max-width: 1050px) {
    .desktop-nav {
        gap: 18px;
    }

    .hero-inner {
        grid-template-columns: 1fr .72fr;
        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(46px, 6vw, 68px);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }
}

/* MOBILE / TABLET */
@media (max-width: 780px) {
    .container {
        width: min(100% - 34px, 600px);
    }

    .topbar {
        display: none;
    }

    .nav-inner {
        height: 72px;
    }

    .desktop-nav,
    .nav-order {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 110px;
    }

    .hero-image {
        inset: 38% 0 0;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(29,18,13,1) 0%, rgba(29,18,13,.96) 44%, rgba(29,18,13,.52) 100%);
    }

    .hero-inner {
        width: min(100% - 34px, 600px);
        grid-template-columns: 1fr;
        gap: 35px;
        min-height: auto;
    }

    .hero h1 {
        max-width: 620px;
        font-size: clamp(45px, 12vw, 62px);
        letter-spacing: -1.5px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .hero-side {
        min-height: 390px;
    }

    .hero-card-main {
        width: min(320px, 80%);
        min-height: 250px;
    }

    .hero-mini-card {
        left: 3%;
        bottom: 5px;
    }

    .hero-stats {
        bottom: 0;
        width: calc(100% - 34px);
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
        border-radius: 17px;
    }

    .hero-stats > div {
        min-height: 55px;
        padding: 0 14px;
        border-right: 0;
    }

    .hero-stats > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .hero-stats > div:nth-child(odd) {
        border-right: 1px solid var(--line);
    }

    .hero-stats strong {
        font-size: 19px;
    }

    .hero-stats .status {
        grid-column: span 2;
        border-right: 0;
        flex-direction: row;
        justify-content: center;
        min-height: 42px;
    }

    .section {
        padding: 85px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .section-head > p {
        max-width: 560px;
    }

    .category-grid {
        gap: 11px;
    }

    .category-card {
        min-height: 165px;
        padding: 19px;
    }

    .menu-head {
        flex-direction: row;
        align-items: flex-end;
    }

    .menu-count {
        flex-shrink: 0;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .menu-image {
        height: 190px;
    }

    .menu-body {
        padding: 15px;
    }

    .menu-body h3 {
        font-size: 19px;
    }

    .menu-body p {
        font-size: 10px;
    }

    .experience-section {
        padding: 90px 0;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .experience-photo,
    .experience-photo img {
        min-height: 460px;
    }

    .cta-section {
        padding-bottom: 85px;
    }

    .cta-box {
        padding: 38px 27px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }
}

/* SMALL MOBILE */
@media (max-width: 540px) {
    .container,
    .hero-inner {
        width: calc(100% - 28px);
    }

    .brand-icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .brand-copy small {
        font-size: 7px;
    }

    .hero {
        padding-top: 45px;
    }

    .eyebrow {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-content > p {
        font-size: 12px;
        line-height: 1.75;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-note {
        align-items: flex-start;
    }

    .hero-side {
        min-height: 350px;
    }

    .hero-card-main {
        width: 84%;
        min-height: 230px;
        padding: 22px;
    }

    .hero-card-main strong {
        font-size: 27px;
    }

    .hero-mini-card {
        left: 0;
        min-width: 195px;
    }

    .hero-stats {
        width: calc(100% - 28px);
    }

    .section {
        padding: 72px 0;
    }

    .section-head h2,
    .experience-content h2,
    .cta-box h2 {
        font-size: 36px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-card {
        min-height: 150px;
        padding: 16px;
        border-radius: 17px;
    }

    .category-icon {
        width: 42px;
        height: 42px;
    }

    .category-card h3 {
        font-size: 17px;
    }

    .menu-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .menu-count {
        width: 100%;
    }

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

    .menu-image {
        height: 230px;
    }

    .menu-body h3 {
        font-size: 21px;
    }

    .experience-photo,
    .experience-photo img {
        min-height: 390px;
    }

    .photo-caption {
        inset: auto 15px 15px;
        padding: 16px;
    }

    .photo-caption strong {
        font-size: 19px;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

    .menu-modal {
        padding: 8px;
    }

    .menu-modal-content {
        width: 100%;
        max-height: calc(100vh - 16px);
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .menu-modal-image {
        min-height: 235px;
        height: 235px;
    }

    .menu-modal-info {
        max-height: calc(100vh - 251px);
        padding: 25px 20px 22px;
    }

    .menu-modal-info h2 {
        font-size: 34px;
    }

    .modal-price strong {
        font-size: 29px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }

    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
    }

    .back-top {
        right: 14px;
        bottom: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ============================================================
   LOGIN NAVBAR
============================================================ */
.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 43px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: transparent;
    color: var(--espresso);
    font-size: 12px;
    font-weight: 700;
    transition: .3s var(--ease);
}

.nav-login:hover {
    background: var(--espresso);
    border-color: var(--espresso);
    color: #fff;
    transform: translateY(-2px);
}

.nav-login i {
    font-size: 13px;
}

.mobile-login {
    margin-top: 8px;
    border: 0 !important;
    border-radius: 13px;
    background: var(--espresso);
    color: #fff !important;
}

.mobile-login i {
    color: #d7a56f !important;
}

@media (max-width: 820px) {
    .nav-login,
    .nav-order {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}
