/* ==========================================================================
   Schaltstelle - Modern Static Website Styles
   Colors: White (#ffffff), Purple (#221c35), Red (#e6443b)
   ========================================================================== */

/* Self-hosted Open Sans */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400 800;
    font-stretch: 100%;
    font-display: swap;
    src: url('fonts/open-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400 800;
    font-stretch: 100%;
    font-display: swap;
    src: url('fonts/open-sans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* CSS Variables */
:root {
    --color-primary: #221c35;
    --color-accent: #e6443b;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-dark: #1a1a2e;
    
    --font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --container-max: 1280px;
    --container-padding: 2rem;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-primary);
    background-color: var(--color-white);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: none;
    gap: 2rem;
}

.nav a {
    font-size: 1.05rem;
    color: var(--color-primary);
}

.nav a:hover {
    color: var(--color-accent);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.15s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-radius: 8px;
}

.mobile-nav a:hover {
    background: var(--color-light);
    color: var(--color-accent);
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .nav {
        display: flex;
    }
    
    .mobile-menu-btn,
    .mobile-nav {
        display: none;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light) 100%);
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* ==========================================================================
   Services Icons
   ========================================================================== */

.services-icons {
    padding: 3rem 0 5rem;
    background: var(--color-primary);
}

.icons-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    position: relative;
}

.icons-grid::-webkit-scrollbar {
    display: none;
}

.icons-scroll-hint {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.icons-scroll-hint.visible {
    opacity: 1;
}

.icons-scroll-hint.visible svg {
    animation: slideRight 1.5s ease-in-out infinite;
}

.icons-scroll-hint svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes slideRight {
    0% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(8px); opacity: 1; }
    100% { transform: translateX(16px); opacity: 0; }
}

@media (min-width: 768px) {
    .icons-scroll-hint {
        display: none;
    }
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    padding: 1rem;
    border-radius: 12px;
    transition: var(--transition);
    flex: 0 0 130px;
    scroll-snap-align: start;
}

.icon-item:hover {
    transform: translateY(-5px);
}

.icon-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.icon-item span {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .icons-grid {
        justify-content: center;
        overflow-x: visible;
        scroll-snap-type: none;
        position: static;
    }

    .icon-item {
        flex: 0 0 auto;
    }
    
    .icon-item img {
        width: 100px;
        height: 100px;
    }
}

/* ==========================================================================
   About Section (within purple services-icons)
   ========================================================================== */

.about-grid {
    display: grid;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card {
    color: var(--color-white);
}

.about-card h2 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    text-align: justify;
}

@media (min-width: 768px) {
    .about-card p {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    padding: 3rem 0;
}

.service-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.service-video {
    flex: 1;
}

.service-video video {
    width: 100%;
    height: auto;
    max-width: 375px;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h2 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--color-gray);
    text-align: justify;
}

@media (min-width: 768px) {
    .service-content p {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .service-row {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
    
    .service-row.reverse {
        flex-direction: row-reverse;
    }
    
    .service-video video {
        width: 50vw;
        max-width: 600px;
    }
}

/* ==========================================================================
   Team Section
   ========================================================================== */

.team {
    padding: 5rem 0;
    background: var(--color-light);
}

.team > .container > h2,
.team > .container > .section-subtitle {
    text-align: center;
}

.section-subtitle {
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

.team-card {
    padding: 0.75rem;
    text-align: center;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .team-card {
        background: var(--color-white);
        box-shadow: var(--shadow);
    }
}

@media (min-width: 768px) {
    .team-card {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }
}

.team-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .team-image {
        width: 150px;
        height: 150px;
        margin: 0 auto 1rem;
    }
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .team-card h3 {
        font-size: 1.1rem;
    }
}

.team-card .role {
    display: block;
    font-size: 0.75rem;
    color: var(--color-accent);
    margin-bottom: 0;
}

.team-card p {
    display: none;
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .team-card .role {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .team-card p {
        display: block;
    }
}

.social-links {
    display: none;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .social-links {
        display: flex;
    }
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-light);
    color: var(--color-primary);
}

.social-links a:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* Mobile: make team cards look tappable */
@media (max-width: 767px) {
    .team-card {
        cursor: pointer;
    }
}

/* ==========================================================================
   Member Modal (mobile only)
   ========================================================================== */

.member-modal-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--color-white);
    flex-direction: column;
}

.member-modal-overlay.active {
    display: flex;
}

.member-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-primary);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 1;
}

.member-modal-close:hover {
    background: var(--color-light);
    color: var(--color-accent);
}

.member-modal-body {
    position: relative;
    flex: 1;
    overflow-y: auto;
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
}

.member-modal-body .team-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.25rem;
}

