/* ============================================
   AL & B'S BARBEQUE — STYLESHEET
   Color Palette: Emerald Green + Cream + Amber
   ============================================ */

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

:root {
    --emerald-950: #042f2e;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --emerald-100: #d1fae5;
    --emerald-50:  #ecfdf5;

    --cream-50:  #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fef3c7;

    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;

    --stone-900: #1c1917;
    --stone-700: #44403c;
    --stone-500: #78716c;
    --stone-400: #a8a29e;
    --stone-200: #e7e5e4;
    --stone-100: #f5f5f4;
    --stone-50:  #fafaf9;

    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font-body);
    color: var(--stone-900);
    background: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--emerald-800);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 253, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--emerald-900);
}
.logo--light { color: #fff; }
.logo-accent { color: var(--amber-500); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu a {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--stone-700);
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}
.nav-menu a:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--emerald-800);
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}
.btn-nav:hover {
    background: var(--emerald-700) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--emerald-900);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger {
    position: relative;
    margin: 0 auto;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }
.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);
    top: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--emerald-900);
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(4, 47, 46, 0.8) 0%, transparent 100%);
}

.hero-geo-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.geo-circle {
    position: absolute;
    border-radius: 50%;
}
.geo-circle--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    background: rgba(16, 185, 129, 0.12);
    border: 2px solid rgba(52, 211, 153, 0.2);
}
.geo-circle--2 {
    width: 200px;
    height: 200px;
    bottom: 80px;
    left: 5%;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.2);
}
.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}
.geo-triangle--1 {
    top: 15%;
    left: 8%;
    border-width: 0 30px 52px 30px;
    border-color: transparent transparent rgba(245, 158, 11, 0.2) transparent;
    transform: rotate(-15deg);
}
.geo-square {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(52, 211, 153, 0.2);
    border-radius: 12px;
    bottom: 25%;
    right: 12%;
    transform: rotate(30deg);
}
.geo-dots {
    position: absolute;
    bottom: 18%;
    left: 15%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(251, 191, 36, 0.4) 2px, transparent 2px);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    opacity: 0.6;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--emerald-400);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-400);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-title-accent {
    color: var(--amber-400);
    display: block;
    font-size: 0.85em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}
.btn-primary {
    background: var(--amber-500);
    color: var(--stone-900);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}
.btn-primary:hover {
    background: var(--amber-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}
.btn-light {
    background: #fff;
    color: var(--emerald-900);
}
.btn-light:hover {
    background: var(--cream-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-block {
    width: 100%;
    justify-content: center;
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
}
.hero-image-frame {
    position: absolute;
    inset: 20px -12px -20px 20px;
    background: var(--amber-500);
    border-radius: var(--radius-xl);
    z-index: -1;
}
.hero-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}
.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--stone-900);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}
.hero-float--1 {
    top: 12%;
    right: -20px;
    animation-delay: 0s;
}
.hero-float--2 {
    bottom: 18%;
    left: -20px;
    animation-delay: 2s;
}
.float-icon {
    font-size: 1.4rem;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 80px 0;
    background: var(--cream-50);
    position: relative;
    margin-top: -1px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
}
.feature-card--cream {
    background: var(--cream-100);
    border: 1px solid var(--cream-200);
}
.feature-card--cream:hover { box-shadow: var(--shadow-md); }
.feature-card--emerald {
    background: var(--emerald-800);
    color: #fff;
}
.feature-card--emerald:hover { box-shadow: var(--shadow-lg); }
.feature-card--amber {
    background: var(--amber-500);
    color: var(--stone-900);
}
.feature-card--amber:hover { box-shadow: var(--shadow-md); }

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 1.6rem;
}
.feature-card--cream .feature-icon-wrap {
    background: var(--emerald-100);
    color: var(--emerald-800);
}
.feature-card--emerald .feature-icon-wrap {
    background: rgba(255, 255, 255, 0.15);
}
.feature-card--amber .feature-icon-wrap {
    background: rgba(120, 53, 15, 0.15);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    opacity: 0.85;
}
.feature-card--emerald p { color: rgba(255,255,255,0.8); }
.feature-card--amber p { color: var(--stone-700); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-600);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-tag--light {
    color: var(--emerald-300);
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--emerald-900);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--stone-500);
    line-height: 1.7;
}
.section-subtitle--light { color: rgba(255,255,255,0.7); }

/* ============================================
   MENU
   ============================================ */
