/* Premium minimal landing — only with .hdLanding on body/page */
.hdLanding {
    --hd-bg: #ffffff;
    --hd-muted: #f5f5f7;
    --hd-text: #1d1d1f;
    --hd-secondary: #6e6e73;
    --hd-line: #d2d2d7;
    --hd-accent: #fe5b3f;
    --hd-radius: 28px;
    --hd-max: 1080px;
    background: var(--hd-bg);
    color: var(--hd-text);
    overflow-x: clip;
}

.hdLanding .wrap {
    max-width: 1180px;
    overflow-x: clip;
}

.hdLanding .site-breadcrumbs,
.hdLanding .breadcrumbs {
    margin-bottom: 18px;
    opacity: 0.72;
    font-size: 13px;
}

/* Hide heavy sidebar on this landing */
.hdLanding .unifiedSidebar {
    display: none !important;
}
.hdLanding .unifiedLayout {
    display: block !important;
}
.hdLanding .unifiedMain {
    width: 100% !important;
    max-width: none !important;
}

.hd2-hero,
.hd2-accent,
.hd2-section,
.hd2-final,
.hd2-catalog-head {
    font-family: 'Montserrat', system-ui, sans-serif;
    box-sizing: border-box;
}
.hd2-hero *,
.hd2-accent *,
.hd2-section *,
.hd2-final *,
.hd2-catalog-head * {
    box-sizing: border-box;
}

/* ---- Hero ---- */
.hd2-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(12px, 2vw, 28px) 0 clamp(36px, 5vw, 64px);
    margin: 0 0 clamp(28px, 4vw, 48px);
}
.hd2-hero__title {
    margin: 0 0 14px;
    font-size: clamp(36px, 5.2vw, 60px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--hd-text);
}
.hd2-hero__kicker {
    margin: 0 0 14px;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--hd-text);
}
.hd2-hero__lead {
    margin: 0 0 28px;
    max-width: 34em;
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--hd-secondary);
}
.hd2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    align-items: center;
}
.hd2-hero__visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    background: var(--hd-muted);
    border-radius: var(--hd-radius);
}
.hd2-hero__visual picture {
    display: block;
    width: 100%;
    height: 100%;
}
.hd2-hero__visual img {
    display: block;
    width: 100%;
    height: min(560px, 68vh);
    min-height: 420px;
    max-width: 100%;
    object-fit: cover;
    /* Doors at corridor end + passage + living-room slice */
    object-position: 50% 42%;
}
.hd2-hero__visual--typo {
    min-height: 280px;
    padding: 28px;
    align-items: center;
}
.hd2-hero__glyph {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #c7c7cc;
}

/* ---- Interiors editorial (after catalog) ---- */
.hdLanding .hd2-interiors__lead {
    max-width: 42em;
    margin: 0 0 24px;
}
.hdLanding .hd2-interiors__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}
.hdLanding .hd2-interiors__item {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    /* Equal frame = shorter of the two (light corridor 696×928) */
    aspect-ratio: 696 / 928;
    background: var(--hd-muted);
}
.hdLanding .hd2-interiors__item picture {
    display: block;
    width: 100%;
    height: 100%;
}
.hdLanding .hd2-interiors__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
}

@media (max-width: 767px) {
    .hdLanding .hd2-interiors__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hdLanding .hd2-interiors__item {
        aspect-ratio: 696 / 928;
        max-height: 420px;
    }
}

/* ---- Buttons ---- */
.hd2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    border-radius: 980px;
    font: 600 15px/1.2 'Montserrat', system-ui, sans-serif;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}
.hd2-btn--accent {
    background: var(--hd-accent);
    color: #fff;
}
.hd2-btn--accent:hover {
    filter: brightness(0.95);
    color: #fff;
}
.hd2-btn--dark {
    background: var(--hd-text);
    color: #fff;
}
.hd2-btn--dark:hover {
    color: #fff;
    opacity: 0.9;
}
.hd2-btn--text {
    background: transparent;
    color: var(--hd-text);
    padding-left: 0;
    padding-right: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
}
.hd2-btn--text:hover {
    color: var(--hd-accent);
}

