:root {
    --font-main: "Manrope", Arial, sans-serif;

    --color-page: #f7f3ea;
    --color-surface: #ffffff;
    --color-surface-2: #efe7d7;

    --color-dark: #171a20;
    --color-dark-2: #20242c;
    --color-text: #353b45;
    --color-muted: #737b87;

    --color-accent: #c89445;
    --color-accent-2: #d8b574;
    --color-accent-dark: #9f7132;

    --color-border: rgba(23, 26, 32, 0.12);
    --color-border-light: rgba(255, 255, 255, 0.14);

    --container: 1200px;

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;

    --shadow-soft: 0 18px 50px rgba(23, 26, 32, 0.10);
    --shadow-card: 0 24px 70px rgba(23, 26, 32, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-page);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 96px 0;
}

.section--soft {
    background: var(--color-surface-2);
}

.section--dark {
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 10%, rgba(216, 181, 116, 0.18), transparent 32%),
        linear-gradient(135deg, #171a20 0%, #252a33 100%);
}

.section-head {
    max-width: 760px;
    margin-bottom: 40px;
}

.section-head--row {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.7fr);
    gap: 48px;
    align-items: end;
    max-width: none;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--color-accent);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--color-dark);
    letter-spacing: -0.045em;
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
    color: #ffffff;
}

h1,
.hero__title {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.98;
    font-weight: 900;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    font-weight: 900;
}

h3 {
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 850;
}

p {
    margin-bottom: 0;
}

.section-head p,
.split__content p,
.price-layout__content p,
.contacts__content p {
    color: var(--color-muted);
    font-size: 18px;
}

.section--dark p {
    color: rgba(255, 255, 255, 0.72);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 24px;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    background: var(--color-accent);
    color: #171a20;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--color-accent-2);
    border-color: var(--color-accent-2);
}

.btn--light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
}

.btn--light:hover {
    color: var(--color-dark);
    background: #ffffff;
    border-color: #ffffff;
}

.btn--small {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 14px;
}

.btn--full {
    width: 100%;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 243, 234, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 26, 32, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 82px;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--color-dark);
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.site-header__logo img {
    width: auto;
    max-height: 54px;
}

.site-header__nav {
    margin-left: auto;
}

.site-header__menu,
.site-footer__menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__menu a {
    color: rgba(23, 26, 32, 0.78);
    font-size: 15px;
    font-weight: 800;
}

.site-header__menu a:hover {
    color: var(--color-accent-dark);
}

.site-header__contacts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.site-header__phone {
    color: var(--color-dark);
    font-weight: 900;
    line-height: 1.2;
}

.site-header__time {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.site-header__burger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-left: auto;
    border: 0;
    background: transparent;
}

.site-header__burger span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background: var(--color-dark);
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 110px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 12%, rgba(216, 181, 116, 0.28), transparent 30%),
        linear-gradient(135deg, #15181e 0%, #232833 58%, #171a20 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(216, 181, 116, 0.12);
    filter: blur(3px);
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
    gap: 58px;
    align-items: center;
}

.hero h1 {
    color: #ffffff;
}

.hero__lead {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 720px;
    margin-top: 44px;
}

.hero__facts div {
    padding: 18px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
}

.hero__facts strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero__facts span {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.hero__visual {
    position: relative;
    min-height: 610px;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-card);
}

.hero__image--main {
    position: absolute;
    inset: 0 0 auto auto;
    width: 86%;
    height: 510px;
    border-radius: 42px;
}

.hero__image--small {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52%;
    height: 260px;
    border: 10px solid #15181e;
    border-radius: 34px;
}

.hero__badge {
    position: absolute;
    right: 22px;
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 300px;
    padding: 18px;
    border: 1px solid var(--color-border-light);
    border-radius: 24px;
    background: rgba(23, 26, 32, 0.78);
    backdrop-filter: blur(14px);
}

.hero__badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--color-dark);
    background: var(--color-accent);
    font-weight: 900;
}

.hero__badge p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

/* Trust */

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.trust-strip div {
    padding: 28px;
    border-right: 1px solid var(--color-border);
}

