/*
Theme Name: Rumoh Mekda (Multi-Page)
Theme URI: https://rumoh-mekda-home.base44.app
Author: Rumoh Mekda
Description: Multi-page version — Home, Menu, Reservations, and Our Story as separate pages with full navigation, built on the same design system as the one-page version.
Version: 2.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rumohmekda
*/

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
    --bg:          #F5F0E6;
    --bg-alt:      #EDE8DB;
    --bg-footer:   #4A2808;
    --text:        #1A1008;
    --muted:       #7A6A58;
    --label-c:     #B8841A;
    --accent:      #B8841A;
    --accent-h:    #D4A030;
    --border:      #DDD5C3;
    --white:       #FFFFFF;

    --serif: 'Playfair Display', Georgia, serif;
    --sans:  'Inter', system-ui, sans-serif;

    --nav-h: 72px;
    --max-w: 1200px;
    --ease:  cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: clamp(24px, 5vw, 72px);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--label-c);
    font-weight: 400;
    margin-bottom: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 15px 32px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--amber {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn--amber:hover {
    background: var(--accent-h);
    border-color: var(--accent-h);
}

.btn--dark {
    background: rgba(26,16,8,0.7);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}
.btn--dark:hover {
    background: rgba(26,16,8,0.9);
    border-color: rgba(255,255,255,0.6);
}

.btn--outline-amber {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn--outline-amber:hover {
    background: var(--accent);
    color: var(--white);
}

/* ============================================================
   NAVIGATION
   — transparent on hero, white + shadow on scroll
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    height: var(--nav-h);
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
    background: transparent;
}

/* White background once scrolled past hero */
.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.site-logo {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--white);
    transition: color 0.4s;
    flex-shrink: 0;
    white-space: nowrap;
}
.site-header.scrolled .site-logo { color: var(--text); }

/* Logo images: the real white-version file shows over the transparent
   dark hero, and the real black-version file shows once the header
   goes solid on scroll — swapping actual files rather than faking the
   colour change with a CSS filter, since these are official brand PNGs. */
.site-logo img,
.site-logo-img {
    height: 32px;
    width: auto;
    display: block;
}
.site-logo-img.site-logo-img--black { display: none; }
.site-header.scrolled .site-logo-img.site-logo-img--white { display: none; }
.site-header.scrolled .site-logo-img.site-logo-img--black { display: block; }
/* Custom logo uploaded via the Customizer (not the bundled white/black
   pair) still gets a light dim on the transparent header, if needed. */
.site-logo > img:only-child {
    filter: brightness(0) invert(1);
    transition: filter 0.4s;
}
.site-header.scrolled .site-logo > img:only-child {
    filter: none;
}

/* Desktop links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.site-header.scrolled .nav-links a { color: var(--muted); }
.site-header.scrolled .nav-links a:hover { color: var(--text); }

/* Reserve button in nav */
.nav-reserve {
    padding: 10px 22px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--white);
    border: none;
    display: inline-block;
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-reserve:hover { background: var(--accent-h); }

/* Hamburger (mobile only) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: rgba(255,255,255,0.85);
    transition: transform 0.3s, opacity 0.3s;
}
.site-header.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-footer);
    z-index: 400;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: rgba(255,255,255,0.75);
    transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--accent-h); }
.nav-mobile-close {
    position: absolute;
    top: 22px; right: 28px;
    font-size: 2rem;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    line-height: 1;
}

/* ============================================================
   HERO — centered text
   ============================================================ */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: #3A1E0A;
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20,10,4,0.52);
}

.hero-bg.no-image {
    background-image: linear-gradient(135deg,#2A1208 0%,#3A1E0A 50%,#2C1A08 100%);
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Skip video for reduced-motion users — the static hero image
   (same first frame) shows instead via the poster attribute. */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-video { display: none; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
    display: block;
}

.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 22px;
}

/* Hero logo image — the real white brand file, used directly since
   the hero always sits over the dark video/poster (no need to swap
   colour the way the header logo does on scroll). */
.hero-logo-img {
    width: clamp(280px, 34vw, var(--hero-logo-max, 560px));
    height: auto;
    display: block;
    margin: 0 auto 22px;
}

.hero-sub {
    font-family: var(--sans);
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll chevron */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 22px; height: 22px; }

/* Shorter hero variant used on Menu / Reservations / Our Story pages */
.hero--page {
    height: 46vh;
    min-height: 340px;
}
.hero--page .hero-scroll { display: none; }
.hero--page .hero-h1 { font-size: clamp(2.4rem, 5vw, 4rem); }

@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   OUR STORY — 2-column layout
   ============================================================ */
.story {
    padding-block: 100px;
    background: var(--bg);
}

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

/* Left: text */
.story-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 28px;
}

