:root {
    --charcoal: #191915;
    --charcoal-soft: #26251f;
    --ember: #c75a31;
    --ember-dark: #994024;
    --sand: #d7b277;
    --paper: #f4efe5;
    --paper-deep: #e9dfcf;
    --white: #fffdf8;
    --ink: #201f1a;
    --muted: #6b675d;
    --sage: #687266;
    --line: rgba(32, 31, 26, .16);
    --line-light: rgba(255, 253, 248, .2);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shell: min(1240px, calc(100vw - 72px));
    --section: clamp(88px, 9vw, 144px);
    --shadow: 0 26px 80px rgba(27, 23, 17, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.dialog-open, body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
h1 { font-size: clamp(3.3rem, 6vw, 6.7rem); }
h2 { font-size: clamp(2.6rem, 4.9vw, 5.2rem); }
h3 { font-size: clamp(1.55rem, 2.2vw, 2.35rem); }
::selection { color: var(--white); background: var(--ember); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: var(--section); }
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
    position: fixed !important;
    z-index: 99999;
    top: 12px; left: 12px;
    width: auto; height: auto;
    padding: 12px 16px;
    clip: auto;
    color: #fff;
    background: #000;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--ember);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.eyebrow > span { display: block; width: 34px; height: 1px; background: currentColor; }
.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 25px;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary, .button--ember { color: #fff; background: var(--ember); }
.button--primary:hover, .button--ember:hover { background: var(--ember-dark); }
.button--dark { color: var(--white); background: var(--charcoal); }
.button--dark:hover { background: var(--ember-dark); }
.button--line { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(0,0,0,.15); backdrop-filter: blur(8px); }
.button--line:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button--ghost { border-color: var(--line); background: transparent; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}
.text-link span { color: var(--ember); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
    .js .reveal { opacity: 1; transform: none; }
}

/* Header */
.site-header {
    position: fixed;
    z-index: 900;
    inset: 0 0 auto;
    height: 82px;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(to bottom, rgba(18,18,15,.75), rgba(18,18,15,.06));
    transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { height: 70px; color: var(--ink); background: rgba(244,239,229,.96); box-shadow: 0 12px 35px rgba(20,20,16,.08); backdrop-filter: blur(16px); }
body.admin-bar .site-header { top: 32px; }
.site-header__inner { display: grid; height: 100%; grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr); align-items: center; gap: 28px; }
.site-brand { display: inline-flex; width: max-content; align-items: center; gap: 12px; text-decoration: none; }
.site-brand__emblem, .site-footer__emblem {
    position: relative;
    display: grid;
    width: 42px; height: 42px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
}
.site-brand__emblem::before, .site-footer__emblem::before { content: ''; width: 14px; height: 18px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(-35deg); }
.site-brand__emblem i, .site-footer__emblem i { position: absolute; width: 8px; height: 14px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: translate(4px, -1px) rotate(-12deg); }
.site-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.site-brand__text strong { font-family: var(--serif); font-size: 19px; font-weight: 400; letter-spacing: -.03em; }
.site-brand__text small { margin-top: 5px; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .72; }
.site-nav__list { display: flex; align-items: center; gap: 25px; margin: 0; padding: 0; list-style: none; }
.site-nav__list a { position: relative; padding-block: 10px; font-size: 11px; font-weight: 800; text-decoration: none; }
.site-nav__list a::after { content: ''; position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: var(--ember); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav__list a:hover::after, .site-nav__list .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.site-header__actions { display: flex; justify-self: end; align-items: center; gap: 16px; }
.site-header__phone { display: flex; flex-direction: column; line-height: 1.1; text-align: right; text-decoration: none; }
.site-header__phone span { font-size: 13px; font-weight: 800; white-space: nowrap; }
.site-header__phone small { margin-top: 4px; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.site-header .button { min-height: 44px; padding: 11px 18px; }
.nav-toggle { display: none; border: 0; color: inherit; background: transparent; }

/* Hero */
.mz-hero {
    position: relative;
    min-height: 940px;
    padding-top: 82px;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal) var(--hero-image) center/cover no-repeat;
}
.mz-hero__backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,19,16,.92) 0%, rgba(20,19,16,.74) 43%, rgba(20,19,16,.25) 74%, rgba(20,19,16,.58) 100%), linear-gradient(0deg, rgba(20,19,16,.9), transparent 42%); }
.mz-hero__backdrop::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 78% 35%, rgba(210,114,61,.22), transparent 30%); mix-blend-mode: screen; }
.mz-hero__grid { position: relative; z-index: 1; display: grid; min-height: 690px; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr); align-items: end; gap: clamp(48px, 7vw, 110px); padding-block: 110px 80px; }
.mz-hero__copy { max-width: 840px; }
.mz-hero h1 { max-width: 850px; margin-bottom: 32px; }
.mz-hero__lead { max-width: 710px; margin-bottom: 36px; color: rgba(255,253,248,.82); font-size: clamp(1.05rem, 1.55vw, 1.35rem); line-height: 1.6; }
.mz-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.mz-hero__clarity { display: flex; max-width: 660px; align-items: center; gap: 12px; margin: 24px 0 0; color: rgba(255,253,248,.68); font-size: 12px; }
.mz-hero__clarity i { display: grid; width: 20px; height: 20px; flex: 0 0 auto; place-items: center; border: 1px solid var(--sand); border-radius: 50%; }
.mz-hero__clarity i::before { content: '!'; color: var(--sand); font-size: 11px; font-style: normal; font-weight: 800; }
.mz-offer-card { align-self: end; padding: 34px; color: var(--ink); background: rgba(244,239,229,.97); box-shadow: var(--shadow); }
.mz-offer-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.mz-offer-card__top em { color: var(--ember); font-style: normal; }
.mz-offer-card > p { margin: 25px 0 22px; font-family: var(--serif); font-size: 31px; line-height: 1; }
.mz-offer-card ul { margin: 0; padding: 0; border-block: 1px solid var(--line); list-style: none; }
.mz-offer-card li { display: flex; justify-content: space-between; gap: 16px; padding-block: 12px; border-bottom: 1px solid var(--line); font-size: 12px; }
.mz-offer-card li:last-child { border-bottom: 0; }
.mz-offer-card li span { color: var(--muted); }
.mz-offer-card__price { display: flex; align-items: end; justify-content: space-between; gap: 16px; padding-block: 22px; }
.mz-offer-card__price small { color: var(--muted); font-size: 10px; }
.mz-offer-card__price b { font-family: var(--serif); font-size: 30px; font-weight: 400; white-space: nowrap; }
.mz-offer-card .button { width: 100%; }
.mz-hero__facts { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); }
.mz-hero__facts > div { display: flex; align-items: center; gap: 18px; padding: 28px 34px; border-right: 1px solid var(--line-light); }
.mz-hero__facts > div:first-child { padding-left: 0; }
.mz-hero__facts > div:last-child { border-right: 0; }
.mz-hero__facts b { color: var(--sand); font-family: var(--serif); font-size: 22px; font-weight: 400; }
.mz-hero__facts span { display: flex; flex-direction: column; }
.mz-hero__facts strong { font-size: 13px; }
.mz-hero__facts small { margin-top: 4px; color: rgba(255,253,248,.62); font-size: 10px; }

