/* ========================================
   American Table Family Restaurant
   Classic & Elegant — Deep Navy + Warm Gold
   ======================================== */

/* CSS Custom Properties */
:root {
    --navy-950: #0a1628;
    --navy-900: #1a2f4b;
    --navy-800: #243d5c;
    --navy-700: #2e4a6e;
    --navy-600: #3d5a80;
    --gold-500: #c9a84c;
    --gold-400: #d4b85e;
    --gold-300: #e0c970;
    --gold-200: #ebd98e;
    --gold-100: #f5eabb;
    --cream-50: #faf8f4;
    --cream-100: #f5f0e8;
    --cream-200: #ede5d5;
    --warm-gray-50: #f9f7f4;
    --warm-gray-100: #f2ede5;
    --warm-gray-200: #e8e0d4;
    --warm-gray-300: #d4cbbf;
    --warm-gray-400: #b8ad9e;
    --warm-gray-500: #8a7e70;
    --warm-gray-600: #6b6055;
    --warm-gray-700: #4a4239;
    --warm-gray-800: #2d2822;
    
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', 'Segoe UI', system-ui, sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.12);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.15);
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--warm-gray-700);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--gold-500);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-400);
}

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

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-900);
}

/* Section Label */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-md);
    display: block;
}

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

/* Section Title */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: var(--space-lg);
    color: var(--navy-900);
}

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

/* Section Subtitle */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray-500);
    max-width: 560px;
    margin: 0 auto;
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Section */
.section {
    padding: var(--space-4xl) 0;
}

.section-dark {
    background-color: var(--navy-900);
}

/* Gold Divider */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-xl) 0;
}

.divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.divider-diamond {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* ========================================
   Header / Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 47, 75, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--cream-50);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.85;
    color: var(--cream-50);
}

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

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

.logo-line1 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.logo-line2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream-50);
}

/* Logo light variant for footer */
.logo-light .logo-line1 {
    color: var(--gold-300);
}

.logo-light .logo-line2 {
    color: var(--cream-50);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(250, 248, 244, 0.8);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--gold-400);
    background: rgba(201, 168, 76, 0.08);
}

.nav-cta {
    margin-left: var(--space-sm);
    color: var(--gold-500);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: var(--radius-md);
}

.nav-cta:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold-500);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: var(--space-sm);
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream-50);
    position: relative;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--cream-50);
    transition: transform var(--transition-base);
}

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

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

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

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

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/6278886/pexels-photo-6278886.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    opacity: 0.25;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(26, 47, 75, 0.85) 50%,
        rgba(10, 22, 40, 0.88) 100%
    );
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
        padding: var(--space-4xl) 0;
    }
}

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

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-tagline::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold-500);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream-50);
    margin-bottom: var(--space-xl);
}

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

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(250, 248, 244, 0.7);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

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

.hero-detail {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: rgba(250, 248, 244, 0.6);
    font-size: 0.9rem;
}

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

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

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 7/9;
    object-fit: cover;
    display: block;
}

.hero-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

@media (min-width: 900px) {
    .hero-accent {
        bottom: -30px;
        right: -30px;
        width: 160px;
        height: 160px;
    }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(250, 248, 244, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-indicator svg {
    animation: bounce 2s ease-in-out infinite;
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    text-decoration: none;
    transition: all var(--transition-base);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: var(--navy-950);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream-50);
    border-color: rgba(250, 248, 244, 0.35);
}

.btn-outline-light:hover {
    background: rgba(250, 248, 244, 0.1);
    border-color: var(--cream-50);
    color: var(--cream-50);
    transform: translateY(-2px);
}

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

.btn-gold:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: var(--navy-950);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   About Section
   ======================================== */
.about-grid {
    display: grid;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
    }
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6.2;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-50);
}

.about-img-secondary img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.about-accent-box {
    position: absolute;
    top: -20px;
    left: -15px;
    background: var(--navy-900);
    color: var(--cream-50);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-accent-box .accent-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-xs);
}

.about-accent-box .accent-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream-50);
}

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

.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--warm-gray-600);
    margin-bottom: var(--space-lg);
}

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

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

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--navy-900);
}

.about-feature p {
    font-size: 0.95rem;
    color: var(--warm-gray-500);
    line-height: 1.6;
}