.story-text p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 18px;
}

.story-text p em {
    font-style: italic;
    font-weight: 600;
    color: var(--text);
}

/* Right: image with "2024 EST." badge */
.story-img-wrap {
    position: relative;
}

.story-img {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.story-img-fill {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #3A2010;
    background-image: linear-gradient(145deg,#4A2A14 0%,#3A1E0A 50%,#5A3418 100%);
    transition: transform 0.7s var(--ease);
}
.story-img-wrap:hover .story-img-fill { transform: scale(1.03); }

/* Reversed column order for alternating story chapters */
.story-grid--reverse { direction: rtl; }
.story-grid--reverse > * { direction: ltr; }

/* Chapter kicker label (reuses .eyebrow styling elsewhere) */
.story-chapter-kicker {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--label-c);
    display: block;
    margin-bottom: 14px;
}

/* Pull quote between chapters */
.story-quote-section {
    padding-block: 70px;
    background: var(--bg-alt);
    text-align: center;
}
.story-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    max-width: 760px;
    margin: 0 auto;
    color: var(--text);
    line-height: 1.5;
}
.story-quote::before, .story-quote::after { content: '"'; color: var(--accent); }

/* Photo gallery strip */
.story-gallery {
    padding-block: 90px;
    background: var(--bg-footer);
}
.story-gallery .dishes-header h2,
.story-gallery .dishes-header .eyebrow { color: var(--white); }
.story-gallery .dishes-header p { color: rgba(255,255,255,0.6); }
.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.gallery-strip img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
@media (max-width: 720px) {
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}

/* "2024 EST." brown badge */
.story-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-footer);
    padding: 22px 28px;
    min-width: 100px;
}
.story-badge-year {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
}
.story-badge-label {
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 4px;
}

/* ============================================================
   SIGNATURE DISHES — 2×2 grid
   ============================================================ */
.dishes {
    padding-block: 100px;
    background: var(--bg-alt);
}

.dishes-header {
    text-align: center;
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 56px;
}

.dishes-header h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.dishes-header p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
}

.dishes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 52px;
}

.dish-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    cursor: pointer;
}
.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(28,13,6,0.13);
}

