:root {
    --bg: #050505;
    --bg-soft: #0b0b0b;
    --surface: rgba(16, 16, 16, 0.84);
    --surface-strong: rgba(10, 10, 10, 0.94);
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(230, 185, 94, 0.32);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.64);
    --muted-2: rgba(255, 255, 255, 0.42);
    --gold: #e6b95e;
    --gold-soft: #f3cb75;
    --gold-light: #ffe0a0;
    --danger: #ff7575;
    --input: rgba(255, 255, 255, 0.065);
    --shadow: 0 36px 90px rgba(0, 0, 0, 0.56);
    --radius-xl: 32px;
    --radius-lg: 20px;
    --radius-md: 15px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.page {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
}

/* =========================
   Background video
========================= */

.video-background {
    position: fixed;
    inset: 0;
    z-index: -5;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 18%, rgba(230, 185, 94, 0.18), transparent 32%),
        linear-gradient(135deg, #111 0%, #050505 48%, #090806 100%);
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.62;
    filter: saturate(0.82) contrast(1.08) brightness(0.72);
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.82) 38%,
            rgba(0, 0, 0, 0.58) 70%,
            rgba(0, 0, 0, 0.65) 100%
        );
}

.video-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.58) 0%,
            transparent 26%,
            rgba(0, 0, 0, 0.86) 100%
        );
}

.page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 74% 22%, rgba(230, 185, 94, 0.09), transparent 28%),
        radial-gradient(circle at 55% 80%, rgba(255, 255, 255, 0.03), transparent 34%);
}

.page::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.2;
    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: 36px 36px;
    mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}

/* =========================
   Header
========================= */

.header {
    width: min(1380px, calc(100% - 64px));
    margin: 0 auto;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(230, 185, 94, 0.58);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 18px;
    font-weight: 800;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.11), transparent 34%),
        rgba(230, 185, 94, 0.08);
    box-shadow:
        inset 0 0 22px rgba(230, 185, 94, 0.08),
        0 10px 32px rgba(0, 0, 0, 0.38);
}

.brand-icon::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,.07);
}

.brand-text {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.brand-text span {
    color: var(--gold);
}

.header-contact {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    color: var(--muted-2);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.header-contact a {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.25s ease;
}

.header-contact a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -4px;
    height: 1px;
    background: var(--gold);
    transition: right 0.25s ease;
}

.header-contact a:hover {
    color: var(--gold-light);
}

.header-contact a:hover::after {
    right: 0;
}

/* =========================
   Main layout
========================= */

.main-container {
    width: min(1380px, calc(100% - 64px));
    min-height: calc(100vh - 102px);
    margin: 0 auto;
    padding: 28px 0 84px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 570px);
    gap: 84px;
    align-items: center;
}

.hero-content {
    max-width: 740px;
    animation: revealLeft 0.9s ease both;
}

.eyebrow {
    width: fit-content;
    margin-bottom: 28px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(230, 185, 94, 0.24);
    border-radius: 999px;
    background: rgba(230, 185, 94, 0.075);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.45px;
    backdrop-filter: blur(10px);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(230, 185, 94, 0.1);
    animation: pulse 1.8s infinite;
}

.hero-content h1 {
    max-width: 780px;
    font-size: clamp(46px, 6vw, 86px);
    line-height: 0.98;
    letter-spacing: -4.5px;
    font-weight: 800;
    text-wrap: balance;
}

.hero-content h1 span {
    display: block;
    margin-top: 12px;
    background:
        linear-gradient(
            100deg,
            #ffffff 0%,
            var(--gold-light) 50%,
            var(--gold) 100%
        );
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    filter: drop-shadow(0 8px 22px rgba(230, 185, 94, 0.1));
}

.hero-description {
    max-width: 620px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.82;
}

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

