:root {
    --cream: #121212;
    --cream-strong: #1a1a1a;
    --paper: rgba(26, 26, 26, 0.88);
    --paper-strong: #222222;
    --ink: #f4f4f4;
    --muted: #a3a3a3;
    --coffee: #ffd700;
    --coffee-deep: #e5c100;
    --terracotta: #d32f2f;
    --tomato: #f44336;
    --saffron: #ffcc00;
    --olive: #ffd700;
    --olive-soft: #332b00;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.18);
    --card-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    --soft-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
    --max-width: 1180px;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Sora", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 0% 0%, rgba(211, 47, 47, 0.15), transparent 24%),
        radial-gradient(circle at 100% 10%, rgba(255, 215, 0, 0.15), transparent 26%),
        linear-gradient(180deg, #121212 0%, #151515 36%, #1a1a1a 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.4;
    pointer-events: none;
}

body::before {
    width: 280px;
    height: 280px;
    top: 10%;
    right: -80px;
    background: rgba(211, 47, 47, 0.20);
}

body::after {
    width: 320px;
    height: 320px;
    bottom: 8%;
    left: -100px;
    background: rgba(255, 215, 0, 0.15);
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: clamp(4.5rem, 6vw, 7rem) 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(26, 26, 26, 0.82);
    border-bottom: 1px solid var(--line);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "Fraunces", serif;
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand:hover {
    transform: scale(1.04) rotate(-1deg);
}

.brand-mark {
    color: var(--terracotta);
}

.brand-accent {
    color: var(--olive);
}

.desktop-nav,
.header-actions,
.hero-actions,
.hero-facts,
.filter-row,
.footer-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.desktop-nav {
    gap: 1.35rem;
}

.desktop-nav a,
.mobile-menu a {
    color: var(--muted);
    font-size: 0.96rem;
    transition: color var(--transition);
    position: relative;
    text-decoration: none;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--terracotta);
    transition: width 300ms cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
    color: var(--ink);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: var(--paper-strong);
    color: var(--ink);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition:
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(66, 38, 25, 0.12);
}

.button-primary {
    background: linear-gradient(135deg, var(--terracotta), var(--tomato));
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(211, 47, 47, 0.24);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 500ms ease;
    z-index: -1;
}

.button-primary:hover::before {
    left: 100%;
}

.button-primary:hover {
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.35);
}

.button-secondary {
    background: rgba(34, 34, 34, 0.76);
    border-color: var(--line-strong);
    color: var(--ink);
}

.button-secondary:hover {
    background: #1a1a1a;
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.button-whatsapp {
    background: #1fa15a;
    color: white;
    box-shadow: 0 14px 28px rgba(31, 161, 90, 0.22);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 500ms ease;
    z-index: -1;
}

.button-whatsapp:hover::before {
    left: 100%;
}

.button-whatsapp:hover {
    box-shadow: 0 18px 36px rgba(31, 161, 90, 0.35);
}

.mobile-menu {
    display: none;
    padding: 0 0 1.2rem;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--soft-shadow);
    padding: 1rem;
}

.mobile-menu nav {
    display: grid;
    gap: 0.9rem;
}

.hero {
    padding: clamp(3rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6.5rem);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

/* Hero Content Styles */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--terracotta);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.section-title,
.menu-category h3,
.visit-title {
    margin: 0;
    font-family: "Fraunces", serif;
    letter-spacing: -0.05em;
    line-height: 0.95;
}

.hero-title {
    margin: 0;
    font-family: "Fraunces", serif;
    letter-spacing: -0.05em;
    line-height: 1;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    color: var(--ink);
}
.text-gradient {
    background: linear-gradient(135deg, var(--saffron), var(--terracotta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p.lead {
    max-width: 56ch;
    margin: 1.35rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.8;
}

.hero-actions {
    margin-top: 2rem;
}

.button-glow {
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.4);
}
.button-glow:hover {
    box-shadow: 0 0 30px rgba(211, 47, 47, 0.6);
}
.button-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ink);
    backdrop-filter: blur(10px);
}
.button-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--olive);
    color: var(--olive);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}
.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--line);
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.stat-value {
    color: var(--coffee);
    font-size: 1.5rem;
    font-weight: 700;
}
.stat-label {
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Bento Grid System */
.hero-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.25rem;
    min-height: 640px;
    position: relative;
    z-index: 1;
}

.bento-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 350ms ease, border-color 350ms ease;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
    z-index: 5;
}

.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 500ms ease;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.8) 100%);
    z-index: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-main {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 100%;
}

.bento-main:hover .bento-bg {
    transform: scale(1.05);
}

.bento-main h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.1;
    margin: 0.5rem 0 0;
    color: white;
}

.glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.glass-pill i {
    color: var(--saffron);
}

