:root {
    --bg: #0b0c0b;
    --bg2: #111310;
    --paper: #f3efe7;
    --ink: #10110f;
    --muted: #a8aaa4;
    --line: #2b2e2a;
    --gold: #d7bb8f;
    --gold2: #ead9bd;
    --white: #fff;
    --r: 18px;
    --shadow: 0 25px 80px rgba(0, 0, 0, .3);
    --font-sans: "Onest", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Prata", Georgia, serif;
    --font-nav: "Unbounded", "Onest", sans-serif
}

* {
    box-sizing: border-box
}

.home-page :is(h1, h2, h3, h4, h5, h6, .eyebrow) {
    text-align: center
}

.home-page .hero .eyebrow {
    display: flex;
    justify-content: center
}

.home-page .section > .wrap > .copy {
    margin-inline: auto;
    text-align: center
}

.home-page .step .num {
    margin-inline: auto
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: #f6f3ed;
    font: 16px/1.5 var(--font-sans);
    -webkit-font-smoothing: antialiased
}

body.intro-open {
    overflow: hidden
}

.site-intro[hidden] {
    display: none
}

.site-intro {
    position: fixed;
    z-index: 1000;
    inset: 0;
    isolation: isolate;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 30px;
    background:
        radial-gradient(circle at 50% 38%, rgba(215, 187, 143, .15), transparent 25%),
        radial-gradient(circle at 10% 90%, rgba(215, 187, 143, .07), transparent 30%),
        #080908;
    opacity: 1;
    transition: opacity .65s ease, visibility .65s ease
}

.site-intro::before,
.site-intro::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: min(72vw, 860px);
    aspect-ratio: 1;
    border: 1px solid rgba(215, 187, 143, .11);
    border-radius: 50%;
    opacity: 0;
    transform: scale(.72)
}

.site-intro::after {
    width: min(50vw, 600px)
}

.site-intro.is-active::before,
.site-intro.is-active::after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease .1s, transform 1.7s cubic-bezier(.16, 1, .3, 1) .1s
}

.site-intro.is-leaving {
    opacity: 0;
    visibility: hidden
}

.site-intro-glow {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(115deg, transparent 35%, rgba(235, 213, 177, .1) 49%, transparent 62%);
    transform: translateX(-110%)
}

.site-intro.is-active .site-intro-glow {
    animation: introShine 2.4s cubic-bezier(.2, .75, .25, 1) .2s forwards
}

.site-intro-film {
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none
}

.site-intro-film i {
    position: absolute;
    width: 1px;
    height: 0;
    top: 0;
    background: linear-gradient(transparent, rgba(215, 187, 143, .45), transparent)
}

.site-intro-film i:nth-child(1) { left: 13% }
.site-intro-film i:nth-child(2) { left: 50% }
.site-intro-film i:nth-child(3) { right: 13% }

.site-intro.is-active .site-intro-film i {
    height: 100%;
    transition: height 1.5s ease .15s
}

.site-intro-content {
    width: min(620px, 100%);
    text-align: center;
    opacity: 0;
    transform: translateY(28px)
}

.site-intro.is-active .site-intro-content {
    opacity: 1;
    transform: none;
    transition: opacity .8s ease .2s, transform 1s cubic-bezier(.16, 1, .3, 1) .2s
}

.site-intro-kicker {
    display: block;
    color: #bc9a69;
    font: 700 10px/1 var(--font-nav);
    letter-spacing: .28em
}

.site-intro-logo {
    width: min(285px, 64vw);
    max-height: 155px;
    margin: 18px auto 10px;
    object-fit: contain
}

.site-intro h1 {
    margin: 0;
    color: #f5eee3;
    font: 400 clamp(34px, 5.5vw, 66px)/1.07 var(--font-display);
    letter-spacing: -.035em
}

.site-intro h1 em {
    color: #d8ad76;
    font-weight: 400
}

.site-intro p {
    max-width: 440px;
    margin: 20px auto 0;
    color: #94978f;
    font-size: 13px;
    letter-spacing: .02em
}

.site-intro-progress {
    width: min(310px, 72vw);
    height: 1px;
    margin: 30px auto 22px;
    overflow: hidden;
    background: rgba(215, 187, 143, .16)
}

.site-intro-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #8d6d46, #f1d9b4);
    transform: translateX(-100%)
}

.site-intro.is-active .site-intro-progress span {
    animation: introProgress 3.6s cubic-bezier(.2, .75, .25, 1) .25s forwards
}

.site-intro-enter {
    min-width: 178px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    border: 1px solid rgba(215, 187, 143, .42);
    border-radius: 999px;
    background: rgba(215, 187, 143, .07);
    color: #ead9bd;
    padding: 0 18px 0 22px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: color .25s ease, background .25s ease, transform .25s ease
}

.site-intro-enter:hover,
.site-intro-enter:focus-visible {
    color: #13130f;
    background: #e5cda7;
    transform: translateY(-2px)
}

.site-intro-enter:focus-visible {
    outline: 2px solid #f1d9b4;
    outline-offset: 4px
}

.site-intro-enter b {
    font-size: 18px
}

.site-intro-index {
    position: absolute;
    right: 28px;
    bottom: 24px;
    color: rgba(215, 187, 143, .42);
    font: 600 8px/1 var(--font-nav);
    letter-spacing: .2em
}

@keyframes introShine {
    to { transform: translateX(110%) }
}

@keyframes introProgress {
    to { transform: translateX(0) }
}

@media(max-width:560px) {
    .site-intro {
        padding: 22px
    }

    .site-intro-logo {
        width: min(240px, 68vw);
        margin-top: 16px
    }

    .site-intro h1 {
        font-size: clamp(31px, 10vw, 43px)
    }

    .site-intro p {
        max-width: 310px;
        font-size: 12px;
        line-height: 1.65
    }

    .site-intro-index {
        right: 18px;
        bottom: 18px
    }
}

@media(prefers-reduced-motion:reduce) {
    .site-intro,
    .site-intro-content,
    .site-intro::before,
    .site-intro::after {
        transition: none
    }

    .site-intro-content {
        opacity: 1;
        transform: none
    }

    .site-intro-glow,
    .site-intro-progress span {
        animation: none !important;
        transform: none
    }
}

a {
    text-decoration: none;
    color: inherit
}

img {
    display: block;
    width: 100%;
    height: auto
}

button,
input,
textarea {
    font: inherit
}

.wrap {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(7, 8, 7, .9);
    border-bottom: 1px solid rgba(234, 217, 189, .18);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .3);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15)
}

.nav {
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
    font-family: var(--font-nav)
}

