/* ============================================
   Lotus Massage Wien – Main Stylesheet
   Theme: Lotus + Koi, Zen Oriental
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #2D6B4D;
    --color-primary-dark: #1E4A35;
    --color-primary-light: #A8D5BA;
    --color-accent: #8B1A2B;
    --color-accent-light: #C94C5C;
    --color-gold: #C9873A;
    --color-gold-light: #E8B86D;
    --color-pink: #F2C4C4;
    --color-pink-light: #FBE8E8;
    --color-bg: #FAF7F2;
    --color-bg-alt: #F0ECE3;
    --color-text: #2C2C2C;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --color-dark: #1A1A1A;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-card: 0 4px 16px rgba(45,107,77,0.08);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --header-height: 72px;
    --container-max: 1200px;
    --section-padding: 100px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 2000;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* --- Utilities --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.section__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section__title--center {
    text-align: center;
}

.section__subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn--primary {
    background: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(201, 135, 58, 0.3);
}

.btn--primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 135, 58, 0.4);
}

.btn--outline {
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition);
}

.header--scrolled {
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.header__logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 4px 0;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--color-primary-light);
    transition: all var(--transition);
}

.lang-switch:hover {
    border-color: var(--color-primary);
}

.lang-switch__active {
    color: var(--color-primary);
}

.lang-switch__divider {
    color: var(--color-primary-light);
}

.lang-switch__inactive {
    color: var(--color-text-light);
}

/* Hamburger Menu Button */
.header__menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    z-index: 1001;
}

.header__menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-text);
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--color-primary);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* <picture> wrappers should be transparent to layout */
.hero__bg picture,
.about__image picture,
.gallery__item picture {
    display: contents;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(45, 107, 77, 0.15) 0%,
        rgba(250, 247, 242, 0.3) 50%,
        rgba(250, 247, 242, 0.8) 100%
    );
}

.hero__content {
    text-align: center;
    padding-top: var(--header-height);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.3s;
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    color: var(--color-text);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.6s;
}

.hero__desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.8s;
}

.hero__cta {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 1s;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary);
    animation: bounce 2s infinite;
    opacity: 0.6;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* --- About Section --- */
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__text .section__badge {
    display: block;
}

.about__paragraph {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about__text .btn {
    margin-top: 20px;
}

.about__image {
    position: relative;
}

.about__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary-light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* --- Services Section --- */
.services {
    background: var(--color-bg-alt);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid transparent;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold-light);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card__price {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    padding: 4px 12px;
    background: rgba(201, 135, 58, 0.08);
    border-radius: 20px;
}

.services__info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* --- Prices Section --- */
.prices__table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    -webkit-overflow-scrolling: touch;
}

.prices__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    min-width: 700px;
}

.prices__table thead {
    background: var(--color-primary);
    color: var(--color-white);
}

.prices__table th {
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.prices__table th:first-child {
    text-align: left;
}

.prices__table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-bg-alt);
}

.prices__table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--color-text);
}

.prices__table tbody tr:nth-child(even) {
    background: var(--color-bg);
}

.prices__table tbody tr:hover {
    background: var(--color-pink-light);
}

.prices__table tbody td:not(:first-child) {
    color: var(--color-gold);
    font-weight: 600;
}

.prices__note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* --- Gallery Section --- */
.gallery {
    background: var(--color-bg-alt);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery__item--wide {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.gallery__item:hover figcaption {
    transform: translateY(0);
}

/* --- Contact Section --- */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__text {
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-size: 1.02rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.contact__item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact__item p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.5;
}

.contact__item a {
    color: var(--color-text);
    border-bottom: 1px solid transparent;
}

.contact__item a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact__map iframe {
    display: block;
}

/* --- Map consent gate (DSGVO) --- */
.map-consent {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 32px;
    background: var(--color-bg-alt, #f0ece4);
    background-image: linear-gradient(135deg, rgba(0,0,0,0.03) 25%, transparent 25%, transparent 50%, rgba(0,0,0,0.03) 50%, rgba(0,0,0,0.03) 75%, transparent 75%, transparent);
    background-size: 24px 24px;
    text-align: center;
}

.map-consent__inner {
    max-width: 360px;
}

.map-consent__icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.map-consent__text {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.map-consent__btn {
    cursor: pointer;
}

.map-consent__link {
    display: block;
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--color-primary);
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer__inner {
    text-align: center;
}

.footer__logo-img {
    height: 40px;
    width: auto;
    opacity: 0.95;
}

.footer__tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 8px;
    margin-bottom: 28px;
}

.footer__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.footer__nav a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer__nav a:hover {
    color: var(--color-primary-light);
}

.footer__legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer__legal a:hover {
    color: var(--color-primary-light);
}

.footer__copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* --- FAQ Section --- */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid var(--color-bg-alt);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    background: var(--color-white);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq__item:hover {
    box-shadow: var(--shadow-sm);
}

.faq__item[open] {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-card);
}

.faq__question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-text);
    transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq__item[open] .faq__question::after {
    content: '−';
}

.faq__item[open] .faq__question {
    color: var(--color-primary);
}

.faq__answer {
    padding: 0 24px 20px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- Floating Phone Button --- */
.float-phone {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(45, 107, 77, 0.4);
    z-index: 900;
    transition: all var(--transition);
    animation: pulse-phone 2s infinite;
}

.float-phone svg {
    width: 24px;
    height: 24px;
}

.float-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(45, 107, 77, 0.5);
}

@keyframes pulse-phone {
    0%, 100% { box-shadow: 0 4px 20px rgba(45, 107, 77, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(45, 107, 77, 0.6), 0 0 0 8px rgba(45, 107, 77, 0.1); }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 900;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item--wide {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --header-height: 64px;
    }

    .header__nav {
        display: none;
    }

    .header__menu-btn {
        display: flex;
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image {
        order: -1;
    }

    .about__image-accent {
        display: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery__item--wide {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

    .gallery__item {
        aspect-ratio: 16/10;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__map iframe {
        height: 300px;
    }

    .hero__scroll-hint {
        display: none;
    }

    .footer__nav {
        gap: 16px;
    }
}

/* --- Reduced Motion (Accessibility) --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero__title,
    .hero__subtitle,
    .hero__desc,
    .hero__cta {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }

    .float-phone {
        animation: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header__logo-img {
        height: 36px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .section__title {
        font-size: 1.6rem;
    }

    .prices__table {
        font-size: 0.85rem;
    }

    .prices__table th,
    .prices__table td {
        padding: 10px 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* --- Print Styles --- */
@media print {
    .header,
    .mobile-menu,
    .back-to-top,
    .float-phone,
    .hero__scroll-hint,
    .contact__map {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .hero {
        height: auto;
        min-height: 0;
        padding: 20px 0;
    }

    .hero__bg {
        display: none;
    }

    .hero__title,
    .hero__subtitle,
    .hero__desc,
    .hero__cta {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .section {
        padding: 30px 0;
    }

    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    a[href^="#"]::after,
    a[href^="tel"]::after {
        content: none;
    }
}
