/* =====================================================================
   ADANIK STUDIO · LANDING (diseño según referencia)
   Prefijo: .al-   ·  No toca el header (style.css) ni el footer (af-)
   ===================================================================== */

:root {
    --al-ink: #171014;
    --al-ink-soft: #4a3f45;
    --al-pink: #dc5c8a;
    --al-pink-deep: #be3f73;
    --al-pink-soft: #f3a4bf;
    --al-blush: #fff0f6;
    --al-blush-2: #ffdce9;
    --al-mist: #f7f4f6;
    --al-line: #efe5ea;
    --al-white: #ffffff;
    --al-gold: #d4a941;
    --al-gold-soft: #e8c877;

    --al-font-display: "Playfair Display", Georgia, serif;
    --al-font-script: "Great Vibes", cursive;
    --al-font-body: "Jost", "Segoe UI", sans-serif;

    --al-radius: 22px;
    --al-shadow: 0 18px 45px rgba(23, 16, 20, 0.10);
    --al-shadow-soft: 0 10px 28px rgba(23, 16, 20, 0.07);
}

/* ---------- Base ---------- */
.site-main {
    font-family: var(--al-font-body);
    color: var(--al-ink);
    line-height: 1.6;
    overflow-x: hidden;
}

.al-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.al-section { padding: 88px 0; }
.al-section-tight { padding: 40px 0; }
.al-section-mist { background: var(--al-mist); }
.al-section-blush { background: linear-gradient(180deg, var(--al-blush) 0%, var(--al-blush-2) 100%); }
.al-center { text-align: center; }

/* ---------- Tipografía ---------- */
.al-title {
    font-family: var(--al-font-display);
    font-weight: 700;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--al-ink);
}

.al-sub {
    color: var(--al-ink-soft);
    font-size: 1.02rem;
    max-width: 560px;
    margin: 0 0 26px;
}

.al-script {
    font-family: var(--al-font-script);
    font-weight: 400;
    font-style: normal;
    font-size: 1.25em;
    line-height: 1;
}

.al-script-pink { color: var(--al-pink); }

.al-script-label {
    font-family: var(--al-font-script);
    color: var(--al-pink);
    font-size: 1.7rem;
    margin: 0 0 6px;
}

.al-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--al-pink);
    margin: 0 0 14px;
}

.al-eyebrow-light { color: var(--al-blush-2); }
.al-plus { color: var(--al-pink); font-size: 0.7em; vertical-align: super; }

.al-head { margin-bottom: 48px; }
.al-head-center { text-align: center; }
.al-head-center .al-sub { margin-left: auto; margin-right: auto; }

