/* ============================================
   MECCA CONES & CONEYS — Design System
   Palette: Deep Navy + Warm Gold
   Fonts: Cormorant Garamond + Montserrat
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-950: #0a1628;
    --navy-900: #0f2140;
    --navy-800: #152d56;
    --navy-700: #1a3665;
    --navy-600: #1e3f73;
    --gold-500: #B8860B;
    --gold-400: #D4A017;
    --gold-300: #E8B94A;
    --gold-200: #F0D078;
    --gold-100: #FAE8A8;
    --cream-50: #FAFAF8;
    --cream-100: #F5F4F0;
    --cream-200: #EDEBE6;
    --warm-gray-50: #F8F7F4;
    --warm-gray-100: #F2F0EC;
    --warm-gray-200: #E8E5DE;
    --warm-gray-300: #D4D0C8;
    --warm-gray-400: #B0AAA0;
    --warm-gray-500: #8A8478;
    --warm-gray-600: #6B655A;
    --warm-gray-700: #4A453C;
    --warm-gray-800: #2D2924;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--warm-gray-800);
    background-color: var(--cream-50);
    line-height: 1.7;
    font-size: 15px;
    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;
}

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--navy-900);
    color: var(--white);
    font-size: 0.875rem;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.header.scrolled {
    border-bottom-color: var(--warm-gray-200);
    box-shadow: 0 1px 20px rgba(10, 22, 40, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--navy-900);
    font-family: var(--font-serif);
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--gold-500);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray-500);
}

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

.logo-light .logo-sub {
    color: var(--gold-300);
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-600);
    padding: 0.5rem 0.875rem;
    border-radius: 100px;
    transition: color 0.3s, background 0.3s;
}

.nav-link:hover {
    color: var(--navy-900);
    background: var(--warm-gray-100);
}

.nav-cta {
    margin-left: 0.5rem;
    color: var(--gold-500);
    border: 1px solid var(--gold-500);
}

.nav-cta:hover {
    background: var(--gold-500);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

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

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    pointer-events: none;
}

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

.hero-content {
    color: var(--white);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold-400);
    flex-shrink: 0;
}

.eyebrow-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-300);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin-bottom: 2.25rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-primary {
    background: var(--gold-500);
    color: var(--navy-950);
}

.btn-primary:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    border-color: var(--gold-300);
    color: var(--gold-300);
}

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

.btn-map {
    margin-top: 1.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-map:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    background: transparent;
    transform: none;
    box-shadow: none;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-300);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.375rem;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--gold-500);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.4;
}

.hero-floating-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    max-width: 220px;
    z-index: 2;
}

.floating-card-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 0.375rem;
}

.floating-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.floating-card-desc {
    font-size: 0.8rem;
    color: var(--warm-gray-500);
    line-height: 1.5;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.35);
    z-index: 2;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
section {
    padding: 7rem 0;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-eyebrow .eyebrow-line {
    background: var(--gold-500);
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--navy-900);
    margin-bottom: 1.25rem;
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--warm-gray-500);
    max-width: 560px;
    line-height: 1.75;
}

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

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--cream-50);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.about-image-border {
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 1px solid var(--gold-500);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.4;
}

.about-content-col {
    padding: 1rem 0;
}

.about-body {
    font-size: 1rem;
    color: var(--warm-gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-values {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-500);
    line-height: 1;
    padding-top: 0.15rem;
    flex-shrink: 0;
}

.value-item h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--warm-gray-500);
    line-height: 1.6;
}

/* ============================================
   MENU
   ============================================ */
.menu {
    background: var(--warm-gray-50);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--warm-gray-200);
    transition: box-shadow 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.menu-card:hover {
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.1);
    transform: translateY(-4px);
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.menu-card-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold-500);
    color: var(--navy-950);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
}

.menu-card-content {
    padding: 1.75rem;
}

.menu-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.menu-card-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy-900);
}

.menu-card-icon {
    width: 32px;
    height: 32px;
    color: var(--gold-500);
}

.menu-card-desc {
    font-size: 0.925rem;
    color: var(--warm-gray-500);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.menu-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-card-list li {
    font-size: 0.85rem;
    color: var(--warm-gray-600);
    padding-left: 1rem;
    position: relative;
}

.menu-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 4px;
    height: 4px;
    background: var(--gold-500);
    border-radius: 50%;
}

.menu-note {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--warm-gray-200);
}

.menu-note p {
    font-size: 0.875rem;
    color: var(--warm-gray-500);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

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

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
    background: var(--cream-50);
}

.experience-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-body {
    font-size: 1rem;
    color: var(--warm-gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.experience-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.exp-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--warm-gray-700);
    font-weight: 400;
}

.exp-feature-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-500);
    flex-shrink: 0;
}

.exp-img-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.exp-img {
    border-radius: 4px;
    overflow: hidden;
}

.exp-img-large img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.exp-img-small {
    margin-top: -3rem;
    margin-left: 2rem;
}

.exp-img-small img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    background: var(--navy-900);
    color: var(--white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

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

.visit-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-400);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.visit-detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.25rem;
}

.visit-detail-value {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}

.visit-link {
    color: var(--gold-300);
    transition: color 0.3s;
}

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

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: saturate(0.7) brightness(0.9);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--cream-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-body {
    font-size: 1rem;
    color: var(--warm-gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-direct-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--warm-gray-200);
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-direct-item:hover {
    border-color: var(--gold-500);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.1);
}

.contact-direct-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray-400);
    margin-bottom: 0.25rem;
}

.contact-direct-value {
    font-size: 1rem;
    color: var(--navy-900);
    font-weight: 400;
}

.contact-direct-value:hover {
    color: var(--gold-500);
}

.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--warm-gray-200);
    border-radius: 8px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-600);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.925rem;
    color: var(--warm-gray-800);
    background: var(--cream-50);
    border: 1px solid var(--warm-gray-200);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder {
    color: var(--warm-gray-400);
}

.form-input:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 6px;
    color: var(--navy-900);
    font-size: 0.9rem;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-950);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col a,
.footer-col li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-location {
    color: rgba(255, 255, 255, 0.25) !important;
}

/* ============================================
   SCROLL REVEAL (below fold only)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    }
    
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal[data-reveal].is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.97);
    z-index: 99;
    align-items: center;
    justify-content: center;
}

.nav-mobile-overlay.active {
    display: flex;
}

.nav-mobile-overlay .nav-list {
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile-overlay .nav-link {
    font-size: 1.25rem;
    color: var(--white);
    padding: 0.75rem 1.5rem;
}

.nav-mobile-overlay .nav-link:hover {
    color: var(--gold-300);
    background: transparent;
}

.nav-mobile-overlay .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    border-color: var(--gold-400);
    color: var(--gold-400);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 2rem;
    }
    
    .hero-img {
        height: 600px;
    }
    
    .about-grid,
    .experience-layout,
    .visit-layout,
    .contact-layout {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-floating-card {
        left: 0;
        bottom: 1rem;
    }
    
    .about-grid,
    .menu-grid,
    .experience-layout,
    .visit-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper img,
    .exp-img-large img {
        height: 420px;
    }
    
    .exp-img-small {
        margin-top: -2rem;
        margin-left: 1rem;
    }
    
    .hero-image-accent {
        display: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    section {
        padding: 5rem 0;
    }
    
    .header-inner {
        height: 64px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        padding: 64px 0 3rem;
        min-height: auto;
    }
    
    .hero-img {
        height: 400px;
    }
    
    .hero-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 1rem auto 0;
        max-width: 100%;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .experience-features {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 320px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
