/* ============================================
   EGGTISAN — Design System v2
   Chic · Hipster · Editorial Cafe
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Space+Grotesk:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&family=Noto+Sans+Thai:wght@300;400;500;600;700&display=swap');

/* --- Tokens --- */
:root {
    /* Background */
    --bg: #FAF6F3;
    --bg-warm: #F5EDE7;
    --bg-dark: #1A1210;
    --bg-card: #ffffff;
    --bg-accent: #E8D5CC;

    /* Brand */
    --red: #C44B42;
    --red-light: #D96A62;
    --red-dark: #9E3930;
    --red-glow: rgba(196, 75, 66, 0.08);
    --gold: #C5964C;
    --gold-light: #D9AD6A;
    --coral: #E8A090;

    /* Text */
    --ink: #1A1210;
    --ink-secondary: #4A3830;
    --ink-muted: #8C7468;
    --ink-light: rgba(26, 18, 16, 0.4);
    --ink-on-dark: #FAF6F3;

    /* Borders */
    --border: rgba(26, 18, 16, 0.08);
    --border-strong: rgba(26, 18, 16, 0.15);

    /* Type */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Space Grotesk', -apple-system, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-thai: 'Noto Sans Thai', sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-2xl: 120px;

    /* Radius */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 40px;
    --r-full: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 18, 16, 0.04);
    --shadow-md: 0 8px 30px rgba(26, 18, 16, 0.07);
    --shadow-lg: 0 20px 60px rgba(26, 18, 16, 0.1);
    --shadow-glow: 0 0 40px rgba(196, 75, 66, 0.08);

    /* Animation */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast: 0.2s;
    --dur-base: 0.4s;
    --dur-slow: 0.8s;

    --container: 1320px;
    --header-h: 80px;
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease);
}

a:hover {
    color: var(--red-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--red);
    border-radius: 1px;
}

/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), backdrop-filter var(--dur-base) var(--ease);
}

.site-header.scrolled {
    background: rgba(250, 246, 243, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 3px;
    line-height: 1;
}

.site-logo .logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: block;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-secondary);
    padding: 8px 16px;
    border-radius: var(--r-sm);
    transition: all var(--dur-fast) var(--ease);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
    background: var(--red-glow);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
}

.btn-reserve-nav {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 2.5px !important;
    color: var(--ink-on-dark) !important;
    background: var(--ink) !important;
    padding: 10px 22px !important;
    border-radius: var(--r-full) !important;
    transition: all var(--dur-fast) var(--ease) !important;
}

.btn-reserve-nav:hover {
    background: var(--red) !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
}

/* Language */
.lang-switcher {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    overflow: hidden;
    margin-left: 4px;
}

.lang-switcher a {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding: 5px 12px;
    transition: all var(--dur-fast);
    line-height: 1;
}

.lang-switcher a:hover {
    color: var(--red);
}

.lang-switcher a.active-lang {
    color: #fff;
    background: var(--ink);
}

.lang-divider {
    width: 1px;
    height: 14px;
    background: var(--border);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: all var(--dur-fast);
    border-radius: 1px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   HERO — Full-screen editorial split
   ========================================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl) var(--space-xl);
    position: relative;
    z-index: 2;
}

.hero-text .eyebrow {
    margin-bottom: var(--space-md);
}

.hero-text h1 {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: var(--space-md);
}

.hero-text h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--red);
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-style: italic;
    color: var(--ink-secondary);
    margin-bottom: var(--space-lg);
    max-width: 420px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s var(--ease);
}

.hero-image:hover img {
    transform: scale(1.04);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}

.hero-hours-pill {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ink-secondary);
    z-index: 3;
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

.hero-hours-pill .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    animation: pulse 2s ease-in-out infinite;
}

/* =========================================
   MARQUEE — Scrolling text strip
   ========================================= */
.marquee-strip {
    padding: var(--space-md) 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.marquee-inner {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-inner span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ink-muted);
    white-space: nowrap;
    padding: 0 32px;
}

.marquee-inner span .dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    vertical-align: middle;
    margin: 0 24px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   BENTO SECTION — About + highlights
   ========================================= */
.bento-section {
    padding: var(--space-2xl) 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--dur-base) var(--ease);
    position: relative;
}

.bento-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Story card — large left */
.bento-story {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.bento-story-img {
    height: 320px;
    overflow: hidden;
}

.bento-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.bento-story:hover .bento-story-img img {
    transform: scale(1.05);
}

.bento-story-text {
    padding: var(--space-lg) var(--space-lg) var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-story-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -1px;
    margin-bottom: var(--space-sm);
}

.bento-story-text h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--red);
}