/* ---------- Botones ---------- */
.al-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-family: var(--al-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.al-btn svg { width: 16px; height: 16px; }
.al-btn:hover { transform: translateY(-2px); }
.al-btn:focus-visible { outline: 3px solid var(--al-pink-soft); outline-offset: 3px; }

.al-btn-pink { background: var(--al-pink); color: #fff; box-shadow: 0 12px 26px rgba(220, 92, 138, 0.35); }
.al-btn-pink:hover { background: var(--al-pink-deep); color: #fff; }

.al-btn-ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border-color: rgba(255, 255, 255, 0.45); backdrop-filter: blur(6px); }
.al-btn-ghost:hover { background: rgba(255, 255, 255, 0.28); color: #fff; }

.al-btn-white { background: #fff; color: var(--al-ink); box-shadow: var(--al-shadow-soft); }
.al-btn-white:hover { color: var(--al-pink-deep); }

.al-btn-dark, .al-btn-ink { background: var(--al-ink); color: #fff; }
.al-btn-dark:hover, .al-btn-ink:hover { background: #2b2027; color: #fff; }

/* =====================================================================
   1 · HERO
   ===================================================================== */
.al-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}

.al-hero-bg { position: absolute; inset: 0; z-index: -1; }

.al-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 900ms ease, transform 6s ease;
}

.al-hero-bg img.is-active { opacity: 1; transform: scale(1); }

.al-hero-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(23, 16, 20, 0.78) 0%, rgba(23, 16, 20, 0.45) 46%, rgba(23, 16, 20, 0.18) 100%),
        linear-gradient(to top, rgba(23, 16, 20, 0.55), transparent 40%);
}

.al-hero-inner {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-top: 90px;
    padding-bottom: 90px;
}

.al-hero-copy { max-width: 640px; }

.al-hero-title {
    font-family: var(--al-font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5.4vw, 4.2rem);
    line-height: 1.08;
    margin: 0 0 20px;
}

.al-hero-title .al-script {
    display: block;
    color: var(--al-pink-soft);
    font-size: clamp(3rem, 6.6vw, 5.2rem);
    margin-top: 4px;
}

.al-hero-text {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 32px;
}

.al-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Tarjeta de valoración */
.al-hero-card {
    background: #fff;
    color: var(--al-ink);
    border-radius: var(--al-radius);
    box-shadow: var(--al-shadow);
    padding: 22px 26px;
    min-width: 230px;
    flex: 0 0 auto;
}

.al-hero-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 10px; }

.al-avatars { display: flex; }
.al-avatars img {
    width: 34px; height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
}
.al-avatars img:first-child { margin-left: 0; }

.al-hero-rating { font-weight: 700; font-size: 0.95rem; }
.al-star { color: var(--al-pink); }

.al-hero-card-num { font-family: var(--al-font-display); font-size: 1.9rem; font-weight: 700; margin: 0; line-height: 1; }
.al-hero-card-label { margin: 2px 0 8px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--al-ink-soft); }
.al-hero-card-stars { margin: 0; color: var(--al-pink); font-size: 0.8rem; }
.al-hero-card-stars span { color: var(--al-ink-soft); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.62rem; margin-left: 6px; }

/* Puntos del slider */
.al-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.al-hero-dots button {
    width: 11px; height: 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: width 0.25s ease, background 0.25s ease;
}

.al-hero-dots button.is-active { width: 30px; background: var(--al-pink); border-color: var(--al-pink); }
.al-hero-dots button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* =====================================================================
   2 · CINTA DE BENEFICIOS
   ===================================================================== */
.al-strip { background: var(--al-ink); color: #fff; padding: 26px 0; }

.al-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.al-strip-item { display: flex; align-items: center; gap: 14px; justify-content: center; }

.al-strip-ico {
    width: 44px; height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 169, 65, 0.45);
    background: rgba(212, 169, 65, 0.08);
    color: var(--al-gold-soft);
}

.al-strip-ico svg { width: 20px; height: 20px; }

.al-strip-item h3 { margin: 0; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.al-strip-item p { margin: 2px 0 0; font-size: 0.72rem; color: rgba(255, 255, 255, 0.6); }

/* =====================================================================
   3 · SERVICIOS
   ===================================================================== */
.al-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 44px;
}

.al-svc-card {
    background: #fff;
    border-radius: var(--al-radius);
    overflow: hidden;
    box-shadow: var(--al-shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.al-svc-card:hover { transform: translateY(-6px); box-shadow: var(--al-shadow); }

.al-svc-card figure { margin: 0; height: 200px; overflow: hidden; }
.al-svc-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.al-svc-card:hover img { transform: scale(1.06); }

.al-svc-body { padding: 22px 24px 26px; }
.al-svc-body h3 { font-family: var(--al-font-display); font-size: 1.25rem; margin: 0 0 8px; }
.al-svc-body p { margin: 0 0 14px; font-size: 0.92rem; color: var(--al-ink-soft); }


/* =====================================================================
   3b · PRECIOS
   ===================================================================== */
.al-pricing {
    background: var(--al-ink);
    color: #fff;
    padding: 90px 0;
    position: relative;
}

.al-pricing-title { color: #fff; }
.al-pricing .al-sub { color: rgba(255, 255, 255, 0.65); margin-left: auto; margin-right: auto; }

.al-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 56px;
    max-width: 880px;
    margin: 0 auto 44px;
}

.al-price-list { list-style: none; margin: 0; padding: 0; }

.al-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
    font-family: var(--al-font-display);
}

.al-price-row span:first-child {
    font-size: 0.98rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.92);
}

