* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: #f4f4f0;
    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    padding: 0 5vw;

    display: flex;
    align-items: center;

    background: rgba(11, 11, 11, 0.75);

    backdrop-filter: blur(12px);

    z-index: 1000;
}

.logo {
    flex-shrink: 0;

    font-size: 20px;
    font-weight: 700;

    letter-spacing: 4px;
}

.navigation {
    display: flex;
    align-items: center;

    gap: 34px;

    margin-left: auto;
}

.navigation a {
    color: #aaa;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

.navigation a:hover {
    color: #fff;
}

.header-button {
    margin-left: 35px;

    padding: 15px 24px;

    border: 1px solid #f4f4f0;

    background: #f4f4f0;
    color: #111;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.5px;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.header-button:hover {
    background: transparent;
    color: #fff;

    transform: translateY(-2px);
}

.mobile-header-button {
    display: none;
}

.language-switcher {
    display: flex;
    align-items: center;

    gap: 0;

    margin-left: 25px;
}

.language-button {
    min-width: 38px;

    padding: 10px 5px;

    border: none;

    background: transparent;
    color: #666;

    font-size: 12px;

    line-height: 1;

    letter-spacing: 1px;

    transition: color 0.3s ease;
}

.language-button.active {
    color: #fff;
}

.mobile-menu-button {
    display: none;

    position: relative;

    width: 40px;
    height: 40px;

    min-width: 40px;

    margin-left: 8px;
    padding: 0;

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

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 50%;

    background: transparent;

    z-index: 2100;

    flex-shrink: 0;
}

.mobile-menu-button span {
    position: absolute;
    left: 50%;

    width: 19px;
    height: 1px;

    background: #fff;

    transform-origin: center;

    transition:
        transform 0.3s ease,
        opacity 0.25s ease;
}

.mobile-menu-button span:nth-child(1) {
    transform:
        translateX(-50%)
        translateY(-5px);
}

.mobile-menu-button span:nth-child(2) {
    transform:
        translateX(-50%);
}

.mobile-menu-button span:nth-child(3) {
    transform:
        translateX(-50%)
        translateY(5px);
}

.mobile-menu-button.active span:nth-child(1) {
    transform:
        translateX(-50%)
        rotate(45deg);
}

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

.mobile-menu-button.active span:nth-child(3) {
    transform:
        translateX(-50%)
        rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: flex-end;

    padding: 160px 5vw 95px;

    overflow: hidden;

    background-image:
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.58) 38%,
            rgba(0, 0, 0, 0.22) 72%,
            rgba(0, 0, 0, 0.08) 100%
        );

    z-index: 0;
}

.hero-content {
    position: relative;

    z-index: 1;

    width: 100%;
    max-width: 1300px;

    margin: 0 auto;
}

.hero-label {
    display: flex;

    gap: 30px;

    margin-bottom: 35px;

    color: #aaa;

    font-size: 10px;

    letter-spacing: 3px;
}

.hero h1 {
    max-width: 1050px;

    margin-bottom: 55px;

    font-size: clamp(58px, 8.5vw, 132px);

    line-height: 0.86;

    letter-spacing: -8px;

    font-weight: 700;

    text-transform: uppercase;
}

.hero h1 span {
    color: #888;
}

.hero-bottom {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    max-width: 950px;
}

.hero-description {
    max-width: 420px;

    color: #b5b5b5;

    font-size: 14px;

    line-height: 1.8;

    letter-spacing: 0.2px;
}

.main-button {
    padding: 19px 34px;

    border: 1px solid #fff;

    background: #fff;
    color: #111;

    white-space: nowrap;

    letter-spacing: 0.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.main-button:hover {
    background: transparent;
    color: #fff;

    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;

    right: 5vw;
    bottom: 80px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 15px;

    color: #777;

    font-size: 9px;

    letter-spacing: 3px;

    writing-mode: vertical-rl;
}

.hero-scroll span {
    display: block;

    width: 1px;
    height: 50px;

    background: #777;
}

.philosophy,
.services,
.portfolio,
.pricing {
    padding: 150px 5vw;
}

.section-number {
    margin-bottom: 80px;

    color: #666;

    font-size: 10px;

    letter-spacing: 3px;
}

.subtitle {
    margin-bottom: 25px;

    color: #777;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
}

.section-top {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 80px;
}

.section-top h2,
.philosophy h2,
.why-us h2,
.final-cta h2,
.contacts h2 {
    font-size: clamp(55px, 7vw, 105px);

    line-height: 0.9;

    letter-spacing: -6px;
}

.section-intro {
    max-width: 340px;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}

.philosophy {
    background: #f0f0ec;

    color: #111;
}

.philosophy-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10vw;
}

