/* ============================================
   BC Battery Lounge — Stylesheet
   Classic & Elegant | Forest Green + Off-White
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-forest: #1a3a2a;
    --color-forest-light: #2a5240;
    --color-forest-dark: #0f2419;
    --color-forest-muted: #3d6b52;
    --color-cream: #f5f0e8;
    --color-cream-light: #faf7f2;
    --color-cream-dark: #e8e0d0;
    --color-warm: #d4c4a8;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-text-muted: #7a7a7a;
    --color-white: #ffffff;
    --color-gold: #b8943e;
    --color-gold-light: #d4af5a;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm: 0 1px 3px rgba(26, 58, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 58, 42, 0.1);
    --shadow-lg: 0 8px 32px rgba(26, 58, 42, 0.12);
    --shadow-xl: 0 16px 48px rgba(26, 58, 42, 0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

/* --- Accessibility --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-forest);
    color: var(--color-cream);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
    transition: top var(--transition);
}

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
}

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

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 560px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-forest);
    color: var(--color-cream);
    border: 2px solid var(--color-forest);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--color-forest-dark);
    border-color: var(--color-forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cream);
    border: 2px solid rgba(245, 240, 232, 0.5);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: var(--color-cream);
    color: var(--color-forest);
    border-color: var(--color-cream);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: all var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

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

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

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

.logo-mark {
    flex-shrink: 0;
    color: var(--color-cream);
    transition: color var(--transition);
}

.site-header.scrolled .logo-mark {
    color: var(--color-forest);
}

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

.logo-line-one {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-line-two {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.85);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.site-header.scrolled .nav-link {
    color: var(--color-text-light);
}

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

.nav-link.btn-nav {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(245, 240, 232, 0.4);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link.btn-nav:hover {
    background: var(--color-cream);
    color: var(--color-forest) !important;
    border-color: var(--color-cream);
}

.site-header.scrolled .nav-link.btn-nav {
    border-color: var(--color-forest);
    color: var(--color-forest) !important;
}

.site-header.scrolled .nav-link.btn-nav:hover {
    background: var(--color-forest);
    color: var(--color-cream) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-cream);
    border-radius: 2px;
    transition: all var(--transition);
}

.site-header.scrolled .hamburger {
    background: var(--color-forest);
}

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

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

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

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

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--color-forest);
        padding: 6rem var(--space-xl) var(--space-xl);
        transition: right var(--transition-slow);
        box-shadow: var(--shadow-xl);
    }

    .primary-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .nav-link {
        font-size: 1rem;
        color: rgba(245, 240, 232, 0.85) !important;
    }

    .nav-link::after {
        background: var(--color-cream);
    }

    .nav-link.btn-nav {
        margin-top: var(--space-sm);
        border-color: rgba(245, 240, 232, 0.4);
        color: var(--color-cream) !important;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .nav-overlay.active {
        display: block;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-forest);
    overflow: hidden;
    padding: var(--space-3xl) 0 var(--space-2xl);
}

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

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

.hero-content {
    padding-right: var(--space-lg);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold-light);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.headline-accent {
    font-style: italic;
    color: var(--color-gold-light);
    font-weight: 500;
}

.hero-subhead {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.75);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* Hero Images */
.hero-image-stack {
    position: relative;
    height: 100%;
    min-height: 520px;
}

.hero-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img--main {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-img--main img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.hero-img--accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    z-index: 3;
    border: 4px solid var(--color-forest);
    overflow: hidden;
}

.hero-img--accent img {
    width: 420px;
    height: 320px;
    object-fit: cover;
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    bottom: var(--space-xl);
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    padding: 0 var(--space-lg);
    pointer-events: none;
}

.stat-card {
    background: var(--color-cream);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 160px;
    animation: floatUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: auto;
}

.stat-card[data-delay="0"] { animation-delay: 0.3s; }
.stat-card[data-delay="100"] { animation-delay: 0.5s; }
.stat-card[data-delay="200"] { animation-delay: 0.7s; }

@keyframes floatUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-forest);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

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

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

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

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

    .hero-img--main img {
        height: 480px;
    }

    .hero-img--accent {
        left: -20px;
        bottom: -20px;
    }

    .hero-img--accent img {
        width: 280px;
        height: 220px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-2xl);
    }

    .hero-image-stack {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        bottom: var(--space-lg);
    }

    .stat-card {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-warm), transparent);
}

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