.advantage {
    position: relative;
    min-height: 112px;
    padding: 18px;
    display: flex;
    gap: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.095);
    border-radius: 19px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
    backdrop-filter: blur(15px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.advantage::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -36px;
    bottom: -45px;
    border-radius: 50%;
    background: rgba(230,185,94,.08);
    filter: blur(16px);
}

.advantage:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 185, 94, 0.32);
    background: rgba(230, 185, 94, 0.065);
    box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

.advantage-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111111;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(230,185,94,.15);
}

.advantage strong {
    display: block;
    font-size: 13px;
}

.advantage p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.hero-footer {
    margin-top: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 13px;
}

.rating span {
    color: var(--muted);
    font-size: 12px;
}

.instagram-link {
    position: relative;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
}

.instagram-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -3px;
    height: 1px;
    background: var(--gold);
    transition: right .25s ease;
}

.instagram-link:hover::after {
    right: 0;
}

/* =========================
   Form card
========================= */

.form-wrapper {
    position: relative;
    width: min(100%, 570px);
    margin-left: auto;
    animation: revealRight 0.9s 0.12s ease both;
}

.form-card {
    position: relative;
    padding: 42px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(
            145deg,
            rgba(25, 25, 25, 0.94),
            rgba(7, 7, 7, 0.92)
        );
    box-shadow:
        var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(26px);
}

.form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.2),
            transparent 35%,
            rgba(230, 185, 94, 0.2)
        );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-card::after {
    content: "";
    position: absolute;
    inset: auto 12% 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230,185,94,.55), transparent);
}

.form-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.decoration-one {
    width: 190px;
    height: 190px;
    top: -95px;
    right: -62px;
    background: rgba(230, 185, 94, 0.19);
}

.decoration-two {
    width: 170px;
    height: 170px;
    bottom: -105px;
    left: -70px;
    background: rgba(139, 105, 45, 0.16);
}

.form-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
}

.form-number {
    position: relative;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );
    color: #111111;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(230, 185, 94, 0.2);
}

.form-number::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
}

.form-small-title {
    display: block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.9px;
}

.form-header h2 {
    margin-top: 4px;
    font-size: 27px;
    line-height: 1.22;
    letter-spacing: -0.8px;
}

.form-subtitle {
    position: relative;
    margin: 22px 0 30px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

/* =========================
   Form fields
========================= */

.form-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    font-weight: 700;
}

.field label span {
    color: var(--gold);
}

.input-wrapper,
.date-wrapper,
.select-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 2;
    width: 19px;
    height: 19px;
    transform: translateY(-50%);
    fill: none;
    stroke: rgba(255, 255, 255, 0.54);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    transition: stroke .25s ease;
}

.input-wrapper input {
    padding-left: 50px !important;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.05));
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.field input,
.field select {
    height: 54px;
    padding: 0 16px;
    font-size: 14px;
}

.field textarea {
    min-height: 96px;
    padding: 14px 16px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.33);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: rgba(255,255,255,.18);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(230, 185, 94, 0.72);
    background: rgba(230, 185, 94, 0.06);
    box-shadow:
        0 0 0 4px rgba(230, 185, 94, 0.085),
        0 14px 34px rgba(0, 0, 0, 0.18);
}

.input-wrapper:focus-within .input-icon {
    stroke: var(--gold-light);
}

.field select {
    padding-right: 44px;
    cursor: pointer;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255,255,255,.68) 50%),
        linear-gradient(135deg, rgba(255,255,255,.68) 50%, transparent 50%);
    background-position:
        calc(100% - 19px) 23px,
        calc(100% - 14px) 23px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.field select option {
    background: #171717;
    color: #ffffff;
}

.field input[type="date"] {
    color-scheme: dark;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: .65;
    cursor: pointer;
    filter: invert(1);
}

.field-error {
    display: block;
    margin-top: 7px;
    color: var(--danger);
    font-size: 10px;
    line-height: 1.45;
}

.alert-danger {
    position: relative;
    margin-bottom: 18px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 117, 117, 0.25);
    border-radius: 13px;
    background: rgba(255, 117, 117, 0.08);
    color: #ffb1b1;
    font-size: 12px;
}