.al-price-amt {
    color: var(--al-pink-soft);
    font-weight: 700;
    font-size: 1.05rem;
    flex: 0 0 auto;
}

@media (max-width: 720px) {
    .al-price-grid { grid-template-columns: 1fr; gap: 0; }
}

/* =====================================================================
   4 · BOOKING CONCIERGE
   ===================================================================== */
.al-booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

/* Formulario */
.al-form { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.al-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.al-field { display: flex; flex-direction: column; gap: 8px; }

.al-field-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--al-ink-soft);
}

.al-field-label svg { width: 14px; height: 14px; color: var(--al-pink); }

.al-field input,
.al-field select {
    font-family: var(--al-font-body);
    font-size: 0.95rem;
    color: var(--al-ink);
    background: #fff;
    border: 1px solid var(--al-line);
    border-radius: 14px;
    padding: 13px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.al-field input::placeholder { color: #b3a4ab; }

.al-field input:focus,
.al-field select:focus {
    outline: none;
    border-color: var(--al-pink);
    box-shadow: 0 0 0 4px rgba(220, 92, 138, 0.14);
}

.al-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23dc5c8a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

/* Tarjeta calendario */
.al-booking-card {
    background: #fff;
    border: 1px solid var(--al-line);
    border-radius: 26px;
    box-shadow: var(--al-shadow);
    padding: 28px;
}

.al-booking-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 28px;
}

.al-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }

.al-cal-month {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.al-cal-nav { display: flex; gap: 6px; }
.al-cal-nav button {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid var(--al-line);
    background: #fff;
    color: var(--al-ink);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.al-cal-nav button:hover { background: var(--al-blush); color: var(--al-pink-deep); }
.al-cal-nav button:focus-visible { outline: 2px solid var(--al-pink); outline-offset: 2px; }

.al-cal-week,
.al-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }

.al-cal-week span {
    text-align: center;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #b3a4ab;
    padding: 6px 0;
    text-transform: uppercase;
}

.al-cal-grid button,
.al-cal-grid .al-cal-empty {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-family: var(--al-font-body);
    color: var(--al-ink);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}

.al-cal-grid button:hover:not(:disabled) { background: var(--al-blush); color: var(--al-pink-deep); }
.al-cal-grid button:disabled { color: #d8ccd2; cursor: not-allowed; }
.al-cal-grid button.is-today { box-shadow: inset 0 0 0 1px var(--al-pink-soft); }
.al-cal-grid button.is-selected { background: var(--al-pink); color: #fff; font-weight: 700; }
.al-cal-grid button:focus-visible { outline: 2px solid var(--al-pink); outline-offset: 1px; }

/* Horarios */
.al-times-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--al-font-display);
    font-size: 1.05rem;
    margin: 0 0 14px;
}
.al-times-title svg { width: 17px; height: 17px; color: var(--al-pink); }

.al-times-grid { display: grid; grid-template-columns: 1fr; gap: 9px; }

.al-time {
    border: 1px solid var(--al-line);
    background: #fff;
    border-radius: 12px;
    padding: 9px 12px;
    text-align: left;
    cursor: pointer;
    font-family: var(--al-font-body);
    transition: border-color 0.18s ease, background 0.18s ease;
}

.al-time strong { display: block; font-size: 0.86rem; font-weight: 600; color: var(--al-ink); }
.al-time small { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: #4caf7d; }

.al-time:hover { border-color: var(--al-pink-soft); background: var(--al-blush); }
.al-time.is-selected { border-color: var(--al-pink); background: var(--al-blush); box-shadow: 0 0 0 3px rgba(220, 92, 138, 0.12); }
.al-time.is-selected strong { color: var(--al-pink-deep); }
.al-time:focus-visible { outline: 2px solid var(--al-pink); outline-offset: 2px; }

/* Pie de la tarjeta */
.al-booking-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--al-line);
    flex-wrap: wrap;
}

