/* ============================================
   Jilberto's Taco Shop — Stylesheet
   Palette: Deep Navy (#1B2A4A) + Warm Gold (#C8A45E)
   Fonts: Playfair Display (headings) + Lato (body)
============================================ */

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

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

body {
    font-family: 'Lato', 'Segoe UI', system-ui, sans-serif;
    color: #2C2C2C;
    background-color: #FDFBF7;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.25;
    color: #1B2A4A;
}

.section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C8A45E;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 24px;
    color: #1B2A4A;
}

.section-lead {
    font-size: 1.125rem;
    color: #4A4A4A;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #1B2A4A;
    color: #FDFBF7;
    padding: 8px 16px;
    z-index: 9999;
    font-size: 0.875rem;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #C8A45E;
    color: #1B2A4A;
    border-color: #C8A45E;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #B8944E;
    border-color: #B8944E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 94, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #1B2A4A;
    border-color: #1B2A4A;
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: #1B2A4A;
    color: #FDFBF7;
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: #FDFBF7;
    border-color: #FDFBF7;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: #FDFBF7;
    color: #1B2A4A;
    transform: translateY(-2px);
}

.btn-gold {
    background-color: #C8A45E;
    color: #1B2A4A;
    border-color: #C8A45E;
}

.btn-gold:hover,
.btn-gold:focus {
    background-color: #B8944E;
    border-color: #B8944E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 94, 0.3);
}

.btn-full {
    width: 100%;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 251, 247, 0.97);
    border-bottom: 1px solid rgba(200, 164, 94, 0.2);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(27, 42, 74, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #C8A45E;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #C8A45E;
    border-radius: 50%;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-primary {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1B2A4A;
}

.logo-secondary {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6B6B6B;
}

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

.main-nav a {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1B2A4A;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C8A45E;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a:focus {
    color: #C8A45E;
}

.nav-cta {
    background-color: #1B2A4A;
    color: #FDFBF7 !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700 !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}

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

.nav-cta:hover {
    background-color: #2A3D5E;
    color: #FDFBF7 !important;
    transform: translateY(-1px);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1B2A4A;
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #1B2A4A;
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

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

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

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #1B2A4A;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(27, 42, 74, 0.97) 0%, rgba(27, 42, 74, 0.85) 50%, rgba(27, 42, 74, 0.7) 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("https://images.pexels.com/photos/17130442/pexels-photo-17130442.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=900");
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-content {
    color: #FDFBF7;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C8A45E;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #FDFBF7;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title em {
    color: #C8A45E;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(253, 251, 247, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

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

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.hero-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid #C8A45E;
    border-radius: 8px;
    z-index: -1;
}

/* ---------- Intro Strip ---------- */
.intro-strip {
    background-color: #FDFBF7;
    border-bottom: 1px solid rgba(200, 164, 94, 0.2);
    padding: 40px 0;
}

.intro-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.intro-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
}

.intro-icon {
    width: 20px;
    height: 20px;
    color: #C8A45E;
    flex-shrink: 0;
}

.intro-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1B2A4A;
}

.intro-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(200, 164, 94, 0.4);
    flex-shrink: 0;
}

/* ---------- About ---------- */
.about {
    padding: 100px 0;
    background-color: #FDFBF7;
}

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

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

.about-image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(27, 42, 74, 0.12);
}

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

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(27, 42, 74, 0.15);
    border: 4px solid #FDFBF7;
}

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

.about-accent-box {
    position: absolute;
    top: -24px;
    left: -24px;
    background-color: #C8A45E;
    color: #1B2A4A;
    padding: 16px 20px;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-text-col {
    padding: 20px 0;
}

.about-text-col p {
    color: #4A4A4A;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(200, 164, 94, 0.3);
}

.signature-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #1B2A4A;
    margin-bottom: 4px;
}

.signature-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6B6B6B;
}

/* ---------- Menu Preview ---------- */
.menu-preview {
    padding: 100px 0;
    background-color: #F5F0E8;
}

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

.menu-intro {
    color: #4A4A4A;
    font-size: 1.0625rem;
    line-height: 1.8;
}

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

.menu-card {
    background-color: #FDFBF7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27, 42, 74, 0.12);
}

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

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

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

.menu-card-content {
    padding: 28px;
}

.menu-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1B2A4A;
}

.menu-card-desc {
    font-size: 0.9375rem;
    color: #6B6B6B;
    line-height: 1.7;
}

.menu-footer {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(200, 164, 94, 0.3);
}

