/* ============================================
   THE BEAN BARN — Custom Styles
   Color Palette: Plum + Amber (Pastel)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-50: #fdf4f8;
    --plum-100: #fce7ef;
    --plum-200: #fad0e0;
    --plum-300: #f5a8c4;
    --plum-400: #ed729e;
    --plum-500: #db4d7e;
    --plum-600: #c23562;
    --plum-700: #a0254e;
    --plum-800: #842043;
    --plum-900: #6e1a38;

    --amber-50: #fffbeb;
    --amber-100: #fff3cd;
    --amber-200: #ffeaa7;
    --amber-300: #ffd166;
    --amber-400: #f4b942;
    --amber-500: #e09f3e;
    --amber-600: #c4872e;
    --amber-700: #a06a22;

    --cream: #fefcf8;
    --warm-white: #fef9f3;
    --sand: #f5efe6;
    --sand-light: #faf6f0;

    --text-primary: #2d1f2f;
    --text-secondary: #5a4560;
    --text-muted: #8a7090;
    --text-light: #b09ab0;

    --bg-body: var(--cream);
    --bg-section: var(--warm-white);
    --bg-card: #ffffff;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(45, 31, 47, 0.06);
    --shadow-md: 0 8px 30px rgba(45, 31, 47, 0.08);
    --shadow-lg: 0 20px 60px rgba(45, 31, 47, 0.12);
    --shadow-glow: 0 8px 40px rgba(219, 77, 126, 0.15);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s 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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-body);
    overflow-x: hidden;
}

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

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

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

/* --- Utility --- */
.text-plum {
    color: var(--plum-500);
}

.text-gradient {
    background: linear-gradient(135deg, var(--plum-500) 0%, var(--plum-700) 50%, var(--amber-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-500);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-500), var(--amber-400));
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--plum-500) 0%, var(--plum-600) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(219, 77, 126, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(219, 77, 126, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-primary);
    border: 1.5px solid var(--plum-200);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: #fff;
    border-color: var(--plum-400);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--plum-600);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

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

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(254, 252, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(45, 31, 47, 0.06);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    color: var(--plum-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-500), var(--amber-400));
    border-radius: 2px;
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--plum-600);
}

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

.nav-cta {
    padding: 0.625rem 1.375rem !important;
    background: linear-gradient(135deg, var(--plum-500), var(--plum-600));
    color: #fff !important;
    border-radius: 50px;
    font-size: 0.875rem !important;
}

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

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(219, 77, 126, 0.35);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(254, 252, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

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

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border-radius: 50%;
    background: var(--sand);
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--plum-100);
    color: var(--plum-600);
}

.mobile-menu-close svg {
    width: 20px;
    height: 20px;
}

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

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

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

.mobile-menu-contact {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 2;
}

.mobile-menu-contact a {
    color: var(--plum-500);
    font-weight: 500;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--plum-50) 40%, var(--amber-50) 100%);
    padding: 8rem 2rem 4rem;
}

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

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--plum-100);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--amber-100);
    bottom: -100px;
    left: -100px;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: var(--plum-200);
    top: 50%;
    left: 40%;
    opacity: 0.3;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--plum-200);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--plum-600);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--amber-500);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.hero-detail svg {
    width: 18px;
    height: 18px;
    color: var(--plum-400);
    flex-shrink: 0;
}

/* Hero Right — Image Composition */
.hero-right {
    position: relative;
    height: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 85%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-image-float {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.hero-image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-cocktail {
    width: 48%;
    bottom: 5%;
    left: -5%;
    height: 55%;
}

.hero-image-interior {
    width: 42%;
    bottom: 10%;
    right: -2%;
    height: 40%;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--plum-400), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- About Section --- */
.about {
    padding: 8rem 2rem;
    background: var(--bg-section);
    position: relative;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

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

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

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

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--bg-section);
}

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

.about-experience-badge {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--plum-500), var(--plum-700));
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.about-experience-badge .badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-experience-badge .badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.85;
}

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

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border: 1px solid var(--plum-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-600);
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