.dish-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.dish-img-fill {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #7A5030;
    background-image: linear-gradient(135deg,#8C6840 0%,#5A3418 100%);
    transition: transform 0.55s var(--ease);
}
.dish-card:hover .dish-img-fill { transform: scale(1.06); }

/* Dish gradient placeholders */
.dish-nasilemak  .dish-img-fill { background-color: #8B6040; background-image: linear-gradient(135deg,#A07050 0%,#7A5030 100%); }
.dish-udang      .dish-img-fill { background-color: #6A3820; background-image: linear-gradient(135deg,#8A4828 0%,#5A2C14 100%); }
.dish-bananaleaf .dish-img-fill { background-color: #4A6830; background-image: linear-gradient(135deg,#5A8040 0%,#3A5020 100%); }
.dish-kayatoast  .dish-img-fill { background-color: #8C6830; background-image: linear-gradient(135deg,#A07838 0%,#7A5820 100%); }

/* Badges */
.dish-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    z-index: 2;
}
.badge--signature { background: var(--accent);  color: var(--white); }
.badge--chefs     { background: #3A7A40;         color: var(--white); }
.badge--musttry   { background: #B84020;         color: var(--white); }
.badge--breakfast { background: #3A5A8A;         color: var(--white); }

.dish-body { padding: 20px 24px 26px; }

.dish-body h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.dish-body p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}

.dishes-cta { text-align: center; }

/* ============================================================
   CTA BANNER — dark reservation prompt (Home page)
   ============================================================ */
.cta-banner {
    padding-block: 80px;
    background: var(--bg-footer);
    color: var(--white);
}
.cta-banner h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 14px;
}
.cta-banner p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin: 0 auto 28px;
}

/* ============================================================
   FULL MENU — categorised list beneath the signature showcase
   ============================================================ */
.menu-full {
    max-width: 900px;
    margin: 0 auto 52px;
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 44px;
}
.menu-filter {
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 9px 20px;
    cursor: pointer;
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.menu-filter:hover,
.menu-filter.is-active {
    background: var(--accent);
    color: var(--white);
}

.menu-cat { margin-bottom: 40px; }
.menu-cat-title {
    display: block;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--label-c);
    margin-bottom: 20px;
}

.menu-cat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 48px;
}
@media (max-width: 720px) {
    .menu-cat-list { grid-template-columns: 1fr; }
}

.menu-row {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.menu-row-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}
.menu-row-top h4 {
    font-family: var(--serif);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}
.menu-row-price {
    font-family: var(--serif);
    color: var(--accent);
    white-space: nowrap;
}
.menu-row p {
    font-size: 0.83rem;
    color: var(--muted);
    margin: 4px 0 0;
    line-height: 1.55;
}

/* ============================================================
   RESERVATIONS — booking widget + visit info
   ============================================================ */
.reservations {
    padding-block: 100px;
    background: var(--bg);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 860px) {
    .reservation-grid { grid-template-columns: 1fr; }
}

.reservation-widget {
    background: var(--white);
    border: 1px solid var(--border);
    min-height: 620px;
}
.reservation-widget iframe {
    width: 100%;
    height: 620px;
    border: 0;
    display: block;
}

.reservation-info .location-card { height: 100%; }

/* ============================================================
   LOCATIONS — side-by-side cards
   ============================================================ */
.locations {
    padding-block: 100px;
    background: var(--bg);
}

.locations-header {
    text-align: center;
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 56px;
}

.locations-header h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.locations-header p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.65;
}

/* Side-by-side grid */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.location-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 36px 32px;
    transition: box-shadow 0.35s var(--ease);
}
.location-card:hover {
    box-shadow: 0 8px 32px rgba(28,13,6,0.08);
}

.location-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.location-pin {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.location-city {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.location-address {
    display: block;
    font-size: 0.83rem;
    color: var(--muted);
    margin-left: 30px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
.location-address:hover {
    color: var(--accent);
    text-decoration: underline;
}

.location-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 30px;
}

.location-hour-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--muted);
}

.hour-icon {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

.hour-label {
    font-weight: 600;
    color: var(--text);
}

/* ============================================================
   FOOTER — warm brown, logo left / instagram right
   ============================================================ */
.site-footer {
    background: var(--bg-footer);
    padding-block: 48px 0;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 40px;
    gap: 24px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.5;
    max-width: 280px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: color 0.25s;
}
.footer-social a:hover { color: rgba(255,255,255,0.85); }
.footer-social svg { width: 18px; height: 18px; }

.footer-copy {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-block: 20px;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.22);
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-banner {
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 56px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.page-body {
    max-width: 780px;
    margin-inline: auto;
    padding: 72px clamp(24px,5vw,60px);
}
.page-body h2  { font-family:var(--serif);font-size:1.8rem;font-weight:700;margin-block:40px 14px; }
.page-body p   { font-size:.95rem;color:var(--muted);line-height:1.75;margin-bottom:18px; }
.page-body a   { color:var(--accent);border-bottom:1px solid rgba(184,132,26,.3); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
    display:grid;grid-template-columns:repeat(3,1fr);gap:28px;padding-block:72px;
}
.blog-card-img { height:200px;overflow:hidden;margin-bottom:18px;background:var(--bg-alt); }
.blog-card-img img { width:100%;height:100%;object-fit:cover;transition:transform .5s; }
.blog-card:hover .blog-card-img img { transform:scale(1.04); }
.blog-card h2 { font-family:var(--serif);font-size:1.2rem;font-weight:600;margin-bottom:8px; }
.blog-card p  { font-size:.86rem;color:var(--muted);line-height:1.6; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 48px; }
    .story-img  { height: 340px; }
    .story-badge { bottom: -14px; left: -10px; }
    .locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; }
    .nav-links, .nav-reserve { display: none; }
    .nav-toggle { display: flex; }

    .hero-h1 { font-size: 2.8rem; }
    .hero-actions { gap: 10px; }
    .btn { padding: 13px 22px; font-size: 0.7rem; }

    .dishes-grid { grid-template-columns: 1fr; }
    .dish-img    { height: 200px; }

    .footer-main { flex-direction: column; gap: 20px; }

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

@media (max-width: 480px) {
    .hero-h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
}