.logo {
    display: block;
    flex: 0 0 auto;
    width: 150px
}

.logo img {
    width: 100%;
    height: auto
}

.header-logo {
    width: 170px;
    height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    perspective: 700px
}

.brand-mark,
.brand-wordmark {
    position: relative;
    display: block;
    flex: 0 0 auto;
    overflow: hidden
}

.brand-mark {
    width: 51%;
    aspect-ratio: 620 / 440
}

.brand-wordmark {
    width: 94%;
    aspect-ratio: 1100 / 240;
    margin-top: -1px
}

.brand-mark img,
.brand-wordmark img {
    position: absolute;
    max-width: none;
    height: auto
}

.brand-mark img {
    width: 195.32%;
    left: -48.39%;
    top: -15.91%;
    animation: logo-spin 18s linear infinite;
    transform-style: preserve-3d;
    will-change: transform
}

.brand-wordmark img {
    width: 110.09%;
    left: -5%;
    top: -210.4%
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

@keyframes logo-spin {
    from {
        transform: rotateY(0)
    }

    to {
        transform: rotateY(360deg)
    }
}

@media(prefers-reduced-motion:reduce) {
    .brand-mark img {
        animation: none
    }
}

.navlinks {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-family: inherit;
    font-size: 11px;
    letter-spacing: .025em;
    white-space: nowrap
}

.navlinks a {
    opacity: .86;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .8);
    transition: opacity .2s, color .2s
}

.navlinks a:hover {
    opacity: 1;
    color: var(--gold2)
}

.navlinks a[aria-current="page"] {
    opacity: 1;
    color: var(--gold2)
}

.navlinks a[aria-current="page"]:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.header .cta {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28)
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    background: var(--gold2);
    color: #151515;
    padding: 14px 20px;
    font-weight: 800;
    cursor: pointer
}

.cta.ghost {
    background: transparent;
    color: white;
    border: 1px solid #747871
}

.menu {
    display: none;
    position: relative;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    margin-left: auto;
    background: linear-gradient(145deg, #20211c, #10120f);
    color: var(--gold2);
    border: 1px solid rgba(215, 187, 143, .4);
    border-radius: 11px;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 6px 18px rgba(0, 0, 0, .25)
}

.menu::before,
.menu::after {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -8px;
    width: 16px;
    height: 1px;
    background: currentColor;
    top: 14px;
    transition: top .25s ease, transform .25s ease, width .25s ease
}

.menu::after {
    top: 22px;
    width: 12px;
    margin-left: -6px
}

.navlinks.open ~ .header-tools .menu::before {
    top: 18px;
    margin-left: -8px;
    transform: rotate(45deg)
}

.navlinks.open ~ .header-tools .menu::after {
    top: 18px;
    width: 16px;
    margin-left: -8px;
    transform: rotate(-45deg)
}

.menu:hover,
.menu:focus-visible {
    border-color: var(--gold);
    background: #27271f
}

.menu:focus-visible,
.language-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px
}

.hero {
    min-height: 760px;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line)
}

.hero-mobile-photo {
    display: none
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 8, 7, .88) 0%, rgba(7, 8, 7, .7) 30%, rgba(7, 8, 7, .18) 58%, rgba(7, 8, 7, .04) 100%), linear-gradient(180deg, rgba(7, 8, 7, .55) 0%, transparent 24%), url('hero-velora-protect.png') center/cover no-repeat
}

.hero .content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
    max-width: 610px
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: .22em
}

.hero .eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold)
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #c9a879;
    font-weight: 700
}

.hero h1 {
    font: 500 clamp(30px, 3.5vw, 48px)/1.2 var(--font-sans);
    margin: 24px 0;
    letter-spacing: -.035em;
    color: #f2eadf;
    text-wrap: balance;
    text-shadow: 0 8px 32px rgba(0, 0, 0, .38)
}

.hero h1 em {
    display: inline-block;
    margin-top: 6px;
    font-family: var(--font-display);
    font-size: .94em;
    font-weight: 400;
    color: #d8ad76
}

.lead {
    font-size: 18px;
    color: #ddd4c7;
    max-width: 600px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}

.hero .lead {
    max-width: 470px;
    font-size: 16px;
    line-height: 1.8;
    color: #c9c5bd
}

.hero .cta {
    padding: 15px 24px;
    border: 1px solid #e6c99f;
    border-radius: 999px;
    background: #e6c99f;
    color: #191b17;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .2)
}

.hero .cta:hover {
    background: #f1ddbd;
    border-color: #f1ddbd
}

.hero .cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 5px
}

.hero .badges {
    gap: 12px;
    margin-top: 36px
}

.hero .badge {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 18px 12px;
    border: 1px solid rgba(215, 187, 143, .22);
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(26, 27, 24, .94), rgba(14, 15, 13, .94));
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    font-size: 13px;
    line-height: 1.6;
    color: #bbbdb5;
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), border-color .35s ease, box-shadow .45s ease
}

.hero .badge::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 28%, rgba(235, 213, 177, .16) 48%, transparent 68%);
    transform: translateX(-120%);
    transition: transform .7s ease
}

.hero .badge b {
    font-size: 14px;
    font-weight: 500;
    color: #ead9bd;
    transition: color .3s ease, transform .35s ease
}

@media(hover:hover) and (pointer:fine) {
    .hero .badge:hover {
        transform: translateY(-10px);
        border-color: rgba(234, 217, 189, .72);
        box-shadow: 0 28px 65px rgba(0, 0, 0, .48), 0 0 28px rgba(215, 187, 143, .1), inset 0 1px 0 rgba(255, 255, 255, .08)
    }

    .hero .badge:hover::after {
        transform: translateX(120%)
    }

    .hero .badge:hover b {
        color: #fff2d9;
        transform: translateX(4px)
    }
}

.badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 42px
}

.badge {
    border-top: 1px solid #434741;
    padding-top: 15px;
    color: #d9d6cf;
    font-size: 14px
}

.badge b {
    display: block;
    color: white;
    margin-bottom: 3px
}

.section {
    padding: 96px 0
}

.section.light {
    background: var(--paper);
    color: var(--ink)
}

#surfaces {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(215, 187, 143, .13), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(154, 111, 67, .11), transparent 28%),
        linear-gradient(145deg, #070807 0%, #11120f 50%, #080908 100%);
    color: #f6f0e7;
    border-top: 1px solid rgba(234, 217, 189, .13);
    border-bottom: 1px solid rgba(234, 217, 189, .16)
}

#surfaces:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .24;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, transparent, black 24%, black 76%, transparent)
}

