/* =========================================================
   OFISTUDIO · CONTACTO & RESERVAS
========================================================= */


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    padding:
        clamp(110px, 14vw, 180px)
        0
        clamp(80px, 10vw, 125px);

    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(200, 225, 0, .12),
            transparent 30%
        ),
        #080808;
}

.contact-hero-grid {
    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap:
        clamp(55px, 9vw, 120px);

    align-items: end;
}

.contact-hero h1 {
    margin: 0;

    font-size:
        clamp(58px, 8.3vw, 108px);

    line-height: .87;

    letter-spacing: -.065em;
}

.contact-hero h1 span {
    color: var(--accent);
}

.contact-hero-copy .lead {
    margin-top: 0;
}

.contact-hero-copy p:not(.lead) {
    color: var(--muted);
}


/* =========================================================
   RESERVATION
========================================================= */

.reservation-section {
    background: #0b0b0b;
}

.reservation-grid {
    display: grid;

    grid-template-columns:
        .72fr 1.28fr;

    gap:
        clamp(50px, 9vw, 120px);

    align-items: start;
}

.reservation-info {
    position: sticky;

    top:
        calc(var(--header-height) + 35px);
}

.reservation-info h2,
.contact-options-heading h2,
.contact-location-section h2 {
    margin: 0;

    font-size:
        clamp(40px, 5vw, 66px);

    line-height: .98;

    letter-spacing: -.05em;
}

.reservation-info .lead {
    margin-top: 28px;
}


/* =========================================================
   STEPS
========================================================= */

.reservation-steps {
    margin-top: 38px;

    border-top:
        1px solid var(--line);
}

.reservation-steps > div {
    display: grid;

    grid-template-columns:
        38px 1fr;

    gap: 15px;

    padding: 18px 0;

    border-bottom:
        1px solid var(--line);
}

.reservation-steps > div > span {
    color: var(--accent);

    font-size: 10px;
    font-weight: 800;
}

.reservation-steps strong {
    display: block;

    font-size: 14px;
}

.reservation-steps p {
    margin:
        5px 0 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   DIRECT CONTACT
========================================================= */

.direct-contact {
    margin-top: 45px;
}

.direct-contact-title {
    display: block;

    margin-bottom: 15px;

    color: #777772;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: .13em;
}

.direct-contact > a,
.direct-contact > div {
    display: block;

    padding: 15px 0;

    border-bottom:
        1px solid var(--line);
}

.direct-contact > a:first-of-type {
    border-top:
        1px solid var(--line);
}

.direct-contact span,
.direct-contact strong {
    display: block;
}

.direct-contact > a > span,
.direct-contact > div > span {
    color: #777772;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .08em;
}

.direct-contact strong {
    margin-top: 4px;

    font-size: 14px;
}


/* =========================================================
   FORM CARD
========================================================= */

.reservation-form-card {
    padding:
        clamp(28px, 5vw, 52px);

    background: #111;

    border:
        1px solid var(--line);

    border-radius:
        var(--radius-lg);
}

.form-heading {
    margin-bottom: 35px;
}

.form-heading > span {
    color: var(--accent);

    font-size: 9px;
    font-weight: 850;

    letter-spacing: .14em;
}

.form-heading h2 {
    margin:
        10px 0 8px;

    font-size:
        clamp(31px, 4vw, 44px);

    line-height: 1;

    letter-spacing: -.04em;
}

.form-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   FORM ALERTS
========================================================= */

.form-alert {
    margin-bottom: 28px;

    padding: 18px 20px;

    border-radius:
        var(--radius-md);
}

.form-alert strong {
    display: block;

    margin-bottom: 4px;
}

.form-alert p {
    margin: 0;

    font-size: 13px;
}

.form-alert-success {
    background:
        rgba(200, 225, 0, .10);

    border:
        1px solid rgba(200, 225, 0, .35);
}

.form-alert-success strong {
    color: var(--accent);
}

.form-alert-success p {
    color: #bcbdb2;
}

.form-alert-error {
    background:
        rgba(215, 70, 70, .08);

    border:
        1px solid rgba(215, 70, 70, .35);
}

.form-alert-error strong {
    color: #f08f8f;
}

.form-alert-error p {
    color: #cfb0b0;
}


/* =========================================================
   FORM
========================================================= */

.reservation-form .form-grid {
    gap: 18px;
}

.reservation-form .field label {
    display: block;

    margin-bottom: 8px;

    color: #a8a8a2;

    font-size: 11px;
    font-weight: 750;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;

    background: #0a0a0a;
    color: #fff;

    border:
        1px solid var(--line);

    transition:
        border-color var(--transition),
        background var(--transition);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;

    background: #0d0d0d;

    border-color:
        rgba(200, 225, 0, .65);
}

.reservation-form textarea {
    resize: vertical;

    min-height: 150px;
}

.reservation-form select {
    cursor: pointer;
}

.reservation-form small {
    display: block;

    margin-top: 7px;

    color: #72726d;

    font-size: 10px;
}

.form-submit {
    margin-top: 8px;
}

.form-submit .btn {
    width: 100%;
}

.form-submit p {
    margin:
        10px 0 0;

    text-align: center;

    color: #72726d;

    font-size: 10px;
}


/* =========================================================
   OPTIONS
========================================================= */

.contact-options-section {
    background: #080808;
}

.contact-options-heading {
    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 70px;

    align-items: end;

    margin-bottom:
        clamp(40px, 7vw, 65px);
}

.contact-options-heading > p {
    max-width: 500px;

    margin-bottom: 5px;

    color: var(--muted);

    font-size: 18px;
}

.contact-options-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1px;

    overflow: hidden;

    background: var(--line);

    border:
        1px solid var(--line);

    border-radius:
        var(--radius-lg);
}

