/* ============================================
   ANOTHER ROUND BAR & GRILL
   Bold Editorial Style · Burgundy + Blush
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --burgundy: #781c24;
    --burgundy-dark: #5a1419;
    --burgundy-deep: #3d0e13;
    --blush: #f5e6e0;
    --blush-light: #faf3f0;
    --blush-mid: #f0d5cc;
    --cream: #fffbf8;
    --charcoal: #1a1412;
    --charcoal-light: #2d2420;
    --warm-gray: #6b5e5a;
    --warm-gray-light: #9a8a85;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    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;
}

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

/* --- Page Loader --- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--burgundy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 900;
    color: var(--blush);
    font-style: italic;
    letter-spacing: -0.02em;
    display: block;
    animation: loaderPulse 1s ease-in-out infinite;
}

.loader-line {
    width: 60px;
    height: 2px;
    background: var(--blush);
    margin: 1rem auto 0;
    animation: loaderLine 1s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes loaderLine {
    0%, 100% { width: 60px; }
    50% { width: 100px; }
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Section Eyebrow --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.eyebrow-line {
    width: 32px;
    height: 1.5px;
    background: var(--burgundy);
    display: inline-block;
    flex-shrink: 0;
}

.eyebrow-line.light {
    background: var(--blush);
}

/* --- Section Title --- */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title.light {
    color: var(--white);
}

.title-accent {
    color: var(--burgundy);
    font-style: italic;
}

.title-accent-light {
    color: var(--blush-mid);
    font-style: italic;
}

/* --- Section Subtitle --- */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 520px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border: 1.5px solid var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(120, 28, 36, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--burgundy);
    border: 1.5px solid var(--white);
}

.btn-light:hover {
    background: var(--blush);
    border-color: var(--blush);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.navbar.scrolled {
    background: rgba(255, 251, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.875rem 0;
    box-shadow: 0 1px 0 rgba(120, 28, 36, 0.08);
}

.nav-container {
    max-width: 1200px;
    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;
    z-index: 1001;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--white);
    font-style: italic;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled .logo-mark {
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.navbar.scrolled .logo-text {
    color: var(--charcoal);
}

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

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    position: relative;
}

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

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

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

.navbar.scrolled .nav-link {
    color: var(--warm-gray);
}

.navbar.scrolled .nav-link:hover {
    color: var(--charcoal);
}

.navbar.scrolled .nav-link::after {
    background: var(--burgundy);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    margin-left: 0.5rem;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .nav-phone {
    color: var(--warm-gray);
    border-left-color: var(--blush-mid);
}

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

.navbar.scrolled .nav-phone:hover {
    color: var(--burgundy);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    z-index: 1001;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after,
.navbar.scrolled .hamburger span {
    background: var(--charcoal);
}

.hamburger.active span {
    opacity: 0;
}

.hamburger.active::before {
    transform: rotate(45deg) translate(0, -5.5px);
}

.hamburger.active::after {
    transform: rotate(-45deg) translate(0, 5.5px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 18, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
}

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

/* --- Hero --- */
.hero {
    min-height: 100vh;
    background: var(--burgundy-deep);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(120, 28, 36, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(90, 20, 25, 0.3) 0%, transparent 50%);
}

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

.hero-left {
    padding-right: 1rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush-mid);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.eyebrow-line {
    width: 32px;
    height: 1.5px;
    background: var(--blush-mid);
    display: inline-block;
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.headline-accent {
    color: var(--blush);
    font-style: italic;
    display: block;
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(245, 230, 224, 0.7);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 2.5rem;
}

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

.hero-meta {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 230, 224, 0.12);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 230, 224, 0.4);
}

.meta-value {
    font-size: 0.875rem;
    color: rgba(245, 230, 224, 0.8);
    font-weight: 400;
}

.meta-divider {
    width: 1px;
    background: rgba(245, 230, 224, 0.12);
    align-self: stretch;
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--blush-mid);
    border-radius: 8px;
    z-index: -1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(245, 230, 224, 0.4);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 1;
}

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

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

/* --- Divider --- */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--blush-mid);
}

.divider-mark {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: 0.1em;
    font-style: italic;
}

/* --- Menu Section --- */
.menu-section {
    padding: 7rem 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-header .section-eyebrow {
    justify-content: center;
}

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

.menu-card {
    background: var(--white);
    border: 1px solid var(--blush-mid);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease-smooth);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(120, 28, 36, 0.08);
    border-color: var(--burgundy);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 1.25rem;
}

.card-category {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.card-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.card-items li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--blush-light);
}

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

