/* ============================================
   The Dog House Bar — Custom Styles
   Plum + Amber | Vibrant Modern
   ============================================ */

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

:root {
    --plum-50: #fdf4f8;
    --plum-100: #fce7f3;
    --plum-200: #f9d4e8;
    --plum-300: #f0abcf;
    --plum-400: #e879a8;
    --plum-500: #c0396b;
    --plum-600: #a8325d;
    --plum-700: #8c2a4d;
    --plum-800: #73223f;
    --plum-900: #3d0f20;
    --plum-950: #2a0a16;

    --amber-50: #fffbeb;
    --amber-100: #fff3cd;
    --amber-200: #ffeaa7;
    --amber-300: #ffd166;
    --amber-400: #f4a822;
    --amber-500: #e08e0a;
    --amber-600: #c47606;
    --amber-700: #9c5904;
    --amber-800: #7a4403;
    --amber-900: #5c3302;

    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;

    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

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

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

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

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

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

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--plum-900);
}

.nav-logo-icon {
    font-size: 1.4rem;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--plum-500);
    transition: width 0.25s ease;
}

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

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

.nav-cta {
    background: var(--plum-700);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.nav-cta:hover {
    background: var(--plum-600);
    color: #fff !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: linear-gradient(
        135deg,
        var(--plum-950) 0%,
        var(--plum-800) 20%,
        var(--plum-700) 40%,
        var(--plum-600) 55%,
        var(--amber-600) 75%,
        var(--amber-500) 100%
    );
}

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

.geo {
    position: absolute;
    opacity: 0.12;
}

.geo-circle {
    border-radius: 50%;
    background: var(--amber-300);
}

.geo-square {
    background: var(--amber-200);
    border-radius: var(--radius-lg);
    transform: rotate(15deg);
}

.geo-diamond {
    background: var(--plum-300);
    border-radius: var(--radius-sm);
    transform: rotate(45deg);
}

.geo-rect {
    background: var(--amber-300);
    border-radius: var(--radius-xl);
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    opacity: 0.08;
}

.geo-circle-2 {
    width: 280px;
    height: 280px;
    bottom: 10%;
    left: -60px;
    opacity: 0.1;
    background: var(--plum-200);
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 8%;
    opacity: 0.15;
}

.geo-diamond-1 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 12%;
    opacity: 0.12;
}

.geo-circle-3 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 5%;
    opacity: 0.08;
    background: var(--plum-200);
}

.geo-rect-1 {
    width: 60px;
    height: 200px;
    bottom: -30px;
    left: 25%;
    opacity: 0.06;
    transform: rotate(-10deg);
    border-radius: 30px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--amber-200);
    margin-bottom: 28px;
}

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

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    color: var(--amber-300);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--amber-500);
    color: var(--neutral-950);
}

.btn-primary:hover {
    background: var(--amber-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 142, 10, 0.35);
}

.btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============================================
   STRIP
   ============================================ */
.strip {
    background: var(--plum-900);
    padding: 28px 0;
    overflow: hidden;
}

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.strip-icon {
    font-size: 1.2rem;
}

.strip-divider {
    color: var(--amber-500);
    font-size: 0.7rem;
    opacity: 0.6;
    flex-shrink: 0;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--plum-600);
    background: var(--plum-100);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--neutral-950);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--neutral-50);
}

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

.about-accent-block {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--plum-700);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.accent-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--amber-300);
}

.accent-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-align: center;
    line-height: 1.4;
}

.about-content {
    position: relative;
    z-index: 2;
}

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

.about-content p {
    color: var(--neutral-700);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--plum-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.about-feature strong {
    display: block;
    font-size: 1rem;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--neutral-600);
    margin-bottom: 0;
    line-height: 1.6;
}

.about-geo {
    position: absolute;
    pointer-events: none;
}

.geo-about-geo-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--plum-200);
    opacity: 0.15;
    top: -80px;
    right: -80px;
}

.geo-about-geo-2 {
    width: 100px;
    height: 100px;
    background: var(--amber-200);
    border-radius: var(--radius-md);
    transform: rotate(30deg);
    opacity: 0.2;
    bottom: 60px;
    right: 40px;
}

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

