/* size-adjust fallback fonts (zero-CLS, без флеша) */
@font-face {
  font-family: "Inter Fallback";
  src: local('Arial'), local('ArialMT');
  ascent-override: 90.4365%;
  descent-override: 22.518%;
  line-gap-override: 0%;
  size-adjust: 107.1194%;
}
@font-face {
  font-family: "Montserrat Fallback";
  src: local('Arial'), local('ArialMT');
  ascent-override: 85.7923%;
  descent-override: 22.2457%;
  line-gap-override: 0%;
  size-adjust: 112.8307%;
}
@font-face {
  font-family: "Antonio Fallback";
  src: local('Arial'), local('ArialMT');
  ascent-override: 137.8195%;
  descent-override: 16.6083%;
  line-gap-override: 0%;
  size-adjust: 83.7897%;
}

:root {
    /* Soft, elegant pastel gradient background matching gusto3 */
    --clr-bg-start: #C1E1E5;
    /* Soft cyan/mint */
    --clr-bg-end: #F4D5CC;
    /* Soft peach/rose */
    --clr-text: #222222;
    --clr-accent: #888888;

    --font-giant: 'Antonio', 'Antonio Fallback', Arial, sans-serif;
    --font-ui: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    --font-body: 'Inter', 'Inter Fallback', Arial, sans-serif;
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --dur-fast: 180ms;
    --dur-mid: 320ms;
    --dur-slow: 520ms;
}

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

html {
    width: 100%;
    min-height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

body {
    width: 100%;
    min-height: 100%;
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(135deg, var(--clr-bg-start) 0%, var(--clr-bg-end) 100%);
    color: var(--clr-text);
    scroll-behavior: smooth;
    background-attachment: scroll;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pan-x;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
}

.header-content {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo img {
    height: 40px;
    width: auto;
    /* No filter to preserve original branding colors */
}

.header-slogan {
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 1rem;
    margin-left: 5px;
}

.slogan-main {
    font-weight: 600;
}

.slogan-sub {
    font-weight: 300;
    opacity: 0.7;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-number {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.lang-link {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lang-link:hover {
    color: #222;
}

.lang-link.active {
    color: #c5a45d;
}

.lang-switch a + a {
    border-left: 1px solid #ddd;
    padding-left: 0.35rem;
}

.contact-icons {
    display: flex;
    gap: 1rem;
}

.icon-link {
    width: 30px;
    height: 30px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.icon-link svg {
    width: 18px;
    height: 18px;
    color: #184742;
}

.contact-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(873%) hue-rotate(126deg) brightness(93%) contrast(91%);
}

.mobile-only {
    display: none;
}

.icon-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

a:focus-visible,
button:focus-visible,
.btn-flashy:focus-visible,
.icon-link:focus-visible,
.footer-links a:focus-visible,
.footer-social-link:focus-visible,
.contacts-list a:focus-visible {
    outline: 2px solid rgba(197, 164, 93, 0.95);
    outline-offset: 3px;
    border-radius: 8px;
}

/* Burger Button */
.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 110;
}

.burger-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #222;
    transition: all 0.3s ease-in-out;
}

.burger-btn.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Nav Menu Overlay */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 105;
}

.nav-menu.active {
    right: 0;
}

.nav-list {
    list-style: none;
    text-align: center;
}

.nav-item {
    display: block;
    font-family: var(--font-giant);
    font-size: 3.5rem;
    color: #222;
    text-decoration: none;
    margin: 1rem 0;
    text-transform: uppercase;
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.nav-menu.active .nav-item {
    opacity: 1;
    transform: translateY(0);
}

.nav-item:hover {
    color: #888;
    transform: scale(1.05);
}

/* Animation sequence */
.nav-menu.active .nav-list li:nth-child(1) .nav-item {
    transition-delay: 0.2s;
}

.nav-menu.active .nav-list li:nth-child(2) .nav-item {
    transition-delay: 0.3s;
}

.nav-menu.active .nav-list li:nth-child(3) .nav-item {
    transition-delay: 0.4s;
}

.nav-menu.active .nav-list li:nth-child(4) .nav-item {
    transition-delay: 0.5s;
}

.nav-menu.active .nav-list li:nth-child(5) .nav-item {
    transition-delay: 0.6s;
}

/* ==========================================================================
   Section Screens
   ========================================================================== */
.section-screen {
    width: 100%;
    height: 100vh;
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle separation */
}

.section-screen[id] {
    scroll-margin-top: 104px;
}

.section-title {
    font-family: var(--font-giant);
    font-size: clamp(3rem, 10vw, 12rem);
    color: rgba(0, 0, 0, 0.05);
    /* Very subtle watermark style */
    text-transform: uppercase;
    letter-spacing: 5px;
}

.offers-section {
    height: auto;
    min-height: 150vh;
    align-items: stretch;
    justify-content: center;
    padding: 140px 0 80px;
    background: #ffffff;
}

.offers-content {
    width: 75vw;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto auto auto auto auto auto;
    align-content: start;
    gap: 50px;
}

.offers-title {
    font-family: var(--font-giant);
    color: #c5a45d;
    font-size: clamp(3.1rem, 4.5vw, 4.8rem);
    letter-spacing: 2px;
    line-height: 0.95;
}

.offers-subtitle {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.45;
    max-width: 980px;
    font-weight: 400;
}

.offers-text {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.5;
    max-width: none;
    text-align: justify;
    font-weight: 200;
}

.offers-info {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 50px;
    align-items: start;
}

.offers-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
    width: 100%;
    max-width: none;
    justify-self: stretch;
}

.offers-benefits li {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.3;
    width: 100%;
    text-align: justify;
    font-weight: 300;
}

.offers-benefits li::before {
    content: "";
}

.offers-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(210px, 20vw, 320px);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 30px;
    min-height: 0;
    cursor: grab;
    border: 1px solid rgba(197, 164, 93, 0.65);
    border-radius: 22px;
    padding: 30px;
    background: #fff;
}

.offers-slider,
.capsule-slider,
.work-slider,
.reviews-slider {
    transition: border-color var(--dur-fast) var(--ease-smooth), box-shadow var(--dur-fast) var(--ease-smooth);
}

.offers-slider:hover,
.capsule-slider:hover,
.work-slider:hover,
.reviews-slider:hover {
    border-color: rgba(197, 164, 93, 0.95);
    box-shadow: 0 8px 22px rgba(197, 164, 93, 0.14);
}

.offers-slider.dragging {
    cursor: grabbing;
    user-select: none;
}

.offers-slider::-webkit-scrollbar {
    height: 6px;
}

.offers-slider::-webkit-scrollbar-thumb {
    background: rgba(197, 164, 93, 0.8);
    border-radius: 999px;
}

.offer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    aspect-ratio: 9 / 16;
    min-height: 0;
    background: #ddd;
    transition: transform var(--dur-fast) var(--ease-smooth), box-shadow var(--dur-fast) var(--ease-smooth), filter var(--dur-fast) var(--ease-smooth);
}