.trust-strip div:last-child {
    border-right: 0;
}

.trust-strip strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-dark);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.trust-strip span {
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 700;
}

/* Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: 0 12px 36px rgba(23, 26, 32, 0.06);
}

.service-card__image {
    display: block;
    height: 230px;
    overflow: hidden;
    background: var(--color-dark);
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.04);
}

.service-card__body {
    padding: 26px;
}

.service-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.service-card__meta span {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--color-dark);
    background: var(--color-surface-2);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
}

.service-card h3 a:hover {
    color: var(--color-accent-dark);
}

.service-card p {
    color: var(--color-muted);
}

.service-card__link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--color-accent-dark);
    font-weight: 900;
}

/* Split */

.split-section {
    padding-top: 40px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}

.split__image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 42px;
    box-shadow: var(--shadow-card);
}

.split__content {
    max-width: 560px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 30px 0;
}

.check-list div {
    position: relative;
    padding: 16px 18px 16px 46px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.54);
    color: var(--color-dark);
    font-weight: 850;
}

.check-list div::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 16px;
    color: var(--color-accent-dark);
    font-weight: 900;
}

/* Problems */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.problem-grid article {
    min-height: 260px;
    padding: 26px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
}

.problem-grid span {
    display: block;
    margin-bottom: 54px;
    color: var(--color-accent-2);
    font-size: 14px;
    font-weight: 900;
}

.problem-grid h3 {
    color: #ffffff;
}

/* Promo */

.promo-section {
    padding: 70px 0;
}

.promo-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
    gap: 36px;
    overflow: hidden;
    padding: 28px;
    border-radius: 42px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f0e4cf 100%);
    box-shadow: var(--shadow-card);
}

.promo-card__content {
    padding: 42px 24px 42px 24px;
}

.promo-card__content p {
    max-width: 620px;
    margin-bottom: 30px;
    color: var(--color-muted);
    font-size: 18px;
}

.promo-card__image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 30px;
}

/* Advantages */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.advantage-card {
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: 0 12px 34px rgba(23, 26, 32, 0.06);
}

.advantage-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    border-radius: 50%;
    color: var(--color-dark);
    background: var(--color-accent-2);
    font-weight: 900;
}

.advantage-card p {
    color: var(--color-muted);
}

/* Steps */

.steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.step {
    min-height: 180px;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: var(--color-surface);
}

.step span {
    display: block;
    margin-bottom: 42px;
    color: var(--color-accent-dark);
    font-size: 15px;
    font-weight: 900;
}

.step p {
    color: var(--color-dark);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
}

/* Work gallery */

.work-gallery {
    overflow: hidden;
    background: #f7f3ea;
}

.work-gallery__head {
    max-width: 860px;
    margin-bottom: 34px;
}

.work-gallery__head h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.work-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 16px;
}

.work-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    min-height: 100%;
    padding: 0;
    border: 0;
    border-radius: 24px;
    background: #171a20;
    cursor: zoom-in;
    box-shadow: 0 18px 44px rgba(23, 26, 32, 0.10);
}

.work-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.16) 100%
        );
    opacity: 0;
    transition: opacity 0.25s ease;
}

.work-gallery__item:hover::after {
    opacity: 1;
}

.work-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.work-gallery__item:hover img {
    transform: scale(1.035);
    filter: contrast(1.04);
}

.work-gallery__item--1 {
    grid-column: span 6;
    grid-row: span 4;
}

.work-gallery__item--2 {
    grid-column: span 3;
    grid-row: span 2;
}

.work-gallery__item--3 {
    grid-column: span 3;
    grid-row: span 2;
}

.work-gallery__item--4 {
    grid-column: span 3;
    grid-row: span 2;
}

.work-gallery__item--5 {
    grid-column: span 3;
    grid-row: span 2;
}

.work-gallery__item--6 {
    grid-column: span 6;
    grid-row: span 2;
}

/* Gallery lightbox */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.gallery-lightbox.is-active {
    display: flex;
}

.gallery-lightbox__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(12, 14, 18, 0.82);
    backdrop-filter: blur(12px);
    cursor: zoom-out;
}