.menu-bg-block {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(192, 57, 107, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(224, 142, 10, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.menu .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--amber-300);
}

.menu .section-title {
    color: #fff;
}

.menu-intro {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.menu-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.menu-card-accent {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.menu-card--coffee .menu-card-accent {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
}

.menu-card--cocktails .menu-card-accent {
    background: linear-gradient(135deg, var(--plum-400), var(--plum-600));
}

.menu-card--eats .menu-card-accent {
    background: linear-gradient(135deg, var(--plum-500), var(--amber-500));
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.menu-card-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.menu-card-list li {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.menu-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--amber-400);
    border-radius: 50%;
}

.menu-note {
    text-align: center;
    margin-top: 48px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-style: italic;
}

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

.vibe-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.vibe-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
    margin-bottom: 64px;
}

.vibe-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.vibe-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.vibe-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
}

.vibe-photo--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.vibe-photo:not(:first-child):not(:last-child) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.vibe-photo--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
}

.vibe-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.vibe-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--plum-800);
    line-height: 1.5;
    position: relative;
    padding: 0 20px;
}

.vibe-quote blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: var(--amber-300);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: -1;
}

.vibe-quote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    color: var(--neutral-600);
    font-size: 0.9rem;
}

.vibe-geo {
    position: absolute;
    pointer-events: none;
}

.geo-vibe-geo-1 {
    width: 140px;
    height: 140px;
    background: var(--amber-300);
    border-radius: var(--radius-sm);
    transform: rotate(45deg);
    opacity: 0.12;
    top: 60px;
    right: 40px;
}

.geo-vibe-geo-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--plum-200);
    opacity: 0.1;
    bottom: -50px;
    left: -50px;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(
        160deg,
        var(--plum-900) 0%,
        var(--plum-800) 50%,
        var(--amber-700) 100%
    );
    overflow: hidden;
}

.visit-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(244, 168, 34, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(140, 42, 77, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

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

.visit > .container > .section-tag,
.visit > .container > .section-title {
    text-align: center;
    display: block;
    color: var(--amber-300);
    background: rgba(255,255,255,0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
}

.visit > .container > .section-title {
    color: #fff;
    background: none;
    margin-top: 12px;
    margin-bottom: 56px;
}

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

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visit-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: background 0.2s ease;
}

.visit-card:hover {
    background: rgba(255,255,255,0.1);
}

.visit-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--amber-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-950);
}

.visit-card strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber-300);
    margin-bottom: 6px;
}

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

.visit-card a:hover {
    color: #fff;
    text-decoration: underline;
}

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

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

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

.geo-contact-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--plum-200);
    opacity: 0.12;
    top: -80px;
    left: -80px;
}

.geo-contact-2 {
    width: 120px;
    height: 120px;
    background: var(--amber-200);
    border-radius: var(--radius-md);
    transform: rotate(20deg);
    opacity: 0.15;
    bottom: 40px;
    right: 60px;
}

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

.contact-text {
    padding-top: 20px;
}

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

.contact-text p {
    color: var(--neutral-600);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-form {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--neutral-900);
    background: var(--neutral-50);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(192, 57, 107, 0.1);
    background: #fff;
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 20px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    color: #065f46;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.form-success svg {
    flex-shrink: 0;
    color: #10b981;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--neutral-950);
    color: rgba(255,255,255,0.6);
    padding: 72px 0 0;
}

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

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-400);
    margin-bottom: 16px;
}

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

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links li,
.footer-contact li {
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

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

    .menu-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .vibe-gallery {
        grid-template-rows: repeat(2, 220px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 250, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

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

    .about-img-secondary {
        right: 16px;
        bottom: -24px;
    }

    .about-accent-block {
        top: -12px;
        left: -8px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .menu-card:last-child {
        max-width: none;
    }

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

    .vibe-photo--large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .vibe-photo:not(:first-child):not(:last-child) {
        grid-column: auto;
        grid-row: auto;
    }

    .vibe-photo--wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .vibe-photo {
        height: 220px;
    }

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

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

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    .strip-inner {
        flex-direction: column;
        gap: 16px;
    }

    .strip-divider {
        display: none;
    }

    .about, .menu, .vibe, .visit, .contact {
        padding: 80px 0;
    }

    .contact-form {
        padding: 24px;
    }

    .vibe-photo {
        height: 180px;
    }
}
