: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', sans-serif;
    --font-ui: 'Montserrat', sans-serif;
    --font-body: 'Inter', 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', 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: fixed;
    -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-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: 2rem;
}

.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;
}

.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', 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', sans-serif;
    font-size: 1.1rem;
    line-height: 1.45;
    max-width: 980px;
    font-weight: 400;
}

.offers-text {
    font-family: 'Montserrat', 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', 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 mandatory;
    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: 1rem 0.8rem;
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font-ui);
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), 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', 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', 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 mandatory;
    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', 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', 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', 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', 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 mandatory;
    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', 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', 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', 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', 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', 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 mandatory;
    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', 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', 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', 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', 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', 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', 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', 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', 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', 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', 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', 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(1120px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1.1fr 0.8fr;
    gap: 36px;
    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', sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #c8c8c8;
    font-weight: 300;
    max-width: 340px;
}

.footer-title {
    font-family: 'Montserrat', 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', 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', 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);
}

@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;
    }
}

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

    .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.55rem;
        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.45rem;
    }

    .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: 0.9rem;
        line-height: 1.28;
        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);
    }
}