.gallery-lightbox__image {
    position: relative;
    z-index: 2;
    width: min(100%, 1180px);
    max-height: calc(100vh - 80px);
}

.gallery-lightbox__image img {
    width: 100%;
    max-height: calc(100vh - 80px);
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox__close {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.gallery-lightbox__close:hover {
    background: #ffffff;
    color: #171a20;
}

body.gallery-open {
    overflow: hidden;
}

@media (max-width: 1100px) {
    .work-gallery__grid {
        grid-auto-rows: 110px;
    }

    .work-gallery__item--1 {
        grid-column: span 12;
        grid-row: span 4;
    }

    .work-gallery__item--2,
    .work-gallery__item--3,
    .work-gallery__item--4,
    .work-gallery__item--5 {
        grid-column: span 6;
        grid-row: span 3;
    }

    .work-gallery__item--6 {
        grid-column: span 12;
        grid-row: span 3;
    }
}

@media (max-width: 700px) {
    .work-gallery__head {
        margin-bottom: 24px;
    }

    .work-gallery__grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .work-gallery__grid::-webkit-scrollbar {
        display: none;
    }

    .work-gallery__item,
    .work-gallery__item--1,
    .work-gallery__item--2,
    .work-gallery__item--3,
    .work-gallery__item--4,
    .work-gallery__item--5,
    .work-gallery__item--6 {
        flex: 0 0 82%;
        height: 420px;
        min-height: 420px;
        border-radius: 22px;
        scroll-snap-align: start;
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox__image img {
        border-radius: 16px;
    }

    .gallery-lightbox__close {
        top: 14px;
        right: 14px;
    }
}

@media (max-width: 480px) {
    .work-gallery__item,
    .work-gallery__item--1,
    .work-gallery__item--2,
    .work-gallery__item--3,
    .work-gallery__item--4,
    .work-gallery__item--5,
    .work-gallery__item--6 {
        flex-basis: 88%;
        height: 360px;
        min-height: 360px;
    }
}


/* Prices */

.price-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(420px, 0.8fr);
    gap: 54px;
    align-items: start;
}

.price-layout__content {
    position: sticky;
    top: 120px;
}

.price-layout__content .btn {
    margin-top: 30px;
}

.price-table {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.price-table__row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--color-border);
}

.price-table__row:last-child {
    border-bottom: 0;
}

.price-table__row span {
    color: var(--color-dark);
    font-weight: 850;
}

.price-table__row strong {
    color: var(--color-accent-dark);
    font-weight: 900;
}

/* Contacts */

.contacts {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
    gap: 58px;
    align-items: start;
}

.contacts__content {
    max-width: 660px;
}

.contacts__list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.contacts__list p {
    color: rgba(255, 255, 255, 0.76);
}

.contacts__list strong {
    color: #ffffff;
}

.contacts__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.appointment {
    padding: 30px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    background: #ffffff;
    color: var(--color-dark);
    box-shadow: var(--shadow-card);
}

.appointment h2 {
    margin-bottom: 24px;
    font-size: 32px;
}

/* Form */

.form {
    display: grid;
    gap: 16px;
}

.form label {
    display: grid;
    gap: 8px;
}

.form span {
    color: var(--color-dark);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 850;
}

.form input,
.form textarea {
    width: 100%;
    padding: 16px 17px;
    border: 1px solid rgba(23, 26, 32, 0.14);
    border-radius: 16px;
    background: #ffffff;
    color: var(--color-dark);
    font: inherit;
    outline: none;
}

.form textarea {
    min-height: 126px;
    resize: vertical;
}

.form input:focus,
.form textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(200, 148, 69, 0.14);
}

.form small {
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.45;
}

/* Footer */

.site-footer {
    padding: 64px 0 92px;
    color: #ffffff;
    background: #121419;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 280px;
    gap: 44px;
}

.site-footer__logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.site-footer__text {
    max-width: 420px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.62);
}

.site-footer__menu {
    flex-direction: column;
    align-items: flex-start;
}

.site-footer__menu a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.site-footer__menu a:hover {
    color: var(--color-accent-2);
}