/* Sections */
.section-heading { margin-bottom: clamp(45px, 6vw, 82px); }
.section-heading h2 { max-width: 900px; margin-bottom: 0; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(270px, .55fr); align-items: end; gap: 70px; }
.section-heading--split > p { margin: 0; color: var(--muted); }
.mz-positioning { background: var(--paper); }
.mz-positioning__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, .7fr); gap: clamp(70px, 10vw, 160px); }
.mz-positioning__text { padding-top: 42px; color: var(--muted); font-size: 1.05rem; }
.mz-positioning__text p:first-child { color: var(--ink); font-size: 1.2rem; }
.mz-included-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.mz-included-grid article { min-height: 285px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s ease, background .25s ease; }
.mz-included-grid article:hover { color: var(--white); background: var(--charcoal); }
.mz-included-grid article > span { color: var(--ember); font-family: var(--serif); font-size: 21px; }
.mz-included-grid h3 { margin: 74px 0 15px; font-size: 26px; }
.mz-included-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.mz-included-grid article:hover p { color: rgba(255,255,255,.65); }

.mz-fire-story { color: var(--white); background: var(--charcoal); }
.mz-fire-story__grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, .75fr); align-items: center; gap: clamp(55px, 8vw, 120px); }
.mz-fire-story__media { position: relative; min-height: 650px; overflow: hidden; }
.mz-fire-story__media img { width: 100%; height: 650px; object-fit: cover; filter: saturate(.8) contrast(1.05); }
.mz-fire-story__media::after { content: ''; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(transparent, rgba(20,20,16,.75)); }
.mz-fire-story__media figcaption { position: absolute; z-index: 1; right: 25px; bottom: 22px; left: 25px; color: rgba(255,255,255,.7); font-size: 10px; }
.mz-fire-story__content h2 { margin-bottom: 32px; }
.mz-fire-story__content > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.mz-fire-story .text-link { color: #fff; }
.check-list { margin: 30px 0 38px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 28px; border-bottom: 1px solid var(--line-light); font-size: 13px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sand); font-weight: 800; }