.bento-list {
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
    padding: 1.5rem;
    justify-content: flex-start;
}
.bento-list h3 {
    font-family: "Fraunces", serif;
    font-size: 1.4rem;
    color: var(--coffee);
    margin: 0 0 1rem;
}
.sleek-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.sleek-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}
.sleek-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.sleek-list strong {
    color: var(--ink);
    font-weight: 600;
}
.sleek-list span {
    color: var(--muted);
}

.bento-photo {
    min-height: 250px;
}
.bento-photo:hover .bento-bg {
    transform: scale(1.05);
}

.bento-spotlight {
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(0, 0, 0, 0));
}
.spotlight-blur {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(211, 47, 47, 0.2);
    filter: blur(40px);
    border-radius: 50%;
    z-index: 0;
}
.spotlight-icon-new {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(211, 47, 47, 0.2);
    color: var(--terracotta);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bento-spotlight:hover .spotlight-icon-new {
    transform: scale(1.15) rotate(-5deg);
}
.bento-spotlight h3 {
    position: relative;
    z-index: 1;
    font-family: "Fraunces", serif;
    font-size: 1.4rem;
    color: white;
    margin: 0 0 0.5rem;
    line-height: 1.1;
}
.bento-spotlight p {
    position: relative;
    z-index: 1;
    color: var(--muted);
    margin: 0;
    font-size: 0.9rem;
}


.ticker {
    padding: 1.1rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(26, 26, 26, 0.58);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 1rem;
    min-width: max-content;
    animation: marquee 20s linear infinite;
}

.ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    color: var(--coffee);
    font-size: 0.92rem;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(66, 38, 25, 0.05);
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease, border-color 300ms ease, background-color 300ms ease;
    cursor: default;
}

.ticker-chip:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 215, 0, 0.12);
    border-color: var(--olive);
    background: #1a1a1a;
    color: var(--olive);
    z-index: 10;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.section-kicker {
    margin: 0 0 0.85rem;
    color: var(--terracotta);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    max-width: 12ch;
    color: var(--coffee);
}

.section-copy {
    max-width: 48ch;
    color: var(--muted);
    line-height: 1.8;
}

.story-grid,
.moods-grid,
.visit-grid {
    display: grid;
    gap: 1.2rem;
}

.story-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.story-panel,
.feature-tile,
.featured-item,
.menu-category,
.mood-card,
.visit-card,
.map-card {
    border-radius: 30px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--soft-shadow);
}

.story-panel {
    padding: clamp(1.5rem, 3vw, 2.2rem);
    background:
        radial-gradient(circle at top right, rgba(211, 47, 47, 0.12), transparent 28%),
        linear-gradient(160deg, rgba(34, 34, 34, 0.96), rgba(26, 26, 26, 0.92));
}

.story-panel h3 {
    margin: 0;
    max-width: 15ch;
    font-family: "Fraunces", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: -0.05em;
    line-height: 1.02;
    color: var(--coffee);
}

.story-panel p {
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.85;
}

.story-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.features-grid {
    display: grid;
    gap: 1rem;
}

.feature-tile {
    padding: 1.3rem;
}

.feature-tile i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(211, 47, 47, 0.1);
    color: var(--terracotta);
    font-size: 1.1rem;
}

.feature-tile h3 {
    margin: 0.9rem 0 0.5rem;
    font-size: 1.15rem;
    color: var(--coffee);
}

.feature-tile p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.featured-item {
    overflow: hidden;
}

.featured-media {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}

.featured-body {
    padding: 1.25rem;
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.12);
    color: var(--olive);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.featured-item h3 {
    margin: 0.9rem 0 0.5rem;
    font-size: 1.4rem;
    font-family: "Fraunces", serif;
    letter-spacing: -0.04em;
    color: var(--coffee);
}

.featured-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.featured-price {
    margin-top: 1rem;
    display: inline-flex;
    padding: 0.6rem 0.8rem;
    border-radius: 999px;
    background: rgba(211, 47, 47, 0.1);
    color: var(--terracotta);
    font-size: 0.88rem;
    font-weight: 700;
}

.menu-section {
    background:
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.12), transparent 22%),
        linear-gradient(180deg, #1c1c1c, #111111);
    color: #fff7f1;
}

.menu-section .section-kicker {
    color: var(--saffron);
}

.menu-section .section-title,
.menu-section .section-copy {
    color: #fff7f1;
}

.filter-button {
    min-height: 44px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 247, 241, 0.88);
    transition:
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.filter-button:hover {
    transform: translateY(-1px);
}

