/* ============================================
   Cat's Q — Café & Bar
   Vibrant modern · Deep navy + warm gold
   ============================================ */

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

:root {
    --navy: #0A1F3F;
    --navy-light: #122D54;
    --navy-deep: #061529;
    --gold: #D4A017;
    --gold-light: #E8B830;
    --gold-pale: #F5E6B8;
    --cream: #FAF6EE;
    --cream-dark: #F0E8D8;
    --white: #FFFFFF;
    --text-light: #E8E0D0;
    --text-muted: #A89880;
    --text-dark: #1A1A1A;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(10,31,63,0.08);
    --shadow-md: 0 8px 30px rgba(10,31,63,0.12);
    --shadow-lg: 0 20px 60px rgba(10,31,63,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition);
}
.skip-link:focus {
    top: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 31, 63, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    transition: background var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav-logo-icon {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.08);
}

.nav-cta-btn {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta-btn:hover,
.nav-cta-btn:focus-visible {
    background: var(--gold-light);
    color: var(--navy) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-deco {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
}

.deco-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.deco-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
    bottom: -100px;
    left: 10%;
}

.deco-circle--3 {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212,160,23,0.15);
    background: transparent;
    top: 20%;
    left: 5%;
}

.deco-rect {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(212,160,23,0.05);
    border: 1px solid rgba(212,160,23,0.1);
    transform: rotate(45deg);
    bottom: 15%;
    right: 15%;
}

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

/* Hero text */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.headline-accent {
    color: var(--gold);
    display: inline;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 36px;
    opacity: 0.85;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn--gold:hover,
.btn--gold:focus-visible {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,160,23,0.3);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn--outline-light:hover,
.btn--outline-light:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

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

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212,160,23,0.25);
}

/* Hero visual / collage */
.hero-visual {
    position: relative;
}

.collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    transform: rotate(2deg);
}

.collage-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.collage-img--1 {
    grid-column: 1 / -1;
    aspect-ratio: 420/560;
}

.collage-img--2 {
    aspect-ratio: 420/320;
}

.collage-img--3 {
    aspect-ratio: 420/280;
}

.collage-accent {
    position: absolute;
    bottom: -20px;
    right: -10px;
    z-index: 3;
    background: var(--navy);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212,160,23,0.3);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.section-label--light {
    color: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.text-gold {
    color: var(--gold);
}

.section-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
}

.section-sub--light {
    color: var(--text-light);
    opacity: 0.8;
}

.section-header {
    margin-bottom: 60px;
}

/* ============================================
   STORY
   ============================================ */
.story {
    position: relative;
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

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

.story-left {
    position: sticky;
    top: 120px;
}

.story-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4A4035;
    margin-bottom: 20px;
}

.story-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212,160,23,0.1);
}

