/* ═══════════════════════════════════════════════════════════════════
   SPRITZER'S — Café & Bar · Alameda, CA
   Terracotta + Sand · Confident Corporate
   ═══════════════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────────────────── */
:root {
    --terracotta:       #C0603C;
    --terracotta-dark:  #A04E2E;
    --terracotta-light: #D4856A;
    --sand:             #E8D5C0;
    --sand-light:       #F5EDE3;
    --sand-cream:       #FAF6F1;
    --sand-warm:        #F0E4D6;
    --charcoal:         #1E1E1E;
    --charcoal-light:   #2E2E2E;
    --gray-900:         #1A1A1A;
    --gray-700:         #3A3A3A;
    --gray-600:         #555555;
    --gray-500:         #6B6B6B;
    --gray-400:         #999999;
    --gray-300:         #BBBBBB;
    --gray-200:         #DDDDDD;
    --gray-100:         #F0F0F0;
    --white:            #FFFFFF;

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

    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm:  0 1px 3px rgba(30,30,30,0.06), 0 1px 2px rgba(30,30,30,0.04);
    --shadow-md:  0 4px 16px rgba(30,30,30,0.08), 0 2px 4px rgba(30,30,30,0.04);
    --shadow-lg:  0 12px 40px rgba(30,30,30,0.12), 0 4px 12px rgba(30,30,30,0.06);
    --shadow-xl:  0 24px 60px rgba(30,30,30,0.14), 0 8px 20px rgba(30,30,30,0.08);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s 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-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--sand-cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--terracotta-dark); }

ul, ol { list-style: none; }

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ── Utility ───────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(192, 96, 60, 0.35);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 96, 60, 0.45);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

/* ═══════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 241, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(192, 96, 60, 0.08);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(250, 246, 241, 0.96);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}
.logo:hover { color: var(--terracotta); }

.logo-mark { flex-shrink: 0; }

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ── Navigation ────────────────────────────────────────────────────── */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.main-nav a {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.main-nav a:hover {
    color: var(--terracotta);
    background: rgba(192, 96, 60, 0.06);
}

.btn-nav {
    background: var(--terracotta);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1.125rem !important;
    margin-left: var(--space-sm);
}
.btn-nav:hover {
    background: var(--terracotta-dark) !important;
    color: var(--white) !important;
}

/* ── Mobile Nav Toggle ─────────────────────────────────────────────── */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}
.nav-toggle:hover { background: var(--gray-100); }

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition-base);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 0.72) 0%,
        rgba(30, 30, 30, 0.45) 50%,
        rgba(192, 96, 60, 0.25) 100%
    );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-3xl) 0;
    width: 100%;
}

/* ── Main Hero Card ───────────────────────────────────────────────── */
.hero-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-card--main {
    padding: var(--space-4xl) var(--space-3xl);
}

.hero-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light), var(--sand));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
    background: rgba(232, 213, 192, 0.15);
    border: 1px solid rgba(232, 213, 192, 0.25);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    margin-bottom: var(--space-xl);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ── Floating Stat Cards ───────────────────────────────────────────── */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--terracotta);
    border-radius: 0 2px 2px 0;
}

.stat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 96, 60, 0.1);
    border-radius: var(--radius-md);
    color: var(--terracotta);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
}

.stat-accent {
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--terracotta-light);
    border-radius: 50%;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════════ */
.about {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-images {
    position: relative;
}

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

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

.about-img--secondary {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 55%;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}
.about-img--secondary img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.about-accent-box {
    position: absolute;
    top: -20px;
    right: 30%;
    width: 60px;
    height: 60px;
    background: var(--terracotta);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.about-content {
    padding: var(--space-xl) 0;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.about-features {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 96, 60, 0.08);
    border-radius: var(--radius-sm);
    color: var(--terracotta);
}

.feature-item span {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════
   MENU
   ═══════════════════════════════════════════════════════════════════ */
.menu {
    padding: var(--space-4xl) 0;
    background: var(--sand-cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}
.section-header .section-sub {
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--terracotta-light);
}
.menu-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}
.menu-card:hover::after { opacity: 1; }

.menu-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 96, 60, 0.08);
    border-radius: var(--radius-md);
    color: var(--terracotta);
    flex-shrink: 0;
}

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

