/* =================================
   TACOS EL ZACATECANO
   Warm, earthy Mexican cantina design
==================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Lato:wght@300;400;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --deep-red: #8B1A1A;
    --warm-red: #A52A2A;
    --gold: #C9A84C;
    --warm-gold: #D4B860;
    --light-gold: #E8D5A0;
    --dark-brown: #2C1810;
    --wood-brown: #3E2723;
    --medium-brown: #5D4037;
    --cream: #F5F0E8;
    --warm-white: #FDFAF5;
    --off-white: #F0EBE3;
    --text-dark: #2C1810;
    --text-body: #4A3728;
    --text-muted: #7A6B5D;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    --page-max: 1200px;
}

body {
    font-family: var(--font-body);
    background-color: var(--warm-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: var(--warm-gold);
    color: var(--dark-brown);
}

a:focus, button:focus, input:focus {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* ======= HEADER ======= */
header {
    background: transparent;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

header.scrolled {
    background: var(--dark-brown);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
}

/* Remove shadow when navbar sits on a same-color dark section */
body.dark-top header.scrolled {
    box-shadow: none;
}

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

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo .logo {
    height: 44px;
    width: 44px;
    object-fit: contain;
    background: rgba(44, 24, 16, 0.6);
    border-radius: 50%;
    padding: 3px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.site-logo .logo:hover {
    transform: scale(1.05);
}

header.scrolled .site-logo .logo {
    background: rgba(44, 24, 16, 0.8);
    border-color: rgba(201, 168, 76, 0.5);
}

.site-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

nav ul.menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav ul.menu li a {
    text-decoration: none;
    color: var(--cream);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

nav ul.menu li a:hover {
    color: var(--warm-gold);
}

nav ul.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav ul.menu li a:hover::after {
    width: 100%;
}

nav ul.menu li a:focus {
    outline: none;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

header .social-icons a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    opacity: 0.7;
}

header .social-icons a:hover {
    opacity: 1;
    color: var(--warm-gold);
}

/* ======= HERO ======= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem;
    padding-top: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 24, 16, 0.75) 0%,
        rgba(44, 24, 16, 0.5) 40%,
        rgba(44, 24, 16, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--warm-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1.restaurant-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 9vw, 5.5rem);
    color: var(--cream);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(245, 240, 232, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ======= BUTTONS ======= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--deep-red);
    color: var(--cream);
    padding: 1rem 2.25rem;
    border-color: var(--deep-red);
}

.btn-primary:hover {
    background: var(--warm-red);
    border-color: var(--warm-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 26, 26, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-brown);
    border: 2px solid var(--gold);
    padding: 1rem 2.25rem;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-brown);
    transform: translateY(-2px);
}

/* On dark backgrounds, secondary buttons use cream text */
.hero .btn-secondary,
.family-story .btn-secondary,
.catering-cta .btn-secondary {
    color: var(--cream);
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* ======= SECTION TITLES ======= */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 3rem;
}

/* ======= SIGNATURE DISHES ======= */
.signature-dishes {
    padding: 6rem 2rem;
    background: var(--warm-white);
}

.signature-dishes-inner {
    max-width: var(--page-max);
    margin: 0 auto;
}

.dishes-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.dish-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.dish-card-large {
    grid-column: span 2;
    aspect-ratio: 21/9;
}

.dish-image {
    width: 100%;
    height: 100%;
}

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

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

.dish-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.25rem;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dish-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.dish-card:not(.dish-card-large) .dish-name {
    font-size: 1.2rem;
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warm-gold);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.dish-card:not(.dish-card-large) .dish-price {
    font-size: 1rem;
}

.dish-desc {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.8);
    font-weight: 300;
}

.dishes-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ======= QUICK ORDER ======= */
.quick-order {
    background: var(--deep-red);
    padding: 4rem 2rem;
    text-align: center;
}

.quick-order-inner {
    max-width: 600px;
    margin: 0 auto;
}

.quick-order-icon {
    font-size: 2.5rem;
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.quick-order h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.quick-order p {
    color: rgba(245, 240, 232, 0.85);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.quick-order-phone {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    color: var(--cream);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    transition: color 0.3s ease, transform 0.3s ease;
    margin-bottom: 1rem;
}

.quick-order-phone:hover {
    color: var(--warm-gold);
    transform: scale(1.05);
}

.quick-order-address {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.95rem;
}

.quick-order-address i {
    margin-right: 0.25rem;
}

/* ======= FAMILY STORY ======= */
.family-story {
    background: var(--dark-brown);
    padding: 6rem 2rem;
}

.family-story-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.family-story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.family-story-image img {
    width: 100%;
    display: block;
}

.family-story-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--warm-gold);
    margin-bottom: 1.5rem;
}

.family-story-text p {
    color: rgba(245, 240, 232, 0.85);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.family-story-quote {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--warm-gold) !important;
    font-size: 1.25rem !important;
    margin: 1.5rem 0 !important;
    padding-left: 1.5rem;
    border-left: 3px solid var(--gold);
}

.family-story-text .btn {
    margin-top: 0.5rem;
}

/* ======= FEED THE CREW ======= */
.feed-the-crew {
    background: var(--cream);
    padding: 6rem 2rem;
}

.feed-crew-inner {
    max-width: var(--page-max);
    margin: 0 auto;
}

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

.crew-card {
    background: var(--warm-white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--gold);
}

.crew-card:hover {
    transform: translateY(-4px);
}

.crew-icon {
    font-size: 1.75rem;
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.crew-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.crew-card p {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.crew-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--deep-red);
    font-size: 1.1rem;
}

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


/* ======= TESTIMONIALS ======= */
.testimonials-section {
    background: var(--cream);
    padding: 6rem 2rem;
}

.testimonials-inner {
    max-width: var(--page-max);
    margin: 0 auto;
}

.testimonials-section .section-title {
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: var(--warm-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--light-gold);
    position: absolute;
    top: 0.25rem;
    left: 1.25rem;
    line-height: 1;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    padding-top: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    display: flex;
    gap: 0.15rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ======= SERVICE AREA ======= */
.service-area {
    background: var(--off-white);
    padding: 5rem 2rem;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
}

.service-area-inner {
    max-width: 800px;
    margin: 0 auto;
}

.service-area h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.service-area p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* ======= CATERING CTA (Homepage) ======= */
.catering-cta {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.catering-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.8);
}

.catering-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 4rem 2rem;
}

.catering-cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.catering-cta-content p {
    color: rgba(245, 240, 232, 0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.catering-cta-note {
    font-size: 1rem !important;
    font-style: italic;
    color: rgba(245, 240, 232, 0.6) !important;
    margin-bottom: 2rem !important;
}

/* ======= FAQ ======= */
.faq-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
}

.faq-item {
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 6px;
    border-left: 4px solid var(--deep-red);
}

.faq-item h3 {
    color: var(--deep-red);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.faq-item p {
    line-height: 1.7;
}

.phone-link {
    color: var(--deep-red);
    text-decoration: none;
    font-weight: 700;
}

.phone-link:hover {
    color: var(--warm-red);
}

/* ======= MENU PAGE ======= */
.menu-page {
    padding-top: 80px;
    background: var(--dark-brown);
}

.menu-header {
    text-align: center;
    padding: 4rem 2rem 3rem;
    background: var(--dark-brown);
}

.menu-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.menu-header p {
    color: rgba(245, 240, 232, 0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-style: italic;
}

.menu-header-ornament {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

.menu-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--page-max);
    margin: 0 auto;
}

.menu-category-reverse {
    direction: rtl;
}

.menu-category-reverse > * {
    direction: ltr;
}

.menu-category-hero {
    overflow: hidden;
}

.menu-category-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.menu-category-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--warm-white);
}

.menu-category:nth-child(even) .menu-category-content {
    background: var(--cream);
}

.menu-category-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--deep-red);
    margin-bottom: 0.75rem;
}