#surfaces .eyebrow {
    color: var(--gold);
    text-decoration-line: underline;
    text-decoration-color: rgba(215, 187, 143, .65);
    text-decoration-thickness: .5px;
    text-underline-offset: 8px
}

#surfaces h2 {
    font: 500 clamp(26px, 2.9vw, 40px)/1.3 var(--font-nav);
    margin: 24px 0;
    letter-spacing: -.035em;
    color: #f7f2e9;
    text-wrap: balance
}

#surfaces h2 em {
    display: inline-block;
    margin-top: 6px;
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    font-size: .94em;
    color: #d8ad76
}

#surfaces .copy {
    color: #aaa79f
}

.section h2 {
    font: 400 clamp(38px, 4.8vw, 62px)/1.08 var(--font-display);
    margin: 10px 0 18px;
    letter-spacing: -.03em
}

.section h2 em {
    color: #a47745;
    font-weight: 400
}

.copy {
    max-width: 700px;
    color: #b8bab5
}

.light .copy {
    color: #5c5e58
}

.two-films {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px
}

.films-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(215, 187, 143, .11), transparent 27%),
        radial-gradient(circle at 92% 74%, rgba(154, 111, 67, .09), transparent 25%),
        #090a08;
    border-bottom: 1px solid rgba(234, 217, 189, .14)
}

.films-section > .wrap > .eyebrow {
    color: var(--gold)
}

.films-section h2 {
    font: 600 clamp(30px, 3.5vw, 48px)/1.3 "Cormorant Garamond", Georgia, serif;
    margin: 24px 0;
    letter-spacing: -.015em;
    color: #f7f2e9;
    text-wrap: balance
}

.films-section h2 em {
    display: inline-block;
    margin-top: 6px;
    font-style: italic;
    font-weight: 600;
    font-size: .94em;
    color: #d8ad76
}

.film-card {
    position: relative;
    min-height: 520px;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid #30332f;
    background: #161815;
    box-shadow: 0 24px 58px rgba(0, 0, 0, .36);
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), border-color .35s ease, box-shadow .45s ease
}

.film-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 28%, rgba(235, 213, 177, .16) 48%, transparent 68%);
    transform: translateX(-120%);
    transition: transform .7s ease
}

.film-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    filter: brightness(.52);
    transition: transform .8s cubic-bezier(.16, 1, .3, 1), filter .45s ease
}

.film-card:first-child img {
    object-position: 24% center;
    filter: brightness(.5) saturate(.5) contrast(.92)
}

.film-card:nth-child(2) img {
    object-position: 76% center
}

.film-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 12%, rgba(4, 5, 4, .94) 90%)
}

.film-card:hover {
    transform: translateY(-10px);
    border-color: rgba(234, 217, 189, .72);
    box-shadow: 0 28px 65px rgba(0, 0, 0, .48), 0 0 28px rgba(215, 187, 143, .1), inset 0 1px 0 rgba(255, 255, 255, .08)
}

.film-card:hover:before {
    transform: translateX(120%)
}

.film-card:hover img {
    transform: scale(1.075);
    filter: brightness(.68) saturate(1.02)
}

.film-card:first-child:hover img {
    filter: brightness(.64) saturate(.62) contrast(.94)
}

.film-card .inner {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px
}

.tag {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(235, 218, 189, .12);
    border: 1px solid rgba(235, 218, 189, .35);
    color: #f0dcb9;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.film-card h3 {
    font: 400 36px/1.08 var(--font-display);
    margin: 14px 0 9px;
    transition: color .3s ease, transform .35s ease
}

.film-card:hover h3 {
    color: #fff2d9;
    transform: translateX(4px)
}

.film-card p {
    color: #d3d0c8;
    margin: 0;
    max-width: 520px
}

.film-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px
}

.film-features span {
    font-size: 12px;
    padding: 8px 10px;
    border: 1px solid #4a4e48;
    border-radius: 999px;
    background: rgba(0, 0, 0, .22)
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 34px
}

.use-card {
    position: relative;
    min-height: 350px;
    background: linear-gradient(155deg, #1a1b18, #0e0f0d);
    border: 1px solid rgba(215, 187, 143, .22);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .04);
    transform: translateZ(0);
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), border-color .35s ease, box-shadow .45s ease
}

.use-card:before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(5, 6, 5, .02) 22%, rgba(5, 6, 5, .18) 48%, rgba(5, 6, 5, .96) 100%);
    transition: background .4s ease
}

.use-card:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 28%, rgba(235, 213, 177, .16) 48%, transparent 68%);
    transform: translateX(-120%);
    transition: transform .7s ease
}

.use-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.72) saturate(.82);
    transition: transform .65s cubic-bezier(.2, .75, .25, 1), filter .45s ease
}

.use-card:nth-child(2) img {
    object-position: center bottom;
    transform: scale(2.75);
    transform-origin: center bottom
}

.use-card:nth-child(4) img {
    object-position: 72% center
}

.use-card div {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 42px 22px 24px
}

.use-card h3 {
    margin: 0 0 7px;
    color: #ead9bd;
    font: 400 20px/1.2 var(--font-display);
    letter-spacing: .01em;
    transition: color .3s ease, transform .35s ease
}

.use-card p {
    margin: 0;
    color: #aaa79f;
    font-size: 14px
}

.use-card:hover {
    transform: translateY(-10px);
    border-color: rgba(234, 217, 189, .72);
    box-shadow: 0 28px 65px rgba(0, 0, 0, .48), 0 0 28px rgba(215, 187, 143, .1), inset 0 1px 0 rgba(255, 255, 255, .08)
}

.use-card:hover:after {
    transform: translateX(120%)
}

.use-card:hover img {
    transform: scale(1.075);
    filter: brightness(.92) saturate(1.05)
}

.use-card:nth-child(2):hover img {
    transform: scale(2.9)
}

.use-card:hover h3 {
    color: #fff2d9;
    transform: translateX(4px)
}

.compare {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: stretch;
    margin-top: 68px;
    padding-top: 58px;
    border-top: 1px solid rgba(234, 217, 189, .14)
}

.compare-visual {
    position: relative;
    min-height: 500px;
    border-radius: var(--r);
    overflow: hidden;
    background: #1a1c1a;
    border: 1px solid rgba(234, 217, 189, .26);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .42)
}

.compare-visual img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover
}

.compare-visual .matte {
    clip-path: inset(0 50% 0 0);
    filter: saturate(.72) contrast(.95) brightness(.9)
}

.divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15)
}

.knob {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: white;
    color: #111;
    font-weight: 900;
    box-shadow: var(--shadow), 0 0 0 7px rgba(255, 255, 255, .1);
    z-index: 5;
    cursor: grab;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none
}