.bento-story-text p {
    font-size: 0.95rem;
    color: var(--ink-secondary);
    line-height: 1.8;
    max-width: 480px;
}

/* Stat/info cards — right side */
.bento-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg);
}

.bento-stat .stat-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.bento-stat .stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}

.bento-stat .stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.bento-s1 {
    grid-column: 8 / 10;
    grid-row: 1;
}

.bento-s2 {
    grid-column: 10 / 13;
    grid-row: 1;
}

.bento-s3 {
    grid-column: 8 / 10;
    grid-row: 2;
}

/* Image card */
.bento-img {
    grid-column: 10 / 13;
    grid-row: 2;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.bento-img:hover img {
    transform: scale(1.08);
}

/* =========================================
   MENU SHOWCASE — Horizontal editorial
   ========================================= */
.menu-showcase {
    background: var(--bg-dark);
    color: var(--ink-on-dark);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.menu-showcase::before {
    content: 'MENU';
    position: absolute;
    bottom: -8%;
    left: -2%;
    font-family: var(--font-display);
    font-size: clamp(10rem, 20vw, 22rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 20px;
    pointer-events: none;
    user-select: none;
}

.menu-showcase .eyebrow {
    color: var(--coral);
}

.menu-showcase .eyebrow::before {
    background: var(--coral);
}

.menu-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.menu-header h2 {
    color: var(--ink-on-dark);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -1px;
}

.menu-header h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--coral);
}

.menu-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.menu-item {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--dur-base) var(--ease);
}

.menu-item:hover {
    transform: translateY(-6px);
}

.menu-item-img {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease), filter var(--dur-base);
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.08);
}

.menu-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg) var(--space-md) var(--space-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.menu-item-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.menu-item-info p {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
}

.menu-item-tag {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--red);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--r-full);
}

/* =========================================
   DRINKS RIBBON — Horizontal scroll
   ========================================= */
.drinks-ribbon {
    padding: var(--space-xl) 0;
    overflow: hidden;
}

.drinks-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.drinks-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: -1px;
}

.drinks-header h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.drink-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--dur-base) var(--ease);
    position: relative;
    overflow: hidden;
}

.drink-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--red);
    border-radius: 0 0 3px 3px;
    opacity: 0;
    transition: opacity var(--dur-base);
}

.drink-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-glow);
    transform: translateY(-6px);
}

.drink-card:hover::before {
    opacity: 1;
}

.drink-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.drink-card p {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--ink-muted);
    margin-bottom: var(--space-sm);
}

.drink-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--red);
}

/* =========================================
   SPLIT CTA — Asymmetric final section
   ========================================= */
.split-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.split-cta-image {
    position: relative;
    overflow: hidden;
}

.split-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--space-xl);
    background: var(--bg-warm);
}

.split-cta-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -1px;
    margin-bottom: var(--space-sm);
}

.split-cta-content h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
}

.split-cta-content p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ink-secondary);
    margin-bottom: var(--space-lg);
    max-width: 400px;
    line-height: 1.7;
}

.split-cta-details {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.split-cta-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.split-cta-detail .detail-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.split-cta-detail .detail-value {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
}

.split-cta-detail .detail-value a {
    color: var(--ink);
    transition: color var(--dur-fast);
}

.split-cta-detail .detail-value a:hover {
    color: var(--red);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease);
    text-decoration: none;
}

.btn-primary {
    color: #fff;
    background: var(--ink);
}

.btn-primary:hover {
    background: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 75, 66, 0.25);
    color: #fff;
}

.btn-outline {
    color: var(--ink);
    background: transparent;
    border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-light {
    color: var(--ink-on-dark);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================================
   PAGE HEADER — Inner pages
   ========================================= */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header .hero-bg-cover {
    position: absolute;
    inset: 0;
}

.page-header .hero-bg-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.8);
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 18, 16, 0.5) 0%, rgba(26, 18, 16, 0.3) 50%, var(--bg) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header-content h1 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.page-header-content .eyebrow {
    color: var(--coral);
    justify-content: center;
    animation: fadeInDown 0.8s var(--ease-out) 0.1s both;
    margin-bottom: var(--space-sm);
}

.page-header-content .eyebrow::before {
    background: var(--coral);
}

/* Reuse for page hero backgrounds */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 18, 16, 0.5) 0%, rgba(26, 18, 16, 0.3) 50%, var(--bg) 100%);
    z-index: 1;
}

