/* ============================================
   ISLAND LOUNGE — CSS
   Colors: Plum (#7B2D8B / #5A1D6B) + Amber (#F5A623 / #D4891A)
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
    --plum: #7B2D8B;
    --plum-dark: #5A1D6B;
    --plum-deeper: #3D1449;
    --plum-light: #A84CB8;
    --plum-pale: #F3E5F5;
    --amber: #F5A623;
    --amber-dark: #D4891A;
    --amber-light: #FDD87A;
    --amber-pale: #FFF8E7;
    --bg-dark: #1a0a1e;
    --bg-dark-soft: #240f2a;
    --text-light: #F5F0F7;
    --text-muted: #C4A8D4;
    --text-dark: #1a0a1e;
    --text-muted-dark: #5A3D6B;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --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(--bg-dark);
    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;
}

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

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 10, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 45, 139, 0.2);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(26, 10, 30, 0.95);
    box-shadow: 0 4px 30px rgba(123, 45, 139, 0.15);
}

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

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

.nav-logo:hover {
    color: var(--amber-light);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-light);
    background: rgba(123, 45, 139, 0.2);
}

.nav-cta {
    margin-left: 8px;
    background: var(--amber);
    color: var(--text-dark) !important;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

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

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 10, 30, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.nav-overlay-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.nav-overlay.open .nav-overlay-link {
    transform: translateY(0);
    opacity: 1;
}

.nav-overlay-link:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay-link:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay-link:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay-link:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay-link:nth-child(5) { transition-delay: 0.3s; }

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--amber);
    color: var(--text-dark);
}

.btn--primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid rgba(245, 166, 35, 0.5);
}

.btn--ghost:hover {
    background: rgba(245, 166, 35, 0.1);
    border-color: var(--amber);
}

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

/* --- Section Labels & Titles --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

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

.text-plum {
    color: var(--plum-light);
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 72px 24px 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape--circle1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 45, 139, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-shape--circle2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-shape--rect {
    width: 200px;
    height: 200px;
    background: var(--plum);
    opacity: 0.08;
    border-radius: var(--radius-lg);
    top: 15%;
    left: 5%;
    transform: rotate(15deg);
}

.hero-shape--dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    top: 30%;
    left: 12%;
    box-shadow: 
        40px 80px 0 var(--amber),
        80px 30px 0 var(--plum-light),
        120px 90px 0 var(--amber),
        -30px 120px 0 var(--plum-light);
    opacity: 0.5;
}

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

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
}

.hero-tagline-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-headline-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--amber);
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 36px;
}

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

.hero-image-col {
    position: relative;
    height: 600px;
}

.hero-img-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

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

.hero-img-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 240px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 4px solid var(--bg-dark);
}

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

.hero-badge {
    position: absolute;
    top: 24px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

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

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

/* ============================================
   ABOUT
   ============================================ */
.about {
    position: relative;
    padding: 120px 0;
    background: var(--bg-dark-soft);
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 45, 139, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    pointer-events: none;
}

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

.about-visual {
    position: relative;
}

.about-img-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.about-accent-block {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--plum);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(90, 29, 107, 0.4);
}

.about-stat {
    display: flex;
    flex-direction: column;
}

.about-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-text .section-title {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-feature-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

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

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

.menu-shape--circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(123, 45, 139, 0.15);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.menu-shape--rect {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--amber);
    opacity: 0.05;
    border-radius: var(--radius);
    top: 80px;
    right: 40px;
    transform: rotate(30deg);
}

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

.menu-header .section-title {
    margin-bottom: 32px;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(123, 45, 139, 0.1);
    border: 1.5px solid rgba(123, 45, 139, 0.2);
    border-radius: 50px;
    transition: var(--transition);
}

.menu-tab:hover {
    color: var(--text-light);
    border-color: rgba(123, 45, 139, 0.5);
    background: rgba(123, 45, 139, 0.2);
}

.menu-tab.active {
    color: var(--text-dark);
    background: var(--amber);
    border-color: var(--amber);
}

.menu-panel {
    display: none;
}

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

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(123, 45, 139, 0.06);
    border: 1px solid rgba(123, 45, 139, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(123, 45, 139, 0.12);
    border-color: rgba(123, 45, 139, 0.25);
    transform: translateY(-2px);
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

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

.menu-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   VIBE
   ============================================ */
.vibe {
    position: relative;
    padding: 120px 0;
    background: var(--plum-deeper);
    overflow: hidden;
}

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

.vibe-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.vibe-text-block .section-title {
    margin-bottom: 20px;
}

.vibe-text-block p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.vibe-highlights {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vibe-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vibe-highlight-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--amber);
    opacity: 0.6;
    min-width: 36px;
}

.vibe-highlight-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.vibe-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.vibe-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.vibe-img--tall {
    grid-row: 1 / 3;
    height: 100%;
}

.vibe-img--tall img,
.vibe-img--wide img,
.vibe-img--square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vibe-img--wide {
    height: 180px;
}

.vibe-img--square {
    height: 180px;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
    position: relative;
    padding: 120px 0;
    background: var(--bg-dark);
}

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

.location-info .section-title {
    margin-bottom: 36px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(123, 45, 139, 0.15);
    border-radius: var(--radius);
    color: var(--amber);
    flex-shrink: 0;
}

.location-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.location-detail p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

.location-detail a {
    color: var(--amber);
    transition: var(--transition);
}

.location-detail a:hover {
    color: var(--amber-light);
    text-decoration: underline;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.location-map-placeholder {
    position: relative;
    background: var(--bg-dark-soft);
}

.map-visual {
    width: 100%;
    height: 350px;
}

.map-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--plum);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    position: relative;
    padding: 120px 0;
    background: var(--bg-dark-soft);
    overflow: hidden;
}

.contact-bg-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-text .section-title {
    margin-bottom: 20px;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-direct-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--amber);
    padding: 12px 20px;
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-direct-item:hover {
    background: rgba(245, 166, 35, 0.15);
    border-color: rgba(245, 166, 35, 0.4);
    transform: translateX(4px);
}

/* Form */
.contact-form-wrap {
    background: var(--bg-dark);
    border: 1px solid rgba(123, 45, 139, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    background: rgba(123, 45, 139, 0.08);
    border: 1.5px solid rgba(123, 45, 139, 0.2);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-input:focus {
    border-color: var(--amber);
    background: rgba(245, 166, 35, 0.05);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23F5A623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: var(--radius);
    color: #81C784;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0d0610;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(123, 45, 139, 0.15);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-logo:hover {
    color: var(--amber-light);
}

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

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.footer-links strong {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-links a:hover {
    color: var(--amber);
    padding-left: 4px;
}

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

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

.footer-note {
    font-size: 0.75rem !important;
    opacity: 0.4 !important;
}

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

    .hero-image-col {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid,
    .vibe-asymmetric,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .vibe-image-grid {
        max-width: 500px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 72px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-inner {
        text-align: center;
    }

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

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

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

    .hero-image-col {
        height: 350px;
    }

    .hero-img-float {
        width: 180px;
        left: -10px;
        bottom: -20px;
    }

    .hero-badge {
        right: 0;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

    .vibe-img--tall {
        grid-row: auto;
        height: 280px;
    }

    .vibe-img--wide,
    .vibe-img--square {
        height: 200px;
    }

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

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

    .contact-form-wrap {
        padding: 24px;
    }
}

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

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .menu-tabs {
        gap: 6px;
    }

    .menu-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-scroll-line {
        animation: none;
        opacity: 0.5;
    }
}
