:root {


    --bg: #22272d;
    --ink: #fffffe;
    --white: #fffffe;
    --muted: #22272d;
    --line: #606e80; /* ok */

    --blue: #606e80;
    --blue-dark: #22272d;
    --red: #cb272c;

    --card: #22272d;
    --shadow: #606e80;

    --r12: 12px;
    --r16: 16px;
    --r22: 22px;

    --max: 1240px;
}

* {
    box-sizing: border-box;
    font-family: "Geologica", sans-serif;
    font-optical-sizing: auto;

    font-style: normal;
    font-variation-settings: "slnt" 0,
    "CRSV" 0,
    "SHRP" 0;
}

html, body {
    height: 100%;
}

body {
    background-color: #22272d;
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
    overflow-x: hidden;
}

/* ===== Background decoration (пастельні діагоналі як на скріні) ===== */
.bgDecor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;

}


.container{
    width: min(var(--max), calc(100% - 28px));
    margin-inline: auto;
}


/* ===== Header ===== */
header {
    padding: 16px 0 10px;
}

.topbar {
    display: grid;
    grid-template-columns: 280px 1fr 340px;
    gap: 18px;
    align-items: center;
}

/* logo block */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}

.brand__mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    position: relative;
}

.brand__mark span {
    font-weight: 900;
    letter-spacing: .02em;
    color: var(--blue);
    font-size: 20px;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand__name {
    color: var(--white);
    font-weight: 800;
    letter-spacing: .18em;
    font-size: 14px;
}

.brand__sub {
    font-weight: 700;
    letter-spacing: .16em;
    font-size: 11px;
    color: #606e80;
    margin-top: 4px;
}

/* nav */
.navWrap {
    display: flex;
    justify-content: center;
}

nav {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 12px 18px;
    border-radius: 2px;


}

nav a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .02em;
    white-space: nowrap;
}

nav a:hover {
    opacity: .85;
}

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

.caret {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-right: 2px solid rgba(255, 255, 255, .9);
    border-bottom: 2px solid rgba(255, 255, 255, .9);
    transform: rotate(45deg);
    margin-top: -2px;
    opacity: .85;
}


.phoneCard a {
    text-decoration: none;
    color: var(--ink);
}

.phoneNum {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: .02em;
    line-height: 1;
}

.phoneHint {
    display: block;
    margin-top: 4px;
    font-weight: 800;
    color: var(--blue);
    text-decoration: underline;
    font-size: 12px;
    letter-spacing: .06em;
}

/* Burger for mobile */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 2px;
    border: 1px solid var(--line);
    background: #fffffe;
    cursor: pointer;
    place-items: center;
}

.burger span {
    width: 18px;
    height: 2px;
    background: rgba(22, 62, 59, .8);
    position: relative;
    display: block;
}

.burger span::before,
.burger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: rgba(22, 62, 59, .8);
}

.burger span::before {
    top: -6px;
}

.burger span::after {
    top: 6px;
}

.mobileNav {
    display: none;
    margin-top: 10px;
    background: rgb(96, 110, 128);
    border-radius: 2px;
    padding: 12px;
}

.mobileNav a {
    display: block;
    padding: 12px 12px;
    border-radius: 2px;
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-weight: 800;
}

.mobileNav a:hover {
    background: rgba(255, 255, 255, .08);
}

/* ===== Main layout ===== */
main {
    padding: 22px 0 40px;
}

.layout {
    display: grid;
    grid-template-columns: 360px 1fr 320px;
    gap: 26px;
    align-items: start;
}

/* left panel */
.left {
    padding-top: 0px;
}

.backBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 2px;
    border: 2px solid rgb(203, 39, 44);
    background: rgb(34, 39, 45);
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .02em;
}

.aptCode {
    color: #cb272c;
    margin: 18px 0 6px;
    font-size: 84px;
    font-weight: 300;
    letter-spacing: .02em;
}

.areaRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: end;
    border-top: 2px solid rgba(22, 62, 59, .18);
    padding-top: 10px;
    margin-top: 8px;
}

.areaBox small {
    display: block;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: .02em;
}

.areaBox b {
    color: var(--white);
    font-size: 26px;
    font-weight: 900;
}

.areaList {
    margin-top: 12px;
    width: 100%;
    max-width: 320px;
    border-collapse: collapse;
    font-size: 15px;
    color: var(--white);
}

.areaList td {
    padding: 4px 0;
    vertical-align: top;
}

.areaList td:last-child {
    text-align: right;
    font-weight: 800;
    color: var(--white);
    white-space: nowrap;
}

.ctaPrice {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 49%;
    padding: 14px 18px;
    border-radius: 2px;
    background: var(--red);
    color: white;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(111, 181, 143, .25);
}