.filter-button.is-active {
    background: linear-gradient(135deg, var(--saffron), #f6cf72);
    border-color: transparent;
    color: #111111;
    font-weight: 800;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.6rem;
}

.menu-category {
    padding: 1.35rem;
    background: rgba(34, 34, 34, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff7f1;
    box-shadow: none;
}

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

.menu-category h3 {
    font-size: 1.65rem;
    color: #fff7f1;
}

.menu-category .category-note {
    margin: 0.6rem 0 0;
    color: rgba(255, 247, 241, 0.7);
    line-height: 1.7;
    font-size: 0.94rem;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 1.35rem 0 0;
    display: grid;
    gap: 0.85rem;
}

.menu-list li {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.menu-item-copy strong,
.menu-list strong {
    display: block;
    font-size: 1rem;
}

.menu-item-copy span {
    display: block;
    margin-top: 0.2rem;
    color: rgba(255, 247, 241, 0.66);
    font-size: 0.86rem;
    line-height: 1.5;
}

.menu-list em {
    font-style: normal;
    color: var(--saffron);
    font-weight: 700;
    white-space: nowrap;
}

.moods-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mood-card {
    padding: 1.4rem;
    background:
        linear-gradient(180deg, rgba(34, 34, 34, 0.92), rgba(26, 26, 26, 0.92));
}

.mood-card .mood-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(211, 47, 47, 0.15);
    color: var(--terracotta);
    font-weight: 700;
}

.mood-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.35rem;
    color: var(--coffee);
}

.mood-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.mood-pairing {
    margin-top: 1rem;
    display: inline-flex;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.12);
    color: var(--olive);
    font-size: 0.82rem;
    font-weight: 700;
}

.visit-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
}

.visit-card,
.map-card {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.visit-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: var(--coffee);
}

.visit-card p {
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.85;
}

.visit-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 1rem;
}

.visit-list li {
    display: flex;
    gap: 0.9rem;
    align-items: start;
}

.visit-list i {
    width: 46px;
    height: 46px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(211, 47, 47, 0.15);
    color: var(--terracotta);
}

.visit-list strong {
    display: block;
    color: var(--coffee);
    margin-bottom: 0.2rem;
}

.visit-list span {
    color: var(--muted);
    line-height: 1.7;
}

.map-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 215, 0, 0.22), transparent 18%),
        radial-gradient(circle at 86% 24%, rgba(211, 47, 47, 0.16), transparent 20%),
        linear-gradient(160deg, #222222, #1a1a1a);
}

.map-card::before {
    content: "";
    position: absolute;
    inset: 1.5rem;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(255, 215, 0, 0.16) 1px, transparent 1px),
        linear-gradient(rgba(255, 215, 0, 0.16) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: 0.45;
}

.map-card-inner {
    position: relative;
    z-index: 1;
    min-height: 100%;
    display: grid;
    align-content: center;
    gap: 1rem;
}

.map-dot {
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(211, 47, 47, 0.16);
    color: var(--terracotta);
    font-size: 2rem;
    box-shadow: 0 0 0 16px rgba(211, 47, 47, 0.08);
}

.map-card h3 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: -0.04em;
    color: var(--coffee);
}

.map-card p {
    margin: 0;
    max-width: 34ch;
    color: var(--muted);
    line-height: 1.8;
}

footer {
    padding: 1.4rem 0 2.4rem;
}

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    border-radius: 24px;
    background: rgba(34, 34, 34, 0.8);
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
}

.footer-copy {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 600ms ease,
        transform 600ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Added Interactive Hover Effects --- */

/* Elevate cards on hover */
.image-card,
.spotlight-card,
.list-card,
.story-panel,
.feature-tile,
.featured-item,
.menu-category,
.mood-card,
.visit-card,
.map-card,
.fact-card {
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1), border-color 350ms ease;
}

.bento-card:hover,
.story-panel:hover,
.feature-tile:hover,
.featured-item:hover,
.menu-category:hover,
.mood-card:hover,
.visit-card:hover,
.map-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 72px rgba(255, 215, 0, 0.16);
}

.menu-category:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

/* Image scaling on hover for featured items */
.featured-media {
    transition: transform 450ms ease;
}

.featured-item:hover .featured-media {
    transform: scale(1.05);
}

/* Menu list items subtle slide right */
.menu-list li {
    transition: transform 250ms ease, background-color 250ms ease;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 8px;
}

.menu-list li:hover {
    transform: translateX(6px);
    background-color: rgba(255, 255, 255, 0.04);
}

/* Playful spring animation for icons on hover */
.visit-list i, 
.feature-tile i,
.spotlight-icon,
.mood-number {
    transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.visit-list li:hover i, 
.feature-tile:hover i,
.spotlight-card:hover .spotlight-icon,
.mood-card:hover .mood-number {
    transform: scale(1.15) rotate(-5deg);
}

@media (max-width: 1080px) {
    .hero-grid,
    .story-grid,
    .visit-grid,
    .signature-grid,
    .moods-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .hero-bento {
        min-height: auto;
    }

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

@media (max-width: 860px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-row {
        min-height: 78px;
    }

    .hero h1 {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .hero-bento {
        grid-template-columns: 1fr;
    }

    .bento-main {
        min-height: 400px;
    }

    .button,
    .filter-button {
        width: 100%;
    }

    .hero-actions,
    .story-actions,
    .filter-row,
    .footer-actions {
        display: grid;
        gap: 0.8rem;
    }

    .footer-bar {
        align-items: start;
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
