/* ============================================
   TINGRILL — Earthy Luxe Forest Theme
   Deep Green · Warm Cream · Copper Glow
   ============================================ */

@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=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Noto+Sans+Thai:wght@300;400;500;600;700&display=swap');

/* --- Tokens --- */
:root {
    --bg: #F6F1EB;
    --bg-card: #FFFFFF;
    --bg-elevated: #FFFDF9;
    --bg-surface: #EDE7DF;
    --bg-overlay: rgba(26, 46, 37, 0.88);
    --bg-dark: #1A2E25;
    --bg-dark-light: #243A30;

    --green: #1A2E25;
    --green-medium: #2C5F4A;
    --green-light: #3D8B6E;
    --green-pale: #E8F0EC;
    --green-glow: rgba(26, 46, 37, 0.08);

    --copper: #C17F4E;
    --copper-light: #D4A373;
    --copper-dark: #A66A3C;
    --copper-glow: rgba(193, 127, 78, 0.12);

    --cream: #FAF7F2;
    --cream-dark: #EDE7DF;

    --ink: #1A2E25;
    --ink-secondary: #5A6B63;
    --ink-muted: #8A9690;
    --ink-faint: rgba(26, 46, 37, 0.05);
    --ink-dim: rgba(26, 46, 37, 0.10);
    --ink-light: #F6F1EB;
    --ink-light-secondary: rgba(246, 241, 235, 0.7);
    --ink-light-muted: rgba(246, 241, 235, 0.5);

    --border: rgba(26, 46, 37, 0.08);
    --border-strong: rgba(26, 46, 37, 0.15);
    --border-accent: rgba(193, 127, 78, 0.3);
    --border-light: rgba(246, 241, 235, 0.12);
    --border-light-strong: rgba(246, 241, 235, 0.2);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-thai: 'Noto Sans Thai', sans-serif;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-2xl: 120px;

    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 999px;

    --shadow-sm: 0 2px 12px rgba(26, 46, 37, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 46, 37, 0.08);
    --shadow-lg: 0 20px 60px rgba(26, 46, 37, 0.12);
    --shadow-glow: 0 0 40px rgba(193, 127, 78, 0.06);
    --shadow-card: 0 4px 20px rgba(26, 46, 37, 0.05);

    --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: 1280px;
    --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(--copper);
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease);
}

a:hover {
    color: var(--copper-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);
}

h1 em,
h2 em,
h3 em {
    font-style: italic;
    font-weight: 400;
    color: var(--copper);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--copper);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: var(--space-sm);
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--copper);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--ink-secondary);
    max-width: 600px;
    line-height: 1.8;
}

/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease);
    text-decoration: none;
}

.btn-primary {
    background: var(--copper);
    color: #fff;
}

.btn-primary:hover {
    background: var(--copper-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 127, 78, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
    border-color: var(--copper);
    color: var(--copper);
    transform: translateY(-2px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--ink-light);
    border: 1.5px solid var(--border-light-strong);
    backdrop-filter: blur(8px);
}

.btn-light:hover {
    background: var(--copper);
    color: #fff;
    border-color: var(--copper);
}

/* =========================================
   HEADER — Solid Background
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: var(--bg);
    box-shadow: 0 1px 0 var(--border);
    transition: all var(--dur-base) var(--ease);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.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.5rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 4px;
    line-height: 1;
}

.site-logo .logo-sub {
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: block;
    margin-top: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-secondary);
    padding: 8px 16px;
    border-radius: var(--r-full);
    transition: all var(--dur-fast) var(--ease);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--copper);
    border-radius: 1px;
}

.btn-reserve-nav {
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    letter-spacing: 2.5px !important;
    color: #fff !important;
    background: var(--green) !important;
    padding: 10px 24px !important;
    border-radius: var(--r-full) !important;
    transition: all var(--dur-fast) var(--ease) !important;
}

.btn-reserve-nav:hover {
    background: var(--green-medium) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(26, 46, 37, 0.2) !important;
}

/* Language */
.lang-switcher {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--r-full);
    overflow: hidden;
    margin-left: 8px;
}

.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(--green);
}

.lang-switcher a.active-lang {
    color: #fff;
    background: var(--green);
}

.lang-divider {
    width: 1px;
    height: 14px;
    background: var(--border-strong);
}

/* 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 cinematic with overlay
   ========================================= */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green);
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--header-h) var(--space-md) var(--space-lg);
    width: 50%;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--green) 0%, rgba(26, 46, 37, 0.3) 40%, transparent 100%);
    z-index: 1;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--copper-light);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: var(--space-sm);
}

.eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--copper-light);
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: var(--space-md);
    color: var(--ink-light);
}

.hero h1 em {
    color: var(--copper-light);
}