.al-selected { display: flex; align-items: center; gap: 12px; margin: 0; }
.al-selected svg { width: 34px; height: 34px; color: var(--al-pink); background: var(--al-blush); border-radius: 10px; padding: 7px; }
.al-selected small { display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--al-ink-soft); }
.al-selected strong { font-size: 0.98rem; }

.al-confirm { border: none; }

.al-booking-note { margin: 14px 0 0; font-size: 0.85rem; color: var(--al-pink-deep); min-height: 1.2em; }

/* =====================================================================
   5 · GALERÍA
   ===================================================================== */
.al-gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.al-handle { color: var(--al-pink-deep); font-weight: 600; text-decoration: none; }
.al-handle:hover { text-decoration: underline; }

.al-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 14px;
}

.al-masonry figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.al-masonry figure:nth-child(1),
.al-masonry figure:nth-child(6),
.al-masonry figure:nth-child(11) { grid-row: span 2; }

.al-masonry img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.al-masonry figure:hover img { transform: scale(1.07); }

.al-masonry figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(23, 16, 20, 0.35), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.al-masonry figure:hover::after { opacity: 1; }

/* =====================================================================
   6 · POR QUÉ ELEGIRNOS
   ===================================================================== */
.al-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.al-about-media {
    margin: 0;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--al-shadow);
    aspect-ratio: 4 / 5;
}

.al-about-media img { width: 100%; height: 100%; object-fit: cover; }

.al-glass-pill {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 13px 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    white-space: nowrap;
}

.al-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 34px;
    margin-top: 8px;
}

.al-feature { display: flex; gap: 14px; align-items: flex-start; }

.al-feature-ico {
    width: 42px; height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--al-blush);
    color: var(--al-pink);
}

.al-feature-ico svg { width: 20px; height: 20px; }

.al-feature h3 { margin: 0 0 4px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.al-feature p { margin: 0; font-size: 0.85rem; color: var(--al-ink-soft); }

/* =====================================================================
   7 · CTA
   ===================================================================== */
.al-cta-band {
    background: linear-gradient(120deg, var(--al-blush) 0%, #ffe6f0 100%);
    border: 1px solid var(--al-blush-2);
    border-radius: 30px;
    padding: 40px 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.al-cta-left { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.al-cta-thumbs { position: relative; width: 92px; height: 92px; flex: 0 0 auto; }
.al-cta-thumbs img {
    position: absolute;
    width: 64px; height: 64px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--al-shadow-soft);
}
.al-cta-thumbs img:first-child { top: 0; left: 0; }
.al-cta-thumbs img:last-child { bottom: 0; right: 0; }

.al-cta-title { font-family: var(--al-font-display); font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 0 0 6px; }
.al-cta-sub { margin: 0; color: var(--al-ink-soft); font-size: 0.95rem; }
.al-cta-band .al-eyebrow { margin-bottom: 8px; }

.al-cta-right { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.al-secure { display: inline-flex; align-items: center; gap: 6px; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--al-ink-soft); }
.al-secure svg { width: 13px; height: 13px; }

/* =====================================================================
   8 · RESEÑAS
   ===================================================================== */
.al-reviews { display: flex; align-items: center; gap: 18px; }

.al-rev-arrow {
    width: 44px; height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid var(--al-line);
    background: #fff;
    font-size: 1.3rem;
    color: var(--al-ink);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.al-rev-arrow:hover { background: var(--al-pink); border-color: var(--al-pink); color: #fff; }
.al-rev-arrow:focus-visible { outline: 3px solid var(--al-pink-soft); outline-offset: 2px; }

.al-rev-viewport { overflow: hidden; flex: 1 1 auto; }

.al-rev-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
}

.al-rev-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: #fff;
    border-radius: var(--al-radius);
    box-shadow: var(--al-shadow-soft);
    padding: 26px 28px;
}

.al-rev-card header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.al-rev-avatar {
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--al-ink);
    color: #fff;
    font-family: var(--al-font-display);
    font-size: 1.1rem;
}

.al-rev-card h3 { margin: 0; font-size: 0.95rem; font-weight: 600; }
.al-rev-stars { margin: 2px 0 0; color: var(--al-pink); font-size: 0.75rem; letter-spacing: 0.15em; }

.al-rev-card blockquote {
    margin: 0;
    font-style: italic;
    font-size: 0.92rem;
    color: var(--al-ink-soft);
}

.al-rev-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.al-rev-dots button {
    width: 9px; height: 9px;
    border-radius: 999px;
    border: none;
    background: #ddced6;
    cursor: pointer;
    padding: 0;
    transition: width 0.25s ease, background 0.25s ease;
}
.al-rev-dots button.is-active { width: 26px; background: var(--al-pink); }
.al-rev-dots button:focus-visible { outline: 2px solid var(--al-pink); outline-offset: 2px; }

/* =====================================================================
   9 · UBICACIÓN
   ===================================================================== */
.al-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.al-loc-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }

.al-loc-ico {
    width: 46px; height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--al-blush);
    color: var(--al-pink);
}

