/* ============================================================
   TOP SHELF APPAREL — Main Stylesheet
   topshelfapparel.net
   ============================================================
   COLOR SYSTEM — change these 6 variables to retheme the site
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --teal:     #51a8b1;   /* primary brand */
    --teal-dk:  #3d8a93;   /* hover / darker teal */
    --maroon:   #6B2737;   /* dark text, nav, dark sections */
    --maroon-dk:#521e2b;   /* hover / deeper maroon */
    --cream:    #fffbd5;   /* page background */
    --stone:    #7a7369;   /* muted / secondary text */
    --seam:     #e8e4c8;   /* borders on cream */
    --white:    #ffffff;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lora', Georgia, serif;
    background: var(--cream);
    color: var(--maroon);
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.6rem;
}

.section-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-transform: uppercase;
    color: var(--maroon);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--stone);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--teal);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.15s;
}
.btn-primary:hover { background: var(--teal-dk); }

.btn-outline {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 3px;
    transition: border-color 0.15s, background 0.15s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
    background: var(--maroon);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--teal);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.nav-logo img { height: 54px; width: auto; display: block; }

.nav-wordmark {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
}
.nav-wordmark small {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--teal);
    font-weight: 600;
}

nav.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
nav.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.15s;
}
nav.nav-links a:hover { color: var(--white); }

.nav-cta {
    background: var(--teal) !important;
    color: var(--white) !important;
    padding: 0.45rem 1.1rem;
    border-radius: 3px;
    transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--teal-dk) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    color: var(--white);
    padding: 7rem 2rem 6rem;
    overflow: hidden;
    border-bottom: 3px solid var(--teal);
}

/* Storefront background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/storefront.webp') center center / cover no-repeat;
    z-index: 0;
}

/* Dark neutral overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 16, 0.72);
    z-index: 1;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3.2rem, 7vw, 5.2rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--teal); display: block; }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

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

.hero-logo-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.hero-logo-side img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    background: var(--white);
    padding: 4.5rem 2rem;
    border-bottom: 1px solid var(--seam);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.service-card {
    padding: 1.75rem;
    background: var(--cream);
    border-radius: 6px;
    border-top: 3px solid var(--teal);
}
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.9rem; color: var(--stone); line-height: 1.6; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 5rem 2rem; background: var(--cream); }

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-card {
    background: var(--maroon);
    color: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.15;
}

.about-stat { margin-bottom: 1.5rem; }
.about-stat .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--cream);
    line-height: 1;
}
.about-stat .lbl {
    font-size: 0.82rem;
    color: rgba(255,251,213,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
}
.about-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.25rem 0; }

.about-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--maroon);
    line-height: 1;
    margin-bottom: 1.25rem;
}
.about-content p { color: var(--stone); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }

/* ============================================================
   BLOG SECTION (homepage preview)
   ============================================================ */
.blog-section {
    padding: 5rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--seam);
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-all {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    text-decoration: none;
}
.view-all:hover { text-decoration: underline; }

/* ============================================================
   PAGE HERO (posts listing, single post, quote page)
   ============================================================ */
.page-hero {
    background: var(--maroon);
    padding: 3.5rem 2rem;
    color: var(--white);
}
.page-hero .section-label { color: var(--teal); }
.page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1;
}
.page-hero p { color: rgba(255,251,213,0.7); margin-top: 0.75rem; }

/* ============================================================
   POSTS SECTION HEADER (homepage + listing page)
   ============================================================ */
.posts-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-all {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    text-decoration: none;
}
.view-all:hover { text-decoration: underline; }

/* ============================================================
   SOCIAL FEED — post cards
   Mixed image sizes handled via natural aspect ratio.
   ============================================================ */
.feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.feed-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--seam);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.feed-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.feed-card-img { width: 100%; display: block; }
.feed-card-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.feed-card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }

.feed-card-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 0.5rem;
}

.feed-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--maroon);
    line-height: 1.2;
    margin-bottom: 0.6rem;
    text-decoration: none;
    display: block;
}
.feed-card-title:hover { color: var(--teal); }

.feed-card-text {
    font-size: 0.92rem;
    color: var(--stone);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
}

.feed-read-more {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    text-decoration: none;
    margin-top: auto;
}
.feed-read-more:hover { text-decoration: underline; }

.no-posts {
    text-align: center;
    padding: 3rem;
    color: var(--stone);
    font-style: italic;
    grid-column: 1 / -1;
}

/* Single post page */
.post-hero {
    background: var(--maroon);
    color: var(--white);
    padding: 4rem 2rem 3rem;
}
.breadcrumb {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,251,213,0.6);
    margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 0.5rem; }

.post-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1;
    max-width: 860px;
    margin-bottom: 1rem;
}
.post-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,251,213,0.6);
}
.post-meta .sep { margin: 0 0.5rem; }

.featured-img {
    max-width: 860px;
    margin: -2rem auto 0;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}
.featured-img img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.post-content-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 2rem 5rem; }

