:root {
    --black: #080808;
    --charcoal: #151515;
    --gray: #727272;
    --light-gray: #d9d9d9;
    --off-white: #f4f3ef;
    --white: #ffffff;
    --error: #9d1c1c;
    --content-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: clamp(18px, 3.5vw, 58px);
    background:
        linear-gradient(rgba(2, 12, 29, 0.12), rgba(2, 12, 29, 0.12)),
        url("paraback2.jpg") center top / cover fixed no-repeat;
    color: var(--black);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: inherit;
}

.page-shell {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px);
    background: var(--off-white);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.site-header,
main,
footer {
    width: min(100%, var(--content-width));
    margin-inline: auto;
}

.site-header {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--black);
}

.brand {
    color: var(--black);
    font-size: clamp(1.55rem, 4vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    text-decoration: none;
}

.back-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}

.back-link:hover,
.back-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero {
    max-width: 900px;
    padding: clamp(70px, 11vw, 150px) 0 clamp(60px, 8vw, 110px);
}

.eyebrow {
    margin: 0 0 24px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.2rem, 10vw, 8.5rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.84;
    text-transform: lowercase;
}

.hero-copy {
    max-width: 700px;
    margin: 42px 0 0;
    font-size: clamp(1.1rem, 2.2vw, 1.55rem);
    line-height: 1.4;
}

.notice {
    margin-bottom: 34px;
    padding: 18px 20px;
    border: 1px solid currentColor;
    font-weight: 700;
}

.notice-error {
    color: var(--error);
}

.rental-form {
    margin-bottom: 100px;
}

fieldset {
    min-width: 0;
    margin: 0;
    padding: 64px 0;
    border: 0;
    border-top: 1px solid var(--black);
}

legend {
    width: 100%;
    margin: 0 0 34px;
    padding: 0;
    font-size: clamp(1.55rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: lowercase;
}

legend span {
    display: block;
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
}

.section-help {
    max-width: 680px;
    margin: -16px 0 34px;
    color: #444;
}

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

.scope-card {
    position: relative;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    background: transparent;
    border: 1px solid var(--black);
    cursor: pointer;
    transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.scope-card:hover {
    transform: translateY(-2px);
}

.scope-card:has(input:checked) {
    background: var(--black);
    color: var(--white);
}

.scope-card:has(input:focus-visible) {
    outline: 3px solid var(--black);
    outline-offset: 4px;
}

.scope-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.scope-number {
    position: absolute;
    top: 22px;
    left: 26px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.scope-card strong {
    margin-bottom: 12px;
    font-size: clamp(1.35rem, 3vw, 2.35rem);
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: lowercase;
}

.scope-card small {
    max-width: 480px;
    font-size: 0.95rem;
    line-height: 1.45;
}

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

.field {
    min-width: 0;
    margin-bottom: 28px;
}

.field label,
.label-like {
    display: block;
    margin-bottom: 9px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--black);
    border-radius: 0;
    background: transparent;
    color: var(--black);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select {
    min-height: 54px;
    padding: 10px 2px;
}

textarea {
    display: block;
    padding: 16px 2px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #777;
    opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
    border-bottom-width: 3px;
}

.character-note {
    margin: 8px 0 0;
    color: var(--gray);
    font-size: 0.78rem;
}

.check-grid,
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.check-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid var(--black);
    cursor: pointer;
}

.check-option input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin: 2px 0 0;
    accent-color: var(--black);
}

.check-option span {
    line-height: 1.35;
}

.consent-row {
    padding: 30px 0;
    border-top: 1px solid var(--black);
}

.consent {
    max-width: 820px;
}

.submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 0;
    border-top: 1px solid var(--black);
}

.submit-row p {
    margin: 0;
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

button,
.primary-link {
    min-width: min(100%, 310px);
    padding: 19px 28px;
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

button:hover,
.primary-link:hover {
    background: transparent;
    color: var(--black);
}

button:focus-visible,
.primary-link:focus-visible,
.secondary-link:focus-visible {
    outline: 3px solid var(--black);
    outline-offset: 4px;
}

.website-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 0 70px;
    border-top: 1px solid var(--black);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

footer a {
    font-weight: 900;
    text-decoration: none;
}

/* Confirmation page */
.confirmation-shell {
    min-height: calc(100vh - clamp(36px, 7vw, 116px));
    display: flex;
    flex-direction: column;
}

.confirmation-main {
    flex: 1;
    display: flex;
    align-items: center;
}

.confirmation-content {
    max-width: 850px;
    padding: clamp(80px, 13vw, 180px) 0;
}

.confirmation-message {
    max-width: 760px;
    margin: 44px 0 0;
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    line-height: 1.35;
}

.confirmation-contact {
    margin: 28px 0 0;
    font-size: 1.05rem;
}

.confirmation-contact a {
    font-weight: 800;
    text-underline-offset: 4px;
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 46px;
}

.secondary-link {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-underline-offset: 5px;
}

@media (max-width: 760px) {
    body {
        padding: 12px;
        background-attachment: scroll;
    }

    .page-shell {
        padding-inline: 16px;
    }

    .site-header {
        min-height: 84px;
    }

    .scope-grid,
    .form-grid,
    .check-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .scope-card {
        min-height: 205px;
    }

    .submit-row,
    footer {
        align-items: stretch;
        flex-direction: column;
    }

    button,
    .primary-link {
        width: 100%;
    }

    .confirmation-actions {
        align-items: stretch;
        flex-direction: column;
    }
	.captcha-section {
    padding: 34px 0;
    border-top: 1px solid var(--black);
}

.captcha-label {
    margin: 0 0 14px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cf-turnstile {
    min-height: 65px;
}
	
	
}