.menu-category-desc {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-item-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.item-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.item-dots {
    flex: 1;
    border-bottom: 2px dotted var(--light-gold);
    margin-bottom: 4px;
    min-width: 20px;
}

.item-price {
    font-weight: 700;
    color: var(--deep-red);
    font-size: 1.1rem;
    white-space: nowrap;
}

.item-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.menu-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.menu-badge.popular {
    background: var(--deep-red);
    color: var(--cream);
}

.item-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    background: var(--warm-gold);
    color: var(--dark-brown);
    vertical-align: middle;
    margin-left: 0.35rem;
}

.menu-header-phone {
    color: var(--warm-gold);
    text-decoration: none;
    font-weight: 700;
}

.menu-header-phone:hover {
    color: var(--cream);
}

.menu-phone {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--cream);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.menu-phone:hover {
    color: var(--warm-gold);
}

.menu-note {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.menu-sides-drinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--page-max);
    margin: 0 auto;
    background: var(--off-white);
}

.menu-side-col {
    padding: 3rem;
}

.menu-side-col h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--deep-red);
    margin-bottom: 1.25rem;
}

.menu-pricing-note {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 1.5rem 3rem;
    background: var(--cream);
    text-align: center;
}

.menu-pricing-note p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-pricing-note i {
    color: var(--gold);
    margin-right: 0.4rem;
}