.menu-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px dashed var(--gray-200);
}
.menu-item:last-child { border-bottom: none; padding-bottom: 0; }

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

.menu-item-desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-align: right;
    white-space: nowrap;
}

.menu-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════════════════════════ */
.location {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.location-desc {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 96, 60, 0.08);
    border-radius: var(--radius-sm);
    color: var(--terracotta);
    margin-top: 2px;
}

.contact-row div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-row strong {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.contact-row a,
.contact-row span {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 500;
}
.contact-row a:hover { color: var(--terracotta); }

.hours-block h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9375rem;
}
.hours-row span:first-child { color: var(--gray-600); }
.hours-row span:last-child { font-weight: 600; color: var(--charcoal); }

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

/* ═══════════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════════ */
.gallery {
    padding: var(--space-4xl) 0;
    background: var(--sand-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

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

.gallery-item--wide {
    grid-column: span 2;
    grid-row: span 1;
}
.gallery-item--wide img { height: 280px; }

.gallery-item--tall {
    grid-row: span 2;
}
.gallery-item--tall img { height: 100%; min-height: 568px; }

.gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) img {
    height: 200px;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════════ */
.cta {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cta-tag { color: var(--sand); }

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════ */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-left p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-quick-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    color: var(--charcoal);
    font-size: 1rem;
    padding: var(--space-md) var(--space-xl);
    background: var(--sand-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}
.contact-quick-link:hover {
    color: var(--terracotta);
    background: rgba(192, 96, 60, 0.08);
    transform: translateX(4px);
}
.contact-quick-link svg { color: var(--terracotta); }

/* ── Form ──────────────────────────────────────────────────────────── */
.contact-form-wrap {
    background: var(--sand-cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.contact-form { display: flex; flex-direction: column; gap: var(--space-lg); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--charcoal);
    font-size: 0.9375rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(192, 96, 60, 0.1);
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl);
    gap: var(--space-md);
}
.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}
.form-success p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer-brand p {
    margin-top: var(--space-md);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-brand .logo { margin-bottom: var(--space-sm); }
.footer-brand .logo-text { color: var(--white); }

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-lg);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--terracotta-light); }

.footer-bottom {
    padding-top: var(--space-xl);
}

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

/* ═══════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 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; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .stat-card { flex: 1; min-width: 160px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    .about-images { max-width: 500px; }

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

    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .location-map { min-height: 350px; }

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

@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
        --space-3xl: 3rem;
    }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 246, 241, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--gray-200);
        padding: var(--space-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition-base);
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
    }
    .main-nav ul {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
    }
    .main-nav a {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
    }
    .btn-nav {
        margin-left: 0 !important;
        text-align: center;
    }

    .hero { min-height: auto; padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl); }
    .hero-card--main { padding: var(--space-2xl) var(--space-xl); }
    .hero-headline { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .hero-stats { flex-direction: column; }
    .stat-card { flex-direction: row; }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item--wide img,
    .gallery-item--tall img,
    .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) img {
        height: 200px;
    }
    .gallery-item--tall { grid-row: span 1; }

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

    .footer-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 var(--space-md); }

    .hero-card--main { padding: var(--space-xl) var(--space-md); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .about-img--main img { height: 300px; }
    .about-img--secondary img { height: 200px; }

    .menu-card { padding: var(--space-xl); }

    .contact-form-wrap { padding: var(--space-lg); }

    .cta-actions { flex-direction: column; }
    .cta-actions .btn-lg { width: 100%; justify-content: center; }
}