.menu {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}
.menu-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 95, 70, 0.04) 0%, transparent 70%);
    top: -100px;
    right: -150px;
    pointer-events: none;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--stone-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.menu-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.06);
}
.menu-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--amber-500);
    color: var(--stone-900);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.menu-card-body {
    padding: 24px;
}
.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 8px;
}
.menu-card-body p {
    font-size: 0.92rem;
    color: var(--stone-500);
    line-height: 1.65;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px 28px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: var(--radius-md);
    color: var(--emerald-800);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image-col {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--emerald-900);
    box-shadow: var(--shadow-lg);
}
.about-img-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--amber-500);
    color: var(--stone-900);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.about-text-col {
    color: #fff;
}
.about-text-col .section-tag {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    color: var(--emerald-400);
}
.about-text-col .section-title {
    color: #fff;
    margin-bottom: 24px;
}
.about-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 16px;
    font-weight: 500;
}
.about-text-col p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 14px;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber-400);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 100px 0;
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}
.gallery-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
    position: relative;
    z-index: 2;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-item--large { grid-column: span 7; }
.gallery-item--tall { grid-column: span 5; grid-row: span 2; }
.gallery-item:not(.gallery-item--tall) { grid-column: span 6; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 100px 0;
    background: var(--amber-500);
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-circle {
    position: absolute;
    border-radius: 50%;
}
.cta-circle--1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    top: -80px;
    left: -60px;
}
.cta-circle--2 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.06);
    bottom: -50px;
    right: 10%;
}
.cta-dots {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(120, 53, 15, 0.25) 2px, transparent 2px);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--stone-900);
    line-height: 1.15;
    margin-bottom: 16px;
}
.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(120, 53, 15, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: 100px 0;
    background: var(--cream-50);
}
.visit-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}
.visit-info { max-width: 100%; }
.visit-info .section-header { text-align: left; margin-bottom: 40px; }

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.visit-detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-800);
}
.visit-detail h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 4px;
}
.visit-detail p {
    font-size: 0.92rem;
    color: var(--stone-500);
    line-height: 1.6;
}
.visit-detail a {
    color: var(--emerald-700);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(5, 150, 105, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}
.visit-detail a:hover {
    text-decoration-color: var(--emerald-700);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.visit-map iframe {
    display: block;
}

.visit-cta-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.visit-cta-card {
    background: var(--emerald-800);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
}
.visit-cta-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-400);
}
.visit-cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.visit-cta-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 24px;
}

.visit-hours-card {
    background: #fff;
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.visit-hours-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 16px;
}
.hours-table {
    width: 100%;
    border-collapse: collapse;
}
.hours-table td {
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--stone-700);
    border-bottom: 1px solid var(--stone-100);
}
.hours-table tr:last-child td {
    border-bottom: none;
}
.hours-table td:first-child {
    font-weight: 600;
    color: var(--stone-900);
}
.hours-table td:last-child {
    text-align: right;
    color: var(--emerald-700);
    font-weight: 500;
}
.hours-table tr:last-child td:last-child {
    color: var(--amber-600);
    font-weight: 700;
}
.hours-note {
    font-size: 0.82rem;
    color: var(--stone-400);
    margin-top: 12px;
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--emerald-950);
    color: #fff;
    position: relative;
}
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer {
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--emerald-400);
}
.footer-contact p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 6px;
}
.footer-contact a {
    color: var(--emerald-400);
    font-weight: 600;
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: var(--emerald-300);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-image { height: 460px; }
    .hero-image-frame { inset: 16px -8px -16px 16px; }
    .hero-float--1 { right: 0; }
    .hero-float--2 { left: 0; }

    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-secondary { right: 10px; bottom: -20px; width: 180px; }
    .about-badge { left: 10px; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--large { grid-column: span 2; }
    .gallery-item--tall { grid-column: span 1; grid-row: auto; }
    .gallery-item:not(.gallery-item--tall) { grid-column: span 1; }
    .gallery-item { height: 220px; }

    .visit-container {
        grid-template-columns: 1fr;
    }
    .visit-info .section-header { text-align: center; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 248, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(6, 95, 70, 0.1);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    .nav-toggle { display: block; }

    .hero { padding: 90px 0 80px; min-height: auto; }
    .hero-title { font-size: 2.2rem; }
    .hero-image { height: 360px; }
    .hero-image-frame { inset: 12px -6px -12px 12px; }
    .hero-float-card { display: none; }
    .hero-wave svg { height: 50px; }

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

    .about-img-main img { height: 400px; }
    .about-img-secondary { display: none; }
    .about-stats { gap: 24px; }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--large { grid-column: span 1; }
    .gallery-item { height: 200px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 80px 0 60px; }
    .hero-title { font-size: 1.85rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