.site-footer__contacts {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer__contacts a {
    color: #ffffff;
    font-weight: 900;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mobile-actions {
    display: none;
}

/* Responsive */

@media (max-width: 1180px) {
    .site-header__contacts,
    .site-header__btn {
        display: none;
    }

    .site-header__burger {
        display: block;
    }

    .site-header__nav {
        position: fixed;
        inset: 82px 0 auto 0;
        display: none;
        padding: 24px 20px;
        background: var(--color-page);
        border-bottom: 1px solid var(--color-border);
    }

    body.menu-open .site-header__nav {
        display: block;
    }

    .site-header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .hero__grid,
    .split,
    .price-layout,
    .contacts {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 560px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid,
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .price-layout__content {
        position: static;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .section {
        padding: 72px 0;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .section-head--row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero {
        padding: 64px 0 82px;
    }

    .hero__facts {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: auto;
    }

    .hero__image--main,
    .hero__image--small {
        position: static;
        width: 100%;
        height: auto;
        min-height: 260px;
        margin-top: 18px;
        border: 0;
        border-radius: 28px;
    }

    .hero__image--small {
        display: none;
    }

    .hero__badge {
        position: static;
        max-width: none;
        margin-top: 18px;
    }

    .trust-strip {
        grid-template-columns: 1fr 1fr;
    }

    .trust-strip div:nth-child(2) {
        border-right: 0;
    }

    .trust-strip div {
        border-bottom: 1px solid var(--color-border);
    }

    .trust-strip div:nth-child(3),
    .trust-strip div:nth-child(4) {
        border-bottom: 0;
    }

    .services-grid,
    .advantages-grid,
    .problem-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .split__image img {
        height: 420px;
        border-radius: 30px;
    }

    .promo-card {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 30px;
    }

    .promo-card__content {
        padding: 24px 12px 10px;
    }

    .promo-card__image img {
        min-height: 300px;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    h1,
    .hero__title {
        font-size: clamp(40px, 12vw, 54px);
    }

    h2 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .hero__actions,
    .contacts__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .service-card__image {
        height: 210px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }

    .trust-strip div:last-child {
        border-bottom: 0;
    }

    .price-table__row {
        flex-direction: column;
        gap: 6px;
    }

    .appointment {
        padding: 22px;
        border-radius: 28px;
    }

    .mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: #121419;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-actions a {
        padding: 14px 8px;
        color: #ffffff;
        text-align: center;
        font-size: 13px;
        font-weight: 900;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-actions a:last-child {
        border-right: 0;
    }

    .site-footer {
        padding-bottom: 130px;
    }
}


/* Modal */

body.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.is-active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 20, 25, 0.72);
    backdrop-filter: blur(10px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border-radius: 34px;
    background: #ffffff;
    color: var(--color-dark);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    animation: modalFadeUp 0.24s ease;
}

.modal__content {
    padding: 34px;
}

.modal__content h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.05;
}

.modal__text {
    margin-bottom: 24px;
    color: var(--color-muted);
    font-size: 17px;
}

.modal__form {
    margin-top: 0;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(23, 26, 32, 0.12);
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-dark);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.modal__close:hover {
    background: var(--color-dark);
    color: #ffffff;
}

@keyframes modalFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .modal {
        align-items: flex-end;
        padding: 0;
    }

    .modal__dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 28px 28px 0 0;
    }

    .modal__content {
        padding: 28px 18px 24px;
    }

    .modal__close {
        top: 12px;
        right: 12px;
    }
}


/* New premium header */

html {
    scroll-padding-top: 96px;
}

#services,
#promotions,
#about,
#prices,
#contacts {
    scroll-margin-top: 96px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 243, 234, 0.82);
    border-bottom: 1px solid rgba(23, 26, 32, 0.08);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
    min-height: 86px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 230px;
    color: var(--color-dark);
}

.site-logo__mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 20%, rgba(216, 181, 116, 0.9), transparent 38%),
        linear-gradient(135deg, #171a20 0%, #2b313d 100%);
    box-shadow: 0 14px 34px rgba(23, 26, 32, 0.18);
}

.site-logo__mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(216, 181, 116, 0.35);
    border-radius: 14px;
}