.menu-order-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dark-brown);
}

.menu-order-cta h2 {
    font-family: var(--font-heading);
    color: var(--warm-gold);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.menu-order-cta p {
    color: rgba(245, 240, 232, 0.75);
    margin-bottom: 0.5rem;
}

.menu-address {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ======= CATERING PAGE ======= */
.catering-hero,
.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}

.catering-hero-overlay,
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.75);
}

.catering-hero-content,
.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.catering-hero-content h1,
.about-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4rem);
    color: var(--cream);
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.catering-hero-content p,
.about-hero-content p {
    color: rgba(245, 240, 232, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.catering-page {
    /* wrapper */
}

.catering-events {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.catering-events h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.catering-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.event-type-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--cream);
    border-radius: 8px;
    border-bottom: 3px solid var(--gold);
    transition: transform 0.3s ease;
}

.event-type-badge:hover {
    transform: translateY(-3px);
}

.event-type-badge i {
    font-size: 1.5rem;
    color: var(--deep-red);
}

.catering-options {
    background: var(--cream);
    padding: 5rem 2rem;
}

.catering-options h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.catering-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--page-max);
    margin: 0 auto;
}

.catering-option-card {
    background: var(--warm-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.option-icon {
    font-size: 2rem;
    color: var(--deep-red);
    margin-bottom: 1.25rem;
}

.catering-option-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.catering-option-card p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.95rem;
}

.catering-gallery-section {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 5rem 2rem;
}

.catering-gallery-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.catering-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

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

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

.catering-gallery-item .caption {
    padding: 0.75rem;
    background: var(--cream);
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.catering-book {
    background: var(--dark-brown);
    padding: 5rem 2rem;
    text-align: center;
}

.catering-book-inner {
    max-width: 700px;
    margin: 0 auto;
}

.catering-book h2 {
    font-family: var(--font-heading);
    color: var(--warm-gold);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.catering-book p {
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.catering-phone a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--cream);
    text-decoration: none;
    font-weight: 700;
}

.catering-phone a:hover {
    color: var(--warm-gold);
}

.catering-notice {
    margin: 1.5rem auto;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    border-left: 4px solid var(--gold);
    max-width: 500px;
    text-align: left;
}

.catering-notice p {
    color: rgba(245, 240, 232, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ======= ABOUT PAGE ======= */
.about-page {
    /* wrapper */
}

.about-family {
    padding: 5rem 2rem;
    background: var(--warm-white);
}

.about-family-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--page-max);
    margin: 0 auto;
}

.about-family-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.about-family-image img {
    width: 100%;
    display: block;
}

.about-family-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-family-text p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.about-difference {
    background: var(--cream);
    padding: 5rem 2rem;
}

.about-difference h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: var(--page-max);
    margin: 0 auto;
}

.about-value {
    text-align: center;
}

.about-value-icon {
    font-size: 2rem;
    color: var(--deep-red);
    margin-bottom: 1rem;
}

.about-value h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.about-value p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-journey {
    padding: 5rem 2rem;
    background: var(--warm-white);
}

.about-journey-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--page-max);
    margin: 0 auto;
}

.about-journey-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-journey-text p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.about-journey-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.about-journey-image img {
    width: 100%;
    display: block;
}

.about-quote {
    background: var(--dark-brown);
    padding: 5rem 2rem;
    text-align: center;
}

.about-quote blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--warm-gold);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}

.about-quote cite {
    color: rgba(245, 240, 232, 0.6);
    font-style: normal;
    font-size: 1rem;
}

.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--cream);
}

.about-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.about-cta p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