.ctaPrice:hover {
    filter: brightness(.98);
    transform: translateY(-1px);
}

/* center plan */
.center {
    text-align: center;
}

.tabs {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(22, 62, 59, .18);
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 12px 20px rgba(0, 0, 0, .06);
    margin: 0 auto 12px;
}

.tab {
    padding: 12px 18px;
    font-weight: 900;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(22, 62, 59, .9);
    font-size: 16px;
}

.tab.active {
    background: var(--red);
    color: white;
}

.planCard {

    background: transparent;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 14px;
    box-shadow: var(--shadow);
}
.planCard img{
    display:block;
    max-width:100%;
    height:auto;
}
.planImg {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 1/1.04;
    object-fit: contain;
    border-radius: 2px;
    background: white;
    border: 1px solid rgba(22, 62, 59, .12);
}

/* right panel */
.right {
    padding-top: 0px;
    position: relative;
}

.miniTop {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-bottom: 14px;
}

.socBtn {
    width: 44px;
    height: 44px;
    border-radius: 2px;
    border: 1px solid rgba(22, 62, 59, .12);
    background: #606e80;
    display: grid;
    place-items: center;
    cursor: pointer;
    text-decoration: none;
}

.socBtn:hover {
    filter: brightness(.60);
    transform: translateY(-1px);
}

.previewCard {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 12px;
    box-shadow: var(--shadow);
}

.previewImgWrap {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(22, 62, 59, .12);
    background: #fff;
}

.previewImgWrap img {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.zoomBtn {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    background: #606e80;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.availableBtn {
    margin-top: 12px;
    width: 100%;
    border: none;
    background: #606e80;
    color: white;
    font-weight: 900;
    padding: 14px 12px;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: .02em;
}

.downloads {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.dl {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: #606e80;
    padding: 12px 12px;
    border-radius: 2px;
    border: 1px solid rgba(22, 62, 59, .12);
    background: rgba(255, 255, 255, .62);
}

.dl:hover {
    transform: translateY(-1px);
}

.pdfIcon {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    border: 1px solid rgba(22, 62, 59, .12);
    background: #606e80;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: white;
}

.dl b {
    font-weight: 900;
    text-decoration: underline;
}


/* ===== Responsive ===== */
@media (max-width: 1180px) {
    .topbar {
        grid-template-columns: 260px 1fr 320px;
    }

    .layout {
        grid-template-columns: 340px 1fr 300px;
    }
}

@media (max-width: 980px) {
    .topbar {
        grid-template-columns: 1fr auto;
    }

    .navWrap {
        display: none;
    }

    .burger {
        display: grid;
        justify-self: end;
    }

    .phoneCard {
        display: none;
    }

    .layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .center {
        order: 1;
    }

    .left {
        order: 2;
    }

    .right {
        order: 3;
    }

    .planImg {
        max-width: 720px;
    }

    .floatCall {
        right: 16px;
        bottom: 16px;
        width: 76px;
        height: 76px;
    }
}

@media (max-width: 520px) {
    .aptCode {
        font-size: 64px;
    }

    .backBtn {
        width: 100%;
    }

    .ctaPrice {
        width: 100%;
        min-width: auto;
    }

    .tabs {
        width: 100%;
    }

    .tab {
        font-size: 14px;
        padding: 12px 10px;
    }

    .miniTop {
        justify-content: space-between;
    }
}

/* ===== Apartments grid ===== */

.apartmentsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Card */
.apartmentCard {
    display: block;
    text-decoration: none;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 24px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
    transition: transform .15s ease, box-shadow .15s ease;
}

.apartmentCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .35);
}

/* Code */
.apartmentCode {
    font-size: 56px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 12px;
}

/* Area */
.apartmentArea span {
    display: block;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--blue);
    font-weight: 700;
}

.apartmentArea b {
    font-size: 22px;
    color: var(--white);
    font-weight: 900;
}

/* ===== Responsive ===== */

@media (max-width: 1100px) {
    .apartmentsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .apartmentsGrid {
        grid-template-columns: 1fr;
    }

    .apartmentCode {
        font-size: 42px;
    }
}

/* ===== Apartment card image ===== */

.apartmentImg {
    width: 100%;
    aspect-ratio: 1 / 1;
    /*background: var(--blue-dark);*/
    border: 1px solid var(--line);
    margin-bottom: 16px;
    overflow: hidden;
}

.apartmentImg img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* важливо для планів */
    transition: transform .25s ease;
}

/* легкий zoom як на девелоперських сайтах */
.apartmentCard:hover .apartmentImg img {
    transform: scale(1.03);
}

.apartmentInfo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ===== HOME: Hero + Carousel + Sections ===== */

