/* =========================================================
   CONTACTO Y RESERVAS
========================================================= */

.contact-page {
    --contact-black: #080607;
    --contact-deep: #120a0f;
    --contact-card: #130d11;
    --contact-pink: #ef5e9f;
    --contact-soft: #f4a9c8;
    --contact-gold: #d8b475;
    --contact-paper: #f5ebe4;

    width: 100%;
    max-width: 100%;
    overflow-x: hidden;

    background: var(--contact-black);
    color: #ffffff;
}

.contact-page .header--inner {
    background: rgba(8, 6, 7, 0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;

    min-height: 78svh;

    display: flex;
    align-items: center;

    overflow: hidden;
    isolation: isolate;

    padding: 145px 5% 90px;

    background:
        radial-gradient(
            circle at 82% 28%,
            rgba(239, 94, 159, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 14% 68%,
            rgba(216, 180, 117, 0.07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #080607,
            #160b12 58%,
            #080607
        );
}

.contact-hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -4;

    opacity: 0.11;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.014) 1px,
            transparent 1px
        );

    background-size: 40px 40px;
}

.contact-hero__glow {
    position: absolute;
    inset: -25%;
    z-index: -3;

    background:
        radial-gradient(
            circle at 72% 42%,
            rgba(244, 169, 200, 0.13),
            transparent 24%
        );

    filter: blur(42px);

    animation: contactGlow 9s ease-in-out infinite alternate;
}

@keyframes contactGlow {
    to {
        transform: translate3d(4%, -3%, 0) scale(1.1);
    }
}

.contact-hero__content {
    width: min(100%, 1280px);

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, 0.38fr);

    align-items: flex-end;
    gap: clamp(50px, 9vw, 140px);

    margin: 0 auto;
}