/* ======= CONTACT PAGE ======= */
.contact-page {
    padding-top: 80px;
    background: var(--dark-brown);
}

.contact-header {
    text-align: center;
    padding: 4rem 2rem 3rem;
    background: var(--dark-brown);
}

.contact-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--warm-gold);
    margin-bottom: 0.75rem;
}

.contact-header p {
    color: rgba(245, 240, 232, 0.75);
    font-size: 1.1rem;
}

/* Contact Call Hero */
.contact-call-hero {
    background: var(--deep-red);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-call-inner {
    max-width: 600px;
    margin: 0 auto;
}

.contact-call-icon {
    font-size: 2.5rem;
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.contact-call-hero h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.contact-call-hero p {
    color: rgba(245, 240, 232, 0.85);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.contact-big-phone {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--cream);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    transition: color 0.3s ease, transform 0.3s ease;
    margin-bottom: 0.5rem;
}

.contact-big-phone:hover {
    color: var(--warm-gold);
    transform: scale(1.05);
}

.contact-call-note {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.85rem;
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--page-max);
    margin: 0 auto;
    min-height: 500px;
}

.contact-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--warm-white);
}

.contact-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--off-white);
}

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

.contact-card-icon {
    font-size: 1.25rem;
    color: var(--deep-red);
    margin-bottom: 0.5rem;
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.contact-phone a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--deep-red);
    text-decoration: none;
    font-weight: 700;
}

.contact-phone a:hover {
    color: var(--warm-red);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--deep-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-social-links a:hover {
    color: var(--warm-red);
}

.contact-map {
    background: var(--off-white);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact-review-cta {
    background: var(--cream);
    padding: 4rem 2rem;
}

.contact-review-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-review-inner h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-review-inner p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

/* ======= BLOG STYLES ======= */
.blog-list {
    max-width: 900px;
    margin: 100px auto 4rem;
    padding: 3rem 2.5rem;
}

.blog-list h1 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.blog-list h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.blog-list .blog-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-style: italic;
}

.blog-post-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--deep-red);
    transition: transform 0.3s ease;
}

.blog-post-card:hover {
    transform: translateX(4px);
}

.blog-post-card h2 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.blog-post-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-post-card h2 a:hover {
    color: var(--deep-red);
}

.blog-post-card .blog-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-post-card .blog-excerpt {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-post-card .read-more {
    color: var(--deep-red);
    font-weight: 700;
    text-decoration: none;
}

.blog-post-card .read-more:hover {
    color: var(--warm-red);
}

.blog-post {
    max-width: 800px;
    margin: 100px auto 4rem;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--deep-red);
}

.blog-post h1 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 15px;
}

.blog-post h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.blog-post .blog-date {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.blog-post h2 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.blog-post p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.blog-post .blog-back {
    display: inline-block;
    margin-top: 2rem;
    color: var(--deep-red);
    font-weight: 700;
    text-decoration: none;
}

.blog-post .blog-back:hover {
    color: var(--warm-red);
}

/* ======= LOCATION PAGE ======= */
.location-page {
    max-width: 900px;
    margin: 100px auto 4rem;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--deep-red);
}

.location-page h1 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 15px;
}

.location-page h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.location-page h2 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.location-page p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.location-page .location-details {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid var(--gold);
}