.heroHome {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items: stretch;
    margin-top: 10px;
}

.heroHome__left {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 26px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

.heroKicker {
    color: var(--blue);
    font-weight: 800;
    letter-spacing: .08em;
    font-size: 12px;
    text-transform: uppercase;
}

.heroTitle {
    color: var(--white);
    margin: 10px 0 10px;
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 300;
}

.heroText {
    color: rgba(255, 255, 255, .86);
    line-height: 1.6;
    margin: 0 0 16px;
}

.heroActions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btnGhost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 2px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
}

.heroStats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.statBox {
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 12px;
}

.statBox small {
    display: block;
    color: var(--red);
    font-weight: 900;
    font-size: 12px;
}

.statBox b {
    display: block;
    color: var(--white);
    font-weight: 900;
    margin-top: 6px;
}

/* Carousel */
.carousel {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 14px;
    box-shadow: var(--shadow);
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    min-height: 300px;
}

.slide {
    display: none;
    padding: 18px;
    min-height: 260px;
    background: linear-gradient(135deg, rgba(96, 110, 128, .18), transparent 60%),
    #fff;
}

.slide.is-active {
    display: block;
}

.slide__badge {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-weight: 900;
    letter-spacing: .06em;
    padding: 6px 10px;
    border-radius: 2px;
    font-size: 12px;
}

.slide__title {
    margin: 12px 0 8px;
    font-size: 22px;
    color: #22272d;
    font-weight: 900;
}

.slide__text {
    margin: 0 0 14px;
    color: #22272d;
    opacity: .85;
    line-height: 1.6;
}

.slide__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 2px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}

.carousel__controls {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.carBtn {
    width: 44px;
    height: 44px;
    border-radius: 2px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    color: #22272d;
}

.dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 8%;
    border: 1px solid var(--line);
    background: rgba(96, 110, 128, .35);
    cursor: pointer;
}

.dot.is-active {
    background: var(--red);
    border-color: var(--red);
}

/* Sections */
.sectionBlock {
    margin-top: 26px;
}

.sectionHead {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.sectionHead h2 {
    color: var(--white);
    margin: 0;
    font-weight: 900;
    letter-spacing: .04em;
}

.linkMore {
    color: var(--blue);
    text-decoration: underline;
    font-weight: 900;
}

/* Apartments grid (якщо в тебе вже є — не дублюй) */
.apartmentsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.apartmentCard {
    display: block;
    text-decoration: none;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 18px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
    transition: transform .15s ease, box-shadow .15s ease;
}

.apartmentCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .35);
}

.apartmentImg {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--card);
    border: 1px solid var(--line);
    overflow: hidden;
    margin-bottom: 14px;
}

.apartmentImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .25s ease;
}

.apartmentCard:hover .apartmentImg img {
    transform: scale(1.03);
}

.apartmentInfo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.apartmentCode {
    font-size: 44px;
    font-weight: 300;
    color: var(--red);
}

.apartmentArea span {
    display: block;
    color: var(--blue);
    font-weight: 900;
    font-size: 12px;
}

.apartmentArea b {
    color: var(--white);
    font-weight: 900;
    font-size: 20px;
}

/* Info */
.infoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.infoCard {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.infoCard h3 {
    margin: 0 0 8px;
    font-weight: 900;
    color: #22272d;
}

.infoCard p {
    margin: 0;
    color: #22272d;
    opacity: .85;
    line-height: 1.6;
}

/* Contacts */
.contactsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contactCard {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.contactCard h3 {
    margin: 0 0 10px;
    font-weight: 900;
    color: #22272d;
}

.contactCard p {
    margin: 8px 0;
    color: #22272d;
    opacity: .9;
}

.contactLink {
    color: #22272d;
    font-weight: 900;
    text-decoration: underline;
}

.mapStub {
    margin-top: 10px;
    border: 1px solid var(--line);
    border-radius: 2px;
    height: 220px;
    display: grid;
    place-items: center;
    color: #22272d;
    background: rgba(96, 110, 128, .12);
    font-weight: 900;
}

/* Footer */
.footer {
    margin-top: 28px;
    padding-bottom: 30px;
}

.footerLine {
    height: 1px;
    background: var(--line);
    margin-bottom: 12px;
}

.footerRow {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, .8);
    font-weight: 700;
}

.footerMuted {
    color: rgba(96, 110, 128, .9);
}

/* Responsive */
@media (max-width: 980px) {
    .heroHome {
        grid-template-columns: 1fr;
    }

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

    .apartmentsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 640px) {
    .apartmentsGrid {
        grid-template-columns: 1fr;
    }

    .apartmentCode {
        font-size: 36px;
    }
}


/* ===== Benefits ===== */

.benefitsGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Card */
.benefitCard {
    background: #22272d;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--white);
}

.benefitImg {
    width: 60%;
    aspect-ratio: 1 / 1;
    border: 0px solid var(--line);
    background: #22272d;
    display: grid;
    place-items: center;
    align-content: center;
    align-self: center;
    overflow: hidden;
}

.benefitImg img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

/* Text */
.benefitCard h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: var(--red);
}