.contact-kicker {
    margin-bottom: 15px;

    color: var(--contact-gold);

    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contact-hero__title {
    max-width: 930px;

    font-family: var(--font-title);
    font-size: clamp(4.2rem, 7.5vw, 8rem);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.06em;
}

.contact-hero__title em {
    display: block;

    margin-top: 15px;

    color: var(--contact-soft);

    font-weight: 400;
    font-style: italic;
    font-size: 0.52em;
    line-height: 1;
}

.contact-hero__description {
    max-width: 570px;

    margin-top: 26px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 0.86rem;
    line-height: 1.72;
}

.contact-hero__button {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-top: 28px;
    padding-bottom: 7px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-hero__button span {
    color: var(--contact-gold);

    animation: contactArrow 1.5s ease-in-out infinite;
}

@keyframes contactArrow {
    50% {
        transform: translateY(6px);
    }
}

.contact-hero__note {
    position: relative;

    padding: 32px 0 12px 29px;

    border-left: 1px solid rgba(216, 180, 117, 0.35);
}

.contact-hero__note-number {
    display: block;

    margin-bottom: 22px;

    color: var(--contact-pink);

    font-family: var(--font-title);
    font-size: 2.8rem;
}

.contact-hero__note p {
    color: rgba(255, 255, 255, 0.68);

    font-family: var(--font-title);
    font-size: 1.35rem;
    line-height: 1.45;
}

.contact-hero__note strong {
    display: block;

    margin-top: 24px;

    color: rgba(255, 255, 255, 0.44);

    font-size: 0.45rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* =========================================================
   RESERVA
========================================================= */

.booking {
    padding: 100px 5% 130px;

    background:
        radial-gradient(
            circle at 8% 14%,
            rgba(239, 94, 159, 0.045),
            transparent 25%
        ),
        #090708;
}

.booking__heading {
    width: min(100%, 1120px);

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;

    margin: 0 auto 56px;
}

.booking__heading h2 {
    font-family: var(--font-title);
    font-size: clamp(3.4rem, 5.3vw, 5.8rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.booking__heading-text {
    max-width: 350px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.72rem;
    line-height: 1.65;
}

/* Formulario */

.booking-form {
    width: min(100%, 1120px);

    margin: 0 auto;

    border: 1px solid rgba(216, 180, 117, 0.17);
    border-radius: 24px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(239, 94, 159, 0.055),
            transparent 24%
        ),
        var(--contact-card);

    box-shadow:
        0 45px 110px rgba(0, 0, 0, 0.32);
}

.booking-form__honeypot {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;

    opacity: 0 !important;
    pointer-events: none !important;
}

.booking-form__section {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: clamp(35px, 6vw, 85px);

    padding: 32px 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.booking-form__section-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.booking-form__section-heading > span {
    color: var(--contact-pink);

    font-family: var(--font-title);
    font-size: 2.1rem;
    line-height: 1;
}

.booking-form__section-heading h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.booking-form__section-heading p {
    margin-top: 11px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 0.65rem;
    line-height: 1.55;
}

.booking-form__grid {
    min-width: 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
}

.field {
    min-width: 0;

    display: grid;
    gap: 10px;
}

.field--full {
    grid-column: 1 / -1;
}

.field > span,
.contact-method legend {
    color: rgba(255, 255, 255, 0.76);

    font-size: 0.51rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.field small {
    color: rgba(255, 255, 255, 0.38);

    font-size: 0.58rem;
    line-height: 1.45;
}

.field input,
.field select,
.field textarea {
    width: 100%;

    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;

    outline: none;

    padding: 13px 2px;

    background: transparent;
    color: #ffffff;

    font-family: var(--font-body);
    font-size: 0.82rem;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.field textarea {
    min-height: 160px;

    resize: vertical;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;

    padding: 17px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--contact-pink);
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.field select {
    color-scheme: dark;

    cursor: pointer;
}

.contact-method {
    min-width: 0;

    margin: 0;
    padding: 0;

    border: 0;
}

.contact-method legend {
    margin-bottom: 13px;
}

.contact-method__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.choice-card {
    position: relative;

    cursor: pointer;
}

.choice-card input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.choice-card > span {
    min-height: 88px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.02);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.choice-card strong {
    color: #ffffff;

    font-family: var(--font-title);
    font-size: 1.28rem;
    font-weight: 400;
}

.choice-card small {
    color: rgba(255, 255, 255, 0.39);

    font-size: 0.57rem;
}

.choice-card input:checked + span {
    border-color: rgba(239, 94, 159, 0.68);

    background: rgba(239, 94, 159, 0.075);

    box-shadow:
        inset 0 0 0 1px rgba(239, 94, 159, 0.08);
}

.choice-card:hover > span {
    transform: translateY(-2px);
}

.contact-field[hidden] {
    display: none;
}

.photo-option {
    position: relative;

    cursor: pointer;
}

.photo-option input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.photo-option__box {
    display: grid;
    gap: 6px;

    padding: 20px 22px;

    border: 1px solid rgba(216, 180, 117, 0.23);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(216, 180, 117, 0.045),
            rgba(239, 94, 159, 0.035)
        );

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.photo-option__box::before {
    content: "";

    width: 17px;
    height: 17px;

    position: absolute;
    top: 22px;
    right: 22px;

    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 4px;

    background: transparent;
}

.photo-option__box strong {
    padding-right: 34px;

    color: var(--contact-paper);

    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 400;
}

.photo-option__box small {
    max-width: 620px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 0.6rem;
    line-height: 1.5;
}

.photo-option input:checked + .photo-option__box {
    border-color: rgba(239, 94, 159, 0.65);

    background: rgba(239, 94, 159, 0.07);
}

.photo-option input:checked + .photo-option__box::before {
    content: "✓";

    display: grid;
    place-items: center;

    border-color: var(--contact-pink);

    background: var(--contact-pink);
    color: #ffffff;

    font-size: 0.65rem;
}

.privacy-choice {
    grid-column: 2;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    margin-top: 12px;

    cursor: pointer;
}

.privacy-choice input {
    flex: 0 0 auto;

    width: 16px;
    height: 16px;

    margin-top: 2px;

    accent-color: var(--contact-pink);
}

.privacy-choice span {
    color: rgba(255, 255, 255, 0.46);

    font-size: 0.59rem;
    line-height: 1.5;
}

.booking-form__footer {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 30px 20px 38px;

    text-align: center;
}

.booking-form__footer p{

    margin-top:12px;

    font-size:.55rem;

    line-height:1.45;

}

.booking-form__status{

    min-height:16px;

    margin-bottom:8px;

}













.booking-form__submit {
    min-width: 245px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    padding: 16px 30px;

    border: 1px solid rgba(244, 169, 200, 0.68);
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #df538f,
            #96345f
        );

    color: #ffffff;

    box-shadow:
        0 14px 42px rgba(223, 83, 143, 0.23);

    font-size: 0.61rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
}

.booking-form__submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 19px 50px rgba(223, 83, 143, 0.34);
}

.booking-form__submit:disabled {
    opacity: 0.55;
    cursor: wait;
}

.booking-form__submit i {
    color: #ffe3ef;

    font-style: normal;
}

.booking-form__footer > p {
    max-width: 430px;

    margin-top: 17px;

    color: rgba(255, 255, 255, 0.37);

    font-size: 0.57rem;
    line-height: 1.55;
}

.booking-form__status {
    min-height: 24px;

    margin-bottom: 14px;

    color: var(--contact-soft);

    font-size: 0.67rem;
    line-height: 1.45;
}

.booking-form__status.is-error {
    color: #ff9b9b;
}

.booking-form__status.is-success {
    color: #f4b8d2;
}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 760px) {

    .contact-hero {
        min-height: 100svh;

        padding: 110px 20px 62px;
    }

    .contact-hero__content {
        display: block;
    }

    .contact-kicker {
        margin-bottom: 10px;

        font-size: 0.45rem;
        letter-spacing: 0.17em;
    }

    .contact-hero__title{

    max-width:290px;

    font-size:clamp(2.7rem,10vw,3.6rem);

    line-height:.88;

}

    .contact-hero__title em{

    margin-top:8px;

    font-size:.44em;

}

    .contact-hero__description{

    max-width:290px;

    margin-top:15px;

    font-size:.72rem;

    line-height:1.55;

}

    .contact-hero__button {
        margin-top: 21px;

        font-size: 0.45rem;
    }

    .contact-hero__note {
        margin-top: 46px;
        padding: 20px 0 0 20px;
    }

    .contact-hero__note-number {
        margin-bottom: 13px;

        font-size: 2rem;
    }

    .contact-hero__note p {
        max-width: 300px;

        font-size: 1.1rem;
    }

    .contact-hero__note strong {
        margin-top: 15px;

        font-size: 0.39rem;
    }

    .booking {
        padding: 65px 16px 85px;
    }

    .booking__heading {
        display: block;

        margin-bottom: 35px;
    }

    .booking__heading h2 {
        font-size: clamp(2.8rem, 11vw, 4rem);
    }

    .booking__heading-text {
        margin-top: 17px;

        font-size: 0.65rem;
    }

    .booking-form {
        border-radius: 17px;
    }

    .booking-form__section {
        display: block;

        padding: 32px 20px;
    }

    .booking-form__section-heading {
        margin-bottom: 29px;
    }

    .booking-form__section-heading > span {
        font-size: 1.65rem;
    }

    .booking-form__section-heading h3 {
        font-size: 1.65rem;
    }

    .booking-form__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .field--full {
        grid-column: auto;
    }

    .contact-method__options {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .choice-card > span {
        min-height: 82px;

        padding: 14px;
    }

    .choice-card strong {
        font-size: 1.05rem;
    }

    .choice-card small {
        font-size: 0.51rem;
    }

    .photo-option__box {
        padding: 18px;
    }

    .photo-option__box::before {
        top: 18px;
        right: 18px;
    }

    .photo-option__box strong {
        font-size: 1.08rem;
    }

    .privacy-choice {
        grid-column: auto;

        margin-top: 20px;
    }

    .booking-form__footer {
        padding: 40px 20px 45px;
    }

    .booking-form__submit {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 390px) {

    .contact-method__options {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    .contact-hero__glow,
    .contact-hero__button span {
        animation: none !important;
    }
}


/* =========================================================
   SELECT OSCURO Y LEGIBLE
========================================================= */

.field select {
    width: 100%;

    padding: 14px 42px 14px 14px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;

    background-color: #171015;
    color: #ffffff;

    font-family: var(--font-body);
    font-size: 0.82rem;

    cursor: pointer;

    color-scheme: dark;

    appearance: auto;
    -webkit-appearance: auto;
}

.field select:focus {
    border-color: var(--contact-pink);

    outline: none;

    box-shadow:
        0 0 0 3px rgba(239, 94, 159, 0.08);
}

.field select option {
    background-color: #171015;
    color: #ffffff;
}

.field select option:disabled {
    color: #aaa0a6;
}

@media (max-width: 760px) {

    .field select {
        min-height: 50px;

        padding:
            13px
            38px
            13px
            13px;

        background-color: #171015;
        color: #ffffff;

        font-size: 0.78rem;
    }

    .field select option {
        background: #171015;
        color: #ffffff;
    }
}



/* =====================================================
   CONSEJO DESPLEGABLE
===================================================== */

.contact-note{

    display:none;

}

@media(max-width:760px){

.contact-note{

    display:block;

    margin-top:28px;

    border:1px solid rgba(216,180,117,.18);

    border-radius:16px;

    background:#120b11;

    overflow:hidden;

}

.contact-note summary{

    list-style:none;

    cursor:pointer;

    padding:18px 20px;

    color:#f1d5b4;

    font-size:.60rem;

    letter-spacing:.14em;

    text-transform:uppercase;

    font-weight:600;

}

.contact-note summary::-webkit-details-marker{

    display:none;

}

.contact-note__content{

    padding:0 20px 20px;

}

.contact-note__content h3{

    margin-bottom:10px;

    font-family:var(--font-title);

    font-size:1.45rem;

    font-weight:400;

    color:#fff;

}

.contact-note__content p{

    color:rgba(255,255,255,.62);

    line-height:1.6;

    font-size:.72rem;

}

.contact-note__content small{

    display:block;

    margin-top:15px;

    color:#c8a76d;

    font-size:.52rem;

    letter-spacing:.15em;

    text-transform:uppercase;

}

.contact-hero__note{

    display:none;

}

}



/* =====================================================
   CONSEJO: ABIERTO EN PC · PLEGABLE EN MÓVIL
===================================================== */

/* PC Y TABLET GRANDE */

.contact-note {
    display: block;
    position: relative;

    padding: 32px 0 12px 29px;

    border-left: 1px solid rgba(216, 180, 117, 0.35);
}

.contact-note summary {
    display: none;
}

.contact-note__content {
    display: block;
}

.contact-note__content h3 {
    margin-bottom: 16px;

    color: var(--contact-pink);

    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1;
}

.contact-note__content p {
    color: rgba(255, 255, 255, 0.68);

    font-family: var(--font-title);
    font-size: 1.35rem;
    line-height: 1.45;
}

.contact-note__content small {
    display: block;

    margin-top: 24px;

    color: rgba(255, 255, 255, 0.44);

    font-size: 0.45rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* MÓVIL */

@media (max-width: 760px) {

    .contact-note {
        margin-top: 26px;
        padding: 0;

        border: 1px solid rgba(216, 180, 117, 0.18);
        border-radius: 14px;

        overflow: hidden;

        background: #120b11;
    }

    .contact-note summary {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 15px 17px;

        list-style: none;

        color: #f1d5b4;

        font-size: 0.54rem;
        font-weight: 600;
        letter-spacing: 0.13em;
        text-transform: uppercase;

        cursor: pointer;
    }

    .contact-note summary::-webkit-details-marker {
        display: none;
    }

    .contact-note summary::after {
        content: "+";

        color: var(--contact-pink);

        font-family: var(--font-title);
        font-size: 1.25rem;
        font-weight: 400;

        transition: transform 0.3s ease;
    }

    .contact-note[open] summary::after {
        transform: rotate(45deg);
    }

    .contact-note__content {
        padding: 0 17px 18px;
    }

    .contact-note__content h3 {
        margin-bottom: 8px;

        font-size: 1.3rem;
    }

    .contact-note__content p {
        font-family: var(--font-body);
        font-size: 0.68rem;
        line-height: 1.55;
    }

    .contact-note__content small {
        margin-top: 12px;

        font-size: 0.43rem;
    }
}


/* =====================================================
   MÓVIL — ELIMINAR ESPACIO VACÍO BAJO EL CONSEJO
===================================================== */

@media (max-width: 760px) {

    .contact-hero {
        min-height: auto;
        height: auto;

        padding:
            105px
            20px
            32px;
    }

    .contact-hero__content {
        min-height: 0;
        height: auto;
    }

    .contact-note {
        margin-bottom: 0;
    }

    .contact-note:not([open]) {
        margin-bottom: 0;
    }

    .contact-note[open] {
        margin-bottom: 10px;
    }

    .booking {
        padding-top: 48px;
    }
}

@media (max-width: 760px) {

    .contact-note__content {
        max-height: 0;
        overflow: hidden;

        padding-top: 0;
        padding-bottom: 0;

        opacity: 0;

        transition:
            max-height 0.4s ease,
            padding 0.35s ease,
            opacity 0.3s ease;
    }

    .contact-note[open] .contact-note__content {
        max-height: 300px;

        padding:
            0
            17px
            18px;

        opacity: 1;
    }
}





/* =====================================================
   CONTACTO — BLOQUE 03 MÁS COMPACTO Y CASILLA ALINEADA
===================================================== */

/* El contenido del paso 03 ocupa la columna derecha */
.booking-form__section:last-of-type {
    align-items: start;
}

.booking-form__section:last-of-type > .field,
.booking-form__section:last-of-type > .privacy-choice {
    grid-column: 2;
}

/* Textarea más proporcionado */
.booking-form__section:last-of-type textarea {
    min-height: 130px;
}

/* Casilla de privacidad bien colocada */
.privacy-choice {
    width: 100%;
    max-width: 760px;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;

    margin: 14px 0 0;
}

.privacy-choice input {
    flex: 0 0 16px;

    width: 16px;
    height: 16px;

    margin: 1px 0 0;

    accent-color: var(--contact-pink);
}

.privacy-choice span {
    flex: 1;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.58rem;
    line-height: 1.45;
    text-align: left;
}

/* Reducimos el espacio del bloque final */
.booking-form__section:last-of-type {
    padding-top: 42px;
    padding-bottom: 34px;
}

.booking-form__footer {
    padding: 30px 30px 34px;
}

.booking-form__status {
    min-height: 0;
    margin-bottom: 10px;
}

.booking-form__footer > p {
    margin-top: 12px;
}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 760px) {

    .booking-form__section:last-of-type {
        display: block;

        padding:
            24px
            18px
            22px;
    }

    .booking-form__section:last-of-type > .field,
    .booking-form__section:last-of-type > .privacy-choice {
        grid-column: auto;
    }

    .booking-form__section:last-of-type textarea {
        min-height: 125px;
    }

    .privacy-choice {
        width: 100%;

        margin-top: 12px;

        gap: 9px;
    }

    .privacy-choice input {
        flex-basis: 15px;

        width: 15px;
        height: 15px;
    }

    .privacy-choice span {
        font-size: 0.55rem;
        line-height: 1.4;
    }

    .booking-form__footer {
        padding:
            22px
            18px
            26px;
    }

    .booking-form__submit {
        margin: 0;
    }

    .booking-form__footer > p {
        margin-top: 10px;
    }
}


.contact__privacy-link{

    color:var(--gold);

    text-decoration:none;

    transition:.3s;

    border-bottom:1px solid transparent;

}

.contact__privacy-link:hover{

    color:var(--pink);

    border-color:var(--pink);

}