.item-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--charcoal);
}

.item-desc {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

/* --- About Section --- */
.about-section {
    padding: 7rem 0;
    background: var(--blush-light);
    overflow: hidden;
}

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

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

.about-image-main {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

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

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--blush-light);
}

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

.about-accent-strip {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--burgundy);
    border-radius: 4px;
    z-index: -1;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--blush-mid);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--warm-gray-light);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: var(--blush-mid);
    align-self: stretch;
}

/* --- Drinks Section --- */
.drinks-section {
    padding: 7rem 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.drinks-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(120, 28, 36, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(90, 20, 25, 0.15) 0%, transparent 50%);
}

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

.drinks-header {
    text-align: center;
    margin-bottom: 4rem;
}

.drinks-header .section-eyebrow {
    justify-content: center;
}

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

.drink-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(245, 230, 224, 0.08);
}

.drink-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    font-style: italic;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.drink-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.375rem;
}

.drink-desc {
    font-size: 0.875rem;
    color: rgba(245, 230, 224, 0.5);
    line-height: 1.6;
}

.drinks-cta {
    text-align: center;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 7rem 0;
    background: var(--cream);
}

.gallery-section .section-header {
    margin-bottom: 3rem;
}

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

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 18, 0.2) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.gallery-item:hover::after {
    opacity: 1;
}

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

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

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.gallery-item--large img {
    height: 400px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 6;
    grid-row: 2 / 3;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
    height: 280px;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 3 / 4;
}

.gallery-item--wide img {
    height: 260px;
}

/* --- CTA Section --- */
.cta-section {
    padding: 6rem 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

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

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(245, 230, 224, 0.7);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

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

/* --- Contact Section --- */
.contact-section {
    padding: 7rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-link {
    font-size: 0.9375rem;
    color: var(--burgundy);
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--blush-light);
    border: 1px solid var(--blush-mid);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
}

.form-subtitle {
    font-size: 0.875rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid var(--blush-mid);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder {
    color: var(--warm-gray-light);
}

.form-input:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(120, 28, 36, 0.08);
}

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

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.form-success.visible {
    display: block;
    animation: fadeInUp 0.5s var(--ease-out);
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

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

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245, 230, 224, 0.08);
    flex-wrap: wrap;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.footer-logo .logo-mark {
    color: var(--blush);
    border-color: rgba(245, 230, 224, 0.3);
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-tagline {
    font-size: 0.8125rem;
    color: rgba(245, 230, 224, 0.4);
    letter-spacing: 0.04em;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(245, 230, 224, 0.5);
    transition: color 0.3s;
    letter-spacing: 0.04em;
}

.footer-link:hover {
    color: var(--blush);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    text-align: right;
}

.footer-phone,
.footer-email {
    font-size: 0.8125rem;
    color: rgba(245, 230, 224, 0.5);
    transition: color 0.3s;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--blush);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    flex-wrap: wrap;
}

.footer-copy,
.footer-address {
    font-size: 0.75rem;
    color: rgba(245, 230, 224, 0.3);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.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;
    }
    
    .about-container {
        gap: 3rem;
    }
    
    .about-image-secondary {
        right: -20px;
        bottom: -20px;
    }
    
    .contact-grid {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image-block {
        max-width: 480px;
    }
    
    .drinks-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--charcoal);
        padding: 5rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        z-index: 1000;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        color: rgba(245, 230, 224, 0.7) !important;
        padding: 0.875rem 0;
        border-bottom: 1px solid rgba(245, 230, 224, 0.06);
        width: 100%;
    }
    
    .nav-link:hover {
        color: var(--white) !important;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-phone {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        color: rgba(245, 230, 224, 0.5) !important;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(245, 230, 224, 0.06);
        width: 100%;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 7rem;
        gap: 3rem;
    }
    
    .hero-left {
        padding-right: 0;
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-image-wrapper img {
        height: 360px;
    }
    
    .hero-image-accent {
        top: -10px;
        right: -10px;
    }
    
    .hero-image-badge {
        bottom: -12px;
        left: -12px;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .meta-divider {
        display: none;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large,
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide),
    .gallery-item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .gallery-item--large img,
    .gallery-item img {
        height: 240px;
    }
    
    .gallery-item--wide img {
        height: 200px;
    }
    
    .about-image-secondary {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 1rem;
    }
    
    .about-accent-strip {
        display: none;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-contact {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .nav-container {
        padding: 0 1.25rem;
    }
    
    .hero-container {
        padding: 6rem 1.25rem 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .menu-card {
        padding: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem;
    }
}