.offer-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Явные размеры резервируют место без ожидания декода видео — скролл не блокируется */
    aspect-ratio: 9 / 16;
}

.offer-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.1rem 0.8rem;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-ui);
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.offers-cta-wrapper {
    justify-self: center;
    margin-top: 25px;
    width: min(520px, 92vw);
}

.capsule-section {
    background: #ffffff;
    height: auto;
    min-height: 145vh;
    align-items: stretch;
    justify-content: center;
    padding: 120px 0 80px;
}

.capsule-content {
    width: 75vw;
    margin: 0 auto;
    display: grid;
    align-content: start;
    gap: 34px;
}

.capsule-overline {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c5a45d;
}

.capsule-title {
    font-family: var(--font-giant);
    color: #c5a45d;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: 1px;
}

.capsule-subtitle {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.55;
    max-width: 100%;
    font-weight: 400;
}

.capsule-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(210px, 20vw, 320px);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 30px;
    cursor: grab;
    border: 1px solid rgba(197, 164, 93, 0.65);
    border-radius: 22px;
    padding: 30px;
    background: #fff;
}

.capsule-slider.dragging {
    cursor: grabbing;
    user-select: none;
}

.capsule-slider::-webkit-scrollbar {
    height: 6px;
}

.capsule-slider::-webkit-scrollbar-thumb {
    background: rgba(197, 164, 93, 0.8);
    border-radius: 999px;
}

.capsule-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ececec;
    scroll-snap-align: start;
    aspect-ratio: 9 / 16;
    transition: transform var(--dur-fast) var(--ease-smooth), box-shadow var(--dur-fast) var(--ease-smooth), filter var(--dur-fast) var(--ease-smooth);
}

.capsule-media,
.capsule-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 9 / 16;
}

.capsule-info {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
    align-items: start;
}

.capsule-text {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.55;
    text-align: justify;
    font-weight: 200;
}

.capsule-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.capsule-benefits li {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.45;
    text-align: justify;
    font-weight: 300;
}

.capsule-cta-wrapper {
    justify-self: center;
    width: min(560px, 92vw);
}

.work-section {
    background: #ffffff;
    height: auto;
    min-height: 150vh;
    align-items: stretch;
    justify-content: center;
    padding: 120px 0 84px;
}

.work-content {
    width: 75vw;
    margin: 0 auto;
    display: grid;
    align-content: start;
    gap: 32px;
}

.work-overline {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c5a45d;
}

.work-title {
    font-family: var(--font-giant);
    color: #c5a45d;
    font-size: clamp(2.5rem, 4.2vw, 4.5rem);
    line-height: 0.95;
}

.work-subtitle {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.55;
    font-weight: 400;
}

.work-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(200px, 19vw, 300px);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 30px;
    cursor: grab;
    border: 1px solid rgba(197, 164, 93, 0.65);
    border-radius: 22px;
    padding: 30px;
    background: #fff;
}

.work-slider.dragging {
    cursor: grabbing;
    user-select: none;
}

.work-slider::-webkit-scrollbar {
    height: 6px;
}

.work-slider::-webkit-scrollbar-thumb {
    background: rgba(197, 164, 93, 0.8);
    border-radius: 999px;
}

.work-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ececec;
    scroll-snap-align: start;
    aspect-ratio: 3 / 5;
    position: relative;
    transition: transform var(--dur-fast) var(--ease-smooth), box-shadow var(--dur-fast) var(--ease-smooth), filter var(--dur-fast) var(--ease-smooth);
}

.work-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-caption {
    display: none;
}

.work-caption strong {
    display: inline;
}