.al-loc-ico svg { width: 21px; height: 21px; }

.al-loc-item h3 { margin: 0 0 4px; font-family: var(--al-font-display); font-size: 1.08rem; }
.al-loc-item p { margin: 0; color: var(--al-ink-soft); font-size: 0.94rem; }

.al-loc-link {
    display: inline-block;
    margin-top: 6px;
    color: var(--al-pink-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}
.al-loc-link:hover { text-decoration: underline; }

.al-map {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--al-shadow);
    min-height: 380px;
}

.al-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* =====================================================================
   BOTONES SUBIR / BAJAR PÁGINA
   ===================================================================== */
.al-scrollnav {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.al-scrollnav-btn {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: none;
    background: var(--al-ink);
    color: #fff;
    box-shadow: var(--al-shadow);
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.al-scrollnav-btn.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.al-scrollnav-btn:hover { background: var(--al-pink); }
.al-scrollnav-btn svg { width: 20px; height: 20px; }
.al-scrollnav-btn:focus-visible { outline: 2px solid var(--al-pink-soft); outline-offset: 2px; }

@media (max-width: 720px) {
    .al-scrollnav { right: 14px; bottom: 14px; }
    .al-scrollnav-btn { width: 40px; height: 40px; }
}

/* =====================================================================
   TARJETA LEGAL (Política de Privacidad / Términos de Servicio)
   Ancho completo, layout horizontal en columnas.
   ===================================================================== */
.al-legal-card {
    position: relative;
    width: 100%;
    margin: 0 0 56px;
    padding: 56px clamp(24px, 6vw, 72px) 60px;
    background: #e8a0bf;
    color: var(--al-ink);
    overflow: hidden;
}

.al-legal-card-logo {
    position: absolute;
    top: 32px;
    right: clamp(24px, 6vw, 72px);
    width: 96px;
    height: 96px;
    border-radius: 999px;
    padding: 3px;
    background: linear-gradient(140deg, #fff, rgba(255, 255, 255, 0.5) 60%, #fff);
    box-shadow: 0 6px 20px rgba(23, 16, 20, 0.15);
}

.al-legal-card-logo img {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    background: #fff;
    display: block;
}

.al-legal-card-head { max-width: 780px; margin: 0 0 34px; }

.al-legal-card-spark { font-size: 1.2rem; margin: 0 0 10px; }

.al-legal-card-title {
    font-family: var(--al-font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin: 0 0 4px;
    color: var(--al-ink);
}

.al-legal-card-brand {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
    color: var(--al-pink-deep);
}

.al-legal-card-intro {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(23, 16, 20, 0.78);
    margin: 0;
}

.al-legal-card-intro strong { color: var(--al-ink); }

.al-legal-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.al-legal-card-section h3 {
    font-family: var(--al-font-display);
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: var(--al-ink);
}

.al-legal-card-section > p {
    margin: 0 0 10px;
    font-size: 0.92rem;
    color: rgba(23, 16, 20, 0.72);
}

.al-legal-card-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.al-legal-card-section li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: rgba(23, 16, 20, 0.78);
}

.al-legal-card-section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--al-pink-deep);
}

@media (max-width: 900px) {
    .al-legal-card-logo { position: static; width: 72px; height: 72px; margin-bottom: 16px; }
    .al-legal-card-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 720px) {
    .al-legal-card { padding: 36px 26px 40px; }
}

/* =====================================================================
   POLÍTICA DE PRIVACIDAD
   ===================================================================== */
.al-policy { max-width: 820px; }
.al-policy-body h2 {
    font-family: var(--al-font-display);
    font-size: 1.2rem;
    margin: 34px 0 10px;
    color: var(--al-ink);
}
.al-policy-body p { margin: 0 0 14px; color: var(--al-ink-soft); font-size: 0.96rem; }
.al-policy-body a { color: var(--al-pink-deep); }
.al-policy-body ul { list-style: none; margin: 0 0 20px; padding: 0; }
.al-policy-body li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    color: var(--al-ink-soft);
    font-size: 0.96rem;
}
.al-policy-body li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0.05em;
    font-size: 0.7em;
    color: var(--al-pink);
}