/* ---- Accent band ---- */
.hd2-accent {
    background: var(--hd-muted);
    border-radius: var(--hd-radius);
    padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 48px);
    margin: 0 0 clamp(36px, 5vw, 56px);
}
.hd2-accent__inner {
    max-width: 42rem;
}
.hd2-accent__title {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.hd2-accent__text {
    margin: 0 0 18px;
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.55;
    color: var(--hd-secondary);
}
.hd2-accent__points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 8px;
}
.hd2-accent__points li {
    font-size: 16px;
    line-height: 1.4;
    color: var(--hd-text);
    padding-left: 1em;
    position: relative;
}
.hd2-accent__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--hd-text);
}

/* ---- Catalog head + brand chips ---- */
.hd2-catalog-head {
    margin: 0 0 18px;
    scroll-margin-top: 16px;
}
.hd2-catalog-head__title {
    margin: 0 0 8px;
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.hd2-catalog-head__sub {
    margin: 0;
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--hd-secondary);
}

.hd2-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
}
.hd2-brands a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 980px;
    background: var(--hd-muted);
    color: var(--hd-text);
    text-decoration: none;
    font: 600 14px/1 'Montserrat', system-ui, sans-serif;
}
.hd2-brands a.is-active,
.hd2-brands a:hover {
    background: var(--hd-text);
    color: #fff;
}

/* ---- Product cards (landing only) ---- */
.hdLanding #uniProductGrid.grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
}
.hdLanding #uniProductGrid .card {
    display: flex !important;
    flex-direction: column !important;
    border: 0 !important;
    border-radius: 24px !important;
    background: var(--hd-muted) !important;
    box-shadow: none !important;
    overflow: hidden !important;
    text-decoration: none !important;
    color: inherit !important;
    min-height: 100%;
}
.hdLanding #uniProductGrid .card:hover {
    transform: none !important;
}
.hdLanding #uniProductGrid .card > img,
.hdLanding #uniProductGrid .card picture,
.hdLanding #uniProductGrid .card picture img {
    width: 100% !important;
    max-height: none !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    object-fit: contain !important;
    padding: 28px 24px 8px !important;
    background: transparent !important;
    transform: none !important;
}
.hdLanding #uniProductGrid .card:hover img {
    transform: none !important;
}
.hdLanding #uniProductGrid .cardBody {
    padding: 8px 22px 24px !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.hdLanding #uniProductGrid .cardCollection {
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--hd-secondary) !important;
}
.hdLanding #uniProductGrid .cardTitle {
    font-size: 20px !important;
    font-weight: 650 !important;
    letter-spacing: -0.02em;
    line-height: 1.2 !important;
    color: var(--hd-text) !important;
}
.hdLanding #uniProductGrid .hd2-card-specs {
    list-style: none;
    margin: 2px 0 0;
    padding: 0;
    display: grid;
    gap: 2px;
}
.hdLanding #uniProductGrid .hd2-card-specs li {
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
    color: var(--hd-secondary);
}
.hdLanding #uniProductGrid .cardPrice {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--hd-text) !important;
    margin-top: 4px;
}
.hdLanding #uniProductGrid .cardOffer,
.hdLanding #uniProductGrid .cardOffer--sber,
.hdLanding #uniProductGrid .cardOffers {
    margin-top: 8px;
}
.hdLanding #uniProductGrid .cardOffer,
.hdLanding #uniProductGrid .cardOffer--sber,
.hdLanding #uniProductGrid .cardSizeHint,
.hdLanding #uniProductGrid .cardOffer__badge,
.hdLanding #uniProductGrid .cardOffer__pill {
    border-radius: 980px !important;
    border-color: transparent !important;
    background: rgba(0, 0, 0, 0.05) !important;
    color: var(--hd-secondary) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}
.hdLanding #uniProductGrid .ctaCard {
    display: none !important;
}
.hdLanding .sectionTitle {
    display: none !important;
}
.hdLanding #uniProductGrid .hd2-card-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--hd-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hdLanding #uniProductGrid .cardPills .cardPill,
.hdLanding #uniProductGrid .cardPill {
    color: var(--hd-secondary) !important;
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: transparent !important;
    font-weight: 600 !important;
}
.hdLanding #uniProductGrid .cardPromo {
    background: rgba(0, 0, 0, 0.72) !important;
    color: #fff !important;
    border: 0 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border-radius: 980px !important;
    box-shadow: none !important;
}