.philosophy h2 span {
    color: #999;
}

.philosophy-text {
    max-width: 520px;

    padding-top: 50px;
}

.large-text {
    margin-bottom: 45px;

    font-size: 28px;

    line-height: 1.35;
}

.philosophy-text > p:last-child {
    color: #666;

    font-size: 15px;

    line-height: 1.8;
}

.services {
    background: #0b0b0b;
}

.services-list {
    border-top: 1px solid #333;
}

.service-item {
    display: grid;

    grid-template-columns: 80px 1fr 50px;

    align-items: center;

    padding: 38px 0;

    border-bottom: 1px solid #222;

    transition:
        padding 0.35s ease;
}

.service-item:hover {
    padding-left: 20px;
}

.service-item > span {
    color: #666;

    font-size: 11px;
}

.service-item h3 {
    margin: 0;

    font-size: 26px;
    font-weight: 500;

    letter-spacing: -0.5px;

    text-transform: uppercase;

    transition:
        transform 0.35s ease;
}

.service-item:hover h3 {
    transform: translateX(8px);
}

.service-item p {
    max-width: 560px;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}

.service-item strong {
    color: #777;

    font-size: 24px;
    font-weight: 300;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.service-item:hover strong {
    color: white;

    transform: translateX(8px);
}

.results {
    padding: 150px 5vw;

    background: #151515;
}

.results-top {
    margin-bottom: 70px;
}

.comparison {
    position: relative;

    width: 100%;

    height: min(70vh, 700px);

    overflow: hidden;
}

.comparison-after,
.comparison-before img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.comparison-after {
    position: absolute;

    inset: 0;
}

.comparison-before {
    position: absolute;

    top: 0;
    left: 0;

    width: 50%;
    height: 100%;

    overflow: hidden;

    z-index: 2;
}

.comparison-before img {
    position: absolute;

    top: 0;
    left: 0;

    width: 100vw;

    max-width: none;
}

.comparison-label {
    position: absolute;

    top: 25px;

    padding: 10px 14px;

    background: rgba(0, 0, 0, 0.65);

    font-size: 10px;

    letter-spacing: 2px;

    z-index: 4;
}

.comparison-label-before {
    left: 25px;
}

.comparison-label-after {
    right: 25px;
}

.comparison-line {
    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;

    background: rgba(255, 255, 255, 0.85);

    z-index: 3;

    pointer-events: none;
}

.comparison-button {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 46px;
    height: 46px;

    display: flex;

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

    transform: translate(-50%, -50%);

    border: 1px solid rgba(255, 255, 255, 0.7);

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);

    color: white;

    font-size: 18px;
    font-weight: 300;

    backdrop-filter: blur(6px);

    z-index: 4;

    pointer-events: none;
}

.comparison-range {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    margin: 0;

    opacity: 0;

    cursor: ew-resize;

    z-index: 5;
}

.portfolio {
    background: #f0f0ec;

    color: #111;
}

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 20px;
}

.portfolio-item {
    position: relative;

    height: 500px;

    overflow: hidden;

    background: #222;
}

.portfolio-item:nth-child(1) {
    grid-column: span 6;
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(3),
.portfolio-item:nth-child(4) {
    grid-column: span 2;
}

.portfolio-item:nth-child(5) {
    grid-column: span 6;
}

.portfolio-wide {
    grid-column: span 2;

    height: 650px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: contrast(1);

    transition:
        transform 0.9s cubic-bezier(.2, .7, .2, 1),
        filter 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.06);

    filter: contrast(1.08);
}

.portfolio-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.12);

    transition:
        background 0.4s ease;

    pointer-events: none;
}

.portfolio-item:hover::after {
    background: rgba(0, 0, 0, 0.32);
}