/* =====================================================================
   MENÚ MÓVIL (drawer generado por JS — no toca header.php)
   ===================================================================== */
.al-drawer {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
}

.al-drawer.is-open { display: block; }

.al-drawer-veil {
    position: absolute;
    inset: 0;
    background: rgba(23, 16, 20, 0.5);
    border: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.al-drawer-panel {
    position: absolute;
    top: 0; right: 0;
    width: min(320px, 86vw);
    height: 100%;
    background: #fff;
    box-shadow: -18px 0 40px rgba(23, 16, 20, 0.2);
    padding: 26px 26px 34px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.al-drawer-close {
    align-self: flex-end;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--al-line);
    background: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 10px;
}

.al-drawer-panel a {
    display: block;
    padding: 13px 4px;
    text-decoration: none;
    color: var(--al-ink);
    font-family: var(--al-font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--al-mist);
}

.al-drawer-panel a:hover { color: var(--al-pink-deep); }

.al-drawer-panel .al-btn { margin-top: 18px; justify-content: center; border-bottom: none; }

.al-drawer-lang {
    align-self: flex-start !important;
    margin-top: 18px !important;
    border-top: 1px solid var(--al-mist) !important;
    padding-top: 18px !important;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
    .al-booking-grid,
    .al-gallery-grid,
    .al-about-grid,
    .al-location-grid { grid-template-columns: 1fr; gap: 44px; }

    .al-about-media { max-width: 480px; margin: 0 auto; }
    .al-rev-card { flex-basis: calc((100% - 24px) / 2); }
    .al-strip-grid { grid-template-columns: 1fr 1fr; }
    .al-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .al-section { padding: 60px 0; }

    .al-hero-inner { flex-direction: column; align-items: flex-start; gap: 32px; padding-bottom: 74px; }
    .al-hero-card { align-self: stretch; }

    .al-booking-card { padding: 20px; }
    .al-booking-card-grid { grid-template-columns: 1fr; }
    .al-times-grid { grid-template-columns: 1fr 1fr; }
    .al-booking-foot { flex-direction: column; align-items: stretch; text-align: center; }
    .al-selected { justify-content: center; }
    .al-confirm { justify-content: center; }

    .al-field-row { grid-template-columns: 1fr; }
    .al-services-grid { grid-template-columns: 1fr; }
    .al-features { grid-template-columns: 1fr; }

    .al-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }

    .al-rev-card { flex-basis: 100%; }
    .al-rev-arrow { display: none; }

    .al-cta-band { padding: 30px 24px; }
    .al-cta-right { align-items: flex-start; }
}

/* =====================================================================
   ACCESIBILIDAD · MOVIMIENTO REDUCIDO
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    .al-hero-bg img,
    .al-rev-track,
    .al-svc-card,
    .al-svc-card img,
    .al-masonry img,
    .al-btn { transition: none !important; }
}