.work-info {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.work-text {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.55;
    text-align: justify;
    font-weight: 200;
}

.work-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.work-benefits li {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.45;
    text-align: justify;
    font-weight: 300;
}

.work-cta-wrapper {
    justify-self: center;
    width: min(640px, 92vw);
    margin-top: 8px;
}

.work-cta-note {
    margin-top: 10px;
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 0.9rem;
    color: #6a6a6a;
    text-align: center;
}

.offers-text,
.offers-benefits,
.capsule-text,
.capsule-benefits,
.work-text,
.work-benefits,
.reviews-text-intro,
.reviews-benefits {
    border: 1px solid rgba(197, 164, 93, 0.65);
    border-radius: 18px;
    padding: 18px;
    background: #fff;
}

.reviews-section {
    background: #ffffff;
    height: auto;
    min-height: 145vh;
    align-items: stretch;
    justify-content: center;
    padding: 120px 0 84px;
}

.reviews-content {
    width: 75vw;
    margin: 0 auto;
    display: grid;
    align-content: start;
    gap: 32px;
}

.reviews-overline {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c5a45d;
}

.reviews-title {
    font-family: var(--font-giant);
    color: #c5a45d;
    font-size: clamp(2.5rem, 4.2vw, 4.5rem);
    line-height: 0.95;
}

.reviews-subtitle {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.55;
    font-weight: 400;
}

.reviews-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(200px, 19vw, 300px);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 30px;
    padding: 30px;
    cursor: grab;
    border: 1px solid rgba(197, 164, 93, 0.65);
    border-radius: 22px;
    background: #fff;
}

.reviews-slider.dragging {
    cursor: grabbing;
    user-select: none;
}

.reviews-slider::-webkit-scrollbar {
    height: 6px;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: rgba(197, 164, 93, 0.8);
    border-radius: 999px;
}

.reviews-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ececec;
    scroll-snap-align: start;
    aspect-ratio: 1 / 2;
    transition: transform var(--dur-fast) var(--ease-smooth), box-shadow var(--dur-fast) var(--ease-smooth), filter var(--dur-fast) var(--ease-smooth);
}

.reviews-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (hover: hover) and (pointer: fine) {
    .offer-card:hover,
    .capsule-card:hover,
    .work-card:hover,
    .reviews-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
        filter: saturate(1.03) contrast(1.02);
    }
}

.offer-card.is-active,
.capsule-card.is-active,
.work-card.is-active,
.reviews-card.is-active {
    box-shadow: 0 0 0 2px rgba(197, 164, 93, 0.5);
}

.reviews-info {
    display: grid;
    gap: 20px;
}

.reviews-text-intro {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.55;
    text-align: justify;
    font-weight: 200;
}

.reviews-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.reviews-benefits li {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.45;
    text-align: justify;
    font-weight: 300;
}
.bullet-lead {
    font-weight: 400;
}


.contacts-section {
    background: #ffffff;
    height: auto;
    min-height: 125vh;
    align-items: stretch;
    justify-content: center;
    padding: 120px 0 84px;
}

.contacts-content {
    width: 75vw;
    margin: 0 auto;
    display: grid;
    align-content: start;
    gap: 28px;
}

.contacts-overline {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c5a45d;
}

.contacts-title {
    font-family: var(--font-giant);
    color: #c5a45d;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 0.95;
}

.contacts-subtitle {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.55;
    font-weight: 400;
}

.contacts-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: stretch;
}

.contacts-card {
    border: 1px solid rgba(197, 164, 93, 0.65);
    border-radius: 18px;
    padding: 18px;
    background: #fff;
}

.contacts-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.contacts-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contacts-icon {
    color: #c5a45d;
    line-height: 1.3;
    margin-top: 1px;
    font-size: 0.9rem;
}

.contacts-list a,
.contacts-list span {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 300;
}

.contacts-list a:hover {
    color: #a97f2d;
}

.contacts-map-card iframe {
    display: block;
    width: 100%;
    border-radius: 14px;
}

/* ==========================================================================
   FAQ (lazy-loaded) — стиль как у остальных экранов
   ========================================================================== */