.mz-house { background: var(--white); }
.mz-house__layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(310px, .5fr); gap: 55px; }
.mz-house__gallery { display: grid; grid-template-columns: 1.4fr .6fr; grid-template-rows: repeat(2, 245px); gap: 10px; }
.mz-house__gallery figure { overflow: hidden; }
.mz-house__gallery-main { grid-row: 1 / 3; }
.mz-house__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.mz-house__gallery figure:hover img { transform: scale(1.035); }
.mz-house__details { padding: 32px 0 0 20px; }
.mz-house__number { margin-bottom: 62px; color: var(--ember); font-family: var(--serif); font-size: 18px; }
.mz-house__details h3 { font-size: 38px; }
.feature-list { margin: 28px 0 38px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: 12px 0 12px 23px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.feature-list li::before { content: ''; position: absolute; top: 21px; left: 2px; width: 7px; height: 7px; border: 1px solid var(--ember); transform: rotate(45deg); }

.mz-extras { padding-block: 0; color: var(--white); background: var(--charcoal-soft); }
.mz-extras__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: stretch; }
.mz-extras__content { padding: clamp(65px, 8vw, 120px) clamp(45px, 7vw, 110px) clamp(65px, 8vw, 120px) 0; }
.mz-extras__content h2 { margin-bottom: 30px; }
.mz-extras__content > p:not(.eyebrow) { color: rgba(255,255,255,.67); }
.mz-extras__price { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 35px 0 18px; padding-block: 20px; border-block: 1px solid var(--line-light); }
.mz-extras__price span { font-size: 12px; }
.mz-extras__price strong { color: var(--sand); font-family: var(--serif); font-size: 27px; font-weight: 400; }
.small-note { font-size: 11px !important; }
.mz-extras__media { min-height: 610px; margin-right: calc((100vw - var(--shell)) / -2); }
.mz-extras__media img { width: 100%; height: 100%; object-fit: cover; }