.portfolio-caption {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 16px 18px;

    background: rgba(0, 0, 0, 0.65);

    color: white;

    backdrop-filter: blur(10px);

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.portfolio-item:hover .portfolio-caption {
    transform: translateY(-6px);

    background: rgba(0, 0, 0, 0.78);
}

.portfolio-caption span {
    color: #aaa;

    font-size: 9px;

    letter-spacing: 2px;
}

.portfolio-caption h3 {
    margin: 0;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}

.why-us {
    padding: 150px 5vw;

    background: #bfc0bc;

    color: #111;
}

.why-us-heading {
    max-width: 850px;

    margin-bottom: 100px;
}

.why-us h2 span {
    color: #777;
}

.advantages {
    width: 100%;

    margin-left: auto;

    border-top: 1px solid #999;
}

.advantage {
    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 40px;

    padding: 38px 0;

    border-bottom: 1px solid #999;

    transition:
        padding-left 0.4s ease,
        border-color 0.4s ease;
}

.advantage:hover {
    padding-left: 18px;

    border-bottom-color: #fff;
}

.advantage > span {
    color: #777;

    font-size: 10px;
}

.advantage h3 {
    margin-bottom: 10px;

    font-size: 23px;
    font-weight: 500;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.advantage:hover h3 {
    transform: translateX(6px);

    color: #fff;
}

.advantage p {
    max-width: 700px;

    margin: 0;

    color: #5f605d;

    font-size: 14px;

    line-height: 1.7;

    transition:
        color 0.35s ease;
}

.advantage:hover p {
    color: #888;
}

.pricing {
    background: #0b0b0b;
}

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: #333;
}

.price-card {
    min-height: 610px;

    padding: 35px;

    display: flex;
    flex-direction: column;

    background: #0b0b0b;

    border: 1px solid #1c1c1c;

    transition:
        background 0.4s ease,
        color 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s ease;
}

.price-card:hover {
    transform: translateY(-6px);

    border-color: #444;
}

.price-card.featured {
    background: #151515;

    border-color: #3a3a3a;

    transform: translateY(-8px);
}

.price-card.featured:hover {
    transform: translateY(-14px);
}

.price-card-top {
    display: flex;

    justify-content: space-between;

    margin-bottom: 100px;

    color: #999;

    font-size: 9px;

    letter-spacing: 2px;
}

.price-card h3 {
    margin-bottom: 15px;

    font-size: 40px;
    font-weight: 400;

    letter-spacing: -2px;
}

.price {
    margin-bottom: 30px;

    font-size: 32px;
    font-weight: 500;

    letter-spacing: -0.5px;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.price-card:hover .price {
    transform: translateX(5px);
}

.price-description {
    max-width: 300px;

    margin-bottom: 35px;

    color: #777;

    font-size: 14px;

    line-height: 1.7;

    transition:
        color 0.35s ease;
}

.price-card:hover .price-description {
    color: #fff;
}

.price-card ul {
    list-style: none;

    margin-bottom: 40px;
}

.price-card li {
    padding: 9px 0;

    border-bottom: 1px solid #222;

    color: #888;

    font-size: 13px;

    transition:
        color 0.35s ease,
        border-color 0.35s ease;
}

.price-card:hover li {
    border-color: #ccc;

    color: #fff;
}

.price-button {
    position: relative;

    overflow: hidden;

    width: 100%;

    margin-top: auto;

    padding: 17px;

    border: 1px solid #555;

    background: transparent;

    color: #fff;

    font-size: 12px;

    cursor: pointer;

    isolation: isolate;

    transition:
        color 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s ease;
}

.price-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background: #fff;

    transform: scaleX(0);

    transform-origin: left center;

    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    z-index: 0;
}

.price-button:hover::before {
    transform: scaleX(1);
}

.price-button:hover {
    border-color: #fff;

    color: #000;

    transform: translateY(-2px);
}

.price-button span {
    position: relative;

    z-index: 1;
}

.final-cta {
    padding: 190px 5vw;

    text-align: center;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.62),
            rgba(0, 0, 0, 0.88)
        ),
        url("images/work-5.jpg");

    background-size: cover;

    background-position: center;

    position: relative;
}

.final-cta h2 {
    max-width: 900px;

    margin: 0 auto 30px;

    font-size: clamp(48px, 7vw, 92px);

    line-height: 0.9;

    letter-spacing: -4px;

    font-weight: 600;

    text-transform: uppercase;
}

.final-cta h2 span {
    color: #888;
}