.hero-tagline {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: var(--ink-light-secondary);
    margin-bottom: var(--space-lg);
    max-width: 420px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-actions .btn-primary {
    background: var(--copper);
}

.hero-actions .btn-outline {
    border-color: var(--border-light-strong);
    color: var(--ink-light);
}

.hero-actions .btn-outline:hover {
    border-color: var(--copper-light);
    color: var(--copper-light);
}

.hero-hours-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: var(--space-lg);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-full);
    font-size: 0.8rem;
    color: var(--ink-light-secondary);
    backdrop-filter: blur(8px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #6ECF8E;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* =========================================
   HERO — Subpages (full-width image bg)
   ========================================= */
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
    transition: transform 12s var(--ease);
}

.hero:hover .hero-bg-image img {
    transform: scale(1.05);
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, rgba(26, 46, 37, 0.4) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

.hero-content .section-label {
    animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: var(--space-md);
    max-width: 700px;
    color: var(--ink-light);
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-meta {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-md);
    z-index: 3;
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-meta-item .meta-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper-light);
}

.hero-meta-item .meta-value {
    font-size: 0.85rem;
    color: var(--ink-light-secondary);
}

/* =========================================
   MARQUEE STRIP
   ========================================= */
.marquee-strip {
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg);
}

.marquee-inner {
    display: flex;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-inner span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--ink-muted);
    white-space: nowrap;
    padding: 0 24px;
}

.marquee-inner .dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--copper);
    border-radius: 50%;
    vertical-align: middle;
    margin: 0 12px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   DIVIDER STRIP (subpages use this)
   ========================================= */
.divider-strip {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.divider-inner {
    display: flex;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.divider-inner span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--ink-muted);
    white-space: nowrap;
    padding: 0 24px;
}

.divider-inner .sep {
    color: var(--copper);
    margin: 0 16px;
}

/* =========================================
   BENTO — Story + Stats
   ========================================= */
.bento-section {
    padding: var(--space-2xl) 0;
    background: var(--bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all var(--dur-base) var(--ease);
}

.bento-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Story Card */
.bento-story {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.bento-story-img {
    flex: 1;
    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);
}

.bento-story-text .eyebrow {
    color: var(--copper);
}

.bento-story-text .eyebrow::before {
    background: var(--copper);
}

.bento-story-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.5px;
    margin-bottom: var(--space-sm);
    color: var(--ink);
}

.bento-story-text p {
    font-size: 0.95rem;
    color: var(--ink-secondary);
    line-height: 1.8;
}

/* Stat Cards */
.bento-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg);
    background: var(--green);
    border-color: transparent;
}

.bento-stat:hover {
    background: var(--green-medium);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--copper-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-light-muted);
    margin-top: 6px;
}

/* Image Card */
.bento-img {
    overflow: hidden;
    padding: 0;
}

.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 — Green editorial
   ========================================= */
.menu-showcase {
    padding: var(--space-2xl) 0;
    background: var(--green);
    position: relative;
    overflow: hidden;
}

.menu-showcase::before {
    content: 'GRILL';
    position: absolute;
    bottom: -5%;
    right: -2%;
    font-family: var(--font-display);
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: 700;
    color: rgba(246, 241, 235, 0.02);
    letter-spacing: 20px;
    pointer-events: none;
    user-select: none;
}

.menu-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.menu-header .eyebrow {
    color: var(--copper-light);
}

.menu-header .eyebrow::before {
    background: var(--copper-light);
}

.menu-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
    color: var(--ink-light);
}

.menu-header h2 em {
    color: var(--copper-light);
}

.menu-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.menu-item {
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--dur-base) var(--ease);
    background: var(--bg-dark-light);
    border: 1px solid var(--border-light);
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: rgba(193, 127, 78, 0.3);
    box-shadow: 0 0 40px rgba(193, 127, 78, 0.08);
}

.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(26, 46, 37, 0.95) 0%, rgba(26, 46, 37, 0.5) 50%, transparent 100%);
}

.menu-item-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.menu-item-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.menu-item-tag {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--copper);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--r-full);
    z-index: 2;
}

/* =========================================
   DRINKS RIBBON
   ========================================= */
.drinks-ribbon {
    padding: var(--space-2xl) 0;
    background: var(--bg);
}

.drinks-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.drinks-header .eyebrow {
    justify-content: center;
    color: var(--copper);
}

.drinks-header .eyebrow::before {
    display: none;
}

.drinks-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.drink-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: all var(--dur-base) var(--ease);
}

.drink-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.drink-card h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--ink);
}

.drink-card p {
    font-size: 0.9rem;
    color: var(--ink-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.drink-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--copper);
}

/* =========================================
   SPLIT CTA
   ========================================= */
.split-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.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;
    justify-content: center;
    padding: var(--space-xl);
    background: var(--green);
}

.split-cta-content .eyebrow {
    color: var(--copper-light);
}

.split-cta-content .eyebrow::before {
    background: var(--copper-light);
}

.split-cta-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: -1px;
    margin-bottom: var(--space-md);
    color: var(--ink-light);
}

.split-cta-content h2 em {
    color: var(--copper-light);
}

.split-cta-content p {
    color: var(--ink-light-secondary);
    margin-bottom: var(--space-lg);
    max-width: 440px;
    line-height: 1.8;
}

.split-cta-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: var(--space-lg);
}