/* ========================================
   Menu Section
   ======================================== */
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
}

.menu-cat-btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.5);
    padding: var(--space-sm) var(--space-xl);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 100px;
    transition: all var(--transition-base);
}

.menu-cat-btn:hover {
    color: var(--gold-400);
    border-color: rgba(201, 168, 76, 0.5);
}

.menu-cat-btn.active {
    background: var(--gold-500);
    color: var(--navy-950);
    border-color: var(--gold-500);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.menu-item {
    background: rgba(250, 248, 244, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 168, 76, 0.3);
}

.menu-item-image {
    overflow: hidden;
}

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

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

.menu-item-body {
    padding: var(--space-lg);
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream-50);
    margin-bottom: var(--space-sm);
}

.menu-item-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(250, 248, 244, 0.55);
}

.menu-note {
    margin-top: var(--space-3xl);
    font-size: 0.875rem;
    color: rgba(250, 248, 244, 0.4);
    font-style: italic;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

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

.gallery-item-wide {
    grid-column: span 2;
}

@media (min-width: 900px) {
    .gallery-item-wide {
        grid-column: span 2;
    }
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent, rgba(10, 22, 40, 0.85));
    color: var(--cream-50);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Visit Section
   ======================================== */
.visit-grid {
    display: grid;
    gap: var(--space-3xl);
}

@media (min-width: 900px) {
    .visit-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
        align-items: start;
    }
}

.visit-detail {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    flex-shrink: 0;
}

.visit-detail h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cream-50);
    margin-bottom: var(--space-xs);
}

.visit-detail p {
    font-size: 0.95rem;
    color: rgba(250, 248, 244, 0.6);
    line-height: 1.7;
}

.visit-detail a {
    color: var(--gold-400);
}

.visit-detail a:hover {
    color: var(--gold-300);
}

/* Hours Table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: rgba(250, 248, 244, 0.7);
    font-size: 0.9rem;
}

.hours-time {
    color: var(--gold-400);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Map */
.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-placeholder {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
    display: grid;
    gap: var(--space-3xl);
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 360px;
        gap: var(--space-4xl);
        align-items: start;
    }
}

.contact-text {
    font-size: 1.05rem;
    color: var(--warm-gray-500);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

/* Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

@media (max-width: 599px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-800);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--warm-gray-800);
    background: var(--cream-100);
    border: 1.5px solid var(--warm-gray-200);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-md);
    color: var(--navy-800);
    font-weight: 500;
    margin-top: var(--space-lg);
}

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

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-card {
    background: var(--cream-100);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--warm-gray-200);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: var(--space-xl);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    color: var(--navy-700);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--warm-gray-200);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.contact-link:last-child {
    border-bottom: none;
}

.contact-link:hover {
    color: var(--gold-500);
    padding-left: var(--space-sm);
}

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

.contact-address {
    color: var(--warm-gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-card-gold {
    background: var(--navy-900);
    border-color: rgba(201, 168, 76, 0.2);
}

.contact-card-gold h3 {
    color: var(--cream-50);
}

.contact-card-gold p {
    color: rgba(250, 248, 244, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--navy-950);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: var(--space-3xl);
    }
}

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

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(250, 248, 244, 0.5);
    line-height: 1.7;
}

.footer-links h4,
.footer-hours h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream-50);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(250, 248, 244, 0.5);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-left: var(--space-sm);
}

.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(250, 248, 244, 0.5);
    padding: var(--space-xs) 0;
}

.footer-hours li span:last-child {
    color: var(--gold-400);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

@media (min-width: 600px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

.footer-bottom a {
    color: rgba(250, 248, 244, 0.35);
}

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

/* ========================================
   Scroll Reveal (progressive enhancement)
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .reveal.revealed {
        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; }
}

/* ========================================
   Mobile Menu Overlay
   ======================================== */
@media (max-width: 899px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-xs);
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition-base), opacity var(--transition-base), visibility var(--transition-base);
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: var(--space-md);
        font-size: 1rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: var(--space-sm);
        text-align: center;
    }
}

/* ========================================
   Utility / Additional
   ======================================== */
::selection {
    background: var(--gold-500);
    color: var(--navy-950);
}

:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 2px;
}