/* ---- Editorial sections ---- */
.hd2-after {
    margin-top: clamp(48px, 7vw, 88px);
}
.hd2-section {
    padding: clamp(48px, 7vw, 88px) 0;
}
.hd2-section--muted {
    background: var(--hd-muted);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(20px, calc(50vw - 590px));
    padding-right: max(20px, calc(50vw - 590px));
}
.hd2-section__inner {
    max-width: var(--hd-max);
    margin: 0 auto;
}
.hd2-section__inner--narrow {
    max-width: 40rem;
}
.hd2-section__inner--split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
}
.hd2-section__title {
    margin: 0 0 16px;
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.1;
}
.hd2-section__text {
    margin: 0 0 18px;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.55;
    color: var(--hd-secondary);
    max-width: 36em;
}
.hd2-note {
    margin: 18px 0 0;
    font-size: 14px;
    color: var(--hd-secondary);
}

/* Text-only reveal block (no decorative diagram / placeholder) */
.hd2-reveal__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-areas:
        "copy list"
        "note list";
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}
.hd2-reveal__copy {
    grid-area: copy;
}
.hd2-reveal__note {
    grid-area: note;
    margin-top: 4px;
}
.hd2-reveal__copy .hd2-section__text {
    margin-bottom: 0;
}
.hd2-reveal__list {
    grid-area: list;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}
.hd2-reveal__list li {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 14px;
    align-items: baseline;
    padding: 16px 0;
    border-top: 1px solid var(--hd-line);
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.35;
    color: var(--hd-text);
}
.hd2-reveal__list li:last-child {
    border-bottom: 1px solid var(--hd-line);
}
.hd2-reveal__list span {
    font-variant-numeric: tabular-nums;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--hd-secondary);
}

.hd2-scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px;
    margin-top: 28px;
}
.hd2-scenarios h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 650;
    letter-spacing: -0.02em;
}
.hd2-scenarios p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--hd-secondary);
}


.hd2-timeline {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.hd2-timeline li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    font-size: inherit;
    font-weight: 400;
}
.hd2-timeline span {
    font-variant-numeric: tabular-nums;
    color: var(--hd-secondary);
    font-weight: 600;
    line-height: 1.3;
}
.hd2-timeline__body strong {
    display: block;
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--hd-text);
}
.hd2-timeline__body p {
    margin: 4px 0 0;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    color: var(--hd-secondary);
}
.hd2-price-list {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.hd2-price-list li {
    position: relative;
    padding-left: 1.15em;
    font-size: 15px;
    line-height: 1.5;
    color: var(--hd-secondary);
}
.hd2-price-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--hd-text);
}


.hd2-salon-meta {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 6px;
    font-size: 16px;
    color: var(--hd-secondary);
}
.hd2-salon-meta a {
    color: var(--hd-text);
    font-weight: 600;
}
.hd2-salon__photo {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
}
.hd2-salon__photo img {
    display: block;
    width: 100%;
    height: auto;
}