.faq-section {
    background: #ffffff;
    height: auto;
    min-height: 100vh;
    align-items: stretch;
    justify-content: center;
    padding: 140px 0 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-content {
    width: 75vw;
    margin: 0 auto;
    display: grid;
    align-content: start;
    gap: 28px;
}

.faq-overline {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c5a45d;
}

.faq-title {
    font-family: var(--font-giant);
    color: #c5a45d;
    font-size: clamp(2.5rem, 4.2vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 2px;
}

.faq-subtitle {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.55;
    font-weight: 400;
    max-width: 980px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
}

/* Каждый вопрос — отдельный прямоугольник с рамкой в общем стиле */
.faq-item {
    border: 1px solid rgba(197, 164, 93, 0.65);
    border-radius: 22px;
    padding: 22px 28px;
    background: #fff;
    text-align: left;
    transition: border-color var(--dur-fast) var(--ease-smooth), box-shadow var(--dur-fast) var(--ease-smooth);
}

.faq-item:hover {
    border-color: rgba(197, 164, 93, 0.95);
    box-shadow: 0 8px 22px rgba(197, 164, 93, 0.14);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #222;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--dur-fast) var(--ease-smooth);
}

.faq-question:hover {
    color: #a97f2d;
}

.faq-question::after {
    content: "+";
    flex-shrink: 0;
    font-size: 1.4rem;
    color: #c5a45d;
    line-height: 1;
}

.faq-item.is-open .faq-question::after {
    content: "−";
}

.faq-answer {
    overflow: hidden;
    text-align: left;
}

.faq-answer p {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #444;
    font-weight: 300;
    padding: 14px 0 0 0;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 100px 0 60px;
    }
    .faq-content {
        width: 92vw;
    }
    .faq-item {
        padding: 18px 20px;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer p {
        font-size: 1rem;
    }
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%) translateY(16px);
    width: min(880px, 94vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(197, 164, 93, 0.7);
    border-radius: 14px;
    background: rgba(20, 20, 24, 0.92);
    backdrop-filter: blur(8px);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-mid) var(--ease-smooth), transform var(--dur-mid) var(--ease-smooth);
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.cookie-banner.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-text {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    color: #ececec;
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 300;
}

.cookie-text a {
    color: #f2c98b;
    text-decoration: none;
    font-weight: 500;
}

.cookie-accept-btn {
    border: 1px solid rgba(242, 201, 139, 0.7);
    background: #f2c98b;
    color: #1d1d22;
    border-radius: 10px;
    padding: 10px 16px;
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease-smooth), filter var(--dur-fast) var(--ease-smooth);
}

.cookie-accept-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.site-footer {
    background: #111218;
    color: #e5e5e5;
    padding: 56px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    width: min(1240px, 94vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr 0.7fr;
    gap: 32px;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

.footer-logo {
    width: 170px;
    max-width: 100%;
    height: auto;
    filter: brightness(0.95) saturate(0.95);
    margin-bottom: 18px;
}

.footer-brand-text {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #c8c8c8;
    font-weight: 300;
    max-width: 340px;
}

.footer-title {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #f2c98b;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-contact-list a,
.footer-contact-list span {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    color: #dfdfdf;
    text-decoration: none;
    font-size: 0.96rem;
    line-height: 1.45;
    font-weight: 300;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: #f2c98b;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-icon {
    color: #f2c98b;
    line-height: 1.3;
    margin-top: 1px;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-link {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 201, 139, 0.45);
    border-radius: 8px;
    background: rgba(242, 201, 139, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(242, 201, 139, 0.9);
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-bottom {
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0 22px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Montserrat', 'Montserrat Fallback', Arial, sans-serif;
    font-size: 0.85rem;
    color: #a8a8a8;
    line-height: 1.7;
    font-weight: 300;
}

.footer-bottom a {
    color: #c9c9c9;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #f2c98b;
}

.section-screen:not(.hero-editorial),
.site-footer {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity var(--dur-slow) var(--ease-smooth), transform var(--dur-slow) var(--ease-smooth);
}

.section-screen.is-visible,
.site-footer.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subpages have no scroll-reveal observer — footer must be visible immediately */
body.subpage .site-footer {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .section-screen:not(.hero-editorial),
    .site-footer,
    .offer-card,
    .capsule-card,
    .work-card,
    .reviews-card,
    .offers-slider,
    .capsule-slider,
    .work-slider,
    .reviews-slider {
        transition: none !important;
        transform: none !important;
    }
}

/* ==========================================================================
   Hero Editorial Screen
   ========================================================================== */
.hero-editorial {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    font-family: var(--font-body);
}

.hero-editorial::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("exemplo/dubai.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-editorial::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--clr-bg-start) 0%, var(--clr-bg-end) 100%);
    opacity: 0.85;
    z-index: 2;
}

/* Base Typo Settings */
.typo-container {
    position: absolute;
    font-family: var(--font-giant);
    color: #ffffff;
    line-height: 0.82;
    pointer-events: none;
}

/* DESKTOP TYPO */
.desktop-typo {
    top: 48%;
    /* Slightly higher than pure center to match mockup */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

/* Unified Desktop Typography */
.typo-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: max-content;
    --typo-side-size: clamp(2rem, 5vw, 6rem);
    display: grid;
    grid-template-rows: auto auto auto;
    row-gap: clamp(28px, 2.4vw, 56px);
    z-index: 30;
}

.typo-main>span {
    display: block;
}

.typo-extensions {
    display: block;
    justify-self: start;
    width: auto;
    min-width: 0;
    font-size: clamp(6rem, 14.8vw, 20rem);
    line-height: 0.82;
    letter-spacing: clamp(0.95vw, 1.35vw, 2vw);
    white-space: nowrap;
}

.typo-hair {
    font-size: var(--typo-side-size);
    letter-spacing: 2px;
    justify-self: start;
    margin-left: 10px;
}

.typo-dubai {
    margin-top: 15px;
    font-size: var(--typo-side-size);
    letter-spacing: 2px;
    justify-self: end;
    margin-right: 10px;
}

/* MOBILE TYPO */
.mobile-typo {
    display: none;
    /* Desktop hidden */
    top: 15vh;
    /* Much higher on mobile */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 30;
}

.typo-mob-wrapper {
    position: relative;
    display: inline-block;
}

.typo-extensions-mob {
    font-size: 16vw;
    line-height: 1;
    z-index: 15;
}

.typo-hair-mob {
    position: absolute;
    top: -4vw;
    left: 0;
    font-size: 6vw;
    letter-spacing: 2px;
    line-height: 1;
    z-index: 20;
}

.typo-dubai-mob {
    position: absolute;
    bottom: -4vw;
    right: 0;
    font-size: 6vw;
    letter-spacing: 2px;
    line-height: 1;
    z-index: 20;
}

/* 2. Central Model / Image Cutout */
.hero-model {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 95vh;
    z-index: 20;
    /* Between left(30) and right(10) texts */
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.hero-model-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    /* Soft transparency transition fading completely out by 95% */
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 95%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 95%, transparent 100%);

    /* NEW: Depth elements */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)) contrast(1.02);
    animation: floatingModel 8s ease-in-out infinite;
    will-change: transform, filter;
}

@keyframes floatingModel {

    0%,
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)) brightness(1);
    }

    50% {
        transform: translateY(-10px);
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.1)) brightness(1.02);
    }
}

/* 3. CTA Button */
.hero-cta-wrapper {
    position: absolute;
    bottom: 6vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 40;
    /* Frontmost */
    width: 90%;
    max-width: 480px;
}