.value-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.value-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --- Menu Section --- */
.menu {
    padding: 8rem 2rem;
    background: var(--bg-body);
    position: relative;
    overflow: hidden;
}

.menu-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--plum-50) 100%);
    pointer-events: none;
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.menu-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--sand);
    border: 1.5px solid transparent;
    transition: all var(--transition-fast);
}

.menu-tab:hover {
    color: var(--plum-600);
    background: var(--plum-50);
    border-color: var(--plum-200);
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--plum-500), var(--plum-600));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(219, 77, 126, 0.3);
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand);
    transition: all var(--transition-smooth);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--plum-200);
}

.menu-card-visual {
    height: 200px;
    overflow: hidden;
}

.menu-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.menu-card:hover .menu-card-visual img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.menu-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.menu-card-top h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.menu-card-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--plum-100), var(--amber-100));
    color: var(--plum-700);
}

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

/* --- Vibe Section --- */
.vibe {
    padding: 8rem 2rem;
    background: var(--bg-section);
}

.vibe-container {
    max-width: 1280px;
    margin: 0 auto;
}

.vibe-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.vibe-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

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

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

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

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

.vibe-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 31, 47, 0.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.vibe-gallery-item:hover .vibe-gallery-overlay {
    opacity: 1;
}

.vibe-gallery-overlay span {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
}

.vibe-wide {
    grid-column: span 8;
    height: 320px;
}

.vibe-gallery-item:not(.vibe-wide) {
    height: 240px;
}

/* --- Testimonials --- */
.testimonials {
    padding: 8rem 2rem;
    background: linear-gradient(160deg, var(--plum-50) 0%, var(--amber-50) 100%);
    position: relative;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.testimonials .section-title {
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--amber-400);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* --- Visit Section --- */
.visit {
    padding: 8rem 2rem;
    background: var(--bg-body);
}

.visit-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.visit-intro {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.visit-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.visit-info-card {
    background: var(--sand-light);
    border: 1px solid var(--sand);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all var(--transition-fast);
}

.visit-info-card:hover {
    border-color: var(--plum-200);
    box-shadow: var(--shadow-sm);
}

.visit-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border: 1px solid var(--plum-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-600);
    margin-bottom: 0.75rem;
}

.visit-info-icon svg {
    width: 20px;
    height: 20px;
}

.visit-info-card strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.visit-info-card p {
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.visit-info-card a {
    color: var(--plum-600);
    transition: color var(--transition-fast);
}

.visit-info-card a:hover {
    color: var(--plum-800);
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* --- CTA Section --- */
.cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-900) 50%, #4a1525 100%);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.cta-shape-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -150px;
    left: -100px;
}

.cta-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(244, 185, 66, 0.08);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.25rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-actions .btn-white {
    color: var(--plum-800);
}

/* --- Footer --- */
.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    color: var(--plum-400);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-group strong {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.25rem;
}

.footer-link-group a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-link-group a:hover {
    color: var(--amber-300);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s 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; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }

    .hero-right {
        height: 500px;
    }

    .about-container {
        gap: 3rem;
    }

    .about-image-stack {
        height: 480px;
    }

    .vibe-wide {
        grid-column: span 12;
    }

    .vibe-gallery-item:not(.vibe-wide) {
        grid-column: span 6;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-details {
        align-items: center;
    }

    .hero-right {
        display: none;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
    }

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

    .visit-content {
        max-width: 100%;
    }

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

    .footer-links {
        gap: 2rem;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3rem);
    }

    .menu-tabs {
        gap: 0.375rem;
    }

    .menu-tab {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }

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

    .vibe-gallery {
        grid-template-columns: 1fr;
    }

    .vibe-wide,
    .vibe-gallery-item:not(.vibe-wide) {
        grid-column: span 1;
        height: 220px;
    }

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

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

    .about-image-stack {
        height: 400px;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1.25rem 3rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }

    .menu-tab {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

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

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