/* =========================
   Submit button
========================= */

.submit-button {
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: 28px;
    padding: 0 18px 0 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    cursor: pointer;
    border: none;
    border-radius: 16px;
    background:
        linear-gradient(
            110deg,
            var(--gold-light),
            var(--gold-soft) 45%,
            var(--gold)
        );
    color: #111111;
    font-size: 14px;
    font-weight: 800;
    box-shadow:
        0 20px 42px rgba(230, 185, 94, 0.19),
        inset 0 1px 0 rgba(255,255,255,.35);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 82%;
    height: 100%;
    transform: skewX(-20deg);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.62),
            transparent
        );
    transition: left 0.75s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    filter: saturate(1.05);
    box-shadow:
        0 25px 52px rgba(230, 185, 94, 0.28),
        inset 0 1px 0 rgba(255,255,255,.42);
}

.submit-button:hover::before {
    left: 145%;
}

.submit-button:active {
    transform: translateY(-1px) scale(.995);
}

.submit-arrow {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    font-size: 20px;
    transition: transform .25s ease, background .25s ease;
}

.submit-button:hover .submit-arrow {
    transform: translateX(3px);
    background: rgba(0,0,0,.14);
}

.privacy-text {
    margin-top: 13px;
    color: var(--muted-2);
    text-align: center;
    font-size: 9px;
    line-height: 1.55;
}

/* =========================
   Address card
========================= */

.address-card {
    width: calc(100% - 52px);
    margin: -2px auto 0;
    padding: 19px 22px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 22px 22px;
    background: rgba(7, 7, 7, 0.8);
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
    backdrop-filter: blur(18px);
}

.address-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(230, 185, 94, 0.1);
    border: 1px solid rgba(230,185,94,.1);
}

.address-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.address-card div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.address-card span {
    color: var(--muted-2);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.address-card strong {
    font-size: 11px;
    line-height: 1.45;
}

/* =========================
   Scroll indicator
========================= */

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    white-space: nowrap;
}

.scroll-indicator span {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

/* =========================
   Animations
========================= */

@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(230, 185, 94, 0.1);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(230, 185, 94, 0);
    }
}

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

@media (max-width: 1180px) {
    .main-container {
        gap: 54px;
        grid-template-columns: minmax(0, 1fr) minmax(430px, 540px);
    }

    .hero-content h1 {
        font-size: clamp(44px, 5.6vw, 72px);
    }
}

@media (max-width: 1050px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 58px;
        padding-top: 46px;
    }

    .hero-content {
        max-width: 860px;
    }

    .form-wrapper {
        width: min(640px, 100%);
        margin: 0 auto;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 760px) {
    .header {
        width: calc(100% - 32px);
        padding: 18px 0;
    }

    .header-contact {
        display: none;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
    }

    .main-container {
        width: calc(100% - 28px);
        padding: 30px 0 52px;
        gap: 44px;
    }

    .hero-content h1 {
        font-size: clamp(40px, 13vw, 60px);
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 15px;
    }

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

    .advantage {
        min-height: auto;
    }

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

    .form-card {
        padding: 29px 21px;
        border-radius: 24px;
    }

    .form-header h2 {
        font-size: 22px;
    }

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

    .field-full {
        grid-column: auto;
    }

    .address-card {
        width: calc(100% - 30px);
        padding: 17px 18px;
    }
}

@media (max-width: 430px) {
    .eyebrow {
        font-size: 10px;
        padding: 9px 12px;
    }

    .hero-content h1 {
        font-size: 39px;
        line-height: 1.02;
    }

    .form-header {
        align-items: flex-start;
    }

    .form-number {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .form-header h2 {
        font-size: 20px;
    }

    .form-subtitle {
        margin-bottom: 24px;
    }

    .field input,
    .field select {
        height: 52px;
    }

    .submit-button {
        height: 57px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}