/* =====================================================
   LE TOIT ROUGE MONTÉLIMAR – Site Styles
   Palette: #000000 (noir), #af2424 (rouge), #ffffff (blanc), #e2e2e2 (gris clair)
   ===================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.65;
}

a { color: #af2424; text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 3px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    text-align: center;
    border: 2px solid transparent;
    text-decoration: none;
}
.btn-primary   { background: #af2424; color: #fff; border-color: #af2424; }
.btn-primary:hover { background: #8b1c1c; border-color: #8b1c1c; text-decoration: none; }
.btn-secondary { background: transparent; color: #af2424; border-color: #af2424; }
.btn-secondary:hover { background: #af2424; color: #fff; text-decoration: none; }
.btn-outline   { background: transparent; color: #333; border-color: #ccc; }
.btn-outline:hover { border-color: #af2424; color: #af2424; text-decoration: none; }
.btn-block     { display: block; width: 100%; text-align: center; }

.text-center { text-align: center; }

/* ---- Header ---- */
.site-header {
    background: #000;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.site-logo img { height: 50px; width: auto; }

.site-nav ul { list-style: none; display: flex; gap: 8px; }
.site-nav a {
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 3px;
    transition: background .2s;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.site-nav a:hover { background: #af2424; text-decoration: none; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background: #111 center/cover no-repeat;
    color: #fff;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.7) 0%, rgba(175,36,36,.35) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    max-width: 680px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: .9;
}

/* ---- Page Header ---- */
.page-header {
    background: #111;
    color: #fff;
    padding: 48px 0 40px;
    border-bottom: 4px solid #af2424;
}
.page-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.page-intro { margin-top: 12px; opacity: .85; font-size: 1.05rem; }

/* ---- Section Intro ---- */
.section-intro { padding: 56px 0; background: #f9f9f9; text-align: center; }
.section-intro p { max-width: 720px; margin: 0 auto; font-size: 1.1rem; }

/* ---- Shows Grid ---- */
.section-shows { padding: 60px 0; }
.section-title {
    font-size: 1.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 36px;
    position: relative;
    padding-bottom: 12px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 60px; height: 3px;
    background: #af2424;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}
.shows-listing { padding: 56px 0 80px; }
.shows-grid--large { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 40px; }

.show-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    transition: transform .25s, box-shadow .25s;
    background: #fff;
}
.show-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.show-card > a { display: block; color: inherit; text-decoration: none; }

.show-card-img { aspect-ratio: 3/4; overflow: hidden; background: #222; }
.show-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.show-card:hover .show-card-img img { transform: scale(1.04); }
.show-card-img--placeholder {
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: #555;
}

.show-card-body { padding: 18px; }
.show-category {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #af2424;
    border: 1px solid #af2424;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}
.show-card-body h2, .show-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}
.show-artist { color: #666; font-size: .9rem; margin-bottom: 6px; }
.show-date { display: block; color: #555; font-size: .85rem; margin-bottom: 4px; }
.show-price { display: block; color: #af2424; font-size: .9rem; font-weight: 600; }
.show-date i, .show-price i { margin-right: 5px; }

/* ---- Testimonials ---- */
.section-testimonials { background: #f5f5f5; padding: 60px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 36px;
}
.testimonial {
    background: #fff;
    border-left: 4px solid #af2424;
    padding: 24px 28px;
    border-radius: 2px;
}
.testimonial p { font-style: italic; line-height: 1.7; color: #333; }
.testimonial footer { margin-top: 16px; font-size: .9rem; color: #666; }
.testimonial footer strong { color: #111; }
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---- Info Band ---- */
.section-info-band { background: #af2424; color: #fff; padding: 36px 0; }
.info-band-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}
.info-band-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.info-band-item i { font-size: 1.8rem; opacity: .85; }
.info-band-item strong { display: block; font-size: 1rem; }
.info-band-item span, .info-band-item a { font-size: .9rem; opacity: .85; color: #fff; }
.info-band-item a:hover { opacity: 1; }

/* ---- Show Detail ---- */
.show-detail { }
.show-header {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    background: #111 center/cover no-repeat;
    color: #fff;
    padding: 0;
}
.show-header-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 60%);
}
.show-header-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}
.show-category-badge {
    display: inline-block;
    background: #af2424;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
}
.show-header .show-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}
.show-header .show-artist { font-size: 1.2rem; opacity: .85; margin-top: 8px; }

.show-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding: 48px 0;
}
.show-description { font-size: 1.05rem; line-height: 1.8; }
.show-info-box {
    background: #f4f4f4;
    border-radius: 6px;
    padding: 28px;
    position: sticky;
    top: 80px;
}
.show-info-box h2 {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #af2424;
}
.show-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.show-info-item i { color: #af2424; margin-top: 3px; min-width: 18px; }
.show-info-item strong { display: block; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: #555; }
.show-info-item time, .show-info-item span { font-size: .95rem; color: #222; }
.show-poster img { border-radius: 6px; margin-top: 20px; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.show-nav-back { padding-bottom: 48px; }

/* Vidéo du spectacle */
.show-video {
    margin-top: 32px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

/* MP4 local */
.show-video--local video {
    display: block;
    width: 100%;
    height: auto;
    background: #000;
}

/* Wrapper responsive pour iframe (ratio fixe) */
.show-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    border-radius: 6px;
}
.show-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* 16:9 – YouTube */
.ratio-16x9 { padding-top: 56.25%; }

/* 9:16 – Facebook Reel (vertical, centré et limité en largeur) */
.show-video--vertical {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.ratio-9x16 { padding-top: 177.78%; }

/* Image supplémentaire (à la place de la vidéo) */
.show-extra-image {
    margin-top: 32px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.show-extra-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bouton Réserver */
.button.button-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #c0392b 0%, #af2424 60%, #8b1c1c 100%);
    color: #fff;
    text-align: center;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 12px;
    box-shadow: 0 4px 14px rgba(175, 36, 36, .45);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button.button-book:hover {
    background: linear-gradient(135deg, #d44035 0%, #c0392b 60%, #9b2020 100%);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(175, 36, 36, .55);
}
.button.button-book:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(175, 36, 36, .4);
}
.button.button-book .btn-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ---- Venue Page ---- */
.venue-hero-image { max-height: 420px; overflow: hidden; }
.venue-hero-image img { width: 100%; height: 420px; object-fit: cover; }
.venue-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 48px 0; }
.info-box {
    background: #f4f4f4;
    border-radius: 6px;
    padding: 24px;
    position: sticky;
    top: 80px;
}
.info-box h2 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #af2424;
}

/* ---- Page Content ---- */
.page-content { padding: 48px 0 64px; }
.page-main-image { margin-bottom: 32px; border-radius: 6px; overflow: hidden; }
.rich-text h2 { font-size: 1.5rem; margin: 28px 0 12px; font-weight: 700; }
.rich-text h3 { font-size: 1.2rem; margin: 22px 0 10px; font-weight: 700; }
.rich-text p  { margin-bottom: 16px; }
.rich-text ul, .rich-text ol { margin: 0 0 16px 24px; }
.rich-text li { margin-bottom: 6px; }
.rich-text strong { font-weight: 700; }

/* ---- Bar image pleine largeur ---- */
.rich-text figure.bar-image {
    margin: 20px 0 0;
}
.rich-text figure.bar-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.location-images {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.location-images img {
    flex: 1 1 280px;
    max-width: calc(50% - 8px);
    height: auto;
    border-radius: 4px;
    display: block;
}
@media (max-width: 640px) {
    .location-images img { max-width: 100%; flex-basis: 100%; }
}

/* ---- Contact ---- */
.contact-section { padding: 48px 0 64px; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-details { margin-top: 28px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: .95rem;
}
.contact-item i { color: #af2424; margin-top: 3px; min-width: 18px; }
.contact-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: #888; margin-bottom: 2px; }
.contact-item a { color: #af2424; }
.contact-map iframe { border-radius: 6px; width: 100%; }

/* ---- Contact Form ---- */
.contact-form-section { margin-top: 56px; border-top: 1px solid #eee; padding-top: 48px; }
.contact-form-title { font-size: 1.5rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 32px; }
.contact-form { max-width: 720px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label { font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: #555; margin-bottom: 6px; font-weight: 600; }
.form-group label span[aria-hidden] { color: #af2424; margin-left: 2px; }
.form-group .optional { font-size: .75rem; color: #999; text-transform: none; letter-spacing: 0; font-weight: 400; }

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: .95rem;
    font-family: inherit;
    background: #fff;
    transition: border-color .2s;
    box-sizing: border-box;
}
.form-control:focus { outline: none; border-color: #af2424; box-shadow: 0 0 0 3px rgba(175,36,36,.12); }
textarea.form-control { resize: vertical; min-height: 140px; }

.form-check { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-checkbox { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: #af2424; cursor: pointer; }
.check-label { font-size: .9rem; text-transform: none; letter-spacing: 0; color: #333; line-height: 1.5; font-weight: 400; }
.check-label a { color: #af2424; }

.field-error { color: #c0392b; font-size: .8rem; margin-top: 4px; }

.button-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #af2424;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    margin-top: 8px;
}
.button-submit:hover { background: #8e1c1c; transform: translateY(-2px); }
.button-submit:active { transform: translateY(0); }

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0faf0;
    border: 1px solid #6dbf6d;
    color: #2a7a2a;
    padding: 16px 20px;
    border-radius: 6px;
    font-size: .95rem;
    max-width: 720px;
}
.form-success i { color: #3cb43c; font-size: 1.2rem; flex-shrink: 0; }

/* ---- Footer ---- */
.site-footer { background: #111; color: #ccc; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col address { font-style: normal; line-height: 1.7; font-size: .9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #aaa; font-size: .9rem; }
.footer-col a:hover { color: #af2424; text-decoration: none; }
.footer-bottom { border-top: 1px solid #333; padding-top: 24px; text-align: center; font-size: .85rem; color: #666; }

/* ---- Misc ---- */
.no-shows { text-align: center; padding: 60px 0; color: #666; font-size: 1.05rem; }

/* ---- News Section (home) ---- */
.section-news { padding: 60px 0 80px; }

/* ---- News Listing Page ---- */
.news-listing-section { padding: 56px 0 80px; }

.news-listing { display: flex; flex-direction: column; gap: 0; }

.news-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid #eee;
}
.news-item:first-child { border-top: 1px solid #eee; }

.news-item-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    border-radius: 6px;
    padding: 14px 10px;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}
.news-item-day   { font-size: 2rem; font-weight: 900; line-height: 1; }
.news-item-month { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #af2424; margin-top: 4px; }
.news-item-year  { font-size: .75rem; color: #aaa; margin-top: 2px; }

.news-item-body { padding: 4px 0; }

.news-item-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}
.news-item-title a { color: #111; }
.news-item-title a:hover { color: #af2424; text-decoration: none; }

.news-item-excerpt {
    color: #555;
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.news-item-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #af2424;
}
.news-item-link:hover { text-decoration: none; gap: 10px; }
.news-item-link i { font-size: .75rem; transition: margin .2s; }

/* ---- News Cards (home grid) ---- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
.news-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    overflow: hidden;
    border-top: 3px solid #af2424;
    transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.news-card-body { padding: 22px; }
.news-date { display: block; font-size: .8rem; font-weight: 600; color: #af2424; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.news-card-title, .news-card-body h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.news-card-title a, .news-card-body h3 a { color: #111; }
.news-card-title a:hover, .news-card-body h3 a:hover { color: #af2424; text-decoration: none; }
.news-card-excerpt { color: #666; font-size: .88rem; line-height: 1.55; margin-bottom: 12px; }
.news-read-more { font-size: .82rem; font-weight: 700; color: #af2424; text-transform: uppercase; letter-spacing: .04em; }

@media (max-width: 600px) {
    .news-item { grid-template-columns: 1fr; gap: 16px; }
    .news-item-date { flex-direction: row; gap: 10px; padding: 10px 14px; border-radius: 4px; width: fit-content; }
    .news-item-day { font-size: 1.4rem; }
}

/* ---- Newsletter ---- */
.section-newsletter {
    background: #1a1a1a;
    color: #fff;
    padding: 64px 0;
    border-top: 4px solid #af2424;
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.newsletter-title {
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.25;
    margin-bottom: 12px;
}
.newsletter-subtitle { color: #aaa; font-size: .95rem; }

.newsletter-input-group {
    display: flex;
    margin-bottom: 14px;
}
.newsletter-input {
    flex: 1;
    padding: 13px 18px;
    border: 2px solid #444;
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: #2a2a2a;
    color: #fff;
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .2s;
}
.newsletter-input::placeholder { color: #777; }
.newsletter-input:focus { outline: none; border-color: #af2424; }

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: #af2424;
    color: #fff;
    border: 2px solid #af2424;
    border-radius: 0 4px 4px 0;
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    white-space: nowrap;
}
.newsletter-btn:hover { background: #8b1c1c; border-color: #8b1c1c; }

.newsletter-privacy { font-size: .78rem; color: #666; margin-top: 10px; }
.newsletter-privacy a { color: #999; text-decoration: underline; }

.newsletter-error {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(175,36,36,.15);
    border: 1px solid #af2424;
    color: #ff9999;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: .9rem;
    margin-bottom: 14px;
}

.newsletter-success { background: rgba(45,130,45,.12); border-color: #4a9a4a; color: #8de08d; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .show-layout { grid-template-columns: 1fr; }
    .venue-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .show-info-box { position: static; }
    .info-box { position: static; }
}

@media (max-width: 768px) {
    .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 680px) {
    .site-nav { display: none; }
    .site-nav.is-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #000;
        padding: 16px 20px;
    }
    .site-nav.is-open ul { flex-direction: column; gap: 4px; }
    .menu-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .info-band-grid { flex-direction: column; align-items: center; text-align: center; }
    .hero { min-height: 380px; }
}