.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: 680px;
    object-fit: cover;
}

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

.about-img-secondary img {
    width: 400px;
    height: 480px;
    object-fit: cover;
}

.about-decoration {
    position: absolute;
    top: -30px;
    right: 40px;
    color: var(--color-forest);
    opacity: 0.15;
    z-index: -1;
}

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

.about-body {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.about-signature {
    margin-top: var(--space-xl);
}

.signature-divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.signature-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-forest);
}

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

    .about-img-secondary {
        right: 0;
        bottom: -30px;
    }

    .about-img-secondary img {
        width: 260px;
        height: 320px;
    }

    .about-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-img-main img {
        height: 400px;
    }

    .about-img-secondary {
        display: none;
    }
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
    padding: var(--space-3xl) 0;
    background: var(--color-cream-light);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header--centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

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

.menu-category {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.menu-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-cream-dark);
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-cream-dark);
}

.category-icon {
    color: var(--color-forest);
    flex-shrink: 0;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-forest);
}

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

.menu-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: var(--space-md);
    border-bottom: 1px dashed var(--color-cream-dark);
}

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

.item-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-forest);
}

.item-desc {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .menu-categories {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* ============================================
   SPECIALTIES SECTION
   ============================================ */
.specialties {
    padding: var(--space-3xl) 0;
    background: var(--color-forest);
    position: relative;
    overflow: hidden;
}

.specialties::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(184, 148, 62, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(245, 240, 232, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

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

.specialties .section-heading {
    color: var(--color-cream);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

.specialty-card {
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.specialty-card:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: rgba(245, 240, 232, 0.2);
    transform: translateY(-4px);
}

.specialty-card-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(245, 240, 232, 0.08);
    line-height: 1;
    margin-bottom: var(--space-sm);
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
}

.specialty-icon {
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
}

.specialty-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.specialty-desc {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.65);
}

@media (max-width: 900px) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .specialties-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item--large {
    grid-column: span 7;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item--large img {
    height: 480px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
    height: 400px;
}

.gallery-item--wide img {
    height: 320px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .gallery-item--large img,
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
        height: 300px;
    }

    .gallery-item--wide img {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-item img {
        height: 280px;
    }
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--color-cream-light);
}

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

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-cream-dark);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.visit-detail-icon {
    color: var(--color-forest);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.visit-detail-link {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-forest);
    transition: color var(--transition);
}

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

/* Map */
.visit-map {
    position: relative;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
}

.map-overlay .btn {
    box-shadow: var(--shadow-lg);
}

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

    .map-placeholder img {
        height: 400px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-forest);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(184, 148, 62, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
    position: relative;
    z-index: 2;
}

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

.contact-body {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.85;
    color: rgba(245, 240, 232, 0.7);
    max-width: 440px;
}

.contact .section-heading {
    color: var(--color-cream);
}

/* Form */
.contact-form {
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

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

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-cream);
    background: rgba(245, 240, 232, 0.08);
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: rgba(245, 240, 232, 0.35);
}

.form-input:focus {
    border-color: var(--color-gold-light);
    background: rgba(245, 240, 232, 0.12);
    box-shadow: 0 0 0 3px rgba(184, 148, 62, 0.15);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(42, 82, 64, 0.4);
    border: 1px solid rgba(42, 82, 64, 0.6);
    border-radius: var(--radius-sm);
    color: var(--color-cream);
    font-size: 0.9375rem;
}

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

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-content {
        text-align: center;
        padding-top: 0;
    }

    .contact-body {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-forest-dark);
    color: var(--color-cream);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

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

.footer-logo {
    margin-bottom: var(--space-md);
    display: inline-flex;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.6);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: var(--space-md);
}

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

.footer-nav-list a {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color var(--transition);
}

.footer-nav-list a:hover {
    color: var(--color-cream);
}

.footer-address {
    font-style: normal;
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(245, 240, 232, 0.6);
}

.footer-link {
    color: rgba(245, 240, 232, 0.6);
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--color-gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
}

.copyright {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.4);
}

.footer-location {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-style: italic;
    color: rgba(245, 240, 232, 0.4);
}

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

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .site-header, .nav-toggle, .hero-stats, .gallery {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