/* FAQ */
.hd2-faq {
    margin-top: 20px;
}
.hd2-faq__item {
    border-bottom: 1px solid var(--hd-line);
}
.hd2-faq__qwrap {
    margin: 0;
    font: inherit;
}
.hd2-faq__btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: 600 17px/1.35 'Montserrat', system-ui, sans-serif;
    color: var(--hd-text);
}
.hd2-faq__btn:focus-visible {
    outline: 2px solid var(--hd-accent);
    outline-offset: 3px;
}
.hd2-faq__plus {
    width: 14px;
    height: 14px;
    position: relative;
    flex: 0 0 auto;
}
.hd2-faq__plus::before,
.hd2-faq__plus::after {
    content: "";
    position: absolute;
    background: var(--hd-text);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.hd2-faq__plus::before {
    width: 14px;
    height: 1.5px;
}
.hd2-faq__plus::after {
    width: 1.5px;
    height: 14px;
}
.hd2-faq__btn[aria-expanded="true"] .hd2-faq__plus::after {
    display: none;
}
.hd2-faq__panel {
    padding: 0 0 18px;
}
.hd2-faq__panel p {
    margin: 0;
    max-width: 38em;
    font-size: 16px;
    line-height: 1.55;
    color: var(--hd-secondary);
}

/* Final */
.hd2-final {
    background: var(--hd-muted);
    border-radius: var(--hd-radius);
    padding: clamp(48px, 7vw, 80px) clamp(20px, 4vw, 48px);
    margin: clamp(24px, 4vw, 40px) 0 24px;
    text-align: center;
}
.hd2-final__inner {
    max-width: 34rem;
    margin: 0 auto;
}
.hd2-final__title {
    margin: 0 0 12px;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.08;
}
.hd2-final__text {
    margin: 0 0 28px;
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--hd-secondary);
}
.hd2-final .hd2-hero__actions {
    justify-content: center;
}

@media (max-width: 991px) {
    .hd2-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 28px;
    }
    .hd2-hero__visual {
        min-height: 280px;
        order: 2;
        padding: 0;
    }
    .hd2-hero__visual img {
        min-height: 280px;
        height: min(420px, 58vh);
        object-position: 50% 45%;
    }
    .hd2-hero__visual--typo {
        padding: 20px;
    }
    .hd2-hero__copy {
        order: 1;
    }
    .hd2-hero__actions {
        order: 3;
    }
    .hdLanding #uniProductGrid.grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }
    .hd2-section__inner--split {
        grid-template-columns: 1fr;
    }
    .hd2-reveal__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "list"
            "note";
        gap: 28px;
    }
    .hd2-reveal__note {
        margin-top: 0;
    }
    .hd2-scenarios {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* Tablet: slightly denser hero, keep hierarchy (not phone-tight) */
@media (min-width: 768px) and (max-width: 991px) {
    .hd2-hero {
        gap: 20px;
        padding: 10px 0 22px;
        margin-bottom: 24px;
    }
    .hd2-hero__title {
        font-size: clamp(34px, 4.2vw, 42px);
        margin-bottom: 10px;
        line-height: 1.08;
    }
    .hd2-hero__kicker {
        margin-bottom: 10px;
        font-size: clamp(18px, 2.2vw, 22px);
    }
    .hd2-hero__lead {
        margin-bottom: 18px;
        font-size: clamp(16px, 1.8vw, 18px);
    }
    .hd2-hero__visual {
        min-height: 0;
    }
    .hd2-hero__visual img {
        min-height: 0;
        height: min(380px, 48vh);
        max-height: 380px;
        object-position: 50% 44%;
    }
    .hd2-section {
        padding: clamp(40px, 5.5vw, 64px) 0;
    }
    .hd2-accent {
        margin-bottom: 28px;
        padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 40px);
    }
}

