/*
Theme Name: Chez Piya
Theme URI: https://seelandthaifood.ch
Author: designer2.org
Author URI: https://designer2.org
Description: Custom WordPress theme for Chez Piya - Seeland Thai Food GmbH food truck in Biel/Bienne, Switzerland. Bilingual DE/FR.
Version: 1.0
Text Domain: chezpiya
*/

/* ============================================================
   VARIABLES & RESET
============================================================ */
:root {
    --primary:      #C94B28;
    --primary-dark: #9B3520;
    --navy:         #1A2744;
    --navy-light:   #243352;
    --gold:         #C4922A;
    --cream:        #FAF7F2;
    --cream-dark:   #F0EBE1;
    --white:        #FFFFFF;
    --text-dark:    #1C1C1C;
    --text-mid:     #4A4A4A;
    --text-light:   #888888;
    --border:       #E5DDD2;
    --radius:       6px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }


/* ============================================================
   LANGUAGE VISIBILITY
============================================================ */
[data-lang="fr"],
span[data-lang="fr"],
a[data-lang="fr"],
button[data-lang="fr"] { display: none !important; }

body.lang-fr [data-lang="de"],
body.lang-fr span[data-lang="de"],
body.lang-fr a[data-lang="de"],
body.lang-fr button[data-lang="de"] { display: none !important; }

body.lang-fr [data-lang="fr"]        { display: block !important; }
body.lang-fr span[data-lang="fr"],
body.lang-fr a[data-lang="fr"],
body.lang-fr button[data-lang="fr"]  { display: inline !important; }


/* ============================================================
   HEADER
============================================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header-logo img { height: 46px; width: auto; }

nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
nav a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
}
nav a:hover { color: var(--primary); }

.lang-toggle {
    display: flex;
    border: 1.5px solid var(--primary);
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.lang-btn {
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--primary);
    transition: all 0.2s;
}
.lang-btn.active {
    background: var(--primary);
    color: white;
}


/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    height: calc(100vh - 68px);
    min-height: 580px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 62% 25%;
    transform: scale(1.04);
    transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1.01); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(26, 39, 68, 0.82) 0%,
        rgba(26, 39, 68, 0.60) 45%,
        rgba(201, 75, 40, 0.28) 100%
    );
}
.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 0 28px;
    max-width: 720px;
}
.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
    font-weight: 400;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 22px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.hero-tagline {
    font-size: clamp(1rem, 2.2vw, 1.18rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}
.hero-cta {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn {
    padding: 13px 30px;
    border-radius: var(--radius);
    font-size: 0.87rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: all 0.25s;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
}
.btn-primary,
input.btn-primary[type="submit"],
input.wpcf7-submit {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}
.btn-primary:hover,
input.btn-primary[type="submit"]:hover,
input.wpcf7-submit:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 75, 40, 0.35);
}
.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   VALUE STRIP
============================================================ */
.value-strip {
    background: var(--navy);
    padding: 36px 48px;
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}
.value-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.value-icon { font-size: 1.6rem; margin-bottom: 4px; }
.value-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 500;
}
.value-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
}


/* ============================================================
   SHARED SECTION STYLES
============================================================ */
.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: var(--navy);
    line-height: 1.18;
    margin-bottom: 14px;
}
.divider {
    width: 44px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 18px 0 42px;
}
.section-intro {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}


/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section { padding: 100px 48px; }
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(26, 39, 68, 0.15);
}
.about-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}
.price-badge {
    position: absolute;
    top: 24px;
    right: -12px;
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 6px 20px rgba(201, 75, 40, 0.4);
}
.price-badge .amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}
.price-badge .label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}


/* ============================================================
   MENU SECTION
============================================================ */
.menu-section {
    background: var(--white);
    padding: 96px 0;
}
.menu-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 44px;
    gap: 0;
}
.menu-tab {
    padding: 12px 28px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.menu-tab:hover:not(.active) { color: var(--text-mid); }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}
.menu-card {
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--border);
    text-align: center;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 39, 68, 0.12);
}
.menu-card-img-wrap {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #222;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 20px 30px rgba(0,0,0,0.08);
    margin-bottom: 24px;
    flex-shrink: 0;
}
.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-card-thai {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}
.menu-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.25;
}
.menu-card-desc {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.menu-card-desc strong {
    color: var(--text-dark);
    font-weight: 600;
}
.menu-card-price {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.nw-separator {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 56px 0 36px;
}
.nw-sep-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.nw-sep-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    white-space: nowrap;
}
.nw-sep-emoji { font-size: 1.1rem; }

.menu-card--teaser {
    opacity: 0.82;
    border: 2px dashed var(--gold);
    background: var(--cream);
}
.menu-card--teaser .menu-card-img-wrap {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.teaser-card-icon { font-size: 2.8rem; opacity: 0.55; }
.menu-card--teaser .menu-card-name { opacity: 0.65; font-style: italic; }
.menu-card--teaser .menu-card-desc { opacity: 0.55; }
.nw-grid { margin-top: 0; }


/* ============================================================
   TRUCK PHOTO BAND
============================================================ */
.truck-band {
    height: 320px;
    overflow: hidden;
    position: relative;
}
.truck-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}
.truck-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26, 39, 68, 0.7) 0%,
        rgba(26, 39, 68, 0.2) 100%
    );
    display: flex;
    align-items: center;
    padding: 0 80px;
}
.truck-band-text { color: white; max-width: 480px; }
.truck-band-text p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-style: italic;
    line-height: 1.4;
}
.truck-band-text cite {
    display: block;
    margin-top: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-style: normal;
}