.knob.is-dragging {
    cursor: grabbing;
    background: var(--gold2)
}

.slider {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    z-index: 5;
    accent-color: var(--gold);
    cursor: ew-resize
}

.label {
    position: absolute;
    top: 18px;
    z-index: 4;
    padding: 8px 11px;
    border-radius: 7px;
    background: rgba(0, 0, 0, .72);
    font-size: 12px;
    font-weight: 800
}

.label.left {
    left: 18px
}

.label.right {
    right: 18px
}

.compare-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0
}

.compare-copy ul {
    padding: 0;
    margin: 24px 0 0;
    list-style: none
}

.compare-copy li {
    position: relative;
    overflow: hidden;
    padding: 16px 18px;
    border: 1px solid rgba(215, 187, 143, .22);
    border-radius: 14px;
    background: linear-gradient(155deg, #1a1b18, #0e0f0d);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    color: #d2d4cf;
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), border-color .35s ease, box-shadow .45s ease, color .3s ease
}

.compare-copy li + li {
    margin-top: 14px
}

.compare-copy li::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 28%, rgba(235, 213, 177, .16) 48%, transparent 68%);
    transform: translateX(-120%);
    transition: transform .7s ease
}

@media(hover:hover) and (pointer:fine) {
    .compare-copy li:hover {
        transform: translateY(-6px);
        border-color: rgba(234, 217, 189, .72);
        color: #fff2d9;
        box-shadow: 0 22px 45px rgba(0, 0, 0, .4), 0 0 28px rgba(215, 187, 143, .1)
    }

    .compare-copy li:hover::after {
        transform: translateX(120%)
    }
}

.compare-copy li:before {
    content: "✓";
    color: var(--gold);
    margin-right: 10px
}

.benefits-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(215, 187, 143, .12), transparent 28%),
        radial-gradient(circle at 88% 80%, rgba(154, 111, 67, .1), transparent 25%),
        linear-gradient(145deg, #0d0e0c, #151612 55%, #0a0b09);
    border-bottom: 1px solid rgba(234, 217, 189, .14)
}

.benefits-section > .wrap > .eyebrow {
    color: var(--gold)
}

.benefits-section > .wrap > .copy {
    color: #aaaDa7
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 42px
}

.benefit-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 26px;
    border: 1px solid rgba(215, 187, 143, .2);
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
    box-shadow: 0 18px 45px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .04);
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), border-color .35s ease, box-shadow .45s ease
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 28%, rgba(235, 213, 177, .16) 48%, transparent 68%);
    transform: translateX(-120%);
    transition: transform .7s ease
}

.benefit-number {
    display: block;
    margin-bottom: 34px;
    color: #c8a978;
    font: 400 28px/1 var(--font-display)
}

.benefit-card h3 {
    margin: 0 0 9px;
    color: #ead9bd;
    font-size: 18px;
    transition: color .3s ease, transform .35s ease
}

.benefit-card p {
    margin: 0;
    color: #999c94;
    font-size: 14px;
    line-height: 1.7
}

@media(hover:hover) and (pointer:fine) {
    .benefit-card:hover {
        transform: translateY(-9px);
        border-color: rgba(234, 217, 189, .72);
        box-shadow: 0 26px 60px rgba(0, 0, 0, .44), 0 0 26px rgba(215, 187, 143, .1)
    }

    .benefit-card:hover::before {
        transform: translateX(120%)
    }

    .benefit-card:hover h3 {
        color: #fff2d9;
        transform: translateX(4px)
    }
}

.quote-prep {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr) auto;
    align-items: center;
    gap: 38px;
    margin-top: 24px;
    padding: 30px;
    border: 1px solid rgba(234, 217, 189, .26);
    border-radius: 18px;
    background: rgba(6, 7, 6, .55);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .3)
}

.quote-prep .eyebrow {
    color: var(--gold)
}

.quote-prep h3 {
    margin: 9px 0 8px;
    color: #f5eee3;
    font: 400 29px/1.15 var(--font-display)
}

.quote-prep p {
    margin: 0;
    color: #92958d;
    font-size: 13px;
    line-height: 1.65
}

.prep-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none
}

.prep-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d7d1c7;
    font-size: 13px
}

.prep-list span {
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215, 187, 143, .38);
    border-radius: 50%;
    color: var(--gold);
    font-size: 11px
}

.prep-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: linear-gradient(135deg, #f0dfc1, #cda873);
    color: #151515;
    padding: 0 18px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 800;
    transition: transform .25s ease, box-shadow .25s ease
}

.prep-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .35)
}

.community-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgba(215, 187, 143, .1), transparent 30%),
        linear-gradient(145deg, #070807, #11120f 54%, #080908);
    border-bottom: 1px solid rgba(234, 217, 189, .14)
}

.team-showcase {
    display: grid;
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
    align-items: stretch;
    gap: 22px
}

.team-profile,
.team-copy {
    border: 1px solid rgba(234, 217, 189, .2);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
    box-shadow: 0 25px 65px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .045)
}

.team-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 42px 30px;
    text-align: center
}

.team-avatar {
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(234, 217, 189, .55);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, #f3e0bf, #c39b65 72%);
    color: #181713;
    font: 600 31px/1 var(--font-display);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .35), 0 0 0 9px rgba(215, 187, 143, .06)
}

.team-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #b7a486;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em
}

.team-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8fb77f;
    box-shadow: 0 0 0 4px rgba(143, 183, 127, .1)
}

.team-profile h3 {
    margin: 12px 0 5px;
    color: #f4eee4;
    font: 400 29px/1.15 var(--font-display)
}

.team-profile p {
    max-width: 280px;
    margin: 0;
    color: #8f928a;
    font-size: 13px;
    line-height: 1.65
}

.team-copy {
    padding: 42px
}

.team-copy .eyebrow {
    color: var(--gold)
}

.team-copy h2 {
    margin-top: 18px;
    color: #f5efe6;
    font-size: clamp(34px, 4vw, 52px)
}

.team-copy > p {
    max-width: 650px;
    margin: 0;
    color: #a4a69f;
    line-height: 1.75
}

.team-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 27px 0
}

.team-points span {
    padding: 8px 11px;
    border: 1px solid rgba(215, 187, 143, .22);
    border-radius: 999px;
    background: rgba(215, 187, 143, .045);
    color: #c8c4bb;
    font-size: 11px
}

.team-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    border-bottom: 1px solid rgba(215, 187, 143, .48);
    color: #e3ccaa;
    font-size: 13px;
    font-weight: 700;
    transition: color .2s, transform .2s
}

