/* ===================================
   Evie's Ferry Village Watering Hole
   Classic & Elegant · Burgundy + Blush
   =================================== */

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

:root {
    --burgundy: #6B1B2A;
    --burgundy-deep: #4A1220;
    --burgundy-light: #8B2E3F;
    --blush: #F2D5CE;
    --blush-light: #F9EDEA;
    --blush-pale: #FDF6F4;
    --cream: #FDF8F6;
    --charcoal: #2A2424;
    --warm-gray: #5C4F4F;
    --soft-gray: #9A8E8E;
    --gold: #C49A6C;
    --gold-light: #D4B08C;
    
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--burgundy-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--burgundy);
    color: #fff;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* ---------- Typography ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.section-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 600px;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-lead {
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--burgundy);
    color: #fff;
}

.btn-primary:hover {
    background: var(--burgundy-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 27, 42, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(253, 248, 246, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(107, 27, 42, 0.08);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
    transition: color var(--transition);
}

.site-header.scrolled .logo-link {
    color: var(--burgundy);
}

.logo-icon {
    flex-shrink: 0;
    opacity: 0.9;
}

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

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.75;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-md);
    align-items: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition);
}

.site-header.scrolled .nav-link {
    color: var(--warm-gray);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link:hover {
    color: #fff;
}

.site-header.scrolled .nav-link:hover {
    color: var(--burgundy);
}

.nav-cta {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-left: var(--space-sm);
    transition: all var(--transition);
}

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

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.site-header.scrolled .nav-cta {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: #fff;
}

.site-header.scrolled .nav-cta:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(42, 36, 36, 0.55) 0%,
        rgba(107, 27, 42, 0.45) 50%,
        rgba(42, 36, 36, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    padding: var(--space-lg) var(--space-md);
    color: #fff;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: #fff;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin: 0 auto var(--space-lg);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-details {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-detail svg {
    opacity: 0.7;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

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

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

/* ---------- About ---------- */
.about {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

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

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 80%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(107, 27, 42, 0.15);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(107, 27, 42, 0.12);
    border: 4px solid var(--cream);
}

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

.about-accent {
    position: absolute;
    top: -20px;
    right: 30%;
    width: 80px;
    height: 80px;
    background: var(--blush);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-content .lead {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--warm-gray);
    margin-bottom: var(--space-md);
}

.about-content p:not(.lead) {
    color: var(--soft-gray);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-features {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--blush-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.feature-text h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9375rem;
    color: var(--soft-gray);
    line-height: 1.65;
    margin: 0;
}

/* ---------- Divider / Quote ---------- */
.divider-section {
    padding: var(--space-2xl) 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.divider-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(242, 213, 206, 0.08) 0%, transparent 70%);
}

.divider-quote {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    color: var(--blush);
    opacity: 0.4;
    position: absolute;
    top: -20px;
    left: -10px;
}

.quote-mark--end {
    top: auto;
    bottom: -20px;
    left: auto;
    right: -10px;
    transform: rotate(180deg);
}

.divider-quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: #fff;
    padding: var(--space-md) 0;
}

/* ---------- Menu ---------- */
.menu {
    padding: var(--space-2xl) 0;
    background: var(--blush-pale);
}

.menu .section-header {
    margin-bottom: var(--space-xl);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.menu-category {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(107, 27, 42, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.menu-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 27, 42, 0.12);
}

.category-header {
    padding: var(--space-md);
    background: var(--burgundy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.category-icon {
    opacity: 0.8;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
}

.menu-items {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.menu-item {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--blush);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.375rem;
    gap: var(--space-sm);
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
}

.menu-item-price {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--soft-gray);
    font-style: italic;
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.9375rem;
    color: var(--soft-gray);
    line-height: 1.6;
}

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

/* ---------- Experience ---------- */
.experience {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.experience-content {
    padding-right: var(--space-md);
}

.experience-content .lead {
    margin-bottom: var(--space-md);
}

.experience-content p:not(.lead) {
    color: var(--soft-gray);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.experience-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.highlight {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.highlight-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.highlight-text h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.highlight-text p {
    font-size: 0.9375rem;
    color: var(--soft-gray);
    line-height: 1.65;
    margin: 0;
}

.experience-gallery {
    padding: var(--space-md) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-sm);
    height: 560px;
}

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

.gallery-item--large {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* ---------- Visit ---------- */
.visit {
    padding: var(--space-2xl) 0;
    background: var(--blush-pale);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.visit-info {
    padding: var(--space-md) 0;
}

.visit-details {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.visit-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.85;
}

.detail-content h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.detail-content p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.65;
}

.detail-content a {
    color: var(--burgundy);
}

.detail-content a:hover {
    color: var(--burgundy-light);
    text-decoration: underline;
}

.hours-day {
    font-weight: 500;
    color: var(--charcoal);
}

.hours-time {
    color: var(--soft-gray);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(107, 27, 42, 0.1);
    height: 480px;
}

.map-container {
    width: 100%;
    height: 100%;
}

/* ---------- Contact ---------- */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--cream);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-content {
    padding-top: var(--space-md);
}

.contact-content .section-lead {
    margin-bottom: var(--space-lg);
}

.contact-form-wrapper {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 8px 40px rgba(107, 27, 42, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--blush-pale);
    border: 1px solid var(--blush);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(107, 27, 42, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--soft-gray);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem var(--space-md);
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
    color: #166534;
    font-size: 0.9375rem;
    margin-top: var(--space-sm);
}

.form-success svg {
    flex-shrink: 0;
    color: #22c55e;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: var(--space-sm);
    color: #fff;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--blush);
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-phone a,
.footer-email a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-phone a:hover,
.footer-email a:hover {
    color: var(--blush);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-md);
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .about-grid,
    .experience-grid,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-images {
        height: 450px;
        max-height: 450px;
    }

    .experience-content {
        padding-right: 0;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        padding: 5rem var(--space-md) var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-link {
        color: var(--warm-gray);
        padding: 1rem 0;
        border-bottom: 1px solid var(--blush);
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--burgundy);
    }

    .nav-cta {
        background: var(--burgundy);
        border-color: var(--burgundy);
        color: #fff;
        text-align: center;
        margin-left: 0;
        margin-top: var(--space-sm);
        border-radius: var(--radius-sm);
        padding: 0.875rem 1.5rem;
    }

    .nav-cta:hover {
        background: var(--burgundy-deep);
        border-color: var(--burgundy-deep);
    }

    .hero-headline {
        font-size: clamp(1.875rem, 7vw, 2.75rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-details {
        flex-direction: column;
        gap: var(--space-sm);
    }

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

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

    .gallery-item--large {
        grid-row: auto;
    }

    .gallery-item {
        height: 260px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-brand {
        grid-column: auto;
    }

    .visit-map {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .about-images {
        height: 360px;
    }

    .about-img-main {
        width: 80%;
    }

    .about-img-secondary {
        width: 60%;
    }

    .contact-form-wrapper {
        padding: var(--space-md);
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