.contact-options-grid article {
    min-height: 330px;

    display: flex;
    flex-direction: column;

    padding:
        clamp(25px, 3vw, 35px);

    background: #080808;
}

.contact-options-grid article > span {
    color: var(--accent);

    font-size: 10px;
    font-weight: 800;
}

.contact-options-grid h3 {
    margin:
        55px 0 13px;

    font-size:
        clamp(22px, 2.5vw, 28px);

    line-height: 1.05;
}

.contact-options-grid p {
    margin-bottom: 25px;

    color: var(--muted);
}

.contact-options-grid a {
    margin-top: auto;

    font-size: 11px;
    font-weight: 800;

    transition:
        color var(--transition);
}

.contact-options-grid a:hover {
    color: var(--accent);
}


/* =========================================================
   LOCATION
========================================================= */

.contact-location-section {
    background: #f0eee8;

    color: #111;
}

.contact-location-section .section-kicker {
    color: #5e6700;
}

.contact-location-grid {
    display: grid;

    grid-template-columns:
        1.1fr .9fr;

    gap:
        clamp(50px, 9vw, 120px);
}

.contact-location-section .lead {
    margin-top: 0;

    color: #555550;
}

.contact-location-section p:not(.lead) {
    color: #6d6d67;
}

.location-contact {
    display: flex;
    flex-direction: column;

    gap: 7px;

    margin-top: 25px;
}

.location-contact a {
    width: fit-content;

    font-weight: 800;
}

.location-contact a:hover {
    color: #626a00;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .contact-hero-grid,
    .reservation-grid,
    .contact-options-heading,
    .contact-location-grid {
        grid-template-columns: 1fr;
    }

    .reservation-info {
        position: static;
    }

    .contact-options-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .contact-hero {
        padding-top: 100px;
    }

    .contact-hero h1 {
        font-size:
            clamp(54px, 16vw, 80px);
    }

    .reservation-form-card {
        padding:
            25px 20px;
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
    }

    .contact-options-grid article {
        min-height: 250px;
    }

}


@media (max-width: 480px) {

    .reservation-form .form-grid {
        grid-template-columns: 1fr;
    }

    .reservation-form .field,
    .reservation-form .field.full {
        grid-column: auto;
    }

}