.team-link:hover {
    color: #fff1d8;
    transform: translateX(4px)
}

.reviews-heading {
    margin-top: 78px
}

.reviews-section .reviews-heading {
    margin-top: 0
}

.reviews-section > .wrap {
    width: min(1320px, calc(100% - 40px))
}

.reviews-heading .eyebrow {
    color: var(--gold)
}

.reviews-write-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    border: 1px solid rgba(215, 187, 143, .38);
    border-radius: 10px;
    color: #e2cda9;
    padding: 0 17px;
    font-size: 13px;
    font-weight: 700;
    transition: transform .25s ease, color .25s ease, background .25s ease
}

.reviews-write-link:hover {
    transform: translateY(-3px);
    color: #171511;
    background: #e2cda9
}

.review-submit-panel {
    display: grid;
    grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
    gap: 34px;
    margin-top: 38px;
    padding: 30px;
    border: 1px solid rgba(234, 217, 189, .25);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(215, 187, 143, .075), rgba(255, 255, 255, .018));
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32)
}

.review-submit-copy {
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.review-submit-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215, 187, 143, .4);
    border-radius: 50%;
    color: #d8ad76;
    font-size: 18px
}

.review-submit-copy h3 {
    margin: 3px 0 7px;
    color: #f3eadc;
    font: 400 25px/1.2 var(--font-display)
}

.review-submit-copy p {
    margin: 0;
    color: #8f928a;
    font-size: 13px;
    line-height: 1.6
}

.review-form {
    position: relative;
    display: grid;
    gap: 13px
}

.review-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.review-form label > span {
    display: block;
    margin-bottom: 7px;
    color: #b7b2a9;
    font-size: 11px;
    font-weight: 700
}

.review-form input,
.review-form textarea {
    width: 100%;
    border: 1px solid rgba(234, 217, 189, .2);
    border-radius: 10px;
    outline: 0;
    background: rgba(0, 0, 0, .2);
    color: #f4eee5;
    padding: 12px 13px;
    transition: border-color .2s, box-shadow .2s
}

.review-form textarea {
    min-height: 105px;
    resize: vertical
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: #d7bb8f;
    box-shadow: 0 0 0 3px rgba(215, 187, 143, .09)
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: #666960
}

.review-form .review-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #8f928a;
    font-size: 11px;
    line-height: 1.5
}

.review-form .review-consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin: 1px 0 0;
    accent-color: #d7bb8f
}

.review-form .review-consent span {
    margin: 0;
    color: inherit;
    font: inherit
}

.review-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.review-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.review-form-message {
    color: #cbb186;
    font-size: 12px;
    line-height: 1.5
}

.review-form-message.is-error {
    color: #ef9e96
}

.review-form button {
    min-width: 180px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0dfc1, #cda873);
    color: #151515;
    padding: 0 16px;
    font-weight: 800;
    cursor: pointer
}

.review-form button:disabled {
    opacity: .55;
    cursor: wait
}

.reviews-grid {
    display: flex;
    justify-content: safe center;
    gap: 18px;
    margin-top: 40px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab
}

.reviews-grid::-webkit-scrollbar {
    display: none
}

.reviews-grid:focus-visible {
    outline: 2px solid #d7bb8f;
    outline-offset: 7px
}

.reviews-grid.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none
}

.review-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 22px;
    border: 1px solid rgba(215, 187, 143, .22);
    border-radius: 16px;
    background: linear-gradient(155deg, #1a1b18, #0e0f0d);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), border-color .35s ease, box-shadow .45s ease;
    flex: 0 0 calc((100% - 54px) / 4);
    scroll-snap-align: start
}

.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px
}

.reviews-slider-arrow {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215, 187, 143, .35);
    border-radius: 50%;
    background: rgba(215, 187, 143, .06);
    color: #e1c79f;
    font-size: 22px;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease
}

.reviews-slider-arrow:hover:not(:disabled) {
    transform: translateY(-2px);
    background: #dcc39c;
    color: #171511
}

.reviews-slider-arrow:disabled {
    opacity: .3;
    cursor: default
}

.reviews-slider-dots {
    min-width: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px
}

.reviews-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(215, 187, 143, .3);
    cursor: pointer;
    transition: width .25s ease, background .25s ease
}

.reviews-slider-dot.is-active {
    width: 26px;
    background: #d7bb8f
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 28%, rgba(235, 213, 177, .14) 48%, transparent 68%);
    transform: translateX(-120%);
    transition: transform .7s ease
}

.review-label {
    width: max-content;
    padding: 5px 8px;
    border: 1px solid rgba(215, 187, 143, .22);
    border-radius: 999px;
    color: #9d896c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em
}

.review-quote {
    height: 34px;
    margin-top: 13px;
    color: #d8ad76;
    font: 400 47px/.9 Georgia, serif
}

.review-card blockquote {
    flex: 1;
    margin: 0 0 17px;
    color: #d3cec5;
    font-size: 14px;
    line-height: 1.6
}

.review-card:not(.user-review)::after {
    content: "★★★★★★";
    align-self: flex-end;
    margin-top: 12px;
    color: #d8ad76;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 13px;
    border-top: 1px solid rgba(234, 217, 189, .12)
}

.review-avatar {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(234, 217, 189, .36);
    border-radius: 50%;
    background: linear-gradient(145deg, #dac29c, #997649);
    color: #171611;
    font: 700 13px/1 var(--font-sans)
}

.review-profile b,
.review-profile span {
    display: block
}

.review-profile b {
    color: #eee5d8;
    font-size: 12px
}

.review-profile span {
    margin-top: 2px;
    color: #777a73;
    font-size: 9px
}

.user-review .review-profile {
    padding-right: 0
}

.review-like {
    position: relative;
    z-index: 2;
    align-self: flex-end;
    min-width: 118px;
    height: 32px;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(215, 187, 143, .28);
    border-radius: 999px;
    background: rgba(215, 187, 143, .055);
    color: #d9c09a;
    cursor: pointer;
    transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease
}

.review-like span {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap
}

.review-like b {
    font-size: 11px
}

.review-like:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: #d7bb8f;
    background: rgba(215, 187, 143, .13);
    color: #fff0d4
}

.review-like.is-liked,
.review-like:disabled {
    color: #f0c889;
    border-color: rgba(240, 200, 137, .52);
    cursor: default
}

@media(hover:hover) and (pointer:fine) {
    .review-card:hover {
        transform: translateY(-9px);
        border-color: rgba(234, 217, 189, .7);
        box-shadow: 0 28px 65px rgba(0, 0, 0, .46), 0 0 28px rgba(215, 187, 143, .1)
    }

    .review-card:hover::before {
        transform: translateX(120%)
    }
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px
}