.benefitCard p {
    margin: 0;
    font-size: 14px;

    line-height: 1.5;
    color: var(--white);
    opacity: .85;
}

/* ===== Responsive ===== */

@media (max-width: 1200px) {
    .benefitsGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .benefitsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .benefitsGrid {
        grid-template-columns: 1fr;
    }
}

.red {
    color: #cb272c;
}

/* ===== Buyers page ===== */

.accordion {
    display: grid;
    gap: 14px;
}

.accItem {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
}

.accHeader {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: none;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
}

.accBody {
    display: none;
    padding: 16px;
    border-top: 1px solid var(--line);
}

.accItem.open .accBody {
    display: block;
}

.accBody p {
    margin: 0 0 12px;
    color: #22272d;
    line-height: 1.6;
}

/* Documents */
.documentsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.docCard {
    display: block;
    padding: 18px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 2px;
    font-weight: 900;
    color: #22272d;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.docCard:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px) {
    .documentsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .documentsGrid {
        grid-template-columns: 1fr;
    }
}

/* ===== Gallery ===== */

.galleryCarousel {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 14px;
    box-shadow: var(--shadow);
}

.galleryViewport {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #fff;
}

/* Slide */
.gallerySlide {
    display: none;
    text-align: center;
}

.gallerySlide.is-active {
    display: block;
}

.gallerySlide img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #fff;
}

.gallerySlide figcaption {
    padding: 10px;
    font-weight: 900;
    color: #22272d;
    background: rgba(96, 110, 128, .12);
    border-top: 1px solid var(--line);
}

/* Controls */
.galleryControls {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.galleryDots {
    display: flex;
    gap: 8px;
}

.galleryDots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(96, 110, 128, .35);
    cursor: pointer;
}

.galleryDots .dot.is-active {
    background: var(--red);
    border-color: var(--red);
}

/* ===== Contacts page ===== */

.contactsPage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contactInfoCard,
.contactFormCard {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.contactInfoCard h3,
.contactFormCard h3 {
    margin-top: 0;
    font-weight: 900;
    color: #22272d;
}

.contactLink {
    font-weight: 900;
    color: #22272d;
    text-decoration: underline;
}

.messengerButtons {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.msgBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-weight: 900;
    border-radius: 2px;
    text-decoration: none;
    color: #fff;
}

.msgBtn.telegram {
    background: #229ED9;
}

.msgBtn.viber {
    background: #7360F2;
}

.msgBtn.whatsapp {
    background: #25D366;
}

.contactFormCard input,
.contactFormCard textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 2px;
    border: 1px solid var(--line);
}

.mapCard {
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    height: 380px;
}

.mapCard iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 900px) {
    .contactsPage {
        grid-template-columns: 1fr;
    }
}

/* ===== Price contact buttons (brand red) ===== */

.priceBlock {
    margin-top: 24px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: rgba(255, 255, 255, .72);
}

.priceTitle {
    text-align: center;
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 12px;
    margin-bottom: 14px;
    color: #22272d;
}

.priceButtons {
    display: grid;
    gap: 10px;
}

.priceBtn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 900;
    background: var(--red); /* фірмовий червоний */
    color: #fff;
    transition: transform .15s ease, box-shadow .15s ease;
}

.priceBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

/* ===== Icons ===== */

.priceBtn .icon {
    width: 20px;
    height: 20px;
    background: #fff;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

/* Telegram */
.icon.tg {
    mask-image: url("imgs/icons/telegram.svg");
    -webkit-mask-image: url("imgs/icons/telegram.svg");
}

/* Viber */
.icon.viber {
    mask-image: url("imgs/icons/viber.svg");
    -webkit-mask-image: url("imgs/icons/viber.svg");
}

/* WhatsApp */
.icon.wa {
    mask-image: url("imgs/icons/whatsapp.svg");
    -webkit-mask-image: url("imgs/icons/whatsapp.svg");
}
.downloadOfferBtn {
    margin-top: 14px;
    padding: 12px 14px;
    width: 100%;

    background: #cb272c;
    color: #fff;

    border: none;
    border-radius: 12px;

    font-weight: 700;
    font-size: 13px;
    letter-spacing: .3px;

    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
}

.downloadOfferBtn:hover {
    background: #a81f23;
    transform: translateY(-1px);
}

.downloadOfferBtn:active {
    transform: translateY(0);
}
