/* ===== CSS Custom Properties ===== */
:root {
    --charcoal-900: #1A1A1A;
    --charcoal-800: #2D2D2D;
    --charcoal-700: #3D3D3D;
    --charcoal-600: #4A4A4A;
    --charcoal-500: #5A5A5A;
    --coral-500: #E8634B;
    --coral-400: #F07861;
    --coral-300: #F59580;
    --coral-100: #FDE8E3;
    --cream-50: #FAFAF8;
    --cream-100: #F5F5F0;
    --white: #FFFFFF;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--charcoal-800);
    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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Geometric Background Shapes ===== */
.geo-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.04;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--coral-500);
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--charcoal-800);
    bottom: 20%;
    left: -100px;
}

.geo-square-1 {
    width: 200px;
    height: 200px;
    background: var(--coral-500);
    top: 50%;
    right: 5%;
    transform: rotate(45deg);
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid var(--charcoal-800);
    top: 60%;
    left: 10%;
}

.geo-circle-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--coral-500);
    top: 35%;
    left: 3%;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 1001;
}

.nav-logo-icon {
    color: var(--coral-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-500);
    transition: width 0.3s var(--ease-out);
}

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

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

.nav-cta {
    background: var(--coral-500);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out);
}

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

.nav-cta:hover {
    background: var(--coral-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 99, 75, 0.35);
}

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

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    padding: 12px 24px;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--coral-500);
}

.mobile-menu-phone {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mobile-menu-divider {
    width: 60px;
    height: 2px;
    background: var(--coral-500);
    margin: 8px 0;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.88) 0%,
        rgba(45, 45, 45, 0.75) 50%,
        rgba(26, 26, 26, 0.85) 100%
    );
}

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

.hero-geo-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px solid rgba(232, 99, 75, 0.15);
    bottom: -150px;
    right: -100px;
}

.hero-geo-bar {
    position: absolute;
    width: 200px;
    height: 4px;
    background: var(--coral-500);
    top: 30%;
    left: 0;
    border-radius: 2px;
}

.hero-geo-dots {
    position: absolute;
    top: 20%;
    right: 10%;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 12px;
    opacity: 0.4;
}

.hero-geo-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral-500);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral-500);
    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-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    color: var(--coral-500);
    display: inline;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--coral-400);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 99, 75, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* ===== Marquee Strip ===== */
.marquee-strip {
    background: var(--charcoal-900);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    padding-right: 32px;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.marquee-dot {
    color: var(--coral-500) !important;
    font-size: 0.6rem !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Section Titles ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--charcoal-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.section-title--large {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

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

/* ===== About Section ===== */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--cream-50);
}

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

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 6/7;
}

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral-500);
    border-radius: 20px;
    z-index: -1;
}

.about-floating-card {
    position: absolute;
    bottom: 32px;
    left: -32px;
    background: var(--charcoal-900);
    color: var(--white);
    padding: 24px 28px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-floating-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral-500);
}

.about-floating-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral-500);
    margin-bottom: 20px;
}

.about-label-line {
    width: 32px;
    height: 2px;
    background: var(--coral-500);
    border-radius: 1px;
}

.about-content-col {
    max-width: 520px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--charcoal-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--coral-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal-900);
    margin-bottom: 4px;
}

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

/* Accent Bar */
.accent-bar {
    margin-top: 120px;
    height: 8px;
    background: var(--charcoal-900);
    border-radius: 4px;
    overflow: hidden;
}

.accent-bar-inner {
    height: 100%;
    width: 40%;
    background: var(--coral-500);
    border-radius: 4px;
}

/* ===== Menu Section ===== */
.menu {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--white);
}

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

.menu-card {
    background: var(--cream-50);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.menu-card-geo {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.06;
}

.menu-card--coffee .menu-card-geo {
    background: var(--charcoal-800);
}

.menu-card--cocktails .menu-card-geo {
    background: var(--coral-500);
}

.menu-card--food .menu-card-geo {
    background: var(--coral-500);
}

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.menu-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-card--coffee .menu-card-icon {
    background: var(--charcoal-900);
    color: var(--white);
}

.menu-card--cocktails .menu-card-icon {
    background: var(--coral-500);
    color: var(--white);
}

.menu-card--food .menu-card-icon {
    background: var(--charcoal-900);
    color: var(--white);
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal-900);
}

.menu-card-subtitle {
    font-size: 0.85rem;
    color: var(--charcoal-500);
    margin-top: 2px;
}

.menu-card-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-card-items li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-card-items li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.menu-item-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal-800);
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--charcoal-500);
    line-height: 1.5;
}

.menu-note {
    text-align: center;
    padding: 24px 32px;
    background: var(--charcoal-900);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.menu-note a {
    color: var(--coral-400);
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu-note a:hover {
    color: var(--coral-300);
}

/* ===== Vibe Section ===== */
.vibe {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--cream-50);
}

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

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

.vibe-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.vibe-image--large {
    grid-column: 1 / 8;
    aspect-ratio: auto;
}

.vibe-image--wide {
    grid-column: 1 / 13;
}

.vibe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.vibe-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.vibe-image:hover .vibe-image-overlay {
    transform: translateY(0);
}

.vibe-stripe {
    margin-top: 20px;
    height: 6px;
    background: var(--coral-500);
    border-radius: 3px;
    overflow: hidden;
}

.vibe-stripe-inner {
    height: 100%;
    width: 60%;
    background: var(--charcoal-900);
    border-radius: 3px;
    margin-left: auto;
}

/* ===== Visit Section ===== */
.visit {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--charcoal-900);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit-info {
    color: var(--white);
}

.visit-info .section-title {
    color: var(--white);
    margin-bottom: 48px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.visit-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 99, 75, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    flex-shrink: 0;
}

.visit-detail h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

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

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Visit Form */
.visit-form-col {
    position: relative;
}

.visit-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.visit-form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 8px;
}

.visit-form-subtitle {
    font-size: 0.95rem;
    color: var(--charcoal-500);
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal-700);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-optional {
    font-weight: 400;
    color: var(--charcoal-400);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--cream-100);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal-800);
    background: var(--cream-50);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(232, 99, 75, 0.1);
}

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

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
}

.form-success.show {
    display: flex;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--coral-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal-900);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--charcoal-500);
}

/* ===== Footer ===== */
.footer {
    position: relative;
    z-index: 1;
    background: var(--charcoal-800);
    color: var(--white);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--coral-500);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--coral-400);
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

.footer-geo {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.footer-geo-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(232, 99, 75, 0.06);
    bottom: -200px;
    right: -100px;
}

.footer-geo-bar {
    position: absolute;
    width: 150px;
    height: 3px;
    background: var(--coral-500);
    bottom: 40px;
    right: 60px;
    border-radius: 2px;
    opacity: 0.2;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 60px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .visit-grid {
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
    
    .hero-geo-bar {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-col {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about-floating-card {
        left: 16px;
        bottom: 24px;
    }
    
    .accent-bar {
        margin-top: 60px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .menu-card:last-child {
        max-width: 100%;
    }
    
    .vibe-grid {
        grid-template-columns: 1fr;
    }
    
    .vibe-image--large {
        grid-column: 1;
    }
    
    .vibe-image--wide {
        grid-column: 1;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .visit-form-card {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .menu {
        padding: 80px 0;
    }
    
    .vibe {
        padding: 80px 0;
    }
    
    .visit {
        padding: 80px 0;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .marquee-track {
        animation: none;
    }
}
