:root {
    --color-primary:    #000000;
    --color-background: #ffffff;
    --color-accent:     #6a6edc;
    --color-accent-light:     #6a6edc88;
    --color-border:     #aaaaaa;

    --color-link:       #1788d3;
    --color-active:     #1788d3;

    --font-primary: "Work Sans", sans-serif;
    --font-secondary: "Roboto", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    background: var(--color-background);
    color: var(--color-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button, input, textarea, select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

.reveal {
    opacity: 0;
    transition: opacity 1s ease;
}

.reveal--visible {
    opacity: 1;
}

.reveal-instant {
    opacity: 0;
    transition: opacity 1s ease;
}

.reveal-instant--visible {
    opacity: 1;
}

/* ====================================================== */
/* --- LARGE SCREEN VIEW --- */
/* ====================================================== */
@media (min-width: 1201px) {
    /* --- NAV --- */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: var(--color-background);
        border-bottom: 1px solid var(--color-border);
    }

    .notice{
        width: 100%;
        background-color: var(--color-accent);
        color: var(--color-background);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 36px;
    }

    .nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 150px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .nav__logo{
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 0;
    }

    .nav__menu{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }

    .nav__links{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
        text-transform: uppercase;
    }

    .nav__options {
        display: none;
    }

    .nav__logo-img{
        height: 100%;
    }

    .nav__link {
        position: relative;
        padding-bottom: 4px;
    }

    .nav__link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: var(--color-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .nav__link:hover::after,
    .nav__link:focus-visible::after {
        transform: scaleX(1);
    }

    .nav__link[aria-current="page"] {
        color: var(--color-active);
    }

    /* --- LANG BUTTONS --- */
    .languages{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .lang__btn {
        height: 32px;
        cursor: pointer;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: filter 0.2s ease, opacity 0.2s ease;
    }

    .lang__btn--active {
        filter: grayscale(0%);
        opacity: 1;
    }

    .lang__img{
        height: 100%;
    }

    /* --- STRUCTURAL --- */
    .upper-spacer{
        height: 180px;
    }

    .standard-section{
        width: 100%;
    }

    .section-content{
        width: 1200px;
        margin: 0 auto;
    }

    .section-title{
        text-transform: uppercase;
        font-weight: 400;
        font-size: 40px;
        text-align: center;
        margin: 0 0 40px 0;
        letter-spacing: 0.1rem;
    }

    .section-subtitle{
        text-transform: uppercase;
        font-weight: 400;
        font-size: 24px;
        text-align: center;
        letter-spacing: 0.1rem;
    }

    .section-spacer{
        width: 100%;
        height: 64px;
    }

    .standard-img-container{
        border-radius: 32px;
        overflow: hidden;
    }

    .standard-img{
        width: 100%;
    }

    .standard-text{
        font-size: 20px;
        letter-spacing: 0.05rem;
    }

    .centered-standard-text{
        font-size: 20px;
        letter-spacing: 0.05rem;
        text-align: center;
    }

    .checkmark-li{
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: center;
    }

    .checkmark{
        height: 32px;
    }

    .link{
        cursor: pointer;
        color: var(--color-link);
    }

    .page-title{
        text-align: center;
        font-weight: 400;
        text-transform: uppercase;
        padding: 32px;
    }

    /* --- HERO --- */
    .hero {
        position: relative;
        width: 1200px;
        margin: 0 auto;
        overflow: hidden;
    }

    .hero__img {
        width: 100%;
        display: block;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;                                  /* fill the hero */
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        padding: 0 64px;
        /* dark scrim on the left so white text stays legible */
        background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.55) 60%, transparent 100%);
        color: #fff;
    }

    .hero__eyebrow {
        font-size: 24px;
    }
    .hero__title {
        font-size: 48px;
        font-weight: 600;
        line-height: 1.15;
        max-width: 60%;
    }

    .hero__actions {
        display: flex;
        gap: 16px;
    }

    .btn {
        padding: 16px 28px;
        border-radius: 8px;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 0.05rem;
        transition: 0.2s;
    }

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

    .btn--primary:hover { filter: brightness(1.1); }

    .btn--outline {
        border: 2px solid #fff;
        color: #fff;
    }

    .btn--outline:hover { background: #fff; color: var(--color-primary); }

    /* --- ABOUT --- */
    .about{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .about__left{
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .about__name{
        font-size: 32px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.1rem;
    }

    .about__exp{
        font-size: 48px;
        font-weight: 400;
        letter-spacing: 0.1rem;
    }

    .about__location a{
        font-size: 24px;
        font-weight: 400;
        display: flex;
        flex-direction: row;
        letter-spacing: 0.1rem;
        gap: 8px;
    }

    .about__location a:hover{
        text-decoration: underline;
    }

    .about__pin{
        height: 28px;
    }

    .about__right{
        width: 32%;
    }

    /* --- CLINIC --- */
    .clinic{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .clinic__left{
        width: 25%;
    }

    .clinic__right{
        width: 65%;
    }

    .clinic__ul{
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0 0 16px 0;
    }

    /* --- TREATMENTS --- */
    .treatments{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 300px);
        justify-content: space-between;
    }

    .treatment{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 0 32px;
    }

    .treatment__img-container{
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-radius: 24px;
    }

    .treatment__img{
        width: 100%;
    }

    .treatment__title{
        font-size: 20px;
        text-align: center;
        text-transform: uppercase;
    }

    /* --- TRAVEL --- */
    .travel{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .travel__left{
        width: 40%;
    }

    .travel__right{
        width: 50%;
    }

    /* --- BTT BUTTON --- */
    .btt{
        width: 100%;
    }

    .btt-btn{
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--color-primary);
        border-radius: 8px;
        padding: 16px;
        transition: 0.2s;
        cursor: pointer;
    }

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

    .btt__text{
        transition: 0.2s;
    }

    .btt-btn:hover .btt__text{
        color: var(--color-background);
    }

    .btt__arrow{
        height: 24px;
        transition: 0.2s;
    }

    .btt-btn:hover .btt__arrow{
        filter: invert(100%);
    }

    /* --- FOOTER --- */
    .footer{
        width: 100%;
        border-top: 1px solid var(--color-border);
    }

    .footer__content{
        width: 1200px;
        margin: 0 auto;
        padding: 64px 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__col{
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer__title{
        font-size: 20px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .footer__ul{
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer__a{
        display: flex;
        flex-direction: row;
        gap: 16px;
    }

    .footer__a:hover{
        text-decoration: underline;
    }

    .footer__svg{
        height: 24px;
    }

    /* --- ENDER --- */
    .ender{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 32px;
        background-color: var(--color-border);
    }

    /* --- PRICES --- */
    .prices{
        width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 42px;
        min-height: 100vh;
    }

    .prices__group{
        width: 100%;
        border: 1px solid var(--color-border);
        border-radius: 8px;
        overflow: hidden;
    }

    .prices__title{
        width: 100%;
        background-color: var(--color-accent-light);
        text-align: center;
        font-weight: 400;
        text-transform: uppercase;
        padding: 16px;
    }

    .prices__ul{
        width: 100%;
    }

    .prices__li{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px;
    }

    .prices__li:nth-child(odd){
        background-color: var(--color-background);
    }

    .prices__li:nth-child(even){
        background-color: #ebebeb;
    }

    .prices__price{
        min-width: 100px;
        text-align: right;
    }

    /* --- TOURISM --- */
    .tourism-hero{
        width: 100%;
        height: 600px;
        position: relative;
    }

    .tourism-hero__title-container{
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tourism-hero__title{
        width: 100%;
        background-color: #00000066;
        text-align: center;
        padding: 24px;
        color: var(--color-background);
        font-weight: 400;
        font-size: 64px;
    }

    .tourism-offers{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .tourism-offer{
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .tourism-offer__img-container{
        width: 40%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tourism-offer__img{
        width: 100%;
    }

    .tourism-whys{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 64px;
        padding: 32px 0;
    }

    .tourism-whys__top{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .tourism-whys__bottom{
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .tourism-whys__img-container{
        width: 400px;
        border-radius: 24px;
        overflow: hidden;
    }

    .tourism-whys__img{
        width: 100%;
    }

    .tourism-whys__content{
        width: 700px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* --- CONTACT --- */
    .contact{
        width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .contact__card{
        width: 550px;
        border: 1px solid var(--color-border);
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .contact__subtitle-container{
        width: 100%;
        background-color: var(--color-accent-light);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 16px;
    }

    .contact__ul{
        display: flex;
        flex-direction: column;
        gap: 16px;
        border-top: 1px solid var(--color-border);
        padding: 16px 32px 32px 32px;
    }

    .contact__li{
        font-size: 20px;
    }

    .contact__a{
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .contact__a:hover{
        text-decoration: underline;
    }

    .contact__svg{
        height: 28px;
    }

    .map-container{
        width: 1200px;
        height: 600px;
        margin: 0 auto;
    }

    /* --- GALLERY --- */
    .gallery{
        width: 1200px;
        margin: 0 auto;
        min-height: 100vh;
    }

    .gallery__grid{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .gallery__item{
        position: relative;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        cursor: pointer;
        border-radius: 12px;
        background: var(--color-accent-light);
    }

    .gallery__item img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery__item:hover img{
        transform: scale(1.06);
    }

    .gallery__item__overlay{
        position: absolute;
        inset: 0;
        background: var(--color-accent);
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .gallery__item:hover .gallery__item__overlay{
        opacity: 0.15;
    }

    /* ====================================================== */
    /* --- DISCOUNTS --- */
    /* ====================================================== */

    .discounts {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .discounts__track {
        display: flex;
        width: 100%;
        transition: transform 0.4s ease;
    }

    .discount-card {
        flex: 0 0 calc(100% / 3);
        padding: 0 8px;
    }

    .discount-card__header,
    .discount-card__body,
    .discount-card__footer {
        border-left: 1px solid var(--color-border);
        border-right: 1px solid var(--color-border);
    }

    .discount-card__header {
        border-top: 1px solid var(--color-border);
        border-radius: 8px 8px 0 0;
        min-height: 110px;
        padding: 16px;
        background-color: var(--color-accent-light);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .discount-card__badge {
        display: inline-block;
        padding: 6px 14px;
        border-radius: 999px;
        background-color: var(--color-accent);
        color: var(--color-background);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.08rem;
    }

    .discount-card__header-text {
        text-align: center;
        font-size: 18px;
        letter-spacing: 0.04rem;
    }

    .discount-card__body {
        min-height: 190px;
        padding: 24px 16px;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;

        background-color: var(--color-background);
    }

    .discount-card__title {
        font-size: 24px;
        font-weight: 400;
        text-align: center;
        text-transform: uppercase;
    }

    .discount-card__prices {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .discount-card__old-price {
        font-size: 18px;
        text-decoration: line-through;
        opacity: 0.6;
    }

    .discount-card__new-price {
        font-size: 32px;
        font-weight: 500;
        color: var(--color-accent);
    }

    .discount-card__footer {
        border-bottom: 1px solid var(--color-border);
        border-radius: 0 0 8px 8px;
        min-height: 70px;
        padding: 16px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;
        font-size: 16px;
    }

    .discounts__controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        margin-top: 24px;
    }

    .discounts__controls--hidden {
        display: none;
    }

    .discounts__arrow {
        width: 40px;
        height: 40px;
        border: 1px solid var(--color-border);
        border-radius: 50%;
        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: center;

        transition: 0.2s;
    }

    .discounts__arrow:hover {
        background-color: var(--color-primary);
        color: var(--color-background);
    }

    .discounts__dots {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .discounts__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--color-border);
        cursor: pointer;
        transition: 0.2s;
    }

    .discounts__dot--active {
        background-color: var(--color-accent);
        transform: scale(1.3);
    }

    .discounts__loading,
    .discounts__error {
        width: 100%;
        text-align: center;
        padding: 32px;
    }

    .discounts--empty {
        display: none;
    }
}

/* ====================================================== */
/* --- MOBILE VIEW --- */
/* ====================================================== */
@media (max-width: 1200px) {
    /* --- NAV --- */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: var(--color-background);
        border-bottom: 1px solid var(--color-border);
    }

    .notice{
        width: 100%;
        height: 40px;
        background-color: var(--color-accent);
        color: var(--color-background);
        padding: 4px;
        font-size: 14px;
        text-align: center;
    }

    .nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 80px;
        padding: 4px 12px;
        position: relative;
    }

    .nav__logo{
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav__logo-img{
        height: 100%;
    }

    .nav__menu {
        display: none;
    }

    .nav__menu--open{
        position: absolute;
        top: 100%;
        left: 0;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        width: 100%;
        padding: 24px;
        display: flex;
        flex-direction: column-reverse;
        gap: 12px;
        background-color: var(--color-background);
    }

    .nav__links{
        display: flex;
        flex-direction: column;
    }
    
    .nav__link{
        display: block;
        padding: 12px 0;
        border-top: 1px solid var(--color-border);
        text-transform: uppercase;
    }

    .nav__options{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .nav__call{
        height: 24px;
        width: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .nav__phone{
        width: 100%;
    }

    .nav__toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
    }

    .nav__toggle span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--color-primary);
    }

    /* --- LANG BUTTONS --- */
    .languages{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .lang__btn {
        height: 32px;
        cursor: pointer;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: filter 0.2s ease, opacity 0.2s ease;
    }

    .lang__btn--active {
        filter: grayscale(0%);
        opacity: 1;
    }

    .lang__img{
        height: 100%;
    }

    /* --- STRUCTURAL --- */
    .upper-spacer{
        height: 120px;
    }

    .standard-section{
        width: 100%;
    }

    .section-content{
        width: 100%;
    }

    .section-title{
        text-transform: uppercase;
        font-weight: 400;
        font-size: 24px;
        text-align: center;
        margin: 0 0 16px 0;
        letter-spacing: 0.1rem;
        padding: 0 8px;
    }

    .section-subtitle{
        text-transform: uppercase;
        font-weight: 400;
        font-size: 20px;
        text-align: center;
        letter-spacing: 0.1rem;
    }

    .section-spacer{
        width: 100%;
        height: 48px;
    }

    .standard-img-container{
        border-radius: 24px;
        overflow: hidden;
    }

    .standard-img{
        width: 100%;
    }

    .standard-text{
        letter-spacing: 0.05rem;
    }

    .centered-standard-text{
        letter-spacing: 0.05rem;
        text-align: center;
    }

    .checkmark-li{
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .checkmark{
        height: 24px;
    }

    .page-title{
        text-align: center;
        font-weight: 400;
        text-transform: uppercase;
        padding: 24px;
        font-size: 24px;
    }

    /* --- HERO --- */
    .hero {
        width: 100%;
    }

    .hero__img {
        width: 100%;
        display: block;
    }

    .hero__overlay {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 16px;
    }

    .hero__eyebrow {
        font-size: 20px;
        text-align: center;
    }
    .hero__title {
        font-size: 24px;
        font-weight: 600;
        text-align: center;
    }

    .hero__actions {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .btn {
        padding: 12px;
        border-radius: 8px;
        font-size: 14px;
        text-transform: uppercase;
    }

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

    .btn--outline {
        border: 2px solid var(--color-primary);
    }

    /* --- ABOUT --- */
    .about{
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
        padding: 0 16px;
    }

    .about__left{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .about__name{
        font-size: 20px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.1rem;
        text-align: center;
    }

    .about__exp{
        font-size: 24px;
        font-weight: 400;
        letter-spacing: 0.1rem;
        text-align: center;
    }

    .about__location a{
        font-size: 18px;
        font-weight: 400;
        display: flex;
        flex-direction: row;
        justify-content: center;
        letter-spacing: 0.1rem;
        text-align: center;
        padding: 0 16px;
    }

    .about__pin{
        height: 28px;
    }

    .about__right{
        width: 100%;
    }

    /* --- CLINIC --- */
    .clinic{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 0 16px;
    }

    .clinic__left{
        width: 100%;
    }

    .clinic__right{
        width: 100%;
    }

    .clinic__ul{
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0 0 16px 0;
    }

    /* --- TREATMENTS --- */
    .treatments{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 50%);
    }

    .treatment{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 6px 16px;
    }

    .treatment__img-container{
        width: 100%;
        overflow: hidden;
        border-radius: 24px;
    }

    .treatment__img{
        width: 100%;
    }

    .treatment__title{
        font-size: 14px;
        text-align: center;
        text-transform: uppercase;
    }

    /* --- TRAVEL --- */
    .travel{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 0 16px;
    }

    .travel__left{
        width: 100%;
    }

    .travel__right{
        width: 100%;
    }

    /* --- BTT BUTTON --- */
    .btt{
        width: 100%;
    }

    .btt-btn{
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--color-primary);
        border-radius: 8px;
        padding: 16px;
        cursor: pointer;
    }

    .btt__arrow{
        height: 24px;
        transition: 0.2s;
    }

    /* --- FOOTER --- */
    .footer{
        width: 100%;
        border-top: 1px solid var(--color-border);
    }

    .footer__content{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 32px 16px;
    }

    .footer__col{
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer__title{
        font-size: 18px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .footer__ul{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer__a{
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .footer__svg{
        height: 24px;
    }

    /* --- ENDER --- */
    .ender{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 32px;
        background-color: var(--color-border);
    }

    /* --- PRICES --- */
    .prices{
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 0 16px;
    }

    .prices__group{
        width: 100%;
        border: 1px solid var(--color-border);
        border-radius: 6px;
        overflow: hidden;
    }

    .prices__title{
        width: 100%;
        background-color: var(--color-accent-light);
        text-align: center;
        font-weight: 400;
        text-transform: uppercase;
        padding: 16px;
        font-size: 16px;
    }

    .prices__ul{
        width: 100%;
    }

    .prices__li{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8px;
        font-size: 14px;
    }

    .prices__li:nth-child(odd){
        background-color: var(--color-background);
    }

    .prices__li:nth-child(even){
        background-color: #ebebeb;
    }

    .prices__price{
        min-width: 80px;
        text-align: right;
    }

    /* --- TOURISM --- */
    .tourism-hero{
        width: 100%;
        position: relative;
    }

    .tourism-hero__title-container{
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tourism-hero__title{
        width: 100%;
        background-color: #00000066;
        text-align: center;
        padding: 8px;
        color: var(--color-background);
        font-weight: 400;
        font-size: 32px;
    }

    .tourism-offers{
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        padding: 0 8px;
    }

    .tourism-offer{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .tourism-offer__img-container{
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tourism-offer__img{
        height: 100%;
    }

    .tourism-whys{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 48px;
        padding: 0 16px;
    }

    .tourism-whys__top, .tourism-whys__bottom{
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .tourism-whys__img-container{
        width:100%;
        border-radius: 24px;
        overflow: hidden;
    }

    .tourism-whys__img{
        width: 100%;
    }

    .tourism-whys__content{
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* --- CONTACT --- */
    .contact{
        width: 100%;
        padding: 0 8px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact__card{
        width: 100%;
        border: 1px solid var(--color-border);
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .contact__subtitle-container{
        width: 100%;
        background-color: var(--color-accent-light);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 16px;
    }

    .contact__ul{
        display: flex;
        flex-direction: column;
        gap: 8px;
        border-top: 1px solid var(--color-border);
        padding: 16px 32px 32px 32px;
    }

    .contact__li{
        font-size: 16px;
    }

    .contact__a{
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .contact__a:hover{
        text-decoration: underline;
    }

    .contact__svg{
        height: 20px;
    }

    .map-container{
        width: 100%;
        height: 300px;
    }

    /* --- GALLERY --- */
    .gallery{
        width: 100%;
        padding: 0 16px;
        min-height: 100vh;
    }

    .gallery__grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .gallery__item{
        position: relative;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        cursor: pointer;
        border-radius: 8px;
    }

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

    /* --- DISCOUNTS --- */

    .discounts {
        width: 100%;
        padding: 0 8px;
    }

    .discount-card {
        flex: 0 0 50%;
        padding: 0 8px;
    }

    .discount-card__header {
        min-height: 100px;
    }

    .discount-card__header-text {
        font-size: 16px;
    }

    .discount-card__body {
        min-height: 170px;
        padding: 20px 12px;
        gap: 20px;
    }

    .discount-card__title {
        font-size: 20px;
    }

    .discount-card__new-price {
        font-size: 28px;
    }

    .discount-card__footer {
        font-size: 14px;
    }

    .discounts__controls {
        margin-top: 16px;
    }
}

/* --- LIGHTBOX (all screen sizes) --- */
    .lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .lightbox.active {
        opacity: 1;
        pointer-events: all;
    }

    .lightbox__img-wrap {
        max-width: 90vw;
        max-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox__img-wrap img {
        max-width: 90vw;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 8px;
        user-select: none;
    }

    .lightbox__close,
    .lightbox__prev,
    .lightbox__next {
        position: absolute;
        color: #fff;
        cursor: pointer;
        line-height: 1;
        transition: color 0.2s ease;
    }

    .lightbox__close { top: 24px; right: 32px; font-size: 1.8rem; }

    .lightbox__prev,
    .lightbox__next {
        top: 50%;
        transform: translateY(-50%);
        font-size: 4rem;
        padding: 0 24px;
    }

    .lightbox__prev { left: 0; }
    .lightbox__next { right: 0; }

    .lightbox__close:hover,
    .lightbox__prev:hover,
    .lightbox__next:hover {
        color: var(--color-accent);
    }

    .lightbox__counter {
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.6);
    }

/* --- PRICES: discount styling (append to styles.css) --- */
.prices__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--color-accent);
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 8px;
    vertical-align: middle;
}

.prices__price--discount {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 16px;
    line-height: 1.2;
}

.prices__old {
    text-decoration: line-through;
    color: #999;
}

.prices__new {
    color: var(--color-accent);
    font-weight: 600;
}

.prices__loading,
.prices__error {
    text-align: center;
    padding: 24px;
    color: #777;
}