:root {
    --black: #030303;
    --panel: #090909;
    --panel-light: #101010;
    --gold: #c8a96a;
    --gold-light: #ddc37f;
    --cream: #f1ede5;
    --muted: rgba(241, 237, 229, 0.62);
    --line: rgba(200, 169, 106, 0.25);
    --white-line: rgba(255, 255, 255, 0.09);
}

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

html {
    background: var(--black);
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
}

.visit-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 82px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.80);
    border-bottom: 1px solid var(--white-line);
    backdrop-filter: blur(18px);
}

.visit-logo {
    display: flex;
    align-items: center;
}

.visit-logo img {
    display: block;
    width: auto;
    height: 55px;
    object-fit: contain;
}

.visit-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.visit-nav a {
    color: rgba(241, 237, 229, 0.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.visit-nav a:hover {
    color: var(--gold-light);
}

.visit-page {
    padding-top: 82px;
}

.visit-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.visit-hero-background {
    position: absolute;
    inset: 0;
    background:
        url("images/store-gallery/store-01.jpg?v=gallery22-jpg1")
        center / cover no-repeat;
    transform: scale(1.02);
}

.visit-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.58) 43%,
            rgba(0, 0, 0, 0.12) 78%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.66),
            transparent 52%
        );
}

.visit-hero-content {
    position: relative;
    z-index: 2;
    width: min(690px, 88vw);
    margin: 0 0 7vh 6vw;
}

.visit-eyebrow {
    display: inline-flex;
    padding: 9px 16px;
    margin-bottom: 24px;
    color: var(--gold-light);
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid var(--line);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
}

.visit-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(54px, 7vw, 102px);
    line-height: 0.91;
    letter-spacing: -0.06em;
}

.visit-hero h1 span {
    display: block;
    color: var(--gold);
}

.visit-hero-content > p {
    max-width: 590px;
    color: rgba(241, 237, 229, 0.76);
    font-size: 16px;
    line-height: 1.75;
}

.visit-details {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--white-line);
    border: 1px solid var(--white-line);
}

.visit-details > div {
    min-height: 92px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(6, 6, 6, 0.84);
}

.visit-details span {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.visit-details strong {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.booking-section {
    max-width: 1450px;
    margin: auto;
    padding: 120px 5vw;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 80px;
    align-items: start;
}

.booking-intro {
    position: sticky;
    top: 125px;
}

.booking-intro > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.23em;
}

.booking-intro h2 {
    max-width: 520px;
    margin: 18px 0 24px;
    font-size: clamp(38px, 4.3vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.booking-intro > p {
    max-width: 490px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.booking-note {
    max-width: 500px;
    margin-top: 38px;
    padding: 22px;
    border-left: 2px solid var(--gold);
    background: rgba(200, 169, 106, 0.055);
}

.booking-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.booking-note p {
    color: rgba(241, 237, 229, 0.64);
    font-size: 13px;
    line-height: 1.65;
}

.booking-form-wrapper {
    position: relative;
    min-height: 620px;
    padding: 44px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );
    border: 1px solid var(--white-line);
}

.booking-form-wrapper::before {
    content: "";
    position: absolute;
    inset: 14px;
    pointer-events: none;
    border: 1px solid rgba(200, 169, 106, 0.10);
}

.booking-form {
    position: relative;
    z-index: 2;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field > span {
    color: rgba(241, 237, 229, 0.72);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    color: var(--cream);
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0;
    outline: none;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

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

.form-field textarea {
    min-height: 130px;
    padding: 16px;
    resize: vertical;
    line-height: 1.6;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: rgba(200, 169, 106, 0.045);
    border-color: rgba(200, 169, 106, 0.72);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.06);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(241, 237, 229, 0.32);
}

.form-field select option {
    color: var(--cream);
    background: #111;
}

.form-field-full {
    margin-top: 25px;
}

.consent-field {
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(241, 237, 229, 0.58);
    font-size: 12px;
    line-height: 1.55;
    cursor: pointer;
}

.consent-field input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: var(--gold);
}

.booking-submit {
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #050505;
    background: var(--gold);
    border: 1px solid var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.booking-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(200, 169, 106, 0.18);
}

.button-arrow {
    font-size: 19px;
}

.form-status {
    min-height: 21px;
    margin-top: 15px;
    color: #d48c8c;
    font-size: 12px;
    line-height: 1.5;
}

.booking-success {
    position: relative;
    z-index: 3;
    min-height: 530px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.success-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 25px;
    display: grid;
    place-items: center;
    color: #050505;
    background: var(--gold);
    border-radius: 50%;
    font-size: 25px;
}

.booking-success h3 {
    margin-bottom: 16px;
    font-size: 39px;
    letter-spacing: -0.04em;
}

.booking-success p {
    max-width: 510px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.booking-success button {
    margin-top: 28px;
    padding: 14px 20px;
    color: var(--gold-light);
    background: transparent;
    border: 1px solid var(--line);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.visit-footer-section {
    padding: 85px 6vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    background: var(--panel);
    border-top: 1px solid var(--white-line);
}

.visit-footer-section > div > span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.22em;
}

.visit-footer-section h2 {
    margin: 10px 0;
    font-size: clamp(38px, 5vw, 70px);
    letter-spacing: -0.05em;
}

.visit-footer-section p {
    color: var(--muted);
    font-size: 13px;
}

.visit-footer-section > a {
    min-width: 220px;
    padding: 16px 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #050505;
    background: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 960px) {
    .booking-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .booking-intro {
        position: static;
    }
}

@media (max-width: 720px) {
    .visit-header {
        height: 72px;
        padding: 0 20px;
    }

    .visit-logo img {
        height: 43px;
    }

    .visit-nav a:not(:last-child) {
        display: none;
    }

    .visit-nav a {
        font-size: 9px;
    }

    .visit-page {
        padding-top: 72px;
    }

    .visit-hero {
        min-height: 720px;
    }

    .visit-hero-background {
        background-position: center;
    }

    .visit-hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.90) 0%,
                rgba(0, 0, 0, 0.44) 67%,
                rgba(0, 0, 0, 0.14) 100%
            );
    }

    .visit-hero-content {
        width: auto;
        margin: 0 22px 40px;
    }

    .visit-hero h1 {
        font-size: clamp(48px, 14vw, 68px);
        line-height: 0.94;
    }

    .visit-hero-content > p {
        font-size: 14px;
        line-height: 1.65;
    }

    .visit-details {
        grid-template-columns: 1fr;
    }

    .visit-details > div {
        min-height: 75px;
    }

    .booking-section {
        padding: 75px 20px;
    }

    .booking-intro h2 {
        font-size: 39px;
    }

    .booking-form-wrapper {
        padding: 27px 20px;
    }

    .booking-form-wrapper::before {
        inset: 8px;
    }

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

    .visit-footer-section {
        padding: 65px 20px;
        align-items: flex-start;
        flex-direction: column;
    }

    .visit-footer-section > a {
        width: 100%;
    }
}
