/* ============================================
   THE GLASTINE PUB — Brand Stylesheet
   Palette: Charcoal (#1A1A1A) + Coral (#E85D4A)
   Fonts: Syne (headings) + DM Sans (body)
   ============================================ */

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

:root {
    --charcoal: #1A1A1A;
    --charcoal-light: #2A2A2A;
    --charcoal-mid: #3A3A3A;
    --coral: #E85D4A;
    --coral-dark: #C94A38;
    --coral-light: #FF7B66;
    --cream: #FFF8F6;
    --cream-dark: #F5E6E0;
    --white: #FFFFFF;
    --text-light: #F5F0ED;
    --text-muted: #9A9590;
    --text-dark: #1A1A1A;
    
    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 26, 26, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 26, 26, 0.15);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--coral);
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.text-coral {
    color: var(--coral);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--charcoal-mid);
    max-width: 520px;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-coral {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.btn-coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 93, 74, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--coral);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.main-nav ul {
    display: flex;
    gap: 8px;
}

.main-nav a:not(.nav-cta) {
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.main-nav a:not(.nav-cta):hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--coral);
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white) !important;
    transition: all var(--transition);
    margin-left: 16px;
}

.nav-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(232, 93, 74, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.mobile-link:hover {
    color: var(--coral);
    background: rgba(232, 93, 74, 0.08);
}

.mobile-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--coral);
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

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

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 93, 74, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 93, 74, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.geo-rect {
    position: absolute;
    border-radius: var(--radius-lg);
}

.geo-rect--1 {
    width: 200px;
    height: 200px;
    background: rgba(232, 93, 74, 0.06);
    transform: rotate(45deg);
    top: 15%;
    left: 5%;
}

.geo-rect--2 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(30deg);
    bottom: 25%;
    right: 35%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(232, 93, 74, 0.12);
    border: 1px solid rgba(232, 93, 74, 0.25);
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--coral-light);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 36px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--coral);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

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

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

.image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 580/720;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    bottom: -20px;
    left: -30px;
    z-index: 2;
}

.accent-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal);
}

.accent-badge svg {
    color: var(--coral);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--cream);
    padding: 120px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 5px solid var(--cream);
}

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

.about-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: var(--radius-lg);
    bottom: 30%;
    left: -20px;
    transform: rotate(15deg);
    z-index: -1;
    opacity: 0.15;
}

.about-content .section-label {
    margin-bottom: 12px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--charcoal-mid);
    margin-bottom: 18px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(232, 93, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--charcoal-mid);
    line-height: 1.5;
}

/* ============================================
   MENU
   ============================================ */
.menu {
    background: var(--charcoal);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.menu-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.menu-shape {
    position: absolute;
    border-radius: 50%;
}

.menu-shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 93, 74, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.menu-shape--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
}

.menu .container {
    position: relative;
    z-index: 1;
}

.menu .section-header {
    text-align: center;
    margin-bottom: 64px;
}

.menu .section-label {
    justify-content: center;
}

.menu .section-label::before {
    display: none;
}

.menu .section-desc {
    margin: 0 auto;
    color: var(--text-muted);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-card {
    position: relative;
    background: var(--charcoal-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.menu-card:hover::before {
    transform: scaleX(1);
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 93, 74, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.menu-card--coral {
    background: var(--coral);
    border-color: var(--coral);
}

.menu-card--coral::before {
    background: var(--white);
}

.menu-card--coral:hover {
    border-color: var(--white);
}

.menu-card-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
}

.menu-card--coral .menu-card-accent {
    background: rgba(255, 255, 255, 0.1);
}

.menu-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 93, 74, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 24px;
}

.menu-card--coral .menu-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.menu-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.menu-card--coral h3 {
    color: var(--white);
}

.menu-card > p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.menu-card--coral > p {
    color: rgba(255, 255, 255, 0.85);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.menu-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    flex-shrink: 0;
}

.menu-card--coral .menu-list li {
    color: rgba(255, 255, 255, 0.9);
}

.menu-card--coral .menu-list li::before {
    background: var(--white);
}

/* ============================================
   VIBES / GALLERY
   ============================================ */
.vibes {
    background: var(--cream);
    padding: 120px 0;
}

.vibes-header {
    text-align: center;
    margin-bottom: 64px;
}

.vibes-header .section-label {
    justify-content: center;
}

.vibes-header .section-label::before {
    display: none;
}

.vibes-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

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

.vibes-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vibes-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.vibes-item:hover .vibes-overlay {
    opacity: 1;
}

.vibes-overlay span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.vibes-item--large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 500px;
}

.vibes-item--wide {
    grid-column: span 12;
    min-height: 260px;
}

.vibes-item:not(.vibes-item--large):not(.vibes-item--wide) {
    min-height: 240px;
}

/* ============================================
   VISIT / CONTACT
   ============================================ */
.visit {
    background: var(--charcoal);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.visit-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.visit-shape {
    position: absolute;
    border-radius: 50%;
}

.visit-shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 93, 74, 0.1) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.visit-shape--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 93, 74, 0.06) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
}

.visit .container {
    position: relative;
    z-index: 1;
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.visit-info .section-label {
    margin-bottom: 12px;
}

.visit-info .section-title {
    margin-bottom: 18px;
}

.visit-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--charcoal-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: rgba(232, 93, 74, 0.3);
    background: rgba(232, 93, 74, 0.06);
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(232, 93, 74, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-card a {
    color: var(--coral-light);
    transition: color var(--transition);
}

.contact-card a:hover {
    color: var(--coral);
}

.visit-map {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex: 1;
    min-height: 380px;
    box-shadow: var(--shadow-lg);
}

.directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--coral);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    transition: all var(--transition);
}

.directions-btn:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 93, 74, 0.35);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--coral);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    top: -200px;
    right: -100px;
}

.cta-shape--2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: 10%;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 360px;
    margin-top: 16px;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--coral-light);
    transition: color var(--transition);
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }

    .about-layout {
        gap: 50px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

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

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

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .image-accent {
        left: -10px;
        bottom: -10px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        height: 400px;
        max-width: 480px;
        margin: 0 auto;
    }

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

    .menu-card:last-child {
        grid-column: span 1;
    }

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

    .vibes-item--large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 320px;
    }

    .vibes-item--wide {
        grid-column: span 1;
        min-height: 220px;
    }

    .vibes-item:not(.vibes-item--large):not(.vibes-item--wide) {
        min-height: 200px;
    }

    .visit-layout {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 280px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-links {
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .about-images {
        height: 320px;
    }

    .about-img-main {
        width: 65%;
        height: 70%;
    }

    .about-img-secondary {
        width: 55%;
        height: 50%;
    }

    .menu-card {
        padding: 28px 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}