.menu-footer p {
    color: #6B6B6B;
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 100px 0;
    background-color: #FDFBF7;
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

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

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

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

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

.gallery-item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item--large img {
    height: 100%;
}

.gallery-item--wide {
    grid-column: span 7;
}

.gallery-item--wide img {
    height: 100%;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 100px 0;
    background-color: #1B2A4A;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-header .section-eyebrow {
    color: #C8A45E;
}

.testimonials-header .section-title {
    color: #FDFBF7;
}

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

.testimonial-card {
    background-color: rgba(253, 251, 247, 0.05);
    border: 1px solid rgba(200, 164, 94, 0.2);
    border-radius: 8px;
    padding: 40px 32px;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    background-color: rgba(253, 251, 247, 0.08);
    border-color: rgba(200, 164, 94, 0.4);
}

.testimonial-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: #C8A45E;
    position: absolute;
    top: 16px;
    left: 24px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(253, 251, 247, 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
    margin-top: 24px;
    font-style: italic;
}

.testimonial-meta {
    padding-top: 16px;
    border-top: 1px solid rgba(200, 164, 94, 0.15);
}

.testimonial-name {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C8A45E;
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    padding: 100px 0;
    background-color: #C8A45E;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.pexels.com/photos/6248882/pexels-photo-6248882.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=500");
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.cta-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-eyebrow {
    color: rgba(27, 42, 74, 0.7) !important;
}

.cta-title {
    color: #1B2A4A;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(27, 42, 74, 0.8);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

/* ---------- Visit ---------- */
.visit {
    padding: 100px 0;
    background-color: #F5F0E8;
}

.visit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit-info {
    padding: 20px 0;
}

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

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

.visit-detail-icon {
    width: 24px;
    height: 24px;
    color: #C8A45E;
    flex-shrink: 0;
    margin-top: 4px;
}

.visit-detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visit-detail-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A45E;
}

.visit-detail-text a,
.visit-detail-text span {
    font-size: 1rem;
    color: #2C2C2C;
    line-height: 1.7;
}

.visit-detail-text a:hover {
    color: #C8A45E;
    text-decoration: underline;
}

.visit-map {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(27, 42, 74, 0.1);
}

/* Contact Form */
.visit-contact-form-wrap {
    padding: 20px 0;
}

.contact-form-card {
    background-color: #FDFBF7;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(27, 42, 74, 0.08);
    border: 1px solid rgba(200, 164, 94, 0.15);
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1B2A4A;
}

.contact-form-subtitle {
    font-size: 0.9375rem;
    color: #6B6B6B;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1B2A4A;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    color: #2C2C2C;
    background-color: #F5F0E8;
    border: 1px solid rgba(200, 164, 94, 0.3);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #C8A45E;
    box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.form-success {
    margin-top: 16px;
    padding: 16px;
    background-color: rgba(200, 164, 94, 0.1);
    border: 1px solid rgba(200, 164, 94, 0.3);
    border-radius: 4px;
    color: #1B2A4A;
    font-size: 0.9375rem;
    text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: #1B2A4A;
    color: #FDFBF7;
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(253, 251, 247, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
}

.footer-brand .logo-primary {
    color: #FDFBF7;
}

.footer-brand .logo-secondary {
    color: rgba(253, 251, 247, 0.5);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(253, 251, 247, 0.6);
    line-height: 1.7;
    margin-top: 8px;
}

.footer-heading {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C8A45E;
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(253, 251, 247, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C8A45E;
}

.footer-contact address {
    font-style: normal;
    font-size: 0.9375rem;
    color: rgba(253, 251, 247, 0.7);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(253, 251, 247, 0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C8A45E;
}

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(253, 251, 247, 0.4);
}

/* ---------- Scroll Reveal (Progressive Enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .about-container {
        gap: 48px;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #FDFBF7;
        padding: 80px 32px 32px;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .main-nav a {
        font-size: 1rem;
    }

    .nav-cta {
        margin-top: 16px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrap {
        display: none;
    }

    .intro-grid {
        flex-wrap: wrap;
        gap: 16px;
    }

    .intro-item {
        padding: 0 16px;
    }

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

    .about-image-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        width: 100%;
    }

    .about-image-secondary img {
        height: 220px;
    }

    .about-accent-box {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-bottom: 16px;
    }

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

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

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

    .gallery-item--large img,
    .gallery-item--wide img {
        height: 220px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

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

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

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

    .hero {
        padding-top: 72px;
    }

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

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

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

    .intro-item {
        padding: 0 8px;
    }

    .about,
    .menu-preview,
    .gallery,
    .testimonials,
    .cta,
    .visit {
        padding: 64px 0;
    }

    .contact-form-card {
        padding: 24px;
    }

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

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-item img {
        height: 200px;
    }
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(27, 42, 74, 0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}