.step {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(215, 187, 143, .22);
    border-radius: 16px;
    background: linear-gradient(155deg, #1a1b18, #0e0f0d);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), border-color .35s ease, box-shadow .45s ease
}

.step::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 28%, rgba(235, 213, 177, .16) 48%, transparent 68%);
    transform: translateX(-120%);
    transition: transform .7s ease
}

.num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold2);
    color: #111;
    font-weight: 900;
    margin-bottom: 20px
}

.step h3 {
    margin: 0 0 8px;
    color: #ead9bd;
    transition: color .3s ease, transform .35s ease
}

.step p {
    margin: 0;
    color: #aaaDA7;
    font-size: 14px
}

.quote-box {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 66px;
    background:
        radial-gradient(circle at 0 0, rgba(215, 187, 143, .16), transparent 34%),
        linear-gradient(145deg, #181916, #0b0c0a 72%);
    color: #f5f0e8;
    border: 1px solid rgba(234, 217, 189, .3);
    border-radius: var(--r);
    padding: 46px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    box-shadow: 0 34px 85px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .06)
}

.contact-form-section .quote-box {
    margin-top: 0
}

.quote-box:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 280px;
    height: 280px;
    right: -150px;
    bottom: -170px;
    border: 1px solid rgba(234, 217, 189, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(234, 217, 189, .025), 0 0 0 86px rgba(234, 217, 189, .018)
}

.quote-box .eyebrow {
    color: var(--gold)
}

.quote-box h3 {
    font: 400 40px/1.08 var(--font-display);
    margin: 12px 0 20px;
    color: #f7f2e9
}

.quote-box h3 em {
    color: #d8ad76 !important;
    font-weight: 400
}

.quote-box .copy {
    color: #aaa79f;
    line-height: 1.75
}

.form {
    display: grid;
    align-content: start;
    gap: 13px
}

.form input,
.form textarea {
    width: 100%;
    border: 1px solid rgba(234, 217, 189, .2);
    background: rgba(255, 255, 255, .045);
    border-radius: 11px;
    padding: 15px 16px;
    color: #f7f2e9;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease
}

.form input::placeholder,
.form textarea::placeholder {
    color: #85867f
}

.form input:hover,
.form textarea:hover {
    border-color: rgba(234, 217, 189, .42);
    background: rgba(255, 255, 255, .065)
}

.form input:focus,
.form textarea:focus {
    border-color: #d7bb8f;
    background: rgba(215, 187, 143, .075);
    box-shadow: 0 0 0 3px rgba(215, 187, 143, .1), 0 10px 28px rgba(0, 0, 0, .2);
    transform: translateY(-1px)
}

.form textarea {
    min-height: 126px;
    resize: vertical
}