/* =========================================
   INNER PAGE COMPONENTS
   ========================================= */

/* Features grid (contact) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: var(--space-lg);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: all var(--dur-base) var(--ease);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.feature-card h4 {
    margin-bottom: 8px;
    color: var(--red);
    font-size: 1.05rem;
}

.feature-card p {
    color: var(--ink-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Section label for inner pages */
.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--red);
}

.section-title {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--ink-secondary);
    font-style: italic;
    max-width: 600px;
}

/* Location grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: all var(--dur-base);
}

.location-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-glow);
}

.location-card-icon {
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-glow);
    border-radius: var(--r-sm);
    flex-shrink: 0;
}

.location-card-text h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--red);
}

.location-card-text p {
    font-size: 0.9rem;
    color: var(--ink-secondary);
    line-height: 1.6;
}

/* Menu page */
.menu-section {
    margin-bottom: var(--space-xl);
}

.menu-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

.menu-section-header h3 {
    color: var(--red);
    white-space: nowrap;
    font-size: 1.3rem;
}

.menu-section-header .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-strong), transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.menu-card {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px;
    transition: all var(--dur-base);
}

.menu-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-card-image {
    width: 90px;
    height: 90px;
    border-radius: var(--r-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-base);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.08);
}

.menu-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-card-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.menu-card-info p {
    font-size: 0.82rem;
    color: var(--ink-muted);
    line-height: 1.5;
    margin-bottom: 6px;
}

.menu-card-price {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--red);
    font-weight: 600;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: var(--space-lg);
}

.gallery-item {
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(196, 75, 66, 0.12);
    opacity: 0;
    transition: opacity var(--dur-fast);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* CTA Banner */
.cta-banner {
    text-align: center;
    padding: var(--space-xl) 0;
    position: relative;
}

.cta-banner h2 {
    margin-bottom: var(--space-sm);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.cta-banner p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--ink-secondary);
    font-style: italic;
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: var(--space-sm);
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-sm);
    color: rgba(255, 255, 255, 0.4);
    transition: all var(--dur-fast);
}

.social-link:hover {
    color: var(--coral);
    border-color: var(--coral);
    background: rgba(232, 160, 144, 0.08);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: var(--space-xl) 0 var(--space-md);
    color: rgba(255, 255, 255, 0.55);
}

.site-footer h4,
.site-footer .logo-text {
    color: var(--coral) !important;
}

.site-footer .logo-sub {
    color: rgba(255, 255, 255, 0.35) !important;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer a:hover {
    color: var(--coral);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2px;
}

.footer-brand .logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    transition: all var(--dur-fast);
}

.footer-col ul li a:hover {
    padding-left: 4px;
}

.footer-hours p {
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-hours .day {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    display: inline-block;
    min-width: 80px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text {
        padding: calc(var(--header-h) + var(--space-xl)) var(--space-md) var(--space-lg);
    }

    .hero-image {
        height: 50vh;
    }

    .hero-hours-pill {
        left: var(--space-md);
        bottom: var(--space-md);
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bento-story {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .bento-s1 {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-s2 {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-s3 {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-img {
        grid-column: auto;
        grid-row: auto;
    }

    .menu-scroll {
        grid-template-columns: repeat(2, 1fr);
    }

    .drinks-grid {
        grid-template-columns: 1fr 1fr;
    }

    .split-cta {
        grid-template-columns: 1fr;
    }

    .split-cta-image {
        height: 300px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2/1;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 65px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(250, 246, 243, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 100px 24px 40px;
        gap: 0;
        transition: right var(--dur-base) var(--ease);
        border-left: 1px solid var(--border);
        z-index: 999;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        width: 100%;
        padding: 14px;
        font-size: 0.85rem;
        text-align: left;
    }

    .main-nav a.active::after {
        display: none;
    }

    .btn-reserve-nav {
        text-align: center !important;
        justify-content: center;
        margin-top: var(--space-sm);
    }

    .lang-switcher {
        margin: var(--space-sm) 0 0;
        align-self: flex-start;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .menu-scroll {
        grid-template-columns: 1fr;
    }

    .drinks-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item:first-child {
        grid-column: span 2;
    }

    .menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .split-cta-content {
        padding: var(--space-lg) var(--space-md);
    }

    .split-cta-details {
        flex-direction: column;
        gap: var(--space-md);
    }

    .page-header {
        min-height: 280px;
        height: 35vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.7rem;
    }
}

@media print {

    .site-header,
    .menu-toggle,
    .btn,
    .marquee-strip {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}