.site-logo__mark svg {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
}

.site-logo__mark svg path:first-child {
    fill: transparent;
}

.site-logo__mark svg path:nth-child(2),
.site-logo__mark svg path:nth-child(3) {
    fill: #d8b574;
}

.site-logo__mark svg path:last-child {
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
    stroke-linecap: round;
    opacity: 0.9;
}

.site-logo__text {
    display: grid;
    gap: 3px;
    line-height: 1;
}

.site-logo__text strong {
    color: var(--color-dark);
    font-size: 21px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.site-logo__text small {
    color: rgba(23, 26, 32, 0.56);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-header__nav {
    justify-self: center;
    margin-left: 0;
}

.site-header__menu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    margin: 0;
    list-style: none;
    border: 1px solid rgba(23, 26, 32, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 10px 28px rgba(23, 26, 32, 0.04);
}

.site-header__menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 15px;
    border-radius: 999px;
    color: rgba(23, 26, 32, 0.74);
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.site-header__menu a:hover {
    color: var(--color-dark);
    background: #ffffff;
    transform: translateY(-1px);
}

.site-header__contacts {
    display: grid;
    gap: 3px;
    text-align: right;
}

.site-header__phone {
    color: var(--color-dark);
    font-size: 16px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.site-header__time {
    color: rgba(23, 26, 32, 0.56);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.site-header__btn {
    white-space: nowrap;
}

.site-header__burger {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(23, 26, 32, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.56);
    cursor: pointer;
}

.site-header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--color-dark);
    transition: 0.2s ease;
}

body.menu-open .site-header__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.menu-open .site-header__burger span:nth-child(2) {
    opacity: 0;
}

body.menu-open .site-header__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1180px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
    }

    .site-header__burger {
        display: block;
        justify-self: end;
    }

    .site-header__nav {
        position: fixed;
        top: 86px;
        left: 14px;
        right: 14px;
        display: none;
        padding: 16px;
        border: 1px solid rgba(23, 26, 32, 0.08);
        border-radius: 24px;
        background: rgba(247, 243, 234, 0.96);
        box-shadow: 0 24px 70px rgba(23, 26, 32, 0.16);
        backdrop-filter: blur(18px);
    }

    body.menu-open .site-header__nav {
        display: block;
    }

    .site-header__menu {
        display: grid;
        gap: 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-header__menu a {
        justify-content: flex-start;
        min-height: 48px;
        padding: 14px 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.58);
        font-size: 16px;
    }

    .site-header__contacts,
    .site-header__btn {
        display: none;
    }
}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 82px;
    }

    #services,
    #promotions,
    #about,
    #prices,
    #contacts {
        scroll-margin-top: 82px;
    }

    .site-header__inner {
        min-height: 78px;
    }

    .site-logo {
        min-width: 0;
    }

    .site-logo__mark {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 16px;
    }

    .site-logo__mark svg {
        width: 34px;
        height: 34px;
    }

    .site-logo__text strong {
        font-size: 18px;
    }

    .site-logo__text small {
        max-width: 130px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 10px;
    }

    .site-header__nav {
        top: 78px;
    }
}

/* Advantages preview */

.advantages-preview {
    background: linear-gradient(180deg, #f7f3ea 0%, #f1eadc 100%);
}

.advantages-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.adv-preview-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(23, 26, 32, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 46px rgba(23, 26, 32, 0.06);
    backdrop-filter: blur(10px);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.adv-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(23, 26, 32, 0.10);
    border-color: rgba(200, 148, 69, 0.28);
}

.adv-preview-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 20%, rgba(216, 181, 116, 0.8), transparent 40%),
        linear-gradient(135deg, #171a20 0%, #2a303b 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.adv-preview-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.1;
}

.adv-preview-card p {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.5;
}

.adv-preview-card small {
    display: block;
    margin-top: 18px;
    color: var(--color-accent-dark);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 1180px) {
    .advantages-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .advantages-preview__grid {
        grid-template-columns: 1fr;
    }

    .adv-preview-card {
        padding: 24px;
        border-radius: 22px;
    }

    .adv-preview-card h3 {
        font-size: 22px;
    }
}