.form .cta {
    min-height: 52px;
    margin-top: 2px;
    background: linear-gradient(135deg, #f0dfc1, #cda873);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28), 0 0 24px rgba(215, 187, 143, .08);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease
}

.form .cta:hover {
    transform: translateY(-3px);
    filter: brightness(1.07);
    box-shadow: 0 19px 40px rgba(0, 0, 0, .38), 0 0 30px rgba(215, 187, 143, .14)
}

.form .cta:active {
    transform: translateY(0)
}

.tiny {
    font-size: 12px;
    color: #777a73;
    text-align: center
}

.footer {
    position: relative;
    background: linear-gradient(180deg, #090a09, #050605);
    color: #95978f;
    padding: 58px 0 0;
    border-top: 1px solid rgba(234, 217, 189, .18)
}

.home-page main > section + section {
    position: relative
}

.footer:before,
.home-page main > section + section::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(215, 187, 143, .12) 0%, rgba(215, 187, 143, .28) 38%, #f8e7c8 48%, #c89f66 50%, #f8e7c8 52%, rgba(215, 187, 143, .28) 62%, rgba(215, 187, 143, .12) 100%);
    background-size: 250% 100%;
    box-shadow: 0 0 10px rgba(215, 187, 143, .35), 0 0 28px rgba(215, 187, 143, .2);
    animation: footer-gold-flow 7s linear infinite
}

.home-page main > section + section::after {
    top: 0;
    z-index: 3;
    pointer-events: none
}

@keyframes footer-gold-flow {
    from {
        background-position: 150% center
    }

    to {
        background-position: -150% center
    }
}

@media(prefers-reduced-motion:reduce) {
    .footer:before,
    .home-page main > section + section::after {
        animation: none;
        background-position: center
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: .9fr 1fr 1.35fr;
    align-items: start;
    gap: 52px
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.footer-logo {
    width: 190px;
    height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -22px;
    perspective: 700px;
    filter: drop-shadow(0 9px 22px rgba(0, 0, 0, .5))
}

.footer-brand p {
    max-width: 290px;
    margin: 0 0 22px;
    color: #a9aaa3;
    font-size: 14px;
    line-height: 1.7
}

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

.footer-hours .eyebrow {
    margin-bottom: 12px
}

.footer-hours h3 {
    margin: 0 0 20px;
    color: #f1eadf;
    font: 400 24px/1.2 var(--font-display)
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(234, 217, 189, .12);
    color: #999b94;
    font-size: 13px
}

.hours-row b {
    color: #d9c29c;
    font-weight: 600;
    white-space: nowrap
}

.footer-map {
    min-width: 0;
    padding: 5px;
    border: 1px solid rgba(234, 217, 189, .25);
    border-radius: 16px;
    background: rgba(215, 187, 143, .05);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .38)
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 230px;
    border: 0;
    border-radius: 11px;
    filter: grayscale(1) invert(.9) contrast(.85) brightness(.75);
    transition: filter .4s ease
}

.footer-map:hover iframe {
    filter: grayscale(.25) invert(0) contrast(1) brightness(.9)
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 46px;
    padding: 20px 0 24px;
    border-top: 1px solid rgba(234, 217, 189, .12);
    color: #6f716b;
    font-size: 12px
}

.footer-bottom a {
    color: #cdb58f;
    font-weight: 700;
    letter-spacing: .04em;
    transition: color .2s ease, transform .2s ease
}

.footer-bottom a:hover {
    color: #f0dfc1;
    transform: translateY(-2px)
}

@media(max-width:900px) {
    .navlinks {
        display: flex;
        position: absolute;
        z-index: 20;
        top: calc(100% + 9px);
        left: 34px;
        right: 10px;
        padding: 12px 15px 15px;
        border-radius: 22px 8px 22px 22px;
        background:
            radial-gradient(circle at 92% 4%, rgba(215, 187, 143, .16), transparent 34%),
            linear-gradient(145deg, rgba(27, 28, 24, .99), rgba(8, 9, 8, .995) 68%);
        border: 1px solid rgba(234, 217, 189, .32);
        box-shadow: 0 32px 80px rgba(0, 0, 0, .72), inset 0 1px 0 rgba(255, 255, 255, .08);
        -webkit-backdrop-filter: blur(24px) saturate(1.15);
        backdrop-filter: blur(24px) saturate(1.15);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: calc(100dvh - 105px);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px) scale(.975);
        transform-origin: top right;
        transition: opacity .3s ease, transform .42s cubic-bezier(.16, 1, .3, 1), visibility .3s;
        scrollbar-width: thin;
        scrollbar-color: rgba(215, 187, 143, .55) transparent
    }

    .navlinks::before {
        content: "VELORA  /  НАВИГАЦИЯ";
        display: flex;
        align-items: center;
        min-height: 43px;
        padding: 0 82px 9px 11px;
        margin-bottom: 2px;
        color: #e1c79c;
        font-family: "Unbounded", sans-serif;
        font-size: 7px;
        font-weight: 500;
        letter-spacing: .14em;
        text-align: left;
        border-bottom: 1px solid rgba(215, 187, 143, .28);
        background-image: url('velora-protect-logo-transparent.png');
        background-repeat: no-repeat;
        background-position: right 2px center;
        background-size: 72px auto
    }

    .navlinks.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1)
    }

    .navlinks a {
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 9px 12px 9px 25px;
        min-height: 38px;
        font-family: "Onest", sans-serif;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: .055em;
        line-height: 1.3;
        text-align: left;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .065);
        border-radius: 8px;
        background: transparent;
        opacity: 0;
        transform: translateY(-9px);
        transition: transform .42s cubic-bezier(.16, 1, .3, 1), opacity .28s ease, color .25s ease, padding .25s ease
    }

    .navlinks a::before {
        content: "";
        display: block;
        position: absolute;
        left: 10px;
        top: 50%;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #d7bb8f;
        opacity: .32;
        transform: translateY(-50%);
        transition: opacity .25s ease, box-shadow .25s ease, transform .25s ease
    }

    .navlinks a::after {
        display: none
    }

    .navlinks.open a {
        opacity: 1;
        transform: translateY(0)
    }

    .navlinks.open a:nth-of-type(1) { transition-delay: .04s }
    .navlinks.open a:nth-of-type(2) { transition-delay: .07s }
    .navlinks.open a:nth-of-type(3) { transition-delay: .1s }
    .navlinks.open a:nth-of-type(4) { transition-delay: .13s }
    .navlinks.open a:nth-of-type(5) { transition-delay: .16s }
    .navlinks.open a:nth-of-type(6) { transition-delay: .19s }
    .navlinks.open a:nth-of-type(7) { transition-delay: .22s }
    .navlinks.open a:nth-of-type(8) { transition-delay: .25s }

    .navlinks a[aria-current="page"] {
        color: #fff2d9;
        padding-left: 29px;
        border-color: rgba(215, 187, 143, .3);
        background: linear-gradient(90deg, rgba(215, 187, 143, .15), transparent 78%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08)
    }

    .navlinks a[aria-current="page"]::before {
        opacity: 1;
        transform: translateY(-50%) scale(1.4);
        box-shadow: 0 0 10px rgba(215, 187, 143, .75)
    }

    .navlinks a:last-child {
        justify-content: center;
        margin-top: 9px;
        min-height: 42px;
        padding: 9px 12px;
        color: #171610;
        border: 1px solid rgba(255, 239, 209, .45);
        border-radius: 14px;
        background: linear-gradient(135deg, #f3dbb2, #b88a50);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 12px 28px rgba(0, 0, 0, .28)
    }

    .navlinks a:last-child::before,
    .navlinks a:last-child::after {
        display: none
    }

    .navlinks a:focus-visible,
    .navlinks a:active {
        color: #fff2d9;
        border-color: rgba(215, 187, 143, .52);
        background: linear-gradient(90deg, rgba(215, 187, 143, .13), transparent);
        padding-left: 29px
    }

    .navlinks a:focus-visible {
        outline: 2px solid var(--gold);
        outline-offset: 2px
    }

    .navlinks a:last-child:focus-visible,
    .navlinks a:last-child:active {
        color: #171610;
        padding-left: 12px;
        background: linear-gradient(135deg, #f8e6c4, #c79a61)
    }

    .menu {
        display: block
    }

    .nav>.cta {
        display: none
    }

    .hero {
        min-height: 700px
    }

    .hero:before {
        background: linear-gradient(180deg, rgba(7, 8, 7, .18), rgba(7, 8, 7, .88) 62%, #090a09 100%), linear-gradient(90deg, rgba(7, 8, 7, .55), rgba(7, 8, 7, .08)), url('hero-velora-protect.png') 64% center/cover no-repeat
    }

    .hero .content {
        padding-top: 250px;
        margin-inline: auto;
        text-align: center
    }

    .hero .lead {
        margin-inline: auto
    }

    .hero-actions {
        justify-content: center
    }

    .hero .eyebrow::after {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--gold)
    }

    .badges {
        grid-template-columns: 1fr 1fr
    }

    .hero .badges {
        row-gap: 18px
    }

    .two-films,
    .compare,
    .quote-box {
        grid-template-columns: 1fr
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr
    }

    .quote-prep {
        grid-template-columns: 1fr 1fr
    }

    .team-showcase {
        grid-template-columns: 1fr
    }

    .reviews-grid {
        gap: 16px
    }

    .review-card {
        flex-basis: 48%;
        min-height: 230px
    }

    .review-submit-panel {
        grid-template-columns: 1fr
    }

    .review-card:last-child {
        grid-column: 1 / -1
    }

    .prep-cta {
        grid-column: 1 / -1
    }

    .use-grid {
        grid-template-columns: 1fr 1fr
    }

    .process {
        grid-template-columns: 1fr 1fr
    }

    .compare-visual {
        min-height: 430px
    }

    .footer .wrap {
        flex-direction: column;
        align-items: flex-start
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px
    }

    .footer-map {
        width: 100%;
        grid-column: 1 / -1
    }
}

.header .nav {
    width: calc(100% - 40px);
    max-width: none
}

.header-tools {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px
}

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

.social-link {
    position: relative;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(234, 217, 189, .3);
    border-radius: 13px;
    color: #dcc39b;
    isolation: isolate;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 7px 18px rgba(0, 0, 0, .25);
    transition: transform .25s ease, color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease
}

.social-link:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: transform .35s ease
}

