/* ============================================
   Sweet Charliemay's Cafe — Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
    --terracotta: #C0603C;
    --terracotta-dark: #A04E2E;
    --terracotta-light: #D4845E;
    --sand: #F5E6D3;
    --sand-light: #FBF5EE;
    --sand-dark: #E8D5C0;
    --cream: #FFF9F4;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #8A7E76;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.08);
    --shadow-md: 0 8px 30px rgba(44, 36, 32, 0.12);
    --shadow-lg: 0 20px 60px rgba(44, 36, 32, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s 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;
}

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: rgba(192, 96, 60, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.text-accent {
    color: var(--terracotta);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 96, 60, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

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

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

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

.nav.scrolled {
    background: rgba(255, 249, 244, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

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

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

.nav-logo-icon {
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 6px;
    transition: var(--transition);
}

.nav.scrolled .nav-logo-icon {
    background: var(--terracotta);
    color: var(--white);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--charcoal-light);
}

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

.nav.scrolled .nav-links a:hover {
    color: var(--terracotta);
}

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

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

.nav-cta {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}

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

.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
    background: var(--charcoal);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--sand);
    padding: 12px 24px;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--terracotta);
}

.mobile-cta-link {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--terracotta);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8B3A2A 0%, #C0603C 30%, #D4845E 60%, #E8A87C 100%);
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 200, 160, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(139, 58, 42, 0.4) 0%, transparent 60%);
}

/* Geometric shapes */
.geo {
    position: absolute;
    opacity: 0.12;
    pointer-events: none;
}

.geo-1 {
    width: 400px;
    height: 400px;
    background: var(--sand);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.geo-2 {
    width: 200px;
    height: 200px;
    background: var(--white);
    top: 20%;
    left: -50px;
    transform: rotate(45deg);
}

.geo-3 {
    width: 120px;
    height: 120px;
    background: var(--sand-dark);
    border-radius: 50%;
    bottom: 20%;
    right: 15%;
}

.geo-4 {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    top: 30%;
    right: 25%;
}

.geo-5 {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--sand);
    bottom: 10%;
    left: 10%;
    opacity: 0.08;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-accent {
    color: var(--sand);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 40px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-stat .stat-num {
    font-size: 1.2rem;
}

.hero-stat-divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.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.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

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

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

/* --- About --- */
.about {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

.about-images {
    position: relative;
    height: 620px;
}

.about-img-main {
    width: 75%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-float {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

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

.about-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--terracotta) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.3;
    z-index: -1;
}

.about-text .section-tag {
    margin-bottom: 16px;
}

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

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

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

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

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

.about-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.about-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--warm-gray);
}

.about-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--terracotta);
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--sand-dark);
    bottom: -100px;
    left: -80px;
}

/* --- Menu --- */
.menu {
    position: relative;
    padding: 120px 0;
    background: var(--sand);
    overflow: hidden;
}

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

.menu-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.menu-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--terracotta);
    top: -150px;
    left: -150px;
}

.menu-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--terracotta-light);
    bottom: -80px;
    right: -50px;
}

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

.menu-tab {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 24px;
    border: 2px solid var(--sand-dark);
    border-radius: 50px;
    background: transparent;
    color: var(--charcoal-light);
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.menu-tab.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
}

.menu-panel {
    display: none;
}

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

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

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

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

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

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

.menu-card-body {
    padding: 20px 24px 24px;
}

.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.menu-card-body p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.menu-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--terracotta);
    background: rgba(192, 96, 60, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

/* Specials */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.special-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.special-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
}

.special-accent-2 {
    background: linear-gradient(90deg, #4A6741, #7BA372);
}

.special-accent-3 {
    background: linear-gradient(90deg, #6B4C8A, #A87CC4);
}

.special-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--terracotta);
    background: rgba(192, 96, 60, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.special-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.special-card p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

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

/* --- Gallery --- */
.gallery {
    padding: 120px 0 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 32, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

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

.gallery-item-2 {
    grid-column: 6 / 9;
    grid-row: 1 / 2;
}

.gallery-item-3 {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}

.gallery-item-4 {
    grid-column: 1 / 7;
    grid-row: 2 / 3;
}

.gallery-item-5 {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
}

/* --- Visit --- */
.visit {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    overflow: hidden;
}

.visit-bg .geo {
    opacity: 0.06;
}

.geo-v1 {
    width: 500px;
    height: 500px;
    background: var(--terracotta);
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

.geo-v2 {
    width: 250px;
    height: 250px;
    background: var(--sand);
    border-radius: 50%;
    bottom: -80px;
    left: -50px;
}

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

.visit-info .section-tag {
    background: rgba(192, 96, 60, 0.2);
}

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

.visit-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

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

.visit-detail h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.visit-detail p,
.visit-detail a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
}

.visit-detail a:hover {
    color: var(--terracotta-light);
}

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

/* --- Contact --- */
.contact {
    position: relative;
    padding: 120px 0;
    background: var(--sand-light);
    overflow: hidden;
}

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

.c-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.c-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--terracotta);
    top: -100px;
    left: -80px;
}

.c-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--terracotta-light);
    bottom: -50px;
    right: 10%;
}

.c-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--sand-dark);
    top: 30%;
    right: 5%;
}

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

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

.contact-text p {
    color: var(--warm-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.contact-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-direct-link:hover {
    color: var(--terracotta);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    background: var(--sand-light);
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(192, 96, 60, 0.1);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
}

.form-success.show {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.form-success svg {
    color: #4CAF50;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal);
}

.form-success p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    color: var(--sand);
    padding: 80px 0 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    border-radius: var(--radius-sm);
    padding: 8px;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-hours ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-hours a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-hours a:hover,
.footer-contact a:hover {
    color: var(--terracotta-light);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-hours .day {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

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

    .about-images {
        height: 480px;
    }

    .visit-grid {
        gap: 40px;
    }

    .contact-grid {
        gap: 48px;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 80px;
    }

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

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

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

    .hero-stats {
        gap: 16px;
    }

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

    .about-images {
        height: 400px;
        order: -1;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item-1 { grid-column: 1 / 3; grid-row: 1; }
    .gallery-item-2 { grid-column: 1; grid-row: 2; }
    .gallery-item-3 { grid-column: 2; grid-row: 2; }
    .gallery-item-4 { grid-column: 1 / 3; grid-row: 3; }
    .gallery-item-5 { display: none; }

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

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

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

    .contact-form-wrapper {
        padding: 28px;
    }

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

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

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

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

    .hero {
        padding: 90px 16px 70px;
    }

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

    .section-header {
        margin-bottom: 40px;
    }

    .menu-tabs {
        gap: 6px;
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 180px);
    }

    .gallery-item-1,
    .gallery-item-4 {
        grid-column: 1;
    }

    .gallery-item-2,
    .gallery-item-3 {
        grid-column: 1;
    }

    .gallery-item-1 { grid-row: 1; }
    .gallery-item-2 { grid-row: 2; }
    .gallery-item-3 { grid-row: 3; }
    .gallery-item-4 { grid-row: 4; }

    .about-images {
        height: 320px;
    }

    .about-img-float {
        width: 60%;
    }
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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