/* LightGallery work gallery */

.work-gallery {
    overflow: hidden;
    background: #f7f3ea;
}

.work-gallery__head {
    max-width: 840px;
    margin-bottom: 34px;
}

.work-gallery__head h2 {
    margin-bottom: 0;
}

.work-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 16px;
}

.work-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100%;
    border-radius: 24px;
    background: #171a20;
    cursor: zoom-in;
    box-shadow: 0 18px 44px rgba(23, 26, 32, 0.10);
}

.work-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.18) 100%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.work-gallery__item:hover::after {
    opacity: 1;
}

.work-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.work-gallery__item:hover img {
    transform: scale(1.035);
    filter: contrast(1.04);
}

.work-gallery__item--1 {
    grid-column: span 6;
    grid-row: span 4;
}

.work-gallery__item--2,
.work-gallery__item--3,
.work-gallery__item--4,
.work-gallery__item--5 {
    grid-column: span 3;
    grid-row: span 2;
}

.work-gallery__item--6 {
    grid-column: span 6;
    grid-row: span 2;
}



@media (max-width: 1100px) {
    .work-gallery__grid {
        grid-auto-rows: 110px;
    }

    .work-gallery__item--1 {
        grid-column: span 12;
        grid-row: span 4;
    }

    .work-gallery__item--2,
    .work-gallery__item--3,
    .work-gallery__item--4,
    .work-gallery__item--5 {
        grid-column: span 6;
        grid-row: span 3;
    }

    .work-gallery__item--6 {
        grid-column: span 12;
        grid-row: span 3;
    }
}

@media (max-width: 700px) {
    .work-gallery__head {
        margin-bottom: 24px;
    }

    .work-gallery__grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .work-gallery__grid::-webkit-scrollbar {
        display: none;
    }

    .work-gallery__item,
    .work-gallery__item--1,
    .work-gallery__item--2,
    .work-gallery__item--3,
    .work-gallery__item--4,
    .work-gallery__item--5,
    .work-gallery__item--6 {
        flex: 0 0 82%;
        height: 420px;
        min-height: 420px;
        border-radius: 22px;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .work-gallery__item,
    .work-gallery__item--1,
    .work-gallery__item--2,
    .work-gallery__item--3,
    .work-gallery__item--4,
    .work-gallery__item--5,
    .work-gallery__item--6 {
        flex-basis: 88%;
        height: 360px;
        min-height: 360px;
    }
}

/* PhotoSwipe gallery */

.work-gallery {
    overflow: hidden;
    background: #f7f3ea;
}

.work-gallery__head {
    max-width: 840px;
    margin-bottom: 34px;
}

.work-gallery__head h2 {
    margin-bottom: 0;
}

.work-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 16px;
}

.work-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100%;
    border-radius: 24px;
    background: #171a20;
    cursor: zoom-in;
    box-shadow: 0 18px 44px rgba(23, 26, 32, 0.10);
}

.work-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.18) 100%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.work-gallery__item:hover::after {
    opacity: 1;
}

.work-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.work-gallery__item:hover img {
    transform: scale(1.035);
    filter: contrast(1.04);
}

.work-gallery__item--1 {
    grid-column: span 6;
    grid-row: span 4;
}

.work-gallery__item--2,
.work-gallery__item--3,
.work-gallery__item--4,
.work-gallery__item--5 {
    grid-column: span 3;
    grid-row: span 2;
}

.work-gallery__item--6 {
    grid-column: span 6;
    grid-row: span 2;
}

/* PhotoSwipe small visual tuning */

.pswp {
    --pswp-bg: rgba(12, 14, 18, 0.96);
    --pswp-icon-color: #ffffff;
    --pswp-icon-color-secondary: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1100px) {
    .work-gallery__grid {
        grid-auto-rows: 110px;
    }

    .work-gallery__item--1 {
        grid-column: span 12;
        grid-row: span 4;
    }

    .work-gallery__item--2,
    .work-gallery__item--3,
    .work-gallery__item--4,
    .work-gallery__item--5 {
        grid-column: span 6;
        grid-row: span 3;
    }

    .work-gallery__item--6 {
        grid-column: span 12;
        grid-row: span 3;
    }
}