/* ============================================================
   LOCATIONS SECTION
============================================================ */
.locations-section {
    background: var(--navy);
    padding: 96px 48px;
}
.locations-inner { max-width: 1200px; margin: 0 auto; }
.locations-inner .section-label { color: rgba(255, 255, 255, 0.45); }
.locations-inner .section-title { color: white; }
.locations-inner .divider { background: var(--primary); }

.week-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}
.week-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* Status badge for open/closed */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.status-badge--open {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}
.status-badge--closed {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
}
.status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
}
.status-badge--open .status-dot {
    background: #4ade80;
    animation: pulse 2s infinite;
}
.status-badge--closed .status-dot {
    background: rgba(255, 255, 255, 0.3);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
}
.location-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    padding: 28px 30px;
    transition: background 0.22s, transform 0.22s;
}
.location-card:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-3px);
}
.location-card--closed {
    opacity: 0.5;
}
.location-card {
    cursor: pointer;
}
.location-card--active {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--primary) !important;
    opacity: 1 !important;
}
.footer-credit-logo {
    height: 24px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.2s;
    display: inline-block;
    vertical-align: middle;
}
.footer-credit-logo:hover {
    opacity: 0.8;
}
.location-day {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}
.location-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 7px;
}
.location-address {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 14px;
    line-height: 1.5;
}
.location-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.location-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
}
.location-meta-item i { font-size: 0.78rem; color: var(--primary); }

.locations-note {
    margin-top: 36px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 8px;
}
.locations-note i { color: rgba(255,255,255,0.25); }

/* Closed day banner */
.closed-banner {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: var(--radius);
    padding: 24px 30px;
    text-align: center;
    margin-bottom: 20px;
}
.closed-banner p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
}
.closed-banner .next-day {
    color: #4ade80;
    font-weight: 600;
    font-style: normal;
}


/* ============================================================
   FOOTER
============================================================ */
footer {
    background: #0D1421;
    color: white;
    padding: 60px 48px 36px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 60px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo img { height: 88px; opacity: 0.92; }
.footer-info { padding-top: 4px; }
.footer-info h4 {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 12px;
}
.footer-info p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
}
.footer-info a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-info a:hover { color: #E07B4A; }

.footer-social { padding-top: 4px; }
.footer-social h4 {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
    text-align: right;
}
.social-row { display: flex; gap: 10px; justify-content: flex-end; }
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.22s;
}
.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 28px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.25);
}
.footer-bottom a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }


/* ============================================================
   MOBILE MENU BUTTON
============================================================ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px;
}


/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section { padding: 80px 48px; }
.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info-block { margin-bottom: 32px; }
.contact-info-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 16px;
}
.contact-info-block p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.9;
}
.contact-info-block a {
    color: var(--primary);
    text-decoration: none;
}
.contact-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    margin-bottom: 18px;
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* Contact Form 7 styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    margin-bottom: 4px;
    transition: border-color 0.2s;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.wpcf7 textarea { min-height: 140px; resize: vertical; }
.wpcf7 p { margin-bottom: 14px; }
.wpcf7 input.wpcf7-submit {
    width: 100%;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid var(--primary);
    transition: all 0.25s;
}
.wpcf7 .wpcf7-not-valid-tip {
    color: #C94B28;
    font-size: 0.78rem;
    margin-top: 2px;
}
.wpcf7 .wpcf7-response-output {
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.85rem;
    margin-top: 16px;
}
.wpcf7 .wpcf7-spinner {
    display: none;
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
    header { padding: 0 24px; }
    nav { display: none; }
    .mobile-menu-btn { display: block; }

    .about-section { padding: 72px 24px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
    .about-image img { height: 300px; }
    .price-badge { right: 16px; }

    .menu-section { padding: 72px 0; }
    .container { padding: 0 24px; }

    .locations-section { padding: 72px 24px; }

    .truck-band-overlay { padding: 0 32px; }

    footer { padding: 48px 24px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-social h4 { text-align: left; }
    .social-row { justify-content: flex-start; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .value-strip { gap: 36px; padding: 32px 24px; }

    .hero h1 { font-size: 2.6rem; }

    .contact-section { padding: 60px 24px; }
    .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
    .menu-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    nav.nav-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(12px);
        padding: 8px 24px 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        z-index: 999;
        gap: 0;
    }
    nav.nav-open a {
        padding: 13px 0;
        border-bottom: 1px solid rgba(0,0,0,0.07);
        font-size: 0.95rem;
    }
    nav.nav-open a:last-child { border-bottom: none; }
}

@media (max-width: 900px) and (orientation: landscape) {
    .hero-bg { background-position: 75% 25%; }
}