.final-cta > p:not(.subtitle) {
    max-width: 480px;

    margin: 0 auto 45px;

    color: #aaa;

    font-size: 15px;

    line-height: 1.8;
}

.final-button {
    display: inline-block;

    padding: 20px 38px;

    border: 1px solid #fff;

    background: #fff;
    color: #111;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.5px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.final-button:hover {
    background: transparent;

    color: #fff;

    transform: translateY(-3px);
}

.contacts {
    padding: 180px 5vw;

    background: #f0f0ec;

    color: #111;
}

.contacts-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    margin-bottom: 85px;

    border-top: 1px solid #bbb;
}

.contact-item {
    padding: 42px 0;

    border-bottom: 1px solid #bbb;

    transition:
        padding-left 0.35s ease,
        border-color 0.35s ease;
}

.contact-item:nth-child(odd) {
    margin-right: 50px;
}

.contact-item span {
    display: block;

    margin-bottom: 18px;

    color: #888;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.contact-item a,
.contact-item p {
    color: #111;

    text-decoration: none;

    font-size: 19px;

    line-height: 1.6;

    transition:
        color 0.35s ease,
        opacity 0.35s ease;
}

.contact-item:hover {
    padding-left: 12px;

    border-color: #111;
}

.contact-item a:hover {
    opacity: 0.55;
}

.contacts-button {
    display: inline-block;

    padding: 20px 42px;

    border: 1px solid #111;

    background: #111;
    color: #fff;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.5px;

    cursor: pointer;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.contacts-button:hover {
    background: transparent;

    color: #111;

    transform: translateY(-3px);
}

.footer {
    padding: 55px 5vw 30px;

    background: #0b0b0b;

    color: #fff;
}

.footer-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 45px;

    border-bottom: 1px solid #222;
}

.footer-logo {
    font-size: 26px;

    font-weight: 700;

    letter-spacing: 5px;

    transition:
        opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.7;
}

.footer-top p {
    margin: 0;

    color: #666;

    font-size: 11px;

    letter-spacing: 0.5px;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    color: #555;

    font-size: 9px;

    letter-spacing: 1.5px;
}

.footer-bottom span {
    transition:
        color 0.3s ease;
}

.footer-bottom span:hover {
    color: #999;
}

.booking-modal {
    position: fixed;

    inset: 0;

    display: flex;

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

    padding: 20px;

    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(12px);

    z-index: 3000;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.booking-modal.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.booking-window {
    position: relative;

    width: 100%;
    max-width: 650px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 55px;

    background: #f0f0ec;

    color: #111;

    transform: translateY(25px) scale(0.98);

    opacity: 0;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}

.booking-modal.active .booking-window {
    transform: translateY(0) scale(1);

    opacity: 1;
}

.booking-close {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    color: #111;

    font-size: 30px;

    font-weight: 200;
}

.booking-window h2 {
    margin-bottom: 45px;

    font-size: clamp(45px, 6vw, 70px);

    line-height: 0.9;

    letter-spacing: -4px;
}

.booking-form {
    display: flex;

    flex-direction: column;

    gap: 24px;
}

.booking-form label {
    display: flex;

    flex-direction: column;

    gap: 10px;

    color: #777;

    font-size: 9px;

    letter-spacing: 2px;

    transition:
        color 0.3s ease;
}

.booking-form label:focus-within {
    color: #111;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;

    padding: 14px 0;

    border: none;

    border-bottom: 1px solid #aaa;

    outline: none;

    background: transparent;

    color: #111;

    font-size: 16px;

    resize: vertical;

    transition:
        border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-bottom-color: #111;
}

.booking-form textarea {
    min-height: 70px;
}

.booking-submit {
    position: relative;

    margin-top: 15px;

    padding: 18px;

    border: 1px solid #111;

    background: #111;

    color: white;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    overflow: hidden;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.1s ease;
}

.booking-submit:hover {
    background: white;

    color: #111;

    border-color: #111;
}

.booking-submit:active {
    transform: scale(0.98);
}

.booking-submit:disabled {
    cursor: wait;

    opacity: 0.6;
}

.booking-success {
    display: none;

    text-align: center;

    padding: 40px 20px;
}

.success-icon {
    display: flex;

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

    width: 64px;
    height: 64px;

    margin: 0 auto 25px;

    border: 1px solid rgba(0, 0, 0, 0.18);

    border-radius: 50%;

    font-size: 28px;
    font-weight: 300;
}

.booking-success h2 {
    margin: 0 0 20px;

    font-size: 42px;

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1px;
}

.booking-success p {
    max-width: 350px;

    margin: 0 auto 30px;

    color: #777;

    font-size: 16px;

    line-height: 1.6;

    opacity: 0.8;
}

.booking-success .success-close {
    display: inline-block;

    margin: 0;

    padding: 14px 24px;

    border: 1px solid #111 !important;

    border-radius: 0;

    background: transparent !important;

    color: #111 !important;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.5px;

    cursor: pointer;

    appearance: none;

    -webkit-appearance: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.1s ease;
}

.booking-success .success-close:hover {
    background: #111 !important;

    color: white !important;
}

.booking-success .success-close:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {

    .header {
        height: 68px;

        padding: 0 16px;

        gap: 6px;
    }

    .logo {
        flex-shrink: 0;

        font-size: 17px;

        letter-spacing: 2.8px;
    }

    .navigation {
        display: none;
    }

    .header-button {
        display: none;
    }

    .mobile-header-button {
        display: block;

        margin-left: auto;
        margin-right: 2px;

        padding: 10px 14px;

        border: 1px solid #f4f4f0;

        background: #f4f4f0;
        color: #111;

        font-size: 10px;
        font-weight: 600;

        letter-spacing: 0.3px;

        white-space: nowrap;

        flex-shrink: 0;
    }

    .language-switcher {
        display: flex;

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

        gap: 0;

        margin-left: 0;

        flex-shrink: 0;
    }

    .language-button {
        min-width: 26px;

        padding: 7px 2px;

        border: none;

        background: transparent;

        color: #666;

        font-size: 10px;

        font-weight: 500;

        line-height: 1;

        letter-spacing: 1px;
    }

    .language-button.active {
        color: #fff;
    }

    .mobile-menu-button {
        display: flex;

        position: relative;

        width: 40px;
        height: 40px;

        min-width: 40px;

        margin-left: 2px;

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

        padding: 0;

        border: 1px solid rgba(255, 255, 255, 0.22);

        border-radius: 50%;

        background: transparent;

        z-index: 2100;

        flex-shrink: 0;
    }

    .mobile-menu-button span {
        width: 19px;
        height: 1px;
    }


    .mobile-menu {
        display: flex;

        position: fixed;

        top: 68px;
        right: 0;

        width: min(390px, 88vw);
        height: calc(100vh - 68px);

        padding: 35px 28px 30px;

        flex-direction: column;

        background: #111;

        border-radius: 0 0 0 20px;

        z-index: 900;

        transform: translateX(100%);

        transition:
            transform 0.5s cubic-bezier(.77, 0, .18, 1);
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-label {
        margin-bottom: 40px;

        color: #666;

        font-size: 9px;

        letter-spacing: 3px;

        text-transform: uppercase;
    }

    .mobile-menu nav {
        display: flex;

        flex-direction: column;

        gap: 20px;
    }

    .mobile-menu nav a {
        display: inline-block;

        width: fit-content;

        color: #fff;

        text-decoration: none;

        font-size: 38px;
        font-weight: 400;

        letter-spacing: -1.5px;

        transition:
            transform 0.35s ease,
            color 0.35s ease;
    }

    .mobile-menu nav a:hover {
        transform: translateX(10px);

        color: #aaa;
    }

    .mobile-menu-booking {
        position: relative;

        overflow: hidden;

        width: 100%;

        margin-top: auto;

        padding: 18px;

        border: 1px solid #fff;

        background: #fff;
        color: #111;

        font-size: 12px;
        font-weight: 600;

        letter-spacing: 0.5px;

        cursor: pointer;

        transition:
            background 0.35s ease,
            color 0.35s ease,
            transform 0.35s ease;
    }

    .mobile-menu-booking:hover {
        background: transparent;

        color: #fff;

        transform: translateY(-2px);
    }

    .hero {
        min-height: 100svh;

        padding: 110px 22px 45px;

        display: flex;

        align-items: flex-end;

        background-size: cover;

        background-position: center center;
    }

    .hero h1 {
        max-width: 100%;

        margin-bottom: 30px;

        font-size: clamp(52px, 15vw, 82px);

        line-height: 0.9;

        letter-spacing: -4px;
    }

    .hero-description {
        max-width: 340px;

        margin-bottom: 28px;

        font-size: 13px;

        line-height: 1.7;
    }

    .hero-content {
        width: 100%;
    }

    .main-button {
        width: 100%;

        padding: 18px 25px;
    }

    .hero-scroll {
        display: none;
    }

    .philosophy,
    .services,
    .portfolio,
    .pricing,
    .results,
    .why-us,
    .contacts {
        padding: 90px 20px;
    }

    .section-number {
        margin-bottom: 55px;
    }

    .section-top {
        display: block;

        margin-bottom: 55px;
    }

    .section-top h2,
    .philosophy h2,
    .why-us h2,
    .final-cta h2,
    .contacts h2 {
        font-size: clamp(48px, 14vw, 70px);

        letter-spacing: -4px;
    }

    .section-intro {
        margin-top: 30px;

        font-size: 13px;
    }

    .philosophy-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .philosophy-text {
        padding-top: 0;
    }

    .large-text {
        font-size: 22px;
    }

    .service-item {
        grid-template-columns: 35px 1fr;

        gap: 15px;

        padding: 30px 0;
    }

    .service-item strong {
        display: none;
    }

    .service-item h3 {
        font-size: 23px;
    }

    .service-item p {
        font-size: 13px;
    }

    .comparison {
        height: 65vh;

        min-height: 400px;
    }

    .comparison-button {
        width: 50px;
        height: 50px;
    }

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

    .portfolio-item {
        grid-column: auto !important;

        height: 420px;
    }

    .portfolio-caption {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .why-us-heading {
        margin-bottom: 60px;
    }

    .advantage {
        grid-template-columns: 35px 1fr;

        gap: 15px;

        padding: 28px 0;
    }

    .advantage h3 {
        font-size: 19px;
    }

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

    .price-card {
        min-height: 480px;

        padding: 25px;
    }

    .price-card-top {
        margin-bottom: 55px;
    }

    .final-cta {
        padding: 120px 20px;
    }

    .final-cta h2 {
        margin-bottom: 25px;

        font-size: clamp(46px, 13vw, 68px);

        line-height: 0.92;

        letter-spacing: -3px;
    }

    .final-cta > p:not(.subtitle) {
        max-width: 340px;

        margin: 0 auto 35px;

        font-size: 14px;

        line-height: 1.7;
    }

    .final-button {
        width: 100%;

        padding: 18px;
    }

    .contacts {
        padding: 100px 20px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;

        margin-bottom: 50px;
    }

    .contact-item {
        padding: 28px 0;
    }

    .contact-item:nth-child(odd) {
        margin-right: 0;
    }

    .contact-item span {
        margin-bottom: 12px;

        font-size: 8px;

        letter-spacing: 2.5px;
    }

    .contact-item a,
    .contact-item p {
        font-size: 16px;

        line-height: 1.6;
    }

    .contact-item:hover {
        padding-left: 0;
    }

    .contacts-button {
        width: 100%;

        padding: 18px;
    }

    .footer {
        padding: 35px 20px 25px;
    }

    .footer-top {
        display: block;

        padding-bottom: 30px;
    }

    .footer-top p {
        margin-top: 15px;
    }

    .footer-bottom {
        display: block;

        line-height: 2;
    }

    .booking-modal {
        padding: 12px;
    }

    .booking-window {
        max-height: 94vh;

        padding: 40px 22px;
    }

    .booking-window h2 {
        margin-bottom: 35px;

        font-size: 48px;

        letter-spacing: -3px;
    }
}

@media (max-width: 430px) {

    .header {
        padding: 0 10px;

        gap: 5px;
    }

    .logo {
        font-size: 15px;

        letter-spacing: 2px;
    }

    .mobile-header-button {
        padding: 9px 11px;

        font-size: 9px;
    }

    .language-button {
        min-width: 22px;

        padding: 7px 2px;

        font-size: 9px;
    }

    .mobile-menu-button {
        width: 36px;
        height: 36px;

        min-width: 36px;
    }

    .mobile-menu-button span {
        width: 18px;
    }

    .mobile-menu {
        width: 90vw;

        padding:
            30px 22px 22px;
    }

    .mobile-menu nav {
        gap: 17px;
    }

    .mobile-menu nav a {
        font-size: 32px;
    }
}