.social-link.facebook:before {
    background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015))
}

.social-link.instagram:before {
    background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015))
}

.social-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .2))
}

.social-link.facebook svg {
    fill: currentColor;
    stroke: none
}

.social-link:hover {
    transform: translateY(-3px) scale(1.06);
    color: #111;
    background: #e2cda9;
    border-color: #e2cda9;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .34), 0 0 18px rgba(226, 205, 169, .14)
}

.social-link:hover:before {
    transform: scale(1.12) rotate(3deg)
}

.social-link:active {
    transform: translateY(0) scale(.98)
}

.language-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    min-width: 68px;
    border: 1px solid rgba(234, 217, 189, .3);
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015));
    color: #8f8f89;
    padding: 0 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 7px 18px rgba(0, 0, 0, .25);
    transition: transform .25s ease, border-color .2s, background .2s, box-shadow .2s
}

.language-toggle:hover {
    transform: translateY(-2px);
    border-color: #dcc39b;
    background: rgba(234, 217, 189, .09);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .3)
}

.language-toggle:active {
    transform: translateY(0) scale(.98)
}

.language-toggle .active {
    color: #dcc39b
}

.language-toggle .separator {
    color: #68645d
}

.header-tools .menu {
    margin-left: 0
}

@media(max-width:900px) {
    .socials {
        display: none
    }

    .header-tools {
        gap: 8px
    }

    .language-toggle {
        height: 40px;
        min-width: 64px;
        padding: 0 10px
    }

    .menu {
        width: 64px;
        height: 40px;
        border-radius: 13px
    }
}

@media(max-width:560px) {
    .wrap {
        width: min(100% - 28px, 1180px)
    }

    .header .nav {
        width: calc(100% - 28px)
    }

    .nav {
        height: 86px
    }

    .logo {
        width: 120px
    }

    .header-logo {
        height: 82px
    }

    .hero {
        --mobile-photo-height: clamp(240px, 72vw, 320px);
        min-height: 0;
        background: #090a09
    }

    .hero:before {
        display: none
    }

    .hero .content {
        padding: 120px 4px 40px
    }

    .hero-mobile-photo {
        display: block;
        width: 100%;
        height: var(--mobile-photo-height);
        margin: 28px auto 0;
        object-fit: cover;
        object-position: right center;
        border-radius: 16px;
        border: 1px solid rgba(215, 187, 143, .22)
    }

    .hero h1 {
        font-size: clamp(24px, 6.5vw, 29px);
        margin: 16px auto 18px;
        max-width: 360px;
        line-height: 1.28
    }

    .hero .lead {
        max-width: 330px;
        font-size: 15px;
        line-height: 1.7;
        text-wrap: pretty
    }

    .hero .eyebrow {
        gap: 8px;
        font-size: 9px;
        letter-spacing: .16em
    }

    .hero-actions {
        margin-top: 24px
    }

    .hero .eyebrow::before,
    .hero .eyebrow::after {
        width: 18px
    }

    .hero .badges {
        gap: 12px;
        margin-top: 28px
    }

    #surfaces h2 {
        font-size: clamp(22px, 6vw, 27px)
    }

    .films-section h2 {
        font-size: clamp(26px, 7.2vw, 32px)
    }

    .lead {
        font-size: 16px
    }

    .badges {
        grid-template-columns: 1fr 1fr;
        font-size: 13px
    }

    .section {
        padding: 70px 0
    }

    .two-films {
        gap: 14px
    }

    .film-card {
        min-height: 430px
    }

    .film-card .inner {
        left: 20px;
        right: 20px;
        bottom: 20px
    }

    .film-card h3 {
        font-size: 31px
    }

    .use-grid,
    .process,
    .benefits-grid,
    .quote-prep {
        grid-template-columns: 1fr
    }

    .quote-prep {
        gap: 24px;
        padding: 22px
    }

    .team-copy,
    .team-profile {
        padding: 28px 22px
    }

    .reviews-heading {
        margin-top: 58px
    }

    .reviews-grid {
        gap: 13px
    }

    .review-card {
        flex-basis: 100%;
        min-height: 220px;
        padding: 18px
    }

    .reviews-slider-controls {
        gap: 14px;
        margin-top: 22px
    }

    .review-submit-panel {
        padding: 22px
    }

    .review-form-fields {
        grid-template-columns: 1fr
    }

    .review-form-bottom {
        align-items: stretch;
        flex-direction: column
    }

    .review-form button {
        width: 100%
    }

    .review-card,
    .review-card:last-child {
        min-height: 0;
        grid-column: auto
    }

    .prep-cta {
        grid-column: auto;
        width: 100%
    }

    .use-card {
        min-height: 310px
    }

    .use-card img {
        min-height: 0
    }

    .compare-visual {
        min-height: 380px
    }

    .quote-box {
        padding: 22px
    }

    .quote-box h3 {
        font-size: 32px
    }

    .footer {
        padding-top: 48px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .footer-map {
        grid-column: auto
    }

    .footer-map iframe {
        height: 210px
    }

    .footer-bottom {
        align-items: flex-start;
        padding-bottom: calc(24px + env(safe-area-inset-bottom))
    }
}

.social-link:not(.facebook):before {
    background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015))
}

@media(prefers-reduced-motion:reduce) {
    .navlinks a,
    .navlinks a:hover {
        transform: none;
        transition: none
    }

    .navlinks a::before {
        display: none
    }

    .step,
    .step:hover,
    .step.scroll-reveal.is-visible:hover,
    .step h3,
    .step:hover h3 {
        transform: none;
        transition: none
    }

    .compare-copy li,
    .compare-copy li:hover {
        transform: none;
        transition: none
    }

    .compare-copy li::after {
        display: none
    }

    .step::before {
        display: none
    }

    .scroll-reveal {
        opacity: 1;
        filter: none;
        transform: none;
        clip-path: none;
        transition: none
    }

    .hero .badge,
    .hero .badge b {
        transition: none
    }

    .hero .badge:hover,
    .hero .badge:hover b {
        transform: none
    }

    .hero .badge::after {
        display: none
    }

    .film-card,
    .film-card img,
    .film-card h3 {
        transition: none
    }

    .film-card.scroll-reveal.is-visible:hover,
    .film-card:hover,
    .film-card:hover img,
    .film-card:hover h3 {
        transform: none
    }

    .film-card:before {
        display: none
    }

    .step.scroll-reveal:after {
        width: 72%;
        transition: none
    }
}