.mz-pricing { background: var(--paper-deep); }
.mz-pricing__cards { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.mz-pricing__cards article { display: flex; min-height: 255px; flex-direction: column; justify-content: end; padding: 32px; border-right: 1px solid var(--line); }
.mz-pricing__cards article:last-child { border-right: 0; }
.mz-pricing__cards article.is-accent { color: var(--white); background: var(--ember); }
.mz-pricing__cards small { margin-bottom: auto; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.mz-pricing__cards strong { font-family: var(--serif); font-size: clamp(38px, 4vw, 58px); font-weight: 400; line-height: 1; }
.mz-pricing__cards span { margin-top: 8px; color: var(--muted); font-size: 11px; }
.mz-pricing__cards .is-accent span { color: rgba(255,255,255,.65); }
.mz-discounts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.mz-discounts p { display: flex; align-items: center; gap: 16px; margin: 0; padding: 18px 25px; border-right: 1px solid var(--line); }
.mz-discounts p:last-child { border-right: 0; }
.mz-discounts b { color: var(--ember); font-family: var(--serif); font-size: 26px; font-weight: 400; }
.mz-discounts span { color: var(--muted); font-size: 11px; }
.mz-pricing__action { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.mz-pricing__action p { max-width: 520px; margin: 0; }

.mz-video { position: relative; overflow: hidden; color: var(--white); background: var(--charcoal); }
.mz-video::before { position: absolute; top: 0; right: 0; width: 31vw; height: 7px; content: ''; background: var(--ember); }
.mz-video__intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .48fr); align-items: end; gap: clamp(60px, 9vw, 135px); margin-bottom: clamp(45px, 6vw, 78px); }
.mz-video__title, .mz-video__copy { min-width: 0; }
.mz-video__intro h2 { max-width: 850px; margin: 0; font-size: clamp(2.8rem, 4.45vw, 4.9rem); overflow-wrap: break-word; }
.mz-video__copy { max-width: 430px; padding: 25px 0 2px 28px; border-left: 1px solid var(--line-light); }
.mz-video__copy strong { display: block; margin-bottom: 12px; color: var(--sand); font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.15; }
.mz-video__copy p { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; }
.mz-video__stage { display: grid; grid-template-columns: minmax(0, 1fr) 190px; align-items: stretch; }
.mz-video__frame { position: relative; min-width: 0; aspect-ratio: 16/9; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: #000; box-shadow: 0 35px 90px rgba(0,0,0,.38); }
.mz-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mz-video__rail { display: flex; flex-direction: column; justify-content: space-between; padding: 24px; color: var(--white); background: var(--ember); }
.mz-video__rail span { display: flex; min-height: 112px; flex-direction: column; justify-content: space-between; padding: 4px 0 20px; border-bottom: 1px solid rgba(255,255,255,.28); font-size: 11px; font-weight: 800; line-height: 1.35; text-transform: uppercase; }
.mz-video__rail span:last-child { padding-bottom: 4px; border-bottom: 0; }
.mz-video__rail b { color: rgba(255,255,255,.62); font-family: var(--serif); font-size: 19px; font-weight: 400; }

.mz-reviews { background: var(--white); }
.mz-reviews__grid { display: grid; grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr); align-items: start; gap: clamp(60px, 9vw, 135px); }
.mz-reviews__intro { position: sticky; top: 115px; }
.mz-reviews__intro h2 { margin-bottom: 30px; }
.mz-reviews__intro p:not(.eyebrow) { color: var(--muted); }
.mz-reviews__widget { position: relative; max-width: 650px; padding: 18px; background: var(--paper); box-shadow: var(--shadow); }
.mz-reviews__widget::before { content: '2ГИС · официальные отзывы'; display: block; padding: 10px 10px 22px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.mz-reviews__widget iframe { display: block; width: 100% !important; max-width: 100%; height: 690px; border: 0; background: #fff; }

.mz-process { background: var(--paper); }
.mz-process__steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.mz-process__steps li { min-height: 280px; padding: 28px; border-right: 1px solid var(--line); }
.mz-process__steps li:last-child { border-right: 0; }
.mz-process__steps span { color: var(--ember); font-family: var(--serif); font-size: 20px; }
.mz-process__steps h3 { margin: 75px 0 18px; font-size: 28px; }
.mz-process__steps p { margin: 0; color: var(--muted); font-size: 13px; }

.mz-seo-guide { color: var(--white); background: #313229; }
.mz-seo-guide__grid { display: grid; grid-template-columns: minmax(0, .62fr) minmax(0, .8fr); gap: clamp(70px, 10vw, 150px); }
.mz-seo-guide header { position: sticky; top: 115px; align-self: start; }
.prose { color: rgba(255,255,255,.72); }
.prose > p:first-child { color: var(--white); font-size: 1.15rem; }
.prose h3 { margin: 45px 0 17px; color: var(--sand); font-size: 26px; }

.faq { background: var(--paper-deep); }
.faq__grid { display: grid; grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr); gap: clamp(65px, 9vw, 140px); }
.faq__heading { position: sticky; top: 115px; align-self: start; }
.faq__items details { border-top: 1px solid var(--line); }
.faq__items details:last-child { border-bottom: 1px solid var(--line); }
.faq__items summary { display: grid; min-height: 84px; grid-template-columns: 46px 1fr 22px; align-items: center; gap: 18px; cursor: pointer; list-style: none; font-size: 15px; font-weight: 750; }
.faq__items summary::-webkit-details-marker { display: none; }
.faq__items summary span { color: var(--ember); font-family: var(--serif); font-size: 15px; font-weight: 400; }
.faq__items summary i { position: relative; width: 18px; height: 18px; }
.faq__items summary i::before, .faq__items summary i::after { content: ''; position: absolute; top: 8px; left: 2px; width: 14px; height: 1px; background: currentColor; transition: transform .2s ease; }
.faq__items summary i::after { transform: rotate(90deg); }
.faq__items details[open] summary i::after { transform: rotate(0); }
.faq__items details > p { max-width: 690px; margin: -5px 30px 28px 64px; color: var(--muted); font-size: 14px; }

.mz-blog-preview { background: var(--white); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { min-width: 0; color: var(--ink); background: var(--paper); }
.post-card__media { display: block; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(140deg, var(--charcoal), #4a4031); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__placeholder { display: block; width: 100%; height: 100%; background: radial-gradient(circle at 75% 20%, rgba(199,90,49,.6), transparent 24%), linear-gradient(140deg, #1d1d18, #414235); }
.post-card__content { padding: 27px; }
.post-card__meta { margin-bottom: 20px; color: var(--ember); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.post-card h3 { margin-bottom: 16px; font-size: 29px; line-height: 1.08; }
.post-card h3 a { text-decoration: none; }
.post-card__content > p:not(.post-card__meta) { color: var(--muted); font-size: 12px; }
.post-card--placeholder { min-height: 310px; padding: 28px; border: 1px solid var(--line); }
.post-card--placeholder > span { color: var(--ember); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.post-card--placeholder h3 { margin-top: 100px; }

.mz-final-cta { position: relative; overflow: hidden; color: var(--white); background: var(--charcoal); }
.mz-final-cta::after { position: absolute; z-index: 0; top: 0; right: 0; width: min(38vw, 570px); height: 100%; content: ''; background: var(--ember); }
.mz-final-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .48fr); align-items: center; gap: clamp(65px, 9vw, 135px); padding-block: clamp(70px, 8vw, 110px); }
.mz-final-cta .eyebrow { color: var(--sand); }
.mz-final-cta h2 { max-width: 820px; margin-bottom: 0; }
.mz-final-cta__inner > div:last-child { padding: 34px; background: var(--ember); }
.mz-final-cta__inner > div:last-child p { color: rgba(255,255,255,.88); }
.mz-final-cta .button { color: var(--ink); background: var(--white); }
.mz-inline-cta { color: var(--ink); background: var(--sand); }
.mz-inline-cta__inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .45fr); align-items: end; gap: 80px; padding-block: clamp(70px, 8vw, 110px); }
.mz-inline-cta .eyebrow { color: var(--ember-dark); }
.mz-inline-cta h2 { margin-bottom: 0; }
.mz-inline-cta__inner > div p { color: rgba(32,31,26,.76); }
.mz-inline-cta .button { color: var(--white); background: var(--charcoal); }

/* Page templates */
.page-main, .blog-main, .article-main { min-height: 70vh; }
.page-hero { padding: 150px 0 80px; color: var(--white); background: var(--charcoal); }
.page-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr); align-items: center; gap: 75px; }
.page-hero__copy h1 { max-width: 800px; margin: 0; font-size: clamp(3.4rem, 5.6vw, 6.1rem); }
.page-hero__lead { max-width: 660px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.page-hero__media { aspect-ratio: 4/3; overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--compact .page-hero__inner { display: block; }
.page-hero--compact .page-hero__copy { max-width: 900px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 50px; color: rgba(255,255,255,.55); font-size: 10px; }
.breadcrumbs a { text-decoration: none; }
.status-badge { display: inline-block; margin-bottom: 22px; padding: 7px 10px; color: var(--sand); border: 1px solid rgba(215,178,119,.45); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.entry-content { max-width: 940px; padding-block: clamp(70px, 8vw, 115px); font-size: 1rem; }
.entry-content > * { max-width: 760px; margin-inline: auto; }
.entry-content > .kubanya-booking, .entry-content > .contact-grid, .entry-content > .content-cards, .entry-content > .price-table, .entry-content > .booking-page-intro { max-width: 100%; }
.entry-content h2 { margin-top: 65px; margin-bottom: 24px; font-size: clamp(2.1rem, 4vw, 3.7rem); }
.entry-content h3 { margin-top: 40px; margin-bottom: 18px; font-size: 27px; }
.entry-content p, .entry-content li { color: #4f4c44; }
.entry-content a:not(.button) { color: var(--ember-dark); }
.entry-content ul, .entry-content ol { padding-left: 23px; }
.entry-content li { margin-bottom: 8px; }
.content-lead { max-width: 830px !important; margin-bottom: 75px; padding-left: 30px; border-left: 2px solid var(--ember); font-size: 1.14rem; }
.content-lead p:last-child { margin-bottom: 0; }
.content-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-block: 40px 75px !important; background: var(--line); }
.content-cards > div { padding: 28px; background: var(--white); }
.content-cards h3 { margin: 0 0 18px; }
.content-cards p { margin: 0; font-size: 13px; }
.price-table { margin-block: 30px 60px !important; border-top: 1px solid var(--line); }
.price-table > div { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 20px 5px; border-bottom: 1px solid var(--line); }
.price-table span { color: var(--muted); }
.price-table strong { font-family: var(--serif); font-size: 24px; font-weight: 400; white-space: nowrap; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.contact-grid > div { padding: 30px; background: var(--white); }
.contact-grid h2 { margin-top: 0; font-size: 30px; }
.booking-page-intro { margin-bottom: 45px !important; text-align: center; }
.booking-page-intro h2 { margin-top: 0; }
.property-gallery-section { padding-bottom: var(--section); }
.property-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.property-gallery__item { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.property-gallery__item:nth-child(1), .property-gallery__item:nth-child(8) { grid-column: span 2; }
.property-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.property-gallery__item:hover img { transform: scale(1.035); }
.property-gallery__item figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 35px 14px 12px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.68)); font-size: 10px; }

.page-hero--blog { padding-bottom: 110px; }
.page-hero--blog .page-hero__inner { display: block; }
.page-hero--blog .page-hero__copy { max-width: 900px; }
.blog-listing { background: var(--white); }
.post-grid--listing { grid-template-columns: repeat(3, 1fr); }
.pagination { margin-top: 60px; }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.page-numbers { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); text-decoration: none; }
.page-numbers.current { color: #fff; background: var(--ember); border-color: var(--ember); }
.archive-guide { color: var(--white); background: var(--charcoal); }
.archive-guide__grid { display: grid; grid-template-columns: .55fr 1fr; gap: 100px; }
.archive-guide__content { color: rgba(255,255,255,.7); }
.archive-guide__content .lead { color: #fff; font-size: 1.15rem; }
.archive-guide__content h3 { margin: 45px 0 15px; color: var(--sand); }
.archive-guide .text-link { color: #fff; }
.archive-guide__cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 55px; padding: 25px; border: 1px solid var(--line-light); }
.archive-guide__cta div { display: flex; flex-direction: column; }
.archive-guide__cta span { margin-top: 4px; font-size: 11px; }

.article__header { padding: 145px 0 70px; color: var(--white); background: var(--charcoal); }
.article__header-inner { max-width: 980px; }
.article__header h1 { max-width: 900px; margin-bottom: 28px; font-size: clamp(3.4rem, 5.7vw, 6rem); }
.article__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 35px; color: var(--sand); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article__lead { max-width: 750px; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.article__cover { max-width: 1120px; margin-top: 55px; aspect-ratio: 16/8; overflow: hidden; }
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article__content { max-width: 820px; padding-block: 85px; }
.article__content h2 { margin-top: 65px; font-size: clamp(2rem, 3.8vw, 3.5rem); }
.article__content h3 { margin-top: 38px; font-size: 25px; }
.article__content p, .article__content li { color: #4d4b44; }
.article__content figure { margin: 45px 0; }
.article__content figcaption { margin-top: 10px; color: var(--muted); font-size: 10px; }
.article__footer { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 100px; padding: 50px; color: #fff; background: var(--ember); }
.article__footer h2 { max-width: 700px; margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); }
.article__footer p { margin-bottom: 15px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.article__footer .button { color: var(--ink); background: #fff; white-space: nowrap; }
.empty-state { padding: 70px; text-align: center; border: 1px solid var(--line); }
.not-found { min-height: 78vh; padding: 180px 0 100px; color: var(--white); background: var(--charcoal); }
.not-found__inner { max-width: 900px; }
.not-found h1 { margin-bottom: 30px; }
.not-found__inner > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.65); }
.not-found__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.not-found .button--dark { border-color: rgba(255,255,255,.3); }

/* Booking dialog and shared plugin */
.booking-dialog[hidden] { display: none !important; }
.booking-dialog { position: fixed; z-index: 1300; inset: 0; display: grid; place-items: center; padding: 24px; }
.booking-dialog__backdrop { position: absolute; inset: 0; background: rgba(18,18,15,.78); backdrop-filter: blur(7px); }
.booking-dialog__panel { position: relative; z-index: 1; width: min(920px, 100%); max-height: calc(100vh - 48px); overflow: auto; padding: clamp(28px, 4vw, 54px); color: var(--ink); background: var(--paper); box-shadow: 0 35px 100px rgba(0,0,0,.38); overscroll-behavior: contain; }
.booking-dialog__close { position: absolute; z-index: 3; top: 15px; right: 15px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; background: transparent; }
.booking-dialog__close span { font-size: 25px; line-height: 1; }
.booking-dialog__heading { margin-bottom: 34px; padding-right: 45px; }
.booking-dialog__heading .eyebrow { margin-bottom: 12px; }
.booking-dialog__heading h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); }
.kubanya-booking {
    --forest-700: #8f3f25;
    --forest-900: #191915;
    --cream-50: #fffdf8;
    --cream-200: #e9dfcf;
    --clay-500: #c75a31;
    --gold-500: #c75a31;
    --ink: #201f1a;
    --muted: #6b675d;
    --line: rgba(32,31,26,.16);
    --serif: Georgia, serif;
    --sans: Inter, Manrope, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.kubanya-booking .kb-submit, .kubanya-booking .kb-house-option input:checked + .kb-house-option__body { background-color: var(--charcoal); }
.kubanya-booking .kb-promo { border-color: rgba(199,90,49,.35); background: rgba(199,90,49,.07); }
.kubanya-article-cta { color: var(--white) !important; border-color: rgba(199,90,49,.48) !important; background: var(--charcoal) !important; }
.entry-content .kubanya-article-cta p { color: rgba(255,253,248,.72) !important; }

/* Footer */
.site-footer { padding-top: 85px; color: rgba(255,255,255,.72); background: #11110e; }
.site-footer__top { display: grid; grid-template-columns: 1.2fr .55fr .7fr; gap: 80px; padding-bottom: 70px; }
.site-footer__brand { display: flex; align-items: center; gap: 14px; color: #fff; text-decoration: none; }
.site-footer__brand > span:last-child { display: flex; flex-direction: column; }
.site-footer__brand strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.site-footer__brand small { margin-top: 5px; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; opacity: .6; }
.site-footer__intro > p { max-width: 500px; margin: 28px 0 0; font-size: 13px; }
.site-footer__network a { color: var(--sand); }
.site-footer__intro .button { margin-top: 28px; }
.site-footer h2 { margin-bottom: 25px; color: #fff; font-family: var(--sans); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__menu { margin: 0; padding: 0; list-style: none; }
.site-footer__menu li { margin-bottom: 10px; }
.site-footer__menu a { font-size: 12px; text-decoration: none; }
.site-footer__contacts address { font-size: 12px; font-style: normal; }
.site-footer__contacts > a { display: block; margin: 18px 0; color: #fff; font-family: var(--serif); font-size: 23px; text-decoration: none; }
.site-footer__hours { color: var(--sand); font-size: 11px; }
.social-links { display: flex; gap: 14px; font-size: 11px; }
.site-footer__bottom { display: grid; grid-template-columns: 1fr auto; gap: 20px 40px; padding-block: 25px; border-top: 1px solid var(--line-light); font-size: 9px; }
.site-footer__bottom > p { margin: 0; }
.site-footer__operator { display: block; margin-top: 4px; }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: end; gap: 16px; }
.site-footer__legal a, .site-footer__legal button { padding: 0; border: 0; color: inherit; cursor: pointer; background: transparent; font: inherit; text-decoration: underline; }
.site-footer__bottom > p:last-child { grid-column: 1 / -1; color: rgba(255,255,255,.4); }
.mobile-booking-bar { display: none; }

.cookie-banner { position: fixed; z-index: 1400; right: 22px; bottom: 22px; left: 22px; display: flex; max-width: 920px; align-items: center; justify-content: space-between; gap: 25px; margin-inline: auto; padding: 22px 25px; border: 1px solid var(--line); color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.cookie-banner__actions { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-banner .button { min-height: 44px; padding: 10px 15px; font-size: 10px; }

@media (max-width: 1180px) {
    :root { --shell: min(100% - 48px, 1080px); }
    .site-header__inner { grid-template-columns: 1fr auto; }
    .site-nav { position: fixed; inset: 70px 0 0; display: none; padding: 35px 24px; color: var(--white); background: var(--charcoal); }
    .site-nav.is-open { display: block; }
    .site-nav__list { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
    .site-nav__list a { font-family: var(--serif); font-size: 32px; font-weight: 400; }
    .nav-toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; }
    .nav-toggle__label { font-size: 10px; font-weight: 800; text-transform: uppercase; }
    .nav-toggle__icon { display: grid; gap: 5px; width: 24px; }
    .nav-toggle__icon i { display: block; height: 1px; background: currentColor; }
    .site-header__actions { display: none; }
    .mz-hero__grid { grid-template-columns: minmax(0, 1fr) 330px; gap: 40px; }
    .mz-included-grid { grid-template-columns: repeat(2, 1fr); }
    .mz-house__layout { grid-template-columns: 1fr; }
    .mz-house__details { display: grid; grid-template-columns: .4fr 1fr; column-gap: 35px; padding-left: 0; }
    .mz-house__number { grid-row: span 3; }
    .mz-house__details .button { width: max-content; }
}

@media (max-width: 900px) {
    :root { --shell: min(100% - 36px, 780px); --section: 80px; }
    body.admin-bar .site-header { top: 46px; }
    .mz-hero { min-height: 0; }
    .mz-hero__grid { grid-template-columns: 1fr; min-height: 0; align-items: start; padding: 140px 0 55px; }
    .mz-offer-card { width: min(100%, 520px); }
    .mz-hero__facts { grid-template-columns: 1fr; }
    .mz-hero__facts > div { padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
    .mz-positioning__grid, .mz-fire-story__grid, .mz-extras__grid, .mz-reviews__grid, .mz-seo-guide__grid, .faq__grid, .archive-guide__grid { grid-template-columns: 1fr; }
    .section-heading--split { grid-template-columns: 1fr; gap: 25px; }
    .mz-positioning__text { padding-top: 0; }
    .mz-fire-story__media, .mz-fire-story__media img { min-height: 0; height: auto; aspect-ratio: 4/3; }
    .mz-extras__grid { width: 100%; }
    .mz-extras__content { width: var(--shell); margin-inline: auto; padding-right: 0; }
    .mz-extras__media { min-height: 0; margin: 0; aspect-ratio: 16/9; }
    .mz-pricing__cards, .mz-discounts, .mz-process__steps, .post-grid, .post-grid--listing, .property-gallery, .contact-grid, .content-cards { grid-template-columns: 1fr 1fr; }
    .mz-pricing__cards article:nth-child(2) { border-right: 0; }
    .mz-pricing__cards article:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
    .mz-discounts p:nth-child(2) { border-right: 0; }
    .mz-discounts p:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
    .mz-process__steps li:nth-child(2) { border-right: 0; }
    .mz-process__steps li:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
    .mz-reviews__intro, .mz-seo-guide header, .faq__heading { position: static; }
    .mz-reviews__widget { max-width: 650px; }
    .mz-video__intro { grid-template-columns: 1fr; gap: 32px; }
    .mz-video__copy { max-width: 680px; }
    .mz-video__stage { grid-template-columns: 1fr; }
    .mz-video__rail { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; }
    .mz-video__rail span, .mz-video__rail span:last-child { min-height: 112px; padding: 20px; border-right: 1px solid rgba(255,255,255,.28); border-bottom: 0; }
    .mz-video__rail span:last-child { border-right: 0; }
    .mz-final-cta::after { display: none; }
    .mz-final-cta__inner, .mz-inline-cta__inner { grid-template-columns: 1fr; gap: 35px; }
    .mz-final-cta__inner > div:last-child { padding: 30px; }
    .page-hero__inner { grid-template-columns: 1fr; }
    .page-hero__media { max-width: 650px; }
    .site-footer__top { grid-template-columns: 1fr 1fr; }
    .site-footer__intro { grid-column: 1 / -1; }
    .article__footer { align-items: start; flex-direction: column; }
}

@media (max-width: 680px) {
    :root { --shell: calc(100% - 28px); --section: 65px; }
    body { font-size: 15px; padding-bottom: 72px; }
    h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
    h2 { font-size: clamp(2.35rem, 12vw, 3.7rem); }
    .site-header { height: 68px; }
    .site-header.is-scrolled { height: 64px; }
    .site-brand__emblem { width: 36px; height: 36px; }
    .site-brand__text strong { font-size: 16px; }
    .site-brand__text small { font-size: 7px; }
    .nav-toggle__label { display: none; }
    .site-nav { top: 64px; }
    .mz-hero { padding-top: 68px; }
    .mz-hero__grid { padding-top: 90px; }
    .mz-hero__actions { flex-direction: column; }
    .mz-hero__actions .button { width: 100%; }
    .mz-offer-card { padding: 24px; }
    .mz-hero__facts > div { padding-block: 18px; }
    .mz-included-grid, .mz-pricing__cards, .mz-discounts, .mz-process__steps, .post-grid, .post-grid--listing, .property-gallery, .contact-grid, .content-cards { grid-template-columns: 1fr; }
    .mz-included-grid article { min-height: 230px; }
    .mz-included-grid h3 { margin-top: 55px; }
    .mz-house__gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 300px 170px; }
    .mz-house__gallery-main { grid-column: 1 / -1; grid-row: auto; }
    .mz-house__details { display: block; }
    .mz-house__number { margin: 35px 0; }
    .mz-pricing__cards article, .mz-pricing__cards article:nth-child(2), .mz-pricing__cards article:last-child { grid-column: auto; min-height: 210px; border-right: 0; border-top: 1px solid var(--line); }
    .mz-pricing__cards article:first-child { border-top: 0; }
    .mz-discounts p, .mz-discounts p:nth-child(2), .mz-discounts p:last-child { grid-column: auto; border-right: 0; border-top: 1px solid var(--line); }
    .mz-discounts p:first-child { border-top: 0; }
    .mz-pricing__action { align-items: stretch; flex-direction: column; }
    .mz-pricing__action .button { width: 100%; }
    .mz-video__intro { margin-bottom: 35px; }
    .mz-video__intro h2 { font-size: clamp(2.35rem, 11.2vw, 3.7rem); }
    .mz-video__copy { padding: 20px 0 0; border-top: 1px solid var(--line-light); border-left: 0; }
    .mz-video__rail { grid-template-columns: 1fr; }
    .mz-video__rail span, .mz-video__rail span:last-child { min-height: 82px; padding: 16px 18px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
    .mz-video__rail span:last-child { border-bottom: 0; }
    .mz-reviews__widget { padding: 8px; }
    .mz-reviews__widget iframe { height: 620px; }
    .mz-process__steps li, .mz-process__steps li:nth-child(2), .mz-process__steps li:last-child { grid-column: auto; min-height: 230px; border-right: 0; border-top: 1px solid var(--line); }
    .mz-process__steps li:first-child { border-top: 0; }
    .mz-process__steps h3 { margin-top: 50px; }
    .faq__items summary { grid-template-columns: 34px 1fr 18px; gap: 10px; font-size: 13px; }
    .faq__items details > p { margin-left: 44px; }
    .page-hero { padding: 115px 0 55px; }
    .page-hero__inner { gap: 45px; }
    .page-hero__copy h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
    .breadcrumbs { margin-bottom: 35px; }
    .entry-content { padding-block: 60px; }
    .content-lead { padding-left: 20px; }
    .price-table > div { align-items: flex-start; flex-direction: column; gap: 6px; }
    .property-gallery__item:nth-child(1), .property-gallery__item:nth-child(8) { grid-column: auto; }
    .article__header { padding: 115px 0 50px; }
    .article__header h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
    .article__cover { aspect-ratio: 4/3; }
    .article__footer { margin-bottom: 70px; padding: 30px; }
    .archive-guide__cta { align-items: stretch; flex-direction: column; }
    .site-footer { padding-top: 65px; }
    .site-footer__top { grid-template-columns: 1fr; gap: 45px; }
    .site-footer__intro { grid-column: auto; }
    .site-footer__bottom { grid-template-columns: 1fr; }
    .site-footer__legal { justify-content: start; }
    .mobile-booking-bar { position: fixed; z-index: 850; right: 0; bottom: 0; left: 0; display: flex; height: 72px; align-items: center; justify-content: space-between; gap: 15px; padding: 9px 12px 9px 16px; border-top: 1px solid var(--line); color: var(--ink); background: rgba(244,239,229,.97); box-shadow: 0 -10px 35px rgba(0,0,0,.1); backdrop-filter: blur(12px); }
    .mobile-booking-bar span { display: flex; flex-direction: column; line-height: 1.15; }
    .mobile-booking-bar small { color: var(--muted); font-size: 8px; }
    .mobile-booking-bar strong { margin-top: 4px; font-family: var(--serif); font-size: 18px; font-weight: 400; }
    .mobile-booking-bar .button { min-height: 48px; padding: 12px 16px; }
    .booking-dialog { padding: 0; place-items: stretch; }
    .booking-dialog__panel { width: 100%; max-height: 100vh; padding: 28px 14px 90px; }
    .cookie-banner { right: 10px; bottom: 82px; left: 10px; align-items: stretch; flex-direction: column; }
    .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
}