.split-cta-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper-light);
    min-width: 80px;
    padding-top: 4px;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--ink-light-secondary);
    line-height: 1.6;
}

.detail-value a {
    color: var(--copper-light);
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    padding: var(--space-xl) 0;
    text-align: center;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.cta-banner p {
    color: var(--ink-secondary);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   PAGE HEADER — Subpages
   ========================================= */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.page-header .hero-bg {
    position: absolute;
    inset: 0;
}

.page-header .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.page-header .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--green) 0%, rgba(26, 46, 37, 0.5) 40%, transparent 60%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md) var(--space-xl);
    width: 100%;
}

.page-header-content .section-label {
    color: var(--copper-light);
}

.page-header-content .section-label::before {
    background: var(--copper-light);
}

.page-header-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--ink-light);
}

/* =========================================
   ABOUT — Two-column
   ========================================= */
.about-section {
    padding: var(--space-2xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-accent);
    border-radius: var(--r-lg);
    pointer-events: none;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -1px;
    margin-bottom: var(--space-md);
}

.about-text p {
    font-size: 1rem;
    color: var(--ink-secondary);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--copper);
    line-height: 1;
}

.stat-item .stat-desc {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 6px;
}

/* =========================================
   FEATURES ROW — 3 columns
   ========================================= */
.features-section {
    padding: var(--space-2xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--space-lg);
    transition: all var(--dur-base) var(--ease);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
    color: var(--ink);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--ink-secondary);
    line-height: 1.7;
}

.feature-card a {
    color: var(--copper);
}

.feature-card a:hover {
    color: var(--copper-dark);
}

/* =========================================
   MENU PAGE — Grid cards
   ========================================= */
.menu-section {
    margin-bottom: var(--space-xl);
}

.menu-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: var(--space-lg);
}

.menu-section-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    white-space: nowrap;
    color: var(--ink);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.menu-card {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px;
    transition: all var(--dur-base) var(--ease);
    box-shadow: var(--shadow-card);
}

.menu-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.menu-card-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--r-md);
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-info {
    flex: 1;
}

.menu-card-info h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--ink);
}

.menu-card-info p {
    font-size: 0.85rem;
    color: var(--ink-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.menu-card-price {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
}

/* =========================================
   LOCATION PAGE
   ========================================= */
.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: var(--space-xl) 0;
}

.map-container {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: all var(--dur-base) var(--ease);
    box-shadow: var(--shadow-card);
}

.location-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
}

.location-card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.location-card-text h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.location-card-text p {
    font-size: 0.9rem;
    color: var(--ink-secondary);
    line-height: 1.6;
}

.location-card-text a {
    color: var(--copper);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    padding: var(--space-xl) 0;
}

.gallery-item {
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.gallery-item:first-child {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* =========================================
   FOOTER — Green dark
   ========================================= */
.site-footer {
    background: var(--green);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--copper-light);
    letter-spacing: 4px;
    margin-bottom: 4px;
}

.footer-brand .logo-sub {
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ink-light-muted);
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--ink-light-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light-strong);
    border-radius: var(--r-full);
    transition: all var(--dur-fast);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--ink-light-muted);
    transition: fill var(--dur-fast);
}

.social-link:hover {
    border-color: var(--copper-light);
    background: rgba(193, 127, 78, 0.15);
}

.social-link:hover svg {
    fill: var(--copper-light);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li {
    font-size: 0.9rem;
    color: var(--ink-light-muted);
}

.footer-col a {
    color: var(--ink-light-muted);
}

.footer-col a:hover {
    color: var(--copper-light);
}

.footer-hours p {
    font-size: 0.9rem;
    color: var(--ink-light-muted);
    line-height: 1.7;
}

.footer-hours .day {
    color: var(--ink-light-secondary);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--ink-light-muted);
}

.footer-bottom a {
    color: var(--ink-light-muted);
}

.footer-bottom a:hover {
    color: var(--copper-light);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@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.5;
        transform: scale(1.2);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s 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;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .hero-text {
        width: 60%;
    }

    .hero-image {
        width: 50%;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-story {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .menu-scroll {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .split-cta {
        grid-template-columns: 1fr;
    }

    .split-cta-image {
        height: 350px;
    }

    .drinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        width: 100%;
        padding: calc(var(--header-h) + 40px) var(--space-md) var(--space-lg);
        position: relative;
        z-index: 2;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 350px;
    }

    .hero-image::before {
        background: linear-gradient(to bottom, var(--green) 0%, rgba(26, 46, 37, 0.3) 30%, transparent 100%);
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        transition: right var(--dur-base) var(--ease);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
        border-left: 1px solid var(--border);
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        font-size: 0.85rem;
        padding: 12px 0;
        width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-meta {
        flex-direction: column;
        gap: 16px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-story {
        grid-column: auto;
    }

    .menu-scroll {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        aspect-ratio: 16/9;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item:first-child {
        grid-row: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .split-cta-content {
        padding: var(--space-lg) var(--space-md);
    }

    .page-header {
        min-height: 280px;
        height: 40vh;
    }

    .drinks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}