/* ============================================
   Hideaway Ithaca — Custom Styles
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-900: #102a43;
    --navy-800: #243b53;
    --navy-700: #334e68;
    --navy-600: #486581;
    --navy-500: #627d98;
    --gold-500: #f59e0b;
    --gold-400: #facc15;
    --gold-300: #fde047;
    --cream: #faf8f5;
    --cream-dark: #f0ece4;
    --warm-white: #fefcf9;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(16,42,67,0.06), 0 1px 2px rgba(16,42,67,0.04);
    --shadow-md: 0 4px 16px rgba(16,42,67,0.08), 0 2px 6px rgba(16,42,67,0.04);
    --shadow-lg: 0 12px 40px rgba(16,42,67,0.12), 0 4px 12px rgba(16,42,67,0.06);
    --shadow-xl: 0 24px 60px rgba(16,42,67,0.15), 0 8px 20px rgba(16,42,67,0.08);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition-smooth);
    background: transparent;
}

.nav.scrolled {
    background: rgba(254, 252, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 42, 67, 0.06);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    color: var(--navy-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--navy-900);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-500);
    transition: var(--transition-smooth);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--navy-900);
    color: white !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--navy-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    color: var(--navy-900);
}

.nav-toggle:hover {
    background: rgba(16, 42, 67, 0.06);
}

.hamburger-line {
    width: 20px;
    height: 16px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(254, 252, 249, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--navy-900);
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    background: rgba(16, 42, 67, 0.06);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    color: var(--navy-900);
    padding: 12px 24px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-link:hover {
    color: var(--gold-600);
}

.mobile-menu-divider {
    width: 48px;
    height: 1px;
    background: var(--navy-200, #d9e2ec);
    margin: 8px 0;
}

.mobile-menu-phone,
.mobile-menu-email {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-top: 8px;
}

.mobile-menu-phone:hover,
.mobile-menu-email:hover {
    color: var(--navy-900);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--warm-white) 0%, var(--cream) 40%, #f5f0e8 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: 
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 20% 80%, rgba(16, 42, 67, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 42, 67, 0.06);
    border: 1px solid rgba(16, 42, 67, 0.1);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy-900);
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.hero-headline-accent {
    font-style: italic;
    color: var(--gold-600);
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 40px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.925rem;
    font-weight: 600;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--navy-900);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--navy-900);
    border: 1.5px solid rgba(16, 42, 67, 0.15);
}

.btn-secondary:hover {
    border-color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-navy {
    background: var(--navy-900);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.925rem;
    font-weight: 600;
    transition: var(--transition-fast);
    margin-top: 16px;
}

.btn-navy:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Cards */
.hero-cards {
    position: relative;
    height: 580px;
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.hero-card--coffee {
    width: 260px;
    top: 0;
    right: 0;
}

.hero-card--cocktails {
    width: 260px;
    bottom: 40px;
    right: 40px;
}

.hero-card--floating {
    width: 200px;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-xl);
    z-index: 2;
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(6px); }
}

.hero-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.hero-card-body {
    padding: 20px;
}

.hero-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-600);
    background: rgba(245, 158, 11, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.hero-card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--navy-900);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.hero-card-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 14px;
}

.hero-card-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.hero-card-stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--navy-900);
}

.hero-card-stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.hero-card-floating-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    flex-shrink: 0;
}

.hero-card-floating-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-card-floating-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
}

.hero-card-floating-value {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--navy-900);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--navy-300, #9fb3c8), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gold-500);
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--navy-900);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.section-title-accent {
    font-style: italic;
    color: var(--gold-600);
}

.section-title--light {
    color: white;
}

.section-title-accent--light {
    color: var(--gold-300);
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 520px;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--warm-white);
}

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

.about-images {
    position: relative;
    height: 700px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-white);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent--offset {
    bottom: 0;
    right: 0;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 18px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(16, 42, 67, 0.08);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}

.about-stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(16, 42, 67, 0.1);
}

/* ============================================
   Menu Section
   ============================================ */
.menu {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.menu-tab {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-mid);
    background: transparent;
    border: 1.5px solid rgba(16, 42, 67, 0.1);
    transition: var(--transition-fast);
}

.menu-tab:hover {
    border-color: var(--navy-900);
    color: var(--navy-900);
}

.menu-tab.active {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: white;
}

.menu-content {
    position: relative;
    min-height: 300px;
}

.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(16, 42, 67, 0.06);
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.05rem;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}

.menu-item-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 2px;
}

.menu-item-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        rgba(16, 42, 67, 0.12) 0px,
        rgba(16, 42, 67, 0.12) 4px,
        transparent 4px,
        transparent 8px
    );
    min-width: 24px;
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 600px;
    margin: 24px auto 0;
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
}

.menu-note svg {
    flex-shrink: 0;
    color: var(--gold-500);
}

/* ============================================
   Vibes Section
   ============================================ */
.vibes {
    padding: 120px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.vibes::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 600px at 70% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.vibes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.vibes-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.vibes-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.vibes-item:hover img {
    transform: scale(1.05);
}

.vibes-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.vibes-item:hover .vibes-item-overlay {
    opacity: 1;
}

.vibes-item-overlay span {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: white;
    font-style: italic;
}

.vibes-item--large {
    grid-row: 1 / 3;
    height: 520px;
}

.vibes-item--large img {
    height: 100%;
}

.vibes-item:not(.vibes-item--large) {
    height: 248px;
}

.vibes-item--wide {
    grid-column: 1 / 3;
    height: 248px;
}

.vibes-item--wide img {
    height: 100%;
}

/* ============================================
   Visit Section
   ============================================ */
.visit {
    padding: 120px 0;
    background: var(--warm-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 40px;
    max-width: 440px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(16, 42, 67, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    flex-shrink: 0;
}

.visit-detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.visit-detail-value {
    font-size: 0.95rem;
    color: var(--navy-900);
    line-height: 1.6;
}

.visit-link {
    color: var(--navy-600);
    transition: var(--transition-fast);
}

.visit-link:hover {
    color: var(--gold-600);
}

.visit-map {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.visit-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: -4px;
}

.visit-map-wrapper iframe {
    width: 100%;
    height: 400px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy-900);
    color: white;
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    color: white;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    color: var(--gold-400);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 4px;
}

.footer-link-group a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}

.footer-link-group a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.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-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-cards {
        height: 400px;
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-subheadline {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        height: 480px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 80px;
        min-height: auto;
    }

    .hero-cards {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0 auto;
        max-width: 360px;
    }

    .hero-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        animation: none !important;
    }

    .hero-card--coffee,
    .hero-card--cocktails {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 0;
    }

    .hero-card-img {
        height: 100%;
        width: 120px;
        border-radius: var(--radius-md) 0 0 var(--radius-md);
    }

    .hero-card-body {
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-card-desc {
        display: none;
    }

    .hero-card-stat {
        margin-top: 8px;
    }

    .hero-scroll {
        display: none;
    }

    .about-images {
        height: 360px;
    }

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

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

    .vibes-item--large {
        grid-row: auto;
        height: 300px;
    }

    .vibes-item:not(.vibes-item--large) {
        height: 220px;
    }

    .vibes-item--wide {
        grid-column: auto;
        height: 220px;
    }

    .vibes-item-overlay {
        opacity: 1;
    }

    .menu-tabs {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .about-stat-divider {
        width: 40px;
        height: 1px;
    }

    .visit-map-wrapper iframe {
        height: 280px;
    }
}