@media (max-width: 767px) {
    .hd2-hero {
        gap: 14px;
        padding: 8px 0 16px;
        margin-bottom: 18px;
    }
    .hd2-hero__title {
        font-size: 32px;
        line-height: 1.08;
        margin: 0 0 8px;
        letter-spacing: -0.03em;
    }
    .hd2-hero__kicker {
        font-size: clamp(17px, 4.5vw, 19px);
        line-height: 1.3;
        margin: 0 0 8px;
    }
    .hd2-hero__lead {
        font-size: 16px;
        line-height: 1.45;
        margin: 0 0 12px;
    }
    .hd2-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
    }
    .hd2-btn {
        min-height: 46px;
    }
    .hd2-btn--accent,
    .hd2-btn--dark {
        width: 100%;
    }
    .hd2-btn--text {
        text-align: center;
        width: 100%;
        min-height: 44px;
    }
    .hd2-hero__visual {
        min-height: 0;
    }
    .hd2-hero__visual img {
        min-height: 0;
        height: 350px;
        max-height: 360px;
        object-fit: cover;
        object-position: 50% 45%;
    }
    .hd2-accent {
        padding: 20px 16px;
        border-radius: 22px;
        margin-bottom: 20px;
    }
    .hd2-accent__title {
        margin-bottom: 10px;
    }
    .hd2-accent__text {
        margin-bottom: 12px;
        font-size: 16px;
    }
    .hd2-accent__points {
        margin-bottom: 14px;
        gap: 6px;
    }
    .hd2-accent__title,
    .hd2-section__title,
    .hd2-catalog-head__title {
        font-size: clamp(26px, 6.5vw, 32px);
    }
    .hd2-accent__title,
    .hd2-catalog-head__title {
        margin-bottom: 10px;
    }
    /* Post-catalog densify only: keep hero/accent/catalog rhythm */
    .hd2-section__title {
        margin-bottom: 6px;
    }
    .hd2-section__text {
        font-size: 16px;
        line-height: 1.42;
        margin-bottom: 8px;
    }
    .hdLanding #uniProductGrid.grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .hdLanding #uniProductGrid .card > img,
    .hdLanding #uniProductGrid .card picture img {
        padding: 20px 18px 4px !important;
        max-height: 420px !important;
    }
    .hdLanding #uniProductGrid .cardTitle {
        font-size: 18px !important;
    }
    .hd2-after {
        margin-top: 28px;
    }
    .hd2-section {
        padding: 26px 0;
    }
    .hd2-section--muted {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .hd2-section__inner--narrow {
        padding-top: 0;
    }
    .hd2-section__inner--split {
        gap: 16px;
    }
    .hd2-reveal__grid {
        gap: 12px;
    }
    .hd2-reveal__list li {
        padding: 6px 0;
        font-size: 16px;
        gap: 10px;
        line-height: 1.3;
    }
    .hd2-note {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.4;
    }
    .hd2-scenarios {
        gap: 10px 14px;
        margin-top: 12px;
    }
    .hd2-scenarios h3 {
        margin-bottom: 2px;
        font-size: 17px;
    }
    .hd2-scenarios p {
        font-size: 15px;
        line-height: 1.4;
    }
    .hd2-price-list {
        margin: 8px 0 10px;
        gap: 4px;
    }
    .hd2-price-list li {
        font-size: 15px;
        line-height: 1.4;
    }
    .hd2-timeline {
        gap: 6px;
        margin-top: 10px;
    }
    .hd2-timeline__body p {
        margin-top: 2px;
        font-size: 15px;
        line-height: 1.35;
    }
    .hd2-timeline__body strong {
        font-size: 16px;
    }
    .hd2-salon-meta {
        margin-bottom: 12px;
        gap: 2px;
        font-size: 15px;
    }
    .hd2-salon__photo {
        border-radius: 18px;
    }
    .hd2-faq {
        margin-top: 8px;
    }
    .hd2-faq__btn {
        font-size: 15px;
        min-height: 44px;
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 1.3;
    }
    .hd2-faq__item {
        padding: 0;
    }
    .hd2-final {
        text-align: left;
        padding: 20px 16px;
        border-radius: 22px;
        margin-top: 0;
    }
    .hd2-final .hd2-hero__actions {
        align-items: stretch;
        gap: 8px;
    }
    .hd2-final__title {
        margin-bottom: 6px;
    }
    .hd2-final__text {
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 1.4;
    }
    .hdLanding .hd2-interiors__lead {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.42;
    }
    .hdLanding .hd2-interiors__grid {
        gap: 8px;
    }
    .hdLanding .hd2-interiors__item {
        max-height: 300px;
    }
    .hd2-catalog-head {
        margin-bottom: 16px;
    }
    .hd2-catalog-head__sub {
        margin-top: 6px;
        font-size: 15px;
    }
}

/* Very narrow phones: keep hero near target height despite extra H1 wraps */
@media (max-width: 360px) {
    .hd2-hero__title {
        font-size: 31px;
        line-height: 1.06;
    }
    .hd2-hero__visual img {
        height: 340px;
        max-height: 340px;
    }
    .hd2-hero {
        gap: 12px;
        padding-bottom: 14px;
        margin-bottom: 16px;
    }
}

/* Safe area for mob bottom bar */
.hdLanding .hd2-final {
    margin-bottom: 96px;
}
