/* ============================
   Minimalist Design System
   Palette: Black #000, Off-White #F7F5F3, White #FFF, Gray #888
   Font: Courier (monospace)
   Inspired by Windthrow's geometric precision
   ============================ */
/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Courier, monospace;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    background-color: #fff;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Eyebrow (small label above titles) */
.section-eyebrow,
.service-eyebrow,
.cta-eyebrow,
.contact-eyebrow,
.partners-eyebrow {
    font-family: Courier, monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

/* ============================
   Navigation
   ============================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 clamp(24px, 5vw, 80px);
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: rgba(255, 255, 255, 0.85);
}

.nav-scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.nav-logo {
    font-family: Courier, monospace;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    letter-spacing: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item-logo {
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
}

.nav-scrolled .nav-item-logo {
    border-left-color: rgba(255, 255, 255, 0.12);
}

.nav-item-logo.has-dropdown > .nav-link::after {
    display: none;
}

.nav-link-logo {
    display: flex;
    align-items: center;
    padding: 6px 8px;
}

.nav-railspur-logo {
    height: 28px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease, filter 0.4s ease;
    filter: brightness(0);
}

.nav-scrolled .nav-railspur-logo {
    filter: none;
}

.nav-railspur-logo:hover {
    opacity: 1;
}

.nav-link {
    font-family: Courier, monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.85);
    padding: 8px 14px;
    display: block;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #000;
}

.nav-scrolled .nav-link {
    color: rgba(255, 255, 255, 0.75);
}

.nav-scrolled .nav-link:hover {
    color: #fff;
}

/* Dropdown arrow for items with submenus */
.has-dropdown > .nav-link::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

/* Dropdown menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -12px;
    min-width: 240px;
    background: #fff;
    border: 1px solid #ddd;
    list-style: none;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.has-dropdown:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > .nav-link::after {
    transform: rotate(-135deg);
}

.nav-dropdown li a {
    font-family: Courier, monospace;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000;
    padding: 10px 24px;
    display: block;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown li a:hover {
    color: #000;
    background: #F7F5F3;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.8);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 32px 40px;
        transition: right 0.4s ease;
        overflow-y: auto;
    }

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

    .nav-link {
        font-size: 13px;
        padding: 14px 0;
        color: rgba(255, 255, 255, 0.8);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 0;
    }

    .has-dropdown.dropdown-open > .nav-dropdown {
        display: block;
    }

    .nav-dropdown li a {
        color: rgba(255, 255, 255, 0.6);
        padding: 10px 0;
        font-size: 12px;
    }

    .nav-dropdown li a:hover {
        color: #fff;
        background: transparent;
    }
}

/* ============================
   Header / Hero
   ============================ */
.header {
    width: 100%;
    background: #fff;
    padding-top: 72px;

    /* clear fixed nav */
}

.header-hero-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

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

.header-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-title {
    font-family: Courier, monospace;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
}

.header-location .location-text {
    font-family: Courier, monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #888;
}

.header-tagline {
    margin-bottom: 0;
}

.tagline-text {
    font-family: Courier, monospace;
    font-size: clamp(20px, 3.5vw, 14px);
    font-weight: 400;
    font-style: regular;
    line-height: 1.2;
    color: #000;
}

.header-description {
    font-family: Courier, monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    max-width: 520px;
    letter-spacing: 0.3px;
}

/* Subpage Layout */
.page-header {
    padding-top: 72px;
    background: #000;
    text-align: center;
    padding: 140px clamp(24px, 5vw, 80px) 60px;
}

.page-title {
    font-family: Courier, monospace;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.page-subtitle {
    font-family: Courier, monospace;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

/* Page Header with Background Image */
.page-header-image {
    position: relative;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    padding: 0;
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    padding: 140px clamp(24px, 5vw, 80px) 60px;
    text-align: center;
    width: 100%;
}

/* Page Callout Banner */
.page-callout {
    background: #F7F5F3;
    padding: 32px clamp(24px, 5vw, 80px);
}

.page-callout-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.page-callout-text {
    font-family: Courier, monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}

.page-callout-btn {
    font-size: 13px;
    padding: 10px 24px;
    flex-shrink: 0;
}

/* Repair Service Cards */
.repair-services {
    max-width: 1100px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.repair-service-card {
    border: 1px solid #ddd;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.repair-service-title {
    font-family: Courier, monospace;
    font-size: 17px;
    font-weight: 500;
    color: #000;
}

.repair-service-description {
    font-family: Courier, monospace;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
}

.repair-service-price {
    font-family: Courier, monospace;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-top: auto;
    padding-top: 8px;
}

/* Rental Card Price */
.rental-price {
    font-family: Courier, monospace;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-top: auto;
}

.rental-card .btn {
    margin-top: 12px;
    align-self: flex-start;
}

.page-content {
    padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 80px);
}

.page-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-content-inner p {
    font-family: Courier, monospace;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #444;
}

/* Icon Bar (below header) */
.icon-bar {
    width: 100%;
    background: #F7F5F3;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: clamp(24px, 3vw, 40px) clamp(24px, 5vw, 80px);
}

.icon-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
}

.icon-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-bar-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.icon-bar-label {
    font-family: Courier, monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    line-height: 1.3;
}

/* ============================
   Services Section
   ============================ */
.services {
    background: #fff;
    padding: clamp(80px, 10vw, 144px) 0;
}

.services-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.services-header {
    max-width: 1100px;
    margin: 0 auto clamp(64px, 8vw, 96px);
    padding: 0 clamp(24px, 5vw, 80px);
    text-align: center;
}

.section-title {
    font-family: Courier, monospace;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: Courier, monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #888;
    max-width: 480px;
    margin: 0 auto;
}

/* Service Rows */
.service-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    overflow: hidden;
}

.service-row:last-child {
    border-bottom: 1px solid #ddd;
}

.service-row-reverse {
    flex-direction: row-reverse;
}

.service-image {
    position: relative;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    min-height: 250px;
    overflow: hidden;
}

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

.service-row:hover .service-image img {
    transform: scale(0.98);
}

.service-text {
    width: 50%;
    min-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 6vw, 96px);
    gap: 16px;
}