.member-modal-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.member-modal-body .role {
    display: block;
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

.member-modal-body .member-modal-desc {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-modal-body .social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

/* ==========================================================================
   Clients Section
   ========================================================================== */

.clients {
    padding: 5rem 0;
}

.clients h2,
.clients .section-subtitle {
    text-align: center;
}

/* Carousel */
.carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel .client-logo {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.carousel .client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.carousel .client-logo img {
    max-height: 50px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.carousel-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(34, 28, 53, 0.25);
    background: var(--color-white);
    color: rgba(34, 28, 53, 0.4);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .carousel-btn {
        display: flex;
    }
}

.carousel-btn:hover {
    background: rgba(34, 28, 53, 0.08);
    color: var(--color-primary);
    border-color: rgba(34, 28, 53, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: var(--color-white);
    color: rgba(34, 28, 53, 0.4);
    border-color: rgba(34, 28, 53, 0.25);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 576px) {
    .carousel .client-logo {
        flex: 0 0 33.333%;
    }
    
    .carousel .client-logo img {
        max-height: 60px;
    }
}

@media (min-width: 768px) {
    .carousel .client-logo {
        flex: 0 0 25%;
    }
    
    .carousel .client-logo img {
        max-height: 70px;
    }
}

@media (min-width: 1024px) {
    .carousel .client-logo img {
        max-height: 80px;
    }
}

/* ==========================================================================
   Charta Section
   ========================================================================== */

.charta {
    padding: 5rem 0;
    background: var(--color-primary);
    color: var(--color-white);
}

.charta-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.charta-logo img {
    max-width: 200px;
    margin: 0 auto;
}

.charta-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.charta-text h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.charta-text p {
    opacity: 0.9;
    text-align: justify;
}

@media (min-width: 768px) {
    .charta-text p {
        text-align: left;
    }
}

.charta-text em {
    color: var(--color-accent);
    font-style: normal;
    font-weight: 600;
}

@media (min-width: 768px) {
    .charta-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .charta-logo {
        flex-shrink: 0;
    }
    
    .charta-logo img {
        max-width: 250px;
    }
}

/* ==========================================================================
   Community Section
   ========================================================================== */

.community {
    padding: 5rem 0;
    background: var(--color-light);
}

.community h2,
.community .section-subtitle {
    text-align: center;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}

.community-logo {
    padding: 0.5rem;
    transition: var(--transition);
}

.community-logo:hover {
    transform: scale(1.05);
}

.community-logo img {
    max-height: 40px;
    width: auto;
}

@media (min-width: 768px) {
    .community-grid {
        gap: 2rem;
    }

    .community-logo {
        padding: 1.5rem;
    }

    .community-logo img {
        max-height: 80px;
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    padding: 5rem 0;
    text-align: center;
    background: var(--color-accent);
    color: var(--color-white);
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--color-white);
}

.contact h2 {
    color: var(--color-white);
}

.contact p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact .btn-primary {
    background: var(--color-white);
    color: var(--color-accent);
}

.contact .btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 4rem 0 2rem;
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-brand a {
    text-decoration: underline;
}

.footer-brand a:hover {
    color: var(--color-accent);
}

.footer-contact h3 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact a {
    text-decoration: underline;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-nav a:hover {
    color: var(--color-accent);
    opacity: 1;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center {
    text-align: center;
}

.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;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* ==========================================================================
   Page Content (Impressum, Datenschutz)
   ========================================================================== */

.page-content {
    padding: 8rem 0 5rem;
    min-height: calc(100vh - 200px);
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.page-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.page-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.page-content a {
    color: var(--color-accent);
}

.page-content a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .page-content {
        padding: 10rem 0 5rem;
    }
    
    .page-content h1 {
        font-size: 3rem;
    }
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
    z-index: 99;
}

.scroll-to-top.visible {
    opacity: 0.7;
    visibility: visible;
}

.scroll-to-top:hover {
    opacity: 1;
    background: var(--color-accent);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   High Contrast Mode
   Activated automatically via OS/browser preference (prefers-contrast: high)
   or manually by adding class="high-contrast" to <html> for testing.
   ========================================================================== */

@media (prefers-contrast: high) {
    :root {
        --color-gray: #333333;
    }

    .hero-subtitle {
        color: var(--color-primary);
    }

    .about-card p {
        color: #ffffff;
    }

    .charta-text p,
    .charta-label {
        opacity: 1;
    }

    .footer-brand p,
    .footer-contact p,
    .footer-nav a {
        opacity: 1;
    }

    .contact p {
        opacity: 1;
    }

    .carousel .client-logo {
        filter: none;
        opacity: 1;
    }
}

html.high-contrast {
    --color-gray: #333333;
}

html.high-contrast .hero-subtitle {
    color: var(--color-primary);
}

html.high-contrast .about-card p {
    color: #ffffff;
}

html.high-contrast .charta-text p,
html.high-contrast .charta-label {
    opacity: 1;
}

html.high-contrast .footer-brand p,
html.high-contrast .footer-contact p,
html.high-contrast .footer-nav a {
    opacity: 1;
}

html.high-contrast .contact p {
    opacity: 1;
}

html.high-contrast .carousel .client-logo {
    filter: none;
    opacity: 1;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .header,
    .mobile-nav,
    .member-modal-overlay,
    .service-video video,
    .contact,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}
