html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

body {
    padding-top: 80px;
}

.featured-slider {
    position: relative;
    width: 100vw;
    height: 90vh;
    overflow: hidden;
    background: var(--bg-body);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
}

.featured-slider .slides-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.featured-slider .slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.featured-slider .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.featured-slider .slide-content {
    position: relative;
    z-index: 2;
    padding: 2rem 3rem;
    color: #fff;
    max-width: 700px;
    width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.featured-slider .slide-content .event-name {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.featured-slider .slide-content .event-organiser {
    font-size: 0.95rem;
    opacity: 0.9;
}

.featured-slider .slide-content .event-date {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.3rem 0 0.8rem;
    opacity: 0.8;
}

.featured-slider .slide-content .event-date svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.featured-slider .slide-content .btn-details {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.8rem;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
    font-weight: 500;
}

.featured-slider .slide-content .btn-details:hover {
    background: rgba(255, 255, 255, 0.35);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
    padding: 0 1rem;
}

.slider-controls button {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    transition: background 0.2s;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-controls button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.slider-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.6rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    padding: 0;
}

.slider-dots .dot.active {
    background: #fff;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.featured-slider.empty {
    display: none;
}

.hero {
    background: linear-gradient(135deg, var(--accent-tint) 0%, #d4e4dc 100%);
    padding: 4rem 2rem 5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 300px;
    height: 300px;
    background: rgba(45, 106, 79, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 1.8rem;
    line-height: 1.7;
}

.hero .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .cta-buttons .btn-primary {
    height: auto;
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.hero .cta-buttons .btn-primary:hover {
    background: var(--accent-dark);
}

.hero .cta-buttons .btn-secondary {
    height: auto;
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.hero .cta-buttons .btn-secondary:hover {
    background: var(--accent-color);
    color: #fff;
}

.hero .stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero .stat-item {
    text-align: center;
}

.hero .stat-item .number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.2;
}

.hero .stat-item .label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section {
    padding: 3rem 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.section>.container {
    position: relative;
    z-index: 1;
}

.section-alt {
    background-color: var(--bg-hover);
}

.section-alt::before {
    background: linear-gradient(135deg, rgba(212, 228, 220, 0.92) 0%, rgba(230, 236, 232, 0.92) 100%);
}

.calendar-section {
    background-image: url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?auto=format&fit=crop&w=1600&q=80');
}

.offer-section {
    background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?auto=format&fit=crop&w=1600&q=80');
}

.gear-section {
    background-image: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?auto=format&fit=crop&w=1600&q=80');
}

.events-section {
    background-image: url('https://images.unsplash.com/photo-1459749411175-04bf5292ceea?auto=format&fit=crop&w=1600&q=80');
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.calendar-widget {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.2rem;
    align-items: start;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.08);
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.calendar-nav .calendar-month-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.calendar-nav a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    color: var(--accent-color);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.calendar-nav a svg {
    width: 16px;
    height: 16px;
}

.calendar-nav a:hover {
    background: var(--accent-tint);
    border-color: var(--accent-color);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 0.4rem;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    padding: 0.4rem 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-grid .cal-day {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--text-secondary);
    background: var(--bg-hover);
}

.calendar-grid .cal-day.empty {
    background: transparent;
}

.calendar-grid .cal-day.today {
    border: 1px solid var(--accent-color);
    font-weight: 700;
    color: var(--accent-color);
}

.calendar-grid .cal-day.has-event {
    background: var(--accent-tint);
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
}

.calendar-grid .cal-day.has-event:hover {
    background: var(--accent-color);
    color: #fff;
    z-index: 5;
}

.calendar-grid .cal-day.has-event:hover .event-dot {
    background: #fff;
}

.calendar-grid .cal-day .event-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-top: 2px;
}

.calendar-grid .cal-day .day-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 160px;
    max-width: 220px;
    background: var(--text-primary);
    color: #fff;
    padding: 0.6rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.5;
    box-shadow: 0 8px 20px rgba(26, 35, 50, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 10;
}

.calendar-grid .cal-day .day-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--text-primary);
}

.calendar-grid .cal-day .day-tooltip .tooltip-date {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
    color: var(--accent-tint);
}

.calendar-grid .cal-day .day-tooltip .tooltip-event {
    padding: 0.15rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.calendar-grid .cal-day .day-tooltip .tooltip-event:first-of-type {
    border-top: none;
}

.calendar-grid .cal-day.has-event:hover .day-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.calendar-grid .cal-day:nth-child(-n+7) .day-tooltip {
    bottom: auto;
    top: calc(100% + 8px);
}

.calendar-grid .cal-day:nth-child(-n+7) .day-tooltip::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: var(--text-primary);
}

.calendar-agenda h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.calendar-agenda .agenda-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 0.3rem;
}

.calendar-agenda .agenda-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.8rem;
    background: var(--bg-body);
    border-left: 3px solid var(--accent-color);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.calendar-agenda .agenda-item:hover {
    background: var(--accent-tint);
}

.calendar-agenda .agenda-date {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent-color);
    min-width: 52px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px dotted var(--accent-color);
}

.calendar-agenda .agenda-details .agenda-name {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.calendar-agenda .agenda-details .agenda-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.calendar-agenda .agenda-status {
    margin-left: auto;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.5rem;
    color: #fff;
    white-space: nowrap;
}

.calendar-agenda .agenda-status.status-upcoming {
    background: rgba(45, 106, 79, 0.9);
}

.calendar-agenda .agenda-status.status-happening {
    background: rgba(185, 119, 14, 0.9);
}

.calendar-agenda .agenda-status.status-past_event {
    background: rgba(100, 100, 100, 0.75);
}

.calendar-agenda .agenda-status.status-cancelled {
    background: rgba(160, 68, 44, 0.9);
}

.calendar-agenda .agenda-status.status-draft {
    background: rgba(80, 80, 80, 0.65);
}

.calendar-agenda .agenda-empty {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 1rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.service-card a {
    display: flex;
    align-items: center;
    background-color: #d4e4dc;
    padding: 8px;
}


.service-card:hover {
    box-shadow: 0 8px 24px rgba(26, 35, 50, 0.08);
}

.service-card .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    color: var(--accent-color);
}

.service-card .icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-card a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
}

.service-card a:hover {
    text-decoration: underline;
}

.cta-section {
    background-color: var(--accent-color);
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(45, 106, 79, 0.88);
    z-index: 0;
}

.cta-section h2,
.cta-section p,
.cta-section .btn-cta {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.cta-section p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 1.8rem;
}

.cta-section .btn-cta {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: #fff;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.cta-section .btn-cta:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: calc(0.8rem - 1px) calc(2.5rem - 1px);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.4rem;
    margin-top: 1rem;
}

.featured-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.featured-card:hover {
    border-color: var(--border-color);
    box-shadow: 0 6px 18px rgba(26, 35, 50, 0.06);
}

.featured-card .card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(160deg, var(--accent-tint), var(--bg-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card .card-image svg {
    width: 60px;
    height: 60px;
    color: var(--accent-color);
    opacity: 0.7;
}

.featured-card .card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.58rem;
    padding: 0.2rem 0.6rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.featured-card .card-body {
    padding: 0.9rem 1rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.featured-card .card-body .card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.featured-card .card-body .card-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.featured-card .card-body .card-meta svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 0.2rem;
}

.featured-card .card-body .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.featured-card .card-body .card-footer .price {
    font-weight: 700;
    font-size: 1rem;
}

.featured-card .card-body .card-footer .price span {
    display: block;
    font-size: 0.58rem;
    color: var(--text-muted);
    font-weight: 400;
}

.featured-card .card-body .card-footer .btn-link {
    font-size: 0.7rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.featured-card .card-body .card-footer .btn-link:hover {
    text-decoration: underline;
}

.featured-card .status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 0.3rem;
    background: var(--accent-color);
}

.featured-card .status-dot.booked {
    background: var(--danger-color);
}

.featured-card .status-dot.inactive {
    background: var(--danger-color);
}

.section-link {
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.section-link a {
    color: var(--accent-color);
    text-decoration: none;
}

.section-link a:hover {
    text-decoration: underline;
}

footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem 1.5rem;
    margin-top: 2rem;
}

footer .footer-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

footer h4 {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

footer p,
footer a {
    font-size: 0.8rem;
    line-height: 1.8;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
}

footer a:hover {
    color: #fff;
}

footer .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .stats {
        gap: 1.5rem;
    }

    .calendar-widget {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }

    .calendar-grid .cal-day {
        font-size: 0.68rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.2rem;
    }

    body {
        padding-top: 60px;
    }

    .section,
    .cta-section {
        background-attachment: scroll;
    }

    .featured-slider {
        height: 320px;
    }

    .featured-slider .slide-content .event-name {
        font-size: 1.6rem;
    }

    .featured-slider .slide-content {
        padding: 1.2rem;
    }

    .slider-controls button {
        width: 36px;
        height: 36px;
    }
}

        .agenda-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.85rem;
            min-height: 260px;
            height: 100%;
            padding: 2rem 1rem;
            color: var(--text-muted, #8a8f98);
        }
        .agenda-empty-icon {
            width: 56px;
            height: 56px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--accent-tint, rgba(31, 95, 67, 0.08));
            color: var(--text-muted, #8a8f98);
        }
        .agenda-empty-icon svg { width: 26px; height: 26px; }
        .agenda-empty p { margin: 0; font-size: 0.9rem; max-width: 260px; }
        .agenda-empty-link {
            font-size: 0.8rem;
            font-weight: 600;
            color: #1f5f43;
            text-decoration: none;
        }
        .agenda-empty-link:hover { text-decoration: underline; }

        .site-footer {
            position: relative;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.85rem;
            background-color: #12161c;
            background-image:
                linear-gradient(180deg, rgba(10, 14, 18, 0.94) 0%, rgba(10, 14, 18, 0.9) 45%, rgba(8, 11, 14, 0.97) 100%),
                url('dc-events/assets/footer-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            isolation: isolate;
        }
        .footer-top { padding: 3.5rem 2rem 2.5rem; max-width: 1200px; margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1.1fr 1.1fr 1.2fr; gap: 2.5rem; }
        @media (max-width: 1100px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

        .footer-col h4 {
            color: #fff;
            font-size: 0.95rem;
            margin: 0 0 1rem;
            display: flex;
            align-items: center;
            gap: 0.45rem;
            flex-wrap: wrap;
        }
        .footer-col h4 svg { width: 16px; height: 16px; flex-shrink: 0; }
        .footer-col a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            margin-bottom: 0.6rem;
            transition: color 0.2s ease;
        }
        .footer-col a svg { width: 16px; height: 16px; flex-shrink: 0; }
        .footer-col a:hover { color: #fff; }

        .footer-logo img { height: 30px; margin-bottom: 1rem; }
        .footer-about p { color: rgba(255, 255, 255, 0.6); line-height: 1.6; margin-bottom: 1.2rem; }
        .footer-social { display: flex; gap: 0.7rem; }
        .footer-social a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
        }
        .footer-social a svg { width: 16px; height: 16px; }
        .footer-social a:hover { background: #1f5f43; }

        .hours-status {
            font-size: 0.62rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 0.15rem 0.5rem;
            border-radius: 999px;
        }
        .hours-status.is-open { background: rgba(47, 138, 78, 0.18); color: #4fd07a; }
        .hours-status.is-closed { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.55); }
        .hours-list { list-style: none; margin: 0; padding: 0; }
        .hours-list li {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.35rem 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.6);
        }
        .hours-list li:last-child { border-bottom: none; }
        .hours-list li.is-today { color: #fff; font-weight: 600; }
        .hours-list .day { min-width: 80px; }

        .footer-address {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 0.4rem;
            font-size: 0.8rem;
        }
        .footer-address svg { width: 16px; height: 16px; flex-shrink: 0; }