.service-eyebrow {
    font-family: Courier, monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #bbb;
}

.card-title {
    font-family: Courier, monospace;
    font-size: clamp(32px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: #000;
}

.card-description {
    font-family: Courier, monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

.service-text .btn {
    align-self: flex-start;
    margin-top: 8px;
}

/* ============================
   Buttons
   ============================ */
.btn {
    display: inline-block;
    text-align: center;
    font-family: Courier, monospace;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 14px 32px;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

.btn-filled {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 14px 32px;
}

.btn-filled:hover {
    background: #333;
    border-color: #333;
}

.btn-large {
    font-size: 12px;
    padding: 18px 40px;
    letter-spacing: 3.5px;
}

/* ============================
   CTA Banner
   ============================ */
.cta-banner {
    background: #000;
    padding: clamp(80px, 10vw, 128px) 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

.cta-eyebrow {
    color: rgba(255, 255, 255, 0.4);
}

.cta-title {
    font-family: Courier, monospace;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-family: Courier, monospace;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.cta-description {
    font-family: Courier, monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================
   Contact Section
   ============================ */
.contact {
    background: #F7F5F3;
    padding: clamp(80px, 10vw, 144px) 0;
}

.contact-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

.contact-card {
    background: #fff;
    border: 1px solid #000;
    overflow: hidden;
}

.contact-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 48px);
    text-align: center;
}

.contact-eyebrow {
    color: #888;
}

.contact-title {
    font-family: Courier, monospace;
    font-size: clamp(32px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.15;
    color: #000;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-family: Courier, monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #888;
}

.contact-form {
    padding: clamp(32px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: Courier, monospace;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #888;
}

.form-input {
    width: 100%;
    height: 48px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 0 16px;
    font-family: Courier, monospace;
    font-size: 15px;
    color: #000;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #000;
}

.form-textarea {
    width: 100%;
    height: 100px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 14px 16px;
    font-family: Courier, monospace;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    resize: vertical;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-textarea:focus {
    border-color: #000;
}

/* ============================
   Partners Section
   ============================ */
.partners {
    background: #F7F5F3;
    border-top: 1px solid #ddd;
    padding: clamp(64px, 8vw, 96px) 0;
}

.partners-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    text-align: center;
}

.partners-title {
    font-family: Courier, monospace;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.partners-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-card {
    flex: 0 0 180px;
    height: 160px;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px;
    transition: border-color 0.3s ease;
}

.partner-card:hover {
    border-color: #000;
}

.partner-logo {
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-card:hover .partner-logo img {
    opacity: 1;
}

.partner-name {
    font-family: Courier, monospace;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #888;
    text-align: center;
}

/* ============================
   Workshops & Community (Community page)
   ============================ */
.workshops-section {
    padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 80px);
}

.section-after-nav {
    padding-top: calc(72px + clamp(48px, 6vw, 96px));
}

.workshops-intro {
    max-width: 800px;
    margin: 0 auto clamp(40px, 5vw, 64px);
}

.workshops-eyebrow {
    font-family: Courier, monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.workshops-title {
    font-family: Courier, monospace;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.workshops-description {
    font-family: Courier, monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* PNW Groups Section */
.workshops-section:has(.groups-logos) {
    padding-bottom: clamp(16px, 2vw, 32px);
}

.groups-logos {
    max-width: 1100px;
    margin: 32px auto 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.groups-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    transition: opacity 0.2s ease;
}

.groups-logo-link:hover {
    opacity: 0.6;
}

.groups-logo-img {
    max-width: 180px;
    max-height: 60px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.workshops-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.workshop-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: clamp(28px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.3s ease;
}

.workshop-card:hover {
    border-color: #000;
}

.workshop-date {
    font-family: Courier, monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

.workshop-title {
    font-family: Courier, monospace;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}

.workshop-description {
    font-family: Courier, monospace;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}

.workshop-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Event Cards — Photo on top, text below */
.event-card-bg {
    border: none;
    padding: 0;
    overflow: hidden;
}

.event-card-bg:hover {
    border-color: transparent;
}

.event-card-image {
    width: 100%;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.event-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(20px, 3vw, 32px);
}

.event-card-bg .btn {
    margin-top: auto;
    align-self: flex-start;
}

.event-card-label {
    display: inline-block;
    align-self: flex-start;
    background: #CDFF00;
    color: #000;
    font-family: Courier, monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 2px;
}

/* Carousel */
.carousel-header {
    max-width: 1100px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.carousel-header .workshops-title {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.carousel-description {
    max-width: 1100px;
    margin: 0 auto 32px;
}

.carousel-nav {
    display: flex;
    gap: 8px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #000;
    color: #fff;
}

.carousel-track-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.carousel-card {
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    flex-shrink: 0;
}

/* Two-Column Layout */
.community-two-col {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
}

.community-col {
    flex: 1;
    min-width: 0;
}

.community-col + .community-col {
    border-left: 1px solid #ddd;
    padding-left: 48px;
}

.community-col .community-list {
    max-width: none;
}

.community-col .community-list-date {
    min-width: 56px;
}

/* Community Lists (Rides, Blog) */
.community-list {
    max-width: 1100px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.community-list-item {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    gap: 24px;
    align-items: baseline;
}

.community-list-item:first-child {
    border-top: 1px solid #ddd;
}

.community-list-date {
    font-family: Courier, monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    flex-shrink: 0;
    min-width: 120px;
}

.community-list-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.community-list-title {
    font-family: Courier, monospace;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

a.community-list-title:hover {
    text-decoration: underline;
}

.community-list-meta {
    font-family: Courier, monospace;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.5;
}

.community-list-meta a {
    color: #000;
    text-decoration: none;
}

.community-list-meta a:hover {
    text-decoration: underline;
}

/* ============================
   Footer
   ============================ */
.footer {
    background: #000;
    padding: clamp(48px, 6vw, 80px) 0;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

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

.footer-logo-text {
    font-family: Courier, monospace;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
}

.footer-location-text {
    font-family: Courier, monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: #333;
    margin: 8px 0;
}

.footer-copyright {
    font-family: Courier, monospace;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #555;
    text-align: center;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px) {
    .partners-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .carousel-card {
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }

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

@media (max-width: 768px) {
    .icon-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .service-row,
    .service-row-reverse {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        min-height: 140px;
    }

    .service-text {
        width: 100%;
        min-width: 100%;
        padding: 40px 24px;
    }

    .partner-card {
        flex: 0 0 calc(50% - 12px);
    }

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

    .community-list-item {
        flex-direction: column;
        gap: 8px;
    }

    .community-list-date {
        min-width: auto;
    }

    .carousel-card {
        min-width: 100%;
        max-width: 100%;
    }

    .community-two-col {
        flex-direction: column;
        gap: 48px;
    }

    .community-col + .community-col {
        border-left: none;
        padding-left: 0;
    }

    .repair-services {
        grid-template-columns: 1fr;
    }

    .page-callout-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .groups-logos {
        gap: 24px;
    }

    .groups-logo-img {
        max-width: 140px;
        max-height: 48px;
    }
}