.post-body-content { font-size: 1.05rem; line-height: 1.85; color: var(--maroon); }
.post-body-content p { margin-bottom: 1.25rem; }
.post-body-content h2, .post-body-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--maroon);
    margin: 2rem 0 0.75rem;
}
.post-body-content h2 { font-size: 1.6rem; }
.post-body-content h3 { font-size: 1.25rem; }
.post-body-content a { color: var(--teal); }
.post-body-content img { max-width: 100%; height: auto; border-radius: 6px; margin: 1.5rem 0; }
.post-body-content ul, .post-body-content ol { margin: 1rem 0 1rem 1.5rem; }
.post-body-content li { margin-bottom: 0.4rem; }
.post-body-content blockquote {
    border-left: 3px solid var(--teal);
    margin: 1.5rem 0;
    padding: 0.75rem 1.5rem;
    color: var(--stone);
    font-style: italic;
}

/* ============================================================
   SLIDESHOW — continuous 4-up scroll
   ============================================================ */
.slideshow-section {
    background: var(--maroon);
    padding: 4rem 0;
}
.slideshow-section .container { padding: 0 2rem; }
.slideshow-section .section-label { color: var(--teal); }
.slideshow-section .section-heading { color: var(--cream); margin-bottom: 2rem; }

.slideshow-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slideshow-track {
    display: flex;
    gap: 0;
    animation: slide-scroll 20s linear infinite;
    will-change: transform;
}
.slideshow-track:hover { animation-play-state: paused; }

@keyframes slide-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.slideshow-slide {
    flex: 0 0 25%;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.slideshow-slide::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.5) saturate(1.2);
    z-index: 0;
}

.slideshow-slide img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}

/* Alt text overlay on hover */
.slideshow-slide .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(transparent, rgba(107,39,55,0.92));
    color: var(--cream);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 2rem 0.85rem 0.75rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    text-align: center;
}
.slideshow-slide:hover .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Prev/next buttons gone — not needed for continuous scroll */

.slideshow-dots { display: none; }

@media (max-width: 768px) {
    .slideshow-slide { flex: 0 0 50%; }
}

/* ============================================================
   QUOTE FORM PAGE
   ============================================================ */
.quote-section {
    padding: 5rem 2rem;
    background: var(--cream);
}

.quote-intro {
    max-width: 600px;
    margin-bottom: 3rem;
}

.quote-form {
    max-width: 700px;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--maroon);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 2px solid var(--seam);
    border-radius: 4px;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.95rem;
    color: var(--maroon);
    background: var(--white);
    transition: border-color 0.15s;
    outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--teal); }

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

.form-hint {
    font-size: 0.78rem;
    color: var(--stone);
}

.form-submit { margin-top: 1.5rem; }

.msg-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.msg-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    gap: 0.5rem;
    margin-top: 3rem;
    justify-content: center;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--seam);
    background: var(--white);
    color: var(--maroon);
}
.pagination .cur { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
.contact {
    padding: 5rem 2rem;
    background: var(--maroon);
    color: var(--white);
}
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact .section-heading { color: var(--white); margin-bottom: 0.75rem; }
.contact .section-sub { color: rgba(255,251,213,0.7); margin: 0 auto 2.5rem; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.contact-item .ci-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.35rem;
}
.contact-item .ci-value { font-size: 1rem; color: var(--cream); }
.contact-item a { color: inherit; text-decoration: none; }
.contact-item a:hover { color: var(--teal); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--maroon-dk);
    color: rgba(255,251,213,0.45);
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 0.8rem;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
    border-top: 2px solid var(--maroon);
}
footer a { color: rgba(255,251,213,0.55); text-decoration: none; }
footer a:hover { color: var(--teal); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-logo-side { display: none; }
    .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    nav.nav-links { display: none; }
    .posts-header { flex-direction: column; align-items: flex-start; }
    .featured-img { margin-top: 0; }
    .slideshow-btn { width: 36px; height: 36px; font-size: 1rem; }
    .quote-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ACCESSIBILITY — BizPinPro Standard
   ============================================================ */

/* Screen reader only — visually hidden but accessible */
.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;
}

/* Skip link — visible on focus */
.sr-only-focusable:focus,
.sr-only-focusable:focus-within {
    position: fixed;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    padding: 0.6rem 1.25rem;
    clip: auto;
    white-space: normal;
    background: var(--teal);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Focus visible — never suppress without a replacement */
:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
}
:focus:not(:focus-visible) {
    outline: none;
}

/* Required field marker */
.required-mark {
    color: #c0392b;
    margin-left: 0.15rem;
}

/* ============================================================
   FORM ALERTS — quote form response
   ============================================================ */
.form-alert {
    padding: 0.9rem 1.25rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.form-alert--success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}
.form-alert--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .slideshow-track {
        animation: none !important;
    }
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* ============================================================
   MAP STRIP
   ============================================================ */
.map-strip {
    background: var(--charcoal, #1a1a1a);
}

.map-cta {
    background: var(--maroon);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.map-address {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,251,213,0.8);
}

@media (max-width: 600px) {
    .map-cta { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ============================================================
   FOOTER — shared include
   ============================================================ */
footer {
    background: var(--maroon-dk, #521e2b);
    border-top: 2px solid var(--maroon);
    color: rgba(255,251,213,0.45);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    height: 42px;
    width: auto;
    display: block;
    opacity: 0.85;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255,251,213,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,251,213,0.55);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.15s;
}
.footer-links a:hover { color: var(--teal); }

.footer-meta {
    text-align: right;
}
.footer-meta a {
    color: rgba(255,251,213,0.4);
    text-decoration: none;
}
.footer-meta a:hover { color: var(--teal); }

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
    }
    .footer-brand { justify-content: center; }
    .footer-meta  { text-align: center; }
}