.location-page .location-map {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.location-page .location-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* ======= FOOTER ======= */
footer {
    background: var(--dark-brown);
    color: var(--cream);
    padding: 4rem 2rem 2rem;
    border-top: 4px solid var(--gold);
}

.footer-container {
    max-width: var(--page-max);
    margin: 0 auto;
}

.footer-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.footer-info p {
    margin: 0.5rem 0;
    color: rgba(245, 240, 232, 0.65);
}

.footer-info a {
    color: rgba(245, 240, 232, 0.65);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: var(--warm-gold);
}

.footer-tagline {
    color: rgba(245, 240, 232, 0.4) !important;
    font-style: italic;
    font-size: 0.9rem;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-social-icons a:hover {
    background: var(--deep-red);
    transform: translateY(-2px);
}

.footer-review-link {
    text-align: center;
    margin: 1.25rem 0;
}

.footer-review-link a {
    color: var(--warm-gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-review-link a:hover {
    color: var(--cream);
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}

.footer-nav ul li a {
    color: rgba(245, 240, 232, 0.6);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--warm-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: rgba(245, 240, 232, 0.3);
    font-size: 0.8rem;
}

/* ======= SLIDESHOW ======= */
.slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--dark-brown);
}

.slide {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    position: relative;
    opacity: 1;
}

.slide img {
    width: 100%;
    max-height: 500px;
    display: block;
    object-fit: cover;
}

.prev, .next {
    display: none;
}

.dots-container {
    text-align: center;
    padding: 12px 0;
    position: absolute;
    bottom: 8px;
    width: 100%;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.dot.active, .dot:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* ======= MOBILE MENU ======= */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 26px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
    header {
        padding: 0.75rem 0;
    }

    header.scrolled {
        padding: 0.5rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 1;
    }

    .site-logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    header .social-icons {
        display: none;
    }

    .nav-container {
        position: relative;
        gap: 1rem;
        padding: 0 1.5rem;
        justify-content: flex-start;
    }

    .site-logo .logo {
        width: 40px;
        height: 40px;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--dark-brown);
        transition: right 0.3s ease;
        z-index: 999;
        padding-top: 100px;
        overflow-y: auto;
    }

    .site-nav.active {
        right: 0;
    }

    nav ul.menu {
        flex-direction: column;
        gap: 0;
    }

    nav ul.menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav ul.menu li a {
        display: block;
        padding: 1.25rem 2rem;
        font-size: 0.95rem;
        text-shadow: none;
        color: rgba(245, 240, 232, 0.8);
    }

    nav ul.menu li a:hover {
        background: rgba(139, 26, 26, 0.12);
        color: var(--warm-gold);
    }

    nav ul.menu li a::after {
        display: none;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }

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

    /* Quick Order */
    .quick-order {
        padding: 3rem 1.5rem;
    }

    .quick-order-phone {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Feed the crew */
    .feed-the-crew {
        padding: 4rem 1.5rem;
    }

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

    /* Contact call hero */
    .contact-call-hero {
        padding: 3rem 1.5rem;
    }

    .contact-big-phone {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Hero */
    .hero {
        min-height: 90vh;
        padding: 3rem 1.5rem;
        padding-top: 100px;
    }

    .hero h1.restaurant-name {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Signature dishes */
    .signature-dishes {
        padding: 4rem 1.5rem;
    }

    .dishes-showcase {
        grid-template-columns: 1fr;
    }

    .dish-card-large {
        grid-column: span 1;
        aspect-ratio: 16/10;
    }

    .dish-card {
        aspect-ratio: 16/10;
    }

    /* Family story */
    .family-story {
        padding: 4rem 1.5rem;
    }

    .family-story-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .family-story-text h2 {
        font-size: 1.8rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

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

    /* Service area */
    .service-area {
        padding: 3rem 1.5rem;
    }

    /* Catering CTA */
    .catering-cta {
        min-height: 40vh;
    }

    /* FAQ */
    .faq-section {
        margin: 3rem auto;
        padding: 0 1.5rem;
    }

    /* Menu page */
    .menu-category {
        grid-template-columns: 1fr;
    }

    .menu-category-reverse {
        direction: ltr;
    }

    .menu-category-hero img {
        min-height: 250px;
    }

    .menu-category-content {
        padding: 2rem 1.5rem;
    }

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

    .menu-side-col {
        padding: 2rem 1.5rem;
    }

    /* Catering page */
    .catering-hero,
    .about-hero {
        min-height: 40vh;
    }

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

    .catering-options-grid {
        grid-template-columns: 1fr;
    }

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

    /* About page */
    .about-family-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-journey-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Contact page */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        min-height: 350px;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    /* Blog / Location */
    .blog-list, .blog-post, .location-page {
        margin: 90px 1rem 3rem;
    }

    .dot {
        height: 8px;
        width: 8px;
    }
}

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

    .site-logo .logo {
        width: 36px;
        height: 36px;
    }

    .hero {
        padding: 2.5rem 1rem;
        padding-top: 80px;
        min-height: 85vh;
    }

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

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }

    .btn-primary {
        padding: 0.875rem 1.75rem;
    }

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

    .event-types-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

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

    .menu-header h1 {
        font-size: 2rem;
    }

    .contact-header h1 {
        font-size: 2rem;
    }
}