@media (max-width: 700px) {
    .work-gallery__head {
        margin-bottom: 24px;
    }

    .work-gallery__grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .work-gallery__grid::-webkit-scrollbar {
        display: none;
    }

    .work-gallery__item,
    .work-gallery__item--1,
    .work-gallery__item--2,
    .work-gallery__item--3,
    .work-gallery__item--4,
    .work-gallery__item--5,
    .work-gallery__item--6 {
        flex: 0 0 82%;
        height: 420px;
        min-height: 420px;
        border-radius: 22px;
        scroll-snap-align: start;
    }
}

@media (max-width: 480px) {
    .work-gallery__item,
    .work-gallery__item--1,
    .work-gallery__item--2,
    .work-gallery__item--3,
    .work-gallery__item--4,
    .work-gallery__item--5,
    .work-gallery__item--6 {
        flex-basis: 88%;
        height: 360px;
        min-height: 360px;
    }
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

#services,
#promotions,
#about,
#prices,
#contacts,
#gallery {
    scroll-margin-top: 110px;
}

/* Services page */

.services-hero {
    padding: 150px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(216, 181, 116, 0.26), transparent 34%),
        linear-gradient(135deg, #171a20 0%, #252a34 100%);
    color: #ffffff;
}

.services-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.services-hero__content {
    max-width: 760px;
}

.services-hero__content h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.services-hero__content p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.7;
}

.services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.services-hero__image {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.services-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-page-grid {
    display: grid;
    gap: 24px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 18px 54px rgba(23, 26, 32, 0.08);
}

.service-detail-card__image {
    display: block;
    min-height: 100%;
    overflow: hidden;
    background: #171a20;
}

.service-detail-card__image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-detail-card:hover .service-detail-card__image img {
    transform: scale(1.035);
}

.service-detail-card__body {
    padding: 34px;
}

.service-detail-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.service-detail-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(216, 181, 116, 0.16);
    color: #171a20;
    font-size: 13px;
    font-weight: 900;
}

.service-detail-card h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.service-detail-card h2 a {
    color: inherit;
}

.service-detail-card__subtitle {
    margin-bottom: 14px;
    color: var(--color-accent-dark);
    font-weight: 900;
}

.service-detail-card p {
    color: rgba(23, 26, 32, 0.72);
    line-height: 1.7;
}

.service-detail-card__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.service-detail-card__list li {
    position: relative;
    padding-left: 24px;
    color: rgba(23, 26, 32, 0.78);
    font-size: 15px;
    line-height: 1.45;
}

.service-detail-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent-dark);
    font-weight: 900;
}

.service-detail-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 26px;
}

.service-detail-card__link {
    color: var(--color-dark);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(216, 181, 116, 0.55);
    text-underline-offset: 5px;
}

.services-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
}

.services-cta__inner h2 {
    max-width: 720px;
    color: #ffffff;
}

.services-cta__inner p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.72);
}

.services-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.faq-item {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(23, 26, 32, 0.07);
}

.faq-item h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.faq-item p {
    margin: 0;
    color: rgba(23, 26, 32, 0.68);
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .services-hero {
        padding-top: 130px;
    }

    .services-hero__grid,
    .service-detail-card,
    .services-cta__inner {
        grid-template-columns: 1fr;
    }

    .services-hero__image {
        min-height: 420px;
    }

    .service-detail-card__image img {
        min-height: 300px;
    }

    .services-cta__actions {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: 0;
    }
}

@media (max-width: 700px) {
    .services-hero {
        padding: 116px 0 56px;
    }

    .services-hero__image {
        min-height: 320px;
        border-radius: 26px;
    }

    .service-detail-card {
        border-radius: 24px;
    }

    .service-detail-card__body {
        padding: 24px;
    }

    .service-detail-card__list,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .services-hero__actions,
    .service-detail-card__actions,
    .services-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .services-hero__actions .btn,
    .service-detail-card__actions .btn,
    .services-cta__actions .btn {
        width: 100%;
    }
}
