/* ============================================
   MAMA LUPITA'S — Styles
   Charcoal + Coral · Thin · Minimalist
   ============================================ */

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

:root {
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --charcoal-mid: #3d3d3d;
    --coral: #E86A54;
    --coral-light: #f08070;
    --coral-dark: #d4553f;
    --coral-pale: #fdf0ee;
    --cream: #faf8f6;
    --cream-dark: #f3f0ec;
    --white: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --text-muted: #8a8a8a;
    --line: #e8e4e0;
    --line-light: #f0ece8;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-primary);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 248, 246, 0.97);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}

.nav-logo-sub {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin-top: 2px;
}

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

.nav-link {
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

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

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

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

.nav-link--cta {
    color: var(--coral);
    font-weight: 400;
}

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

.nav-link--cta:hover {
    color: var(--coral-dark);
}

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

.nav-toggle-line {
    width: 22px;
    height: 1px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

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

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--charcoal);
    transition: transform 0.3s var(--ease-out);
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--charcoal);
    padding: 1rem 0;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

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

.mobile-menu-link--cta {
    color: var(--coral);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: var(--line);
    margin: 1.5rem 0;
}

.mobile-menu-contact {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.mobile-menu-phone {
    font-size: 1rem;
    color: var(--coral);
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

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

.btn--primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 106, 84, 0.3);
}

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

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

.btn--small {
    padding: 0.7rem 1.5rem;
    font-size: 0.72rem;
}

.btn--full {
    width: 100%;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

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

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--charcoal);
    margin-bottom: 1.8rem;
    max-width: 560px;
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 460px;
}

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

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

.hero-detail svg {
    color: var(--coral);
    flex-shrink: 0;
}

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

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

.hero-image-wrapper img {
    width: 100%;
    height: 75vh;
    max-height: 750px;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--coral);
    z-index: -1;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.divider-ornament {
    color: var(--coral);
    opacity: 0.5;
}

/* Section Shared */
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 520px;
}

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

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

.menu-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

/* Menu Categories */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-cat-btn {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    color: var(--text-muted);
    border: 1px solid var(--line);
    background: transparent;
    transition: all 0.3s var(--ease-smooth);
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
    color: var(--coral);
    border-color: var(--coral);
    background: var(--coral-pale);
}

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

.menu-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.2rem;
    padding: 1.5rem;
    border: 1px solid var(--line-light);
    transition: all 0.4s var(--ease-out);
    background: var(--white);
}

.menu-item:hover {
    border-color: var(--coral);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.menu-item-image {
    overflow: hidden;
}

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

.menu-item:hover .menu-item-image img {
    transform: scale(1.08);
}

.menu-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.menu-item-tag {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    border: 1px solid var(--coral);
    padding: 0.15rem 0.5rem;
}

.menu-item-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Menu Footer */
.menu-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.menu-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.menu-footer .btn--outline {
    font-size: 0.72rem;
}

/* About Section */
.about-section {
    padding: 7rem 3rem;
    background: var(--cream);
}

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

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    overflow: hidden;
}

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

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    overflow: hidden;
    border: 6px solid var(--cream);
}

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

.about-image-accent-box {
    position: absolute;
    top: -30px;
    left: -30px;
    background: var(--coral);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 2;
}

.accent-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.accent-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.2;
}

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

.about-divider {
    width: 60px;
    height: 1px;
    background: var(--coral);
    margin: 1.5rem 0;
}

.about-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.about-signature {
    margin-top: 2rem;
}

.about-signature-img {
    opacity: 0.7;
    filter: grayscale(30%);
}

/* Visit Section */
.visit-section {
    padding: 7rem 3rem;
    background: var(--charcoal);
    color: var(--white);
}

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

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

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

.visit-header .section-subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0 auto;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.visit-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s var(--ease-out);
}

.visit-card:hover {
    border-color: var(--coral);
    background: rgba(255,255,255,0.03);
}

.visit-card--map {
    grid-column: 1 / -1;
}

.visit-card-icon {
    color: var(--coral);
    margin-bottom: 1.2rem;
}

.visit-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.visit-card-text {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.visit-card-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
}

.visit-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral);
    transition: gap 0.3s var(--ease-out);
}

.visit-card-link:hover {
    gap: 0.7rem;
}

.visit-map-placeholder {
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.visit-map-placeholder img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.4s;
}

.visit-card--map:hover .visit-map-placeholder img {
    opacity: 0.8;
}

.visit-map-placeholder .btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 7rem 3rem;
    background: var(--cream);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.cta-content .section-subtitle {
    margin-bottom: 2rem;
}

/* Form */
.cta-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--line);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--charcoal);
    transition: all 0.3s var(--ease-smooth);
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--coral);
    background: var(--white);
}

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

.form-select {
    cursor: pointer;
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 300;
}

.form-note a {
    color: var(--coral);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem 0;
}

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

.form-success svg {
    color: var(--coral);
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--charcoal);
}

.form-success-text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 360px;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 5rem 3rem 2rem;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.footer-logo-sub {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.2rem;
}

.footer-link {
    display: block;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    padding: 0.3rem 0;
    transition: all 0.3s var(--ease-smooth);
}

.footer-link:hover {
    color: var(--coral);
    padding-left: 0.5rem;
}

.footer-address {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-phone,
.footer-email {
    display: block;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--coral);
    padding: 0.2rem 0;
    transition: opacity 0.3s;
}

.footer-phone:hover,
.footer-email:hover {
    opacity: 0.8;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 2rem;
}

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

.footer-copy {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
}

.footer-location {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
}

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

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .about-split {
        gap: 3rem;
    }
    
    .cta-container {
        gap: 3rem;
    }
    
    .footer-top {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .visit-card--map {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem 4rem;
        gap: 2.5rem;
    }
    
    .hero-left {
        padding-right: 0;
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-image-wrapper img {
        height: 50vh;
        max-height: 450px;
    }
    
    .hero-image-accent {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .menu-section,
    .about-section,
    .visit-section,
    .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .menu-categories {
        gap: 0.4rem;
    }
    
    .menu-cat-btn {
        padding: 0.5rem 1rem;
        font-size: 0.68rem;
    }
    
    .menu-item {
        grid-template-columns: 120px 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .menu-item-image img {
        height: 90px;
    }
    
    .about-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-secondary {
        right: 0;
        bottom: -30px;
    }
    
    .about-image-accent-box {
        top: -20px;
        left: -10px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .cta-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .menu-item {
        grid-template-columns: 1fr;
    }
    
    .menu-item-image {
        display: none;
    }
}