.cta-glass-ring {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 60px;
    padding: 8px;
    /* Thickness of the glass background around the white button */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.btn-flashy {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    color: #000000;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-flashy:hover {
    transform: scale(1.02);
}

.btn-top-text {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: #666666;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-main-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.icon-arrow {
    transition: transform 0.3s ease;
}

.btn-flashy:hover .icon-arrow {
    transform: translateX(4px);
}

/* Shine animation effect on the white button */
.btn-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(200, 200, 200, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: flashSweep 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

@keyframes flashSweep {
    0% {
        left: -100%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-model {
        height: 85vh;
    }

    .typo-left {
        left: 1vw;
    }

    .typo-right {
        right: 1vw;
    }
}

@media (max-width: 992px) {
    .header-slogan {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .header-right {
        gap: 0.5rem;
    }

    .header {
        padding: 1rem 0;
    }

    .header-content {
        max-width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        grid-template-areas: "slogan icons burger";
        align-items: center;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .header-left {
        grid-area: slogan;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        min-width: 0;
    }

    .logo {
        display: none !important;
    }

    .header-slogan {
        border-left: 0;
        padding-left: 0;
        line-height: 1.08;
        min-width: 0;
    }

    .slogan-main {
        font-size: 0.74rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .slogan-sub {
        font-size: 0.54rem;
        white-space: nowrap;
    }

    .header-contacts {
        grid-area: icons;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .contact-number {
        display: inline-block;
        font-size: 0.74rem;
        white-space: nowrap;
    }

    .contact-icons {
        gap: 0;
        align-items: center;
    }

    .burger-btn {
        grid-area: burger;
        margin-left: 0;
        margin-top: 0;
        padding: 2px;
    }

    .desktop-typo {
        display: none;
    }

    .mobile-typo {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .icon-link {
        width: 24px;
        height: 24px;
    }

    .mobile-only {
        display: none;
    }

    .icon-link.instagram {
        display: inline-flex;
    }

    .icon-link.whatsapp,
    .icon-link.instagram {
        margin: 10px;
    }

    .icon-link.instagram {
        margin-right: 15px;
    }

    .typo-mob-wrapper {
        width: max-content;
        max-width: max-content;
        --typo-side-size-mob: clamp(1.9rem, 6.4vw, 3.2rem);
        display: grid;
        grid-template-rows: auto auto auto;
        row-gap: clamp(18px, 2.2vw, 30px);
    }

    .typo-extensions-mob {
        width: auto;
        min-width: 0;
        justify-self: start;
        text-align: left;
        font-size: clamp(4.2rem, 18.8vw, 9rem);
        letter-spacing: clamp(0.55vw, 1vw, 1.6vw);
        line-height: 0.82;
        white-space: nowrap;
    }

    .typo-hair-mob {
        position: static;
        justify-self: start;
        margin-left: 0;
        font-size: calc(var(--typo-side-size-mob) * 1.3);
        letter-spacing: 2px;
        line-height: 1;
    }

    .typo-dubai-mob {
        position: static;
        justify-self: end;
        margin-top: 0;
        margin-right: 0;
        font-size: calc(var(--typo-side-size-mob) * 1.3);
        letter-spacing: 2px;
        line-height: 1;
        text-align: right;
    }

    .hero-model {
        height: 70vh;
    }

    .cta-glass-ring {
        padding: 6px;
    }

    .btn-flashy {
        padding: 1rem;
    }

    .btn-top-text {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }

    .btn-main-text {
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .offers-section {
        height: auto;
        min-height: 190vh;
        padding: 126px 0 90px;
    }

    .offers-content {
        width: 92vw;
        gap: 32px;
    }

    .offers-title {
        font-size: clamp(3rem, 12vw, 4.2rem);
    }

    .offers-subtitle {
        font-size: 1.1rem;
        line-height: 1.45;
    }

    .offers-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .offers-benefits {
        gap: 25px;
    }

    .offers-benefits li {
        font-size: 1.1rem;
    }

    .offers-slider {
        grid-auto-columns: 84vw;
        gap: 25px;
        padding: 0 0 25px;
        min-height: 0;
        border: none;
        border-radius: 0;
        background: transparent;
    }

    .offer-card {
        aspect-ratio: 9 / 16;
        min-height: 0;
        border-radius: 22px;
    }

    .offer-caption {
        font-size: 1.8rem;
        line-height: 1.32;
        padding: 1.15rem 1rem;
    }

    .offers-cta-wrapper {
        width: 100%;
        max-width: 95vw;
        margin-top: 25px;
    }

    .capsule-section {
        min-height: 190vh;
        padding: 112px 0 82px;
    }

    .capsule-content {
        width: 92vw;
        gap: 26px;
    }

    .capsule-overline {
        font-size: 0.92rem;
    }

    .capsule-title {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    .capsule-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .capsule-slider {
        grid-auto-columns: 84vw;
        gap: 16px;
        padding: 0 0 16px;
        border: none;
        border-radius: 0;
        background: transparent;
    }

    .capsule-card {
        border-radius: 22px;
    }

    .capsule-info {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .capsule-text {
        font-size: 1.05rem;
    }

    .capsule-benefits li {
        font-size: 1rem;
    }

    .capsule-cta-wrapper {
        width: 100%;
        max-width: 95vw;
    }

    .work-section {
        min-height: 195vh;
        padding: 112px 0 86px;
    }

    .work-content {
        width: 92vw;
        gap: 26px;
    }

    .work-overline {
        font-size: 0.9rem;
    }

    .work-title {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    .work-subtitle {
        font-size: 1rem;
    }

    .work-slider {
        grid-auto-columns: 82vw;
        gap: 16px;
        padding: 0 0 14px;
        border: none;
        border-radius: 0;
        background: transparent;
    }

    .work-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-text {
        font-size: 1rem;
    }

    .work-benefits li {
        font-size: 0.98rem;
    }

    .work-cta-wrapper {
        width: 100%;
        max-width: 95vw;
    }

    .reviews-section {
        min-height: 175vh;
        padding: 112px 0 86px;
    }

    .reviews-content {
        width: 92vw;
        gap: 26px;
    }

    .reviews-overline {
        font-size: 0.9rem;
    }

    .reviews-title {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    .reviews-subtitle {
        font-size: 1rem;
    }

    .reviews-slider {
        grid-auto-columns: 82vw;
        gap: 16px;
        padding: 0 0 14px;
        border: none;
        border-radius: 0;
        background: transparent;
    }

    .reviews-info {
        gap: 20px;
    }

    .reviews-text-intro {
        font-size: 1rem;
    }

    .reviews-benefits li {
        font-size: 0.98rem;
    }

    .contacts-section {
        min-height: 160vh;
        padding: 112px 0 86px;
    }

    .contacts-content {
        width: 92vw;
        gap: 24px;
    }

    .contacts-overline {
        font-size: 0.9rem;
    }

    .contacts-title {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    .contacts-subtitle {
        font-size: 1rem;
    }

    .faq-overline {
        font-size: 0.9rem;
    }

    .faq-title {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    .faq-subtitle {
        font-size: 1rem;
    }

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

    .contacts-list a,
    .contacts-list span {
        font-size: 0.98rem;
    }

    .site-footer {
        padding-top: 46px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        bottom: 14px;
    }

    .cookie-accept-btn {
        width: 100%;
    }

    .footer-content {
        width: 92vw;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-logo {
        width: 150px;
        margin-bottom: 14px;
    }

    .footer-brand-text {
        max-width: none;
        font-size: 0.94rem;
    }

    .footer-title {
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .footer-bottom {
        margin-top: 28px;
        padding: 14px 0 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 0.35rem;
        gap: 0.42rem;
    }

    .logo img {
        height: 33px;
    }

    .slogan-main {
        font-size: 0.66rem;
    }

    .slogan-sub {
        font-size: 0.5rem;
    }

    .icon-link {
        width: 22px;
        height: 22px;
    }

    .typo-mob-wrapper {
        width: max-content;
        --typo-side-size-mob: clamp(1.4rem, 5.7vw, 2.25rem);
    }

    .typo-extensions-mob {
        font-size: clamp(3.7rem, 18vw, 6.8rem);
    }

    .typo-hair-mob,
    .typo-dubai-mob {
        font-size: calc(var(--typo-side-size-mob) * 1.3);
    }
}
/* ============================================================
   SUBPAGES / ARTICLE PAGES (services, blog, about, etc.)
   Reuses design tokens: Antonio (giant), Montserrat (ui), Inter (body)
   ============================================================ */
body.subpage {
    background: linear-gradient(160deg, var(--clr-bg-start), var(--clr-bg-end));
    min-height: 100vh;
}

/* Subpages: frosted header so breadcrumbs/content don't collide with the fixed bar */
body.subpage .header {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

body.subpage .article-page {
    padding-top: 104px;
}

.article-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}
.breadcrumbs {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: #6b6b6b;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}
.breadcrumbs a { color: #6b6b6b; text-decoration: none; }
.breadcrumbs a:hover { color: rgba(197, 164, 93, 1); }
.breadcrumbs span { margin: 0 6px; color: #b3b3b3; }

.article-body {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(197, 164, 93, 0.4);
    border-radius: 24px;
    padding: 48px 44px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
}
.article-body h1 {
    font-family: var(--font-giant);
    font-weight: 700;
    font-size: clamp(2.1rem, 5vw, 3rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    margin: 0 0 24px;
    text-transform: uppercase;
}
.article-body h2 {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: clamp(1.25rem, 2.6vw, 1.6rem);
    color: #1a1a1a;
    margin: 40px 0 14px;
    line-height: 1.25;
}
.article-body p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.06rem;
    line-height: 1.7;
    color: #2b2b2b;
    margin: 0 0 18px;
}
.article-body a { color: rgba(160, 130, 60, 1); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: rgba(120, 96, 40, 1); }
.article-body .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #1a1a1a;
    border-left: 3px solid rgba(197, 164, 93, 1);
    padding-left: 20px;
    margin-bottom: 34px;
}
.article-body blockquote {
    margin: 34px 0;
    padding: 24px 28px;
    background: rgba(197, 164, 93, 0.08);
    border-radius: 16px;
    border-left: 3px solid rgba(197, 164, 93, 1);
}
.article-body blockquote p { font-style: italic; font-size: 1.1rem; color: #1a1a1a; margin-bottom: 10px; }
.article-body blockquote cite {
    font-family: var(--font-ui);
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b6b6b;
}
.faq-block { margin: 8px 0 12px; }
.faq-block p { margin-bottom: 20px; }
.faq-block strong { font-family: var(--font-ui); font-weight: 600; color: #1a1a1a; }

.article-cta {
    text-align: center;
    margin: 44px 0 28px;
    padding: 34px 24px;
    background: rgba(197, 164, 93, 0.1);
    border-radius: 20px;
}
.article-cta p { font-family: var(--font-ui); font-size: 1.15rem; font-weight: 500; color: #1a1a1a; margin-bottom: 18px; }
.cta-button {
    display: inline-block;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    color: #fff !important;
    background: #1a1a1a;
    padding: 15px 40px;
    border-radius: 999px;
    transition: transform var(--dur-fast) var(--ease-smooth), background var(--dur-fast);
}
.cta-button:hover { background: rgba(160, 130, 60, 1); transform: translateY(-2px); }
.related-links {
    font-family: var(--font-ui);
    font-size: 0.92rem;
    color: #6b6b6b;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.related-links strong { color: #1a1a1a; }

@media (max-width: 640px) {
    .article-body { padding: 30px 22px; border-radius: 18px; }
    .article-page { padding: 24px 14px 60px; }
    body.subpage .article-page { padding-top: 88px; }
}

/* Article byline + comparison table */
.article-body .byline {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: #7a7a7a;
    margin: -12px 0 26px;
    letter-spacing: 0.02em;
}
.table-wrap { overflow-x: auto; margin: 8px 0 24px; }
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.98rem;
    min-width: 520px;
}
.compare-table th, .compare-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #2b2b2b;
}
.compare-table thead th {
    font-family: var(--font-ui);
    font-weight: 600;
    color: #1a1a1a;
    background: rgba(197, 164, 93, 0.12);
}
.compare-table td:first-child { font-weight: 500; color: #1a1a1a; }
.compare-table tbody tr:hover { background: rgba(197, 164, 93, 0.05); }
.compare-table caption { caption-side: top; text-align: left; font-family: var(--font-ui, 'Montserrat', 'Montserrat Fallback', Arial, sans-serif); font-weight: 600; font-size: 0.95rem; color: #1a1a1a; margin-bottom: 10px; }

/* Definition box (GEO: term definitions) */
.article-body .definition {
    background: rgba(197, 164, 93, 0.08);
    border-left: 3px solid rgba(197, 164, 93, 0.9);
    padding: 14px 18px;
    border-radius: 8px;
    margin: 4px 0 22px;
}
.article-body .definition strong { color: #1a1a1a; }
.article-body dl.definition { display: block; }
.article-body dl.definition dt { font-weight: 700; color: #1a1a1a; display: inline; }
.article-body dl.definition dd { display: inline; margin: 0; }
.article-body dl.definition dt::after { content: " "; }

/* Areas hub cards (rectangular, landmark silhouette + area name) */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin: 10px 0 28px; }
.area-card {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    text-decoration: none;
    background: linear-gradient(135deg, #1b1d26 0%, #2c2f3d 100%);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.area-card-art {
    position: absolute;
    right: -4px;
    bottom: 0;
    width: 72%;
    height: 82%;
    fill: #c5a45d;
    color: #c5a45d;
    opacity: 0.30;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.area-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 60%);
}
.area-card-name {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--font-giant, 'Antonio', 'Antonio Fallback', Arial, sans-serif);
    font-size: 1.5rem;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.area-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18); }
.area-card:hover .area-card-art { opacity: 0.45; }

/* Services hub cards */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 8px 0 24px; }
.service-card {
    display: block;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid rgba(197, 164, 93, 0.4);
    border-radius: 16px;
    padding: 22px 22px 18px;
    transition: transform var(--dur-fast) var(--ease-smooth), box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,0.08); border-color: rgba(197,164,93,0.9); }
.service-card h3 { font-family: var(--font-ui); font-weight: 600; font-size: 1.08rem; color: #1a1a1a; margin: 0 0 8px; }
.service-card p { font-family: var(--font-body); font-weight: 300; font-size: 0.95rem; color: #555; margin: 0 0 12px; line-height: 1.5; }
.service-card .service-more { font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600; color: rgba(160,130,60,1); letter-spacing: 0.03em; }

/* Photo gallery grid (portfolio, reviews, before/after) */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin: 8px 0 24px; }
.photo-grid img { width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; display: block; background: #ececec; }
@media (max-width: 640px){ .photo-grid { grid-template-columns: repeat(2, 1fr); } }
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; margin: 10px 0 26px; border-radius: 14px; overflow: hidden; background: #111218; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Horizontal media sliders (photo / video) — scroll left-right, never block vertical scroll */
.media-slider {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding: 4px 2px 18px;
    margin: 8px 0 26px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 164, 93, 0.6) transparent;
    cursor: grab;
}
.media-slider.dragging { cursor: grabbing; scroll-snap-type: none; }
.media-slider::-webkit-scrollbar { height: 8px; }
.media-slider::-webkit-scrollbar-thumb { background: rgba(197, 164, 93, 0.6); border-radius: 4px; }
.media-slide { flex: 0 0 auto; scroll-snap-align: start; margin: 0; }
.media-slide img { width: 270px; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 14px; display: block; background: #ececec; }
.video-slide { width: 270px; }
.video-slide .video-embed { width: 270px; aspect-ratio: 9 / 16; margin: 0; }
/* Video facade (lazy: poster + play, iframe loads on click) */
.video-facade { position: relative; display: block; width: 270px; aspect-ratio: 9 / 16; padding: 0; border: 0; border-radius: 14px; overflow: hidden; cursor: pointer; background: #111218; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play { position: absolute; top: 50%; left: 50%; width: 58px; height: 58px; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(17, 18, 24, 0.6); border: 2px solid rgba(255, 255, 255, 0.9); transition: background 0.2s ease, transform 0.2s ease; }
.video-play::after { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff; }
.video-facade:hover .video-play { background: rgba(197, 164, 93, 0.9); transform: translate(-50%, -50%) scale(1.08); }
/* Facade inside homepage capsule/work cards: fill the card, not the fixed 270px */
.capsule-card .video-facade, .work-card .video-facade { width: 100%; height: 100%; border-radius: 20px; }
@media (max-width: 640px) {
    .media-slide img { width: 210px; }
    .video-slide, .video-slide .video-embed, .video-facade { width: 210px; }
}

/* Слоган-ссылка ведёт на главную. На узких экранах (до 430px, включая iPhone Plus/Pro Max)
   скрыт, чтобы не налезать на контакты (правило в конце файла, чтобы перебить более ранние мобильные @media). */
@media (max-width: 430px) {
    .header-slogan {
        display: none !important;
    }
}

/* Intro answer block under hero (AEO/GEO) */
.intro-answer { background: #fff; padding: 56px 24px; }
.intro-answer .intro-inner { max-width: 820px; margin: 0 auto; }
.intro-answer h1, .intro-answer h2 { font-family: var(--font-ui, 'Montserrat', 'Montserrat Fallback', Arial, sans-serif); font-size: 1.5rem; color: #1a1a1a; margin: 28px 0 12px; }
.intro-answer h1 { margin-top: 0; } .intro-answer h2:first-child { margin-top: 0; }
.intro-answer p { font-size: 1.05rem; line-height: 1.7; color: #333; margin: 0 0 14px; }
@media (max-width: 600px) { .intro-answer { padding: 40px 18px; } .intro-answer h2 { font-size: 1.3rem; } }

/* Reviews wall (real Google reviews: photo + stars + text + author) */
.reviews-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin: 16px 0 28px; }
.review-card { margin: 0; background: #fff; border: 1px solid #ececec; border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.review-card .review-photo { width: 100%; height: 260px; object-fit: cover; display: block; background: #f4f4f4; }
.review-card .review-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.review-stars { color: #f5b301; font-size: 1.05rem; letter-spacing: 2px; line-height: 1; }
.review-card blockquote { margin: 0; font-size: 0.97rem; line-height: 1.6; color: #333; }
.review-card figcaption { font-family: var(--font-ui, 'Montserrat', 'Montserrat Fallback', Arial, sans-serif); font-weight: 600; font-size: 0.86rem; color: #1a1a1a; margin-top: 2px; }
@media (max-width: 600px) { .review-card .review-photo { height: 300px; } }

/* Real reviews wall section on homepage */
.reviews-wall-section { background: #fff; padding: 56px 24px; }
.reviews-wall-section .rw-inner { max-width: 1140px; margin: 0 auto; }
.reviews-wall-section h2 { font-family: var(--font-ui, 'Montserrat', 'Montserrat Fallback', Arial, sans-serif); font-size: 1.6rem; color: #1a1a1a; margin: 0 0 22px; text-align: center; }
@media (max-width: 600px) { .reviews-wall-section { padding: 40px 16px; } }

/* Sales flow sections (prices, quality) + CTA */
.sales-section { background: #fff; padding: 64px 24px; }
.sales-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.sales-title { font-family: var(--font-ui, 'Montserrat', sans-serif); font-size: 1.9rem; color: #1a1a1a; margin: 0 0 16px; line-height: 1.2; }
.sales-lead { font-size: 1.06rem; line-height: 1.75; color: #444; max-width: 760px; margin: 0 auto 16px; }
.sales-note { font-size: 0.95rem; color: #777; margin: 18px 0 22px; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; margin: 28px 0 8px; }
.price-card { border: 1px solid #ececec; border-radius: 14px; padding: 24px 18px; display: flex; flex-direction: column; gap: 8px; background: #fafafa; text-align: center; }
.price-card.featured { border-color: #c5a45d; background: rgba(197,164,93,0.08); }
.price-name { font-family: var(--font-ui, 'Montserrat', sans-serif); font-weight: 600; color: #1a1a1a; font-size: 0.98rem; }
.price-val { font-family: var(--font-giant, 'Antonio', sans-serif); font-size: 2.1rem; color: #1a1a1a; line-height: 1; }
.price-val b { font-size: 0.9rem; font-weight: 700; color: #c5a45d; }
.price-desc { font-size: 0.85rem; color: #777; line-height: 1.4; }
.sales-cta { display: inline-block; background: #c5a45d; color: #fff; font-family: var(--font-ui, 'Montserrat', sans-serif); font-weight: 700; font-size: 0.98rem; letter-spacing: 0.5px; text-decoration: none; padding: 16px 34px; border-radius: 50px; margin-top: 12px; transition: background 0.2s ease, transform 0.2s ease; }
.sales-cta:hover { background: #b08e47; transform: translateY(-2px); }
.sales-cta-wrap { text-align: center; margin-top: 30px; }
@media (max-width: 768px) {
    .sales-section { padding: 48px 18px; }
    .sales-title { font-size: 1.55rem; }
    .sales-lead { font-size: 1rem; }
    .price-grid { gap: 14px; }
    /* воздух на мобиле для контентных блоков */
    .intro-answer { padding: 44px 18px; }
    .intro-answer h1, .intro-answer h2 { margin-top: 30px; }
    .reviews-wall-section { padding: 44px 16px; }
    .article-body > h2 { margin-top: 34px; }
    .article-body .lead { margin-bottom: 22px; }
}

/* мобильный крупный текст (только текст, не заголовки) */
@media (max-width: 768px) {
    .sales-lead, .sales-note { font-size: 1.15rem; line-height: 1.7; }
    .intro-answer p, .intro-answer dd, .whatis-section p, .whatis-section dd { font-size: 1.13rem; line-height: 1.75; }
    .article-body p, .article-body li, .article-body dd { font-size: 1.13rem; line-height: 1.75; }
    .faq-block p { font-size: 1.08rem; line-height: 1.6; }
    .review-card blockquote { font-size: 1.05rem; }
    .price-desc { font-size: 1rem; }
    .offers-subtitle, .capsule-text, .reviews-subtitle, .work-subtitle { font-size: 1.1rem; line-height: 1.55; }
    .lead { font-size: 1.15rem; line-height: 1.7; }
}