.story-deco {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.deco-stripe {
    position: absolute;
    right: 60px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.deco-dot-group {
    position: absolute;
    right: 100px;
    top: 20%;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 12px;
}

.deco-dot-group span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.15;
}

.deco-dot-group span:nth-child(odd) {
    opacity: 0.25;
}

/* ============================================
   MENU
   ============================================ */
.menu {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.menu-card {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.menu-card-accent {
    height: 6px;
    width: 100%;
}

.menu-card--coffee .menu-card-accent {
    background: linear-gradient(90deg, #6B4226, #A0724A);
}

.menu-card--cocktails .menu-card-accent {
    background: linear-gradient(90deg, var(--navy), var(--gold));
}

.menu-card--food .menu-card-accent {
    background: linear-gradient(90deg, var(--gold), #E8731A);
}

.menu-card-content {
    padding: 36px 32px;
}

.menu-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.menu-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}

.menu-item-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: right;
    white-space: nowrap;
}

.menu-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   EVENTS
   ============================================ */
.events {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.events-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.events-deco {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.deco-line {
    position: absolute;
    background: rgba(212,160,23,0.08);
}

.deco-line--1 {
    width: 1px;
    height: 100%;
    left: 20%;
    top: 0;
}

.deco-line--2 {
    width: 1px;
    height: 100%;
    right: 20%;
    top: 0;
}

.deco-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.deco-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.2;
}

.deco-dots span:nth-child(3) {
    opacity: 0.5;
}

.container {
    position: relative;
    z-index: 2;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,160,23,0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,160,23,0.4);
    background: rgba(255,255,255,0.07);
}

.event-card-day {
    background: var(--gold);
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-weekday {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    opacity: 0.7;
}

.event-day-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.event-card-body {
    padding: 28px;
}

.event-card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.event-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 20px;
}

.event-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold);
    background: rgba(212,160,23,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(212,160,23,0.2);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

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

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

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.gallery-item--1 { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item--2 { grid-column: 5 / 9; grid-row: 1 / 2; }
.gallery-item--3 { grid-column: 8 / 13; grid-row: 1 / 2; }
.gallery-item--4 { grid-column: 1 / 4; grid-row: 2 / 3; }
.gallery-item--5 { grid-column: 4 / 9; grid-row: 2 / 3; }

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.visit::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.visit-details {
    font-style: normal;
    margin-bottom: 36px;
}

.visit-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.visit-details strong {
    color: var(--gold);
    font-size: 1.2rem;
}

.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: color var(--transition);
}

.visit-link:hover,
.visit-link:focus-visible {
    color: var(--gold);
}

.visit-hours {
    margin-bottom: 36px;
}

.hours-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    color: var(--text-light);
}

.hours-row span:last-child {
    color: var(--white);
    font-weight: 500;
}

.btn--map {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn--map:hover,
.btn--map:focus-visible {
    background: var(--gold);
    color: var(--navy);
}

/* Form */
.visit-form-wrap {
    position: relative;
}

.visit-form-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.form-circle {
    position: absolute;
    border-radius: 50%;
}

.form-circle--1 {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212,160,23,0.1);
    top: -60px;
    right: -60px;
}

.form-circle--2 {
    width: 120px;
    height: 120px;
    background: rgba(212,160,23,0.05);
    bottom: -30px;
    left: -30px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-input:focus {
    border-color: var(--gold);
    background: rgba(212,160,23,0.06);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success.visible {
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-deep);
    padding: 60px 0 32px;
    border-top: 1px solid rgba(212,160,23,0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: 16px;
}

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

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--text-light);
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-menu.mobile-open {
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(10, 31, 63, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 1;
    visibility: visible;
    transition: opacity var(--transition), visibility var(--transition);
}

.nav-menu.mobile-open .nav-link {
    font-size: 1.3rem;
    padding: 16px 32px;
}

.nav-menu.mobile-open .nav-cta-btn {
    margin-left: 0;
    margin-top: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .collage {
        transform: rotate(0deg);
    }

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

    .story-left {
        position: static;
    }

    .menu-categories {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .events-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--1 { grid-column: 1 / -1; grid-row: auto; }
    .gallery-item--2 { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item--3 { grid-column: 2 / 3; grid-row: auto; }
    .gallery-item--4 { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item--5 { grid-column: 2 / 3; grid-row: auto; }

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

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

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 31, 63, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 4px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
        border-top: 1px solid rgba(212,160,23,0.15);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 16px;
        width: 100%;
        text-align: center;
    }

    .nav-cta-btn {
        margin-left: 0;
        margin-top: 8px;
    }

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

    .hero-grid {
        padding: 40px 24px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

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

    .stat-divider {
        display: none;
    }

    .story {
        padding: 80px 0;
    }

    .story-features {
        grid-template-columns: 1fr;
    }

    .menu {
        padding: 80px 0;
    }

    .events {
        padding: 80px 0;
    }

    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--1,
    .gallery-item--2,
    .gallery-item--3,
    .gallery-item--4,
    .gallery-item--5 {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }

    .visit {
        padding: 80px 0;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        gap: 20px;
    }

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

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

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

    .collage {
        gap: 12px;
    }

    .menu-card-content {
        padding: 28px 24px;
    }

    .menu-item {
        flex-direction: column;
        gap: 4px;
    }

    .menu-item-desc {
        text-align: left;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .gallery-item img {
        transition: none;
    }

    .collage-img img {
        transition: none;
    }
}
