/* ==========================================================================
   Jordan Halloween 2026 — Main Stylesheet
   Theme: French Revolution / Reign of Terror
   Stack: Custom WP Theme + GSAP + Lottie + Canvas
   ========================================================================== */

/* -------------------------------------------------------
   Chochin — @font-face (drop woff2 file in assets/fonts/)
------------------------------------------------------- */
/* Cochin es fuente de sistema macOS — sin @font-face necesario */

/* -------------------------------------------------------
   Custom Properties
------------------------------------------------------- */
:root {
    /* Official color palette */
    --jh-oxblood:   #40150E;
    --jh-burgundy:  #7F3834;
    --jh-beige:     #E1CCB7;
    --jh-navy:      #1E222C;
    --jh-med-blue:  #697487;
    --jh-lt-blue:   #B4C2D6;
    --jh-white:     #FFFFFF;
    --jh-red-glow:  #FF2020;
    --jh-ember:     #FF6B35;

    /* Semantic aliases (used throughout) */
    --jh-black:     var(--jh-oxblood);
    --jh-dark:      #2a0e09;
    --jh-dark-warm: #220c08;
    --jh-gold:      var(--jh-beige);
    --jh-gold-light:#EDD9C5;
    --jh-cream:     var(--jh-white);
    --jh-headline-color: #E1CCB7;
    --jh-font-headline: 'Playfair Display', 'Cochin', Georgia, serif;
    --jh-size-headline: 43px;

    /* Typography — Avenir LT Pro via Adobe Fonts (Typekit kit vho3lec)
       Display: Playfair Display (Google Fonts) + Cochin system fallback */
    --jh-font-display: 'Playfair Display', 'Cochin', Georgia, serif;
    --jh-font-body:    'avenir-lt-pro', 'Avenir Next', 'Avenir', 'Helvetica Neue', sans-serif;
    --jh-font-ui:      'avenir-lt-pro', 'Avenir Next', 'Avenir', 'Helvetica Neue', sans-serif;

    /* Type scale — desktop (clamps to mobile at ~375px) */
    --jh-text-body: clamp(0.875rem, 1.5vw, 1.375rem);   /* 14→22px */
    --jh-text-meta: clamp(0.875rem, 1vw, 1.0625rem);     /* fechas, direcciones */
    --jh-text-label: 0.6875rem;                          /* 11px — eyebrows uppercase */
    --jh-text-h1:   clamp(1.75rem, 3vw, 2.6875rem);     /* 28→43px */
    --jh-text-h2:   clamp(0.8125rem, 1.4vw, 1.25rem);   /* 13→20px */
    --jh-text-h3:   clamp(1.125rem, 1.7vw, 1.5rem);     /* 18→24px */
    --jh-text-h4:   clamp(0.875rem, 1vw, 0.875rem);     /* 14px desktop, overridden mobile */
    --jh-text-btn:  clamp(0.8125rem, 1.4vw, 1.25rem);   /* 13→20px */

    /* Line heights */
    --jh-lh-body: 1.36;   /* 30/22 */
    --jh-lh-h1:   1.19;   /* 51/43 */
    --jh-lh-h2:   1.7;    /* 34/20 */
    --jh-lh-h3:   1.42;   /* 34/24 */
    --jh-lh-btn:  1.2;    /* 24/20 */

    --jh-section-pad: clamp(4rem, 8vw, 8rem);
    /* Rail de contenido — 130px desde el borde del arte (1440px). Hero, marquees, membretes y assets gráficos quedan full-bleed. */
    --jh-gutter: 130px;
    --jh-content-pad: clamp(1.25rem, 9.0278vw, 130px);
    --jh-content-max: 1180px; /* 1440 − 2×130 */
    --jh-content-inset: max(var(--jh-content-pad), calc(50vw - var(--jh-art-half) + var(--jh-gutter)));
    --jh-art-width: 1440px;
    --jh-art-half: 720px;
    --jh-bleed-fallback: #080203;
    --jh-bg-y: 0px;
    --jh-bg-offset: 100px;
    --jh-bleed-scale: 5;

    /* Alturas de sección — proporcionales al background-full.webp a 1440px (8519px total) */
    --jh-h-hero:           1022px;
    --jh-h-tickets:        auto;
    --jh-h-venue:          auto;
    --jh-h-accommodation:  auto;
    --jh-h-transport:      1380px;
    --jh-h-video:           846px;
    --jh-h-faq:            1199px;
    --jh-h-footer:          673px;
    --jh-nav-h:             115px;
    --jh-nav-offset:        115px;
    --jh-marquee-h:          72px;
}

/* -------------------------------------------------------
   Reset & Base
------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--jh-nav-offset, var(--jh-nav-h));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.jh-body {
    background-color: #080203;
    background-image: url('../img/background-full.webp');
    background-size: 1440px auto;
    background-position: center var(--jh-bg-offset);
    background-repeat: no-repeat;
    color: var(--jh-white);
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
    line-height: var(--jh-lh-body);
    overflow-x: hidden;
    position: relative;
}

a { color: var(--jh-beige); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--jh-gold-light); }

/* -------------------------------------------------------
   Lateral bleed — viewports > 1440px
   Muestrea el borde del background, lo difumina y funde al gutter.
------------------------------------------------------- */
.jh-bleed {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.jh-bleed__strip {
    position: absolute;
    top: 0;
    width: max(0px, calc(50% - var(--jh-art-half)));
    height: 100%;
    background-color: var(--jh-bleed-fallback);
    overflow: hidden;
}

.jh-bleed__strip--left  { left: 0; }
.jh-bleed__strip--right { right: 0; }

/* Muestra ~80px del borde del arte, estirado + blur hacia el gutter */
.jh-bleed__strip::before {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    background-image: url('../img/background-full.webp');
    background-size: var(--jh-art-width) auto;
    background-repeat: no-repeat;
    filter: blur(10px) saturate(1.08);
    will-change: background-position;
}

.jh-bleed__strip--left::before {
    right: 0;
    background-position: right var(--jh-bg-y);
    transform-origin: right center;
    transform: scaleX(var(--jh-bleed-scale));
}

.jh-bleed__strip--right::before {
    left: 0;
    background-position: left var(--jh-bg-y);
    transform-origin: left center;
    transform: scaleX(var(--jh-bleed-scale));
}

/* Fade exterior hacia el color base del body */
.jh-bleed__strip::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.jh-bleed__strip--left::after {
    background: linear-gradient(
        to left,
        transparent 0%,
        rgba(8, 2, 3, 0.35) 45%,
        var(--jh-bleed-fallback) 100%
    );
}

.jh-bleed__strip--right::after {
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(8, 2, 3, 0.35) 45%,
        var(--jh-bleed-fallback) 100%
    );
}

@media (min-width: 1441px) {
    .jh-bleed { display: block; }
}

.jh-site {
    position: relative;
    z-index: 1; /* encima del bleed lateral */
}


img { max-width: 100%; height: auto; display: block; }

/* -------------------------------------------------------
   Particles Canvas (Global)
------------------------------------------------------- */
#jh-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

/* -------------------------------------------------------
   Navigation
------------------------------------------------------- */
.jh-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 115px;
    z-index: 2000;
    display: flex;
    align-items: center;
    padding: 0; /* sin inset — el MENU va al borde del box 1440 */
    background: #080203;
}

.jh-nav__countdown {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-end;
}

.jh-nav--scrolled { background: #080203; }

/* MENU flush al borde derecho del arte (1440px) + wash damask sutil.
   Sin transform: un transform acá crearía containing block y atraparía
   el side-cart fixed de C7 que se renderiza dentro de #c7-cart. */
.jh-nav__menu {
    position: absolute;
    top: 0;
    bottom: 0;
    right: max(30px, calc(50vw - var(--jh-art-half) + 30px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
    padding: 0.55rem 0.35rem 0.55rem 0.85rem;
}

.jh-nav__menu::before {
    content: '';
    position: absolute;
    inset: -14px -18px -14px -36px;
    background: url('../img/pikes-isolated.webp') right 40% / 320px auto no-repeat;
    mix-blend-mode: screen;
    opacity: 0.32;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: radial-gradient(ellipse 75% 65% at 78% 50%, #000 15%, transparent 72%);
    mask-image: radial-gradient(ellipse 75% 65% at 78% 50%, #000 15%, transparent 72%);
}

/* Account header C7 — LOGIN o "HELLO, {nombre}" + cart arriba del MENU */
.jh-nav__account {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.7rem;
    min-height: 0.75rem;
}

/* Solo los triggers (LOGIN / CART) — el side-cart drawer de C7 se excluye
   para no romper sus estilos propios */
.jh-nav__account :is(a, button, span, div):not(.c7-side-cart, .c7-side-cart *) {
    font-family: var(--jh-font-ui) !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    color: var(--jh-beige) !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.jh-nav__account :is(a, button):not(.c7-side-cart, .c7-side-cart *) {
    cursor: pointer;
    transition: color 0.3s ease;
}

.jh-nav__account :is(a, button):not(.c7-side-cart, .c7-side-cart *):hover {
    color: var(--jh-white) !important;
}

/* Side cart drawer: asegurar que el estado visible entre al viewport */
.c7-side-cart.c7-side-cart--visible {
    transform: translateX(0) !important;
}

/* Drawer por encima del botón MENU (siblings dentro del nav) */
.jh-nav__account {
    z-index: 10;
}

.jh-nav__account .c7-side-cart {
    z-index: 9999 !important;
}

/* Las partículas de ceniza no deben flotar sobre el cart abierto */
body:has(.c7-side-cart--visible) #jh-particles {
    display: none;
}

/* Reset tipográfico del drawer: al vivir dentro de .c7-user-nav__cart hereda
   los estilos del trigger del header (beige, 12px, uppercase, tracking) */
.jh-nav__account .c7-side-cart {
    font-family: var(--jh-font-body) !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    line-height: 1.5 !important;
    text-align: left !important;
    color: #1a1a1a !important;
}

.jh-nav__account .c7-side-cart h1,
.jh-nav__account .c7-side-cart h2,
.jh-nav__account .c7-side-cart h3,
.jh-nav__account .c7-side-cart .c7-h1 {
    font-family: var(--jh-font-ui) !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: #1a1a1a !important;
}

.jh-nav__account .c7-side-cart p,
.jh-nav__account .c7-side-cart span,
.jh-nav__account .c7-side-cart div {
    color: inherit;
}

.jh-nav__account .c7-side-cart a:not(.c7-btn) {
    color: var(--jh-burgundy) !important;
    text-decoration: underline;
}

/* Botones del drawer alineados al theme (panel claro → botón oscuro) */
.jh-nav__account .c7-side-cart .c7-btn,
.jh-nav__account .c7-side-cart button[type="submit"] {
    font-family: var(--jh-font-ui) !important;
    font-size: var(--jh-text-btn, 0.875rem) !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    background: #1a1a1a !important;
    color: var(--jh-beige) !important;
    border: 1px solid #1a1a1a !important;
    border-radius: 0 !important;
    transition: background 0.35s ease, color 0.35s ease !important;
}

.jh-nav__account .c7-side-cart .c7-btn:hover,
.jh-nav__account .c7-side-cart button[type="submit"]:hover {
    background: transparent !important;
    color: #1a1a1a !important;
}

/* Ícono del cart alineado con su contador */
.jh-nav__account .c7-user-nav__cart > button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
}

.jh-nav__account .c7-user-nav__cart svg {
    width: 15px;
    height: 15px;
    display: inline-block;
    stroke: var(--jh-beige) !important;
}

.jh-nav__toggle {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
    background: none;
    border: none;
    cursor: pointer;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    color: var(--jh-beige);
}

.jh-nav__toggle-label {
    font-family: var(--jh-font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
}

.jh-nav__toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 16px;
}

.jh-nav__toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s, opacity 0.3s;
}

/* Backdrop — tap fuera del drawer */
.jh-nav__backdrop {
    position: fixed;
    inset: 0;
    z-index: 2990;
    background: rgba(8, 2, 3, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.jh-nav__backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Drawer — panel de links, oculto por default */
.jh-nav__drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #120606;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3000;
    overflow: hidden;
}

/* Textura damask sutil dentro del desplegable */
.jh-nav__drawer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 6, 6, 0.55) 0%, rgba(18, 6, 6, 0.2) 40%, rgba(18, 6, 6, 0.55) 100%),
        url('../img/pikes-isolated.webp') center / cover no-repeat;
    mix-blend-mode: screen;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.jh-nav__drawer.is-open {
    transform: translateX(0);
}

.jh-nav__close {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: none;
    color: var(--jh-beige);
    font-family: var(--jh-font-ui);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.jh-nav__close:hover,
.jh-nav__close:focus-visible {
    color: var(--jh-white);
    outline: none;
}

.jh-nav__link {
    position: relative;
    z-index: 1;
    font-family: var(--jh-font-ui);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--jh-beige);
    transition: color 0.3s;
}

.jh-nav__link:hover { color: var(--jh-white); }

/* Anchors — compensar header fijo */
#hero,
#tickets,
#venue,
#accommodation,
#transportation,
#faq,
#video {
    scroll-margin-top: var(--jh-nav-offset, var(--jh-nav-h));
}

/* -------------------------------------------------------
   Hero Section
   Fondo: imagen centrada a 1440px, gradients laterales para viewports anchos.
   El Lottie (transparente) va encima de este fondo.
------------------------------------------------------- */
.jh-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: var(--jh-h-hero);
    padding-top: var(--jh-nav-h);
    margin-bottom: 55px;
}

.jh-hero__lottie-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    padding-bottom: calc(var(--jh-marquee-h) + 12px + 120px);
}

/* countdown-bar movido al header — este selector ya no se usa */
.jh-hero__countdown-bar { display: none; }

.jh-countdown__unit { text-align: center; }

.jh-countdown__number {
    display: block;
    font-family: var(--jh-font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--jh-beige);
    line-height: 1.1;
}

.jh-countdown__label {
    display: block;
    font-family: var(--jh-font-ui);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--jh-beige);
    opacity: 0.6;
    margin-top: 0.2rem;
}

/* Lottie wrap — transparente, el fondo viene del body */
.jh-hero__lottie-wrap {
    position: relative;
    z-index: 2;
    line-height: 0;
}

/* Lottie player — tamaño nativo 951×662, nunca se estira hacia arriba */
.jh-hero__lottie-player {
    width: 951px;
    height: 662px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* Fallback estático — oculto hasta que el Lottie falle (evita flash de arte distinto) */
.jh-hero__fallback {
    position: relative;
    width: 100%;
    max-width: 951px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.jh-hero__fallback.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.jh-hero__fallback-img {
    width: 100%;
    height: auto;
    display: block;
}

.jh-hero__fallback-text {
    position: absolute;
    bottom: 8%;
    right: 5%;
    text-align: right;
}

.jh-hero__eyebrow {
    font-family: var(--jh-font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--jh-beige);
    opacity: 0.7;
}

.jh-hero__title {
    font-family: var(--jh-font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--jh-beige);
    line-height: 0.9;
    margin-bottom: 0.75rem;
}

.jh-hero__tagline {
    font-family: var(--jh-font-ui);
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--jh-white);
}

@media (max-width: 600px) {
    .jh-hero__fallback-text { display: none; } /* desktop/tablet: el arte ya trae título */
}

/* Mobile hero: imagen + copy apilados y centrados (reglas base; el bloque @768 principal las refina) */
@media (max-width: 768px) {
    .jh-hero__title {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    .jh-hero__meta {
        font-family: var(--jh-font-ui);
        font-size: var(--jh-text-meta);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--jh-beige);
        margin-top: 0.75rem;
        line-height: 1.5;
    }
}

/* -------------------------------------------------------
   Section marquees — overlay en borde inferior, sin altura en flujo
------------------------------------------------------- */
.jh-section-marquee {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(100vw, var(--jh-art-width));
    height: var(--jh-marquee-h);
    overflow: hidden;
    pointer-events: none;
    z-index: 4;
    line-height: 0;
}

.jh-section-marquee img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 100%;
    opacity: 0.92;
}

/* marquee-2.webp: el pico del ornamento está ~2.2% a la izquierda del canvas */
.jh-video > .jh-section-marquee img {
    transform: translateX(2.2%);
}

/* Wash sutil — damask pikes-isolated (negro desaparece con screen) */
.jh-pikes-wash {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background: url('../img/pikes-isolated.webp') center / cover no-repeat;
    mix-blend-mode: screen;
    opacity: 0.4;
}

.jh-pikes-wash--venue {
    display: none;
}

.jh-pikes-wash--transport {
    top: 4%;
    left: -8%;
    width: min(920px, 105%);
    height: 78%;
    opacity: 0.36;
    background-position: center top;
}

.jh-pikes-wash--video {
    top: -6%;
    left: 50%;
    width: 118%;
    height: 42%;
    transform: translateX(-50%);
    opacity: 0.42;
    background-size: 100% auto;
    background-position: center top;
}

/* Altura fija compartida por secciones (alineación con body background) */
.jh-hero,
.jh-tickets,
.jh-venue,
.jh-accommodation,
.jh-transport,
.jh-video,
.jh-faq,
.jh-footer {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

/* Review bar removed — accommodation overflow unchanged */
.jh-accommodation {
    overflow: visible;
}

/* -------------------------------------------------------
   Tickets Section — ANIMATION-2 (single Lottie: eyes-glow)
------------------------------------------------------- */
.jh-tickets {
    height: auto;
    display: flex;
    align-items: center;
    padding: 150px var(--jh-content-inset) calc(var(--jh-marquee-h) + 2rem);
    padding-bottom: 130px;
}

/* Membrete — recorte superior de marquee-1.webp, alineado al rail derecho del arte */
.jh-tickets__membrete {
    position: absolute;
    z-index: 1;
    top: 0;
    right: max(0px, calc(50% - var(--jh-art-half)));
    width: min(1440px, 100%);
    height: 350px;
    min-height: 350px;
    overflow: hidden;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 78%,
        rgba(0, 0, 0, 0.5) 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 78%,
        rgba(0, 0, 0, 0.5) 90%,
        transparent 100%
    );
}

.jh-tickets__membrete img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1440px;
    max-width: none;
    height: auto;
    transform: translateX(200px);
}

.jh-tickets__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 730px minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
    width: 100%;
    max-width: min(1180px, 100%);
    margin: 0 auto;
    align-items: start;
    margin-top: 50px;
}

/* Lottie / fallback — 730×442 nativo */
.jh-tickets__visual {
    position: relative;
    width: 730px;
    max-width: 100%;
    aspect-ratio: 730 / 442;
    line-height: 0;
    justify-self: start;
}

.jh-tickets__lottie {
    position: absolute;
    inset: 0;
    display: none;
    line-height: 0;
    pointer-events: none;
}

.jh-tickets__lottie.is-active {
    display: block;
}

.jh-tickets__lottie svg {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.jh-tickets__portraits-fallback {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    display: block;
}

.jh-tickets__portraits-fallback.is-hidden {
    visibility: hidden;
}

/* Fallback CSS: ojos rojos al entrar en viewport, sin loop */
.jh-tickets--eyes-fallback .jh-tickets__visual::before,
.jh-tickets--eyes-fallback .jh-tickets__visual::after {
    content: '';
    position: absolute;
    width: 6.5%;
    height: 2.8%;
    top: 24.5%;
    border-radius: 50%;
    background: var(--jh-red-glow);
    opacity: 0;
    box-shadow: 0 0 12px var(--jh-red-glow), 0 0 24px rgba(255, 32, 32, 0.45);
    animation: jh-eye-glow-loop 8s ease-in-out infinite;
    pointer-events: none;
}

.jh-tickets--eyes-fallback .jh-tickets__visual::before { left: 22%; }
.jh-tickets--eyes-fallback .jh-tickets__visual::after  { left: 64.5%; }

@keyframes jh-eye-glow-loop {
    0%, 10% {
        opacity: 0;
        box-shadow: 0 0 8px var(--jh-red-glow), 0 0 16px rgba(255, 32, 32, 0.35);
    }
    20%, 70% {
        opacity: 1;
        box-shadow: 0 0 22px var(--jh-red-glow), 0 0 44px rgba(255, 32, 32, 0.65);
    }
    85%, 100% {
        opacity: 0;
        box-shadow: 0 0 8px var(--jh-red-glow), 0 0 16px rgba(255, 32, 32, 0.35);
    }
}

.jh-tickets__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    text-align: left;
    padding: 1.75rem 0 0;
}

.jh-tickets__title {
    margin-bottom: 1.1rem;
    line-height: 1.08;
}

.jh-tickets__date {
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--jh-white);
    margin-bottom: 2rem;
    line-height: var(--jh-lh-body);
}

.jh-tickets__date span {
    display: block;
}

.jh-tickets__sold-out {
    color: var(--jh-cream);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: var(--jh-lh-body);
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
}

/* Botones — beige con hover invertido + glow sutil */
.jh-btn,
.jh-tickets__btn,
.jh-accommodation__btn {
    display: inline-block;
    font-family: var(--jh-font-ui);
    font-size: var(--jh-text-btn);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: var(--jh-lh-btn);
    padding: 0.85rem 2rem;
    background: var(--jh-beige);
    color: #1a1a1a;
    border: 1px solid var(--jh-beige);
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.jh-btn:hover,
.jh-tickets__btn:hover,
.jh-accommodation__btn:hover {
    background: transparent;
    color: var(--jh-beige);
    border-color: var(--jh-beige);
    box-shadow: 0 0 22px rgba(225, 204, 183, 0.24);
    transform: translateY(-2px);
}

.jh-btn:active,
.jh-tickets__btn:active,
.jh-accommodation__btn:active {
    transform: translateY(0);
    box-shadow: 0 0 12px rgba(225, 204, 183, 0.16);
}

.jh-btn--disabled,
.jh-tickets__btn--disabled {
    opacity: 0.72;
    cursor: default;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

.jh-tickets__c7-widgets {
    margin-top: 1.5rem;
}

/* -------------------------------------------------------
   Video Section — membretes marquee-2 arriba/abajo del player
------------------------------------------------------- */
.jh-video {
    height: var(--jh-h-video);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 105px;
    padding: 2.5rem var(--jh-content-inset) calc(var(--jh-marquee-h) + 1.5rem);
    overflow: visible; /* el membrete top queda dentro del flow; el shared overflow:hidden lo cortaba */
}

.jh-video--hidden .jh-video__inner {
    visibility: hidden;
}

.jh-video__inner {
    width: 100%;
    max-width: var(--jh-content-max);
    margin: 0 auto;
}

.jh-video__frame {
    position: relative;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.jh-video__frame > :not(.jh-pikes-wash) {
    position: relative;
    z-index: 1;
}

.jh-video__title {
    text-align: center;
    margin: calc(1.25rem - 20px) 0 calc(1.1rem + 20px);
}

.jh-video__membrete {
    position: relative;
    width: 100%;
    line-height: 0;
    pointer-events: none;
    overflow: visible;
}

.jh-video__membrete img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: screen;
    opacity: 0.94;
    /* marquee-2.webp: el pico del ornamento está ~2.2% a la izquierda del canvas */
    transform: translateX(2.2%);
}

.jh-video__membrete--top {
    margin-bottom: 0.15rem;
}

.jh-video__membrete--bottom {
    margin-top: 0.15rem;
}

.jh-video__membrete--bottom img {
    transform: translateX(2.2%) scaleY(-1);
}

.jh-video__embed,
.jh-video__placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    line-height: 0;
    background: #0a0606;
    overflow: hidden;
}

.jh-video__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.jh-video__embed--facade .jh-video__play {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #0a0606;
    color: inherit;
}

.jh-video__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jh-video__embed--facade .jh-video__play::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 2, 3, 0.15) 0%, rgba(8, 2, 3, 0.55) 100%);
    pointer-events: none;
}

.jh-video__play-icon {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 4.5rem;
    height: 4.5rem;
    min-width: 44px;
    min-height: 44px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--jh-beige);
    box-shadow: 0 0 0 1px rgba(225, 204, 183, 0.35), 0 8px 28px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.jh-video__play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.7rem 0 0.7rem 1.15rem;
    border-color: transparent transparent transparent var(--jh-oxblood);
    transform: translate(-50%, -50%);
}

.jh-video__embed--facade .jh-video__play:hover .jh-video__play-icon,
.jh-video__embed--facade .jh-video__play:focus-visible .jh-video__play-icon {
    transform: translate(-50%, -50%) scale(1.06);
    background: var(--jh-gold-light);
    box-shadow: 0 0 0 1px rgba(237, 217, 197, 0.55), 0 10px 32px rgba(0, 0, 0, 0.5);
}

.jh-video__embed--facade .jh-video__play:focus-visible {
    outline: 2px solid var(--jh-beige);
    outline-offset: 3px;
}

.jh-video__placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .jh-video__play-icon {
        width: 3.75rem;
        height: 3.75rem;
    }

    .jh-video__play-icon::before {
        border-width: 0.55rem 0 0.55rem 0.95rem;
    }
}

/* -------------------------------------------------------
   Venue Section — ANIMATION-3 (CSS toss)
------------------------------------------------------- */
.jh-venue {
    height: auto;
    display: flex;
    align-items: center;
    padding: 3rem var(--jh-content-inset) calc(var(--jh-marquee-h) + 1.5rem);
    overflow: visible;
    margin-bottom: 30px;
}

.jh-venue__membrete {
    position: absolute;
    z-index: 1;
    top: 0;
    left: max(0px, calc(50% - var(--jh-art-half)));
    width: min(1440px, 100%);
    height: 350px;
    min-height: 350px;
    overflow: hidden;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 78%,
        rgba(0, 0, 0, 0.5) 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 78%,
        rgba(0, 0, 0, 0.5) 90%,
        transparent 100%
    );
}

.jh-venue__membrete img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1440px;
    max-width: none;
    height: auto;
    transform: translateX(-200px);
}

/* Damask — clip = box 1440; wrap se corre -210px; lo que sale se oculta */
.jh-venue__pikes-clip {
    position: absolute;
    z-index: 1;
    left: max(0px, calc(50% - var(--jh-art-half)));
    top: clamp(260px, 28vw, 380px);
    width: min(1440px, 100%);
    overflow: hidden;
    pointer-events: none;
    line-height: 0;
}

.jh-venue__pikes-wrap {
    position: relative;
    left: -420px;
    width: max-content;
}

.jh-venue__pikes {
    display: block;
    width: 1145px;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
}

.jh-venue__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: start;
    width: 100%;
    max-width: min(1180px, 100%);
    margin: 120px auto 0;
    overflow: visible;
}

.jh-venue__content {
    position: relative;
    width: 350px;
    max-width: 100%;
    text-align: left;
    padding: 1.75rem 0 0;
}

.jh-venue__art {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
    padding-top: 3.5rem;
}

.jh-venue__scene {
    position: relative;
    display: grid;
    grid-template-areas: 'stack';
    width: 674px;
    max-width: 100%;
    line-height: 0;
    overflow: visible;
    /* Espacio arriba para el arco de vuelo sin recortar */
    padding-top: clamp(72px, 10vw, 130px);
    margin-top: calc(-1 * clamp(72px, 10vw, 130px));
}

.jh-venue__scene-base,
.jh-venue__marie-fly {
    grid-area: stack;
    width: 100%;
    height: auto;
    display: block;
}

.jh-venue__scene-base {
    position: relative;
    z-index: 1;
    transform-origin: 42% 72%;
}

.jh-venue__marie-fly {
    position: relative;
    z-index: 2;
    opacity: 1;
    pointer-events: none;
    transform-origin: 38% 88%;
    /* Punto A — posición inicial sobre los cuernos */
    transform: rotate(-4deg) translate(0%, -20%) translate3d(40px, 100px, 0);
}

/* Mobile / reduced motion — punto A estático */
.jh-venue--static .jh-venue__marie-fly {
    opacity: 1;
    transform: rotate(-4deg) translate(0%, -20%) translate3d(40px, 100px, 0);
}

.jh-venue--gsap .jh-venue__marie-fly {
    will-change: transform;
}

/* Fallback CSS: motion sutil entre 2 puntos, sin fade */
.jh-venue--active:not(.jh-venue--gsap) .jh-venue__marie-fly {
    animation: jh-marie-subtle 6s linear forwards;
}

@keyframes jh-marie-subtle {
    from { transform: rotate(-4deg) translate(0%, -20%) translate3d(40px, 100px, 0); }
    to   { transform: translate(7.5%, -35%) translate3d(56px, 40px, 0px) rotate(-45deg); }
}

.jh-venue__title {
    margin-bottom: 1.25rem;
}

.jh-venue__address {
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--jh-white);
    line-height: var(--jh-lh-body);
}

.jh-venue__address span {
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .jh-venue--active .jh-venue__marie-fly {
        animation: none;
        opacity: 1;
        transform: rotate(-4deg) translate(0%, -20%) translate3d(40px, 100px, 0);
    }
}

/* -------------------------------------------------------
   Accommodation Section
------------------------------------------------------- */
.jh-accommodation {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 4rem var(--jh-content-inset) 0;
}

/* Membrete — recorte superior de marquee-1.webp, centrado en el arte */
.jh-accommodation__membrete {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    width: min(1440px, 100%);
    height: 350px;
    min-height: 350px;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-50%);
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 78%,
        rgba(0, 0, 0, 0.5) 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 78%,
        rgba(0, 0, 0, 0.5) 90%,
        transparent 100%
    );
}

.jh-accommodation__membrete img {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1440px;
    max-width: none;
    height: auto;
    /* marquee-2.webp: el pico del ornamento está ~2.2% a la izquierda del canvas */
    transform: translateX(calc(-50% + 2.2%));
}

.jh-accommodation__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--jh-content-max);
    margin: 0 auto;
    padding-top: 100px;
    flex: 0 0 auto;
    align-self: stretch;
}

.jh-accommodation__header {
    text-align: center;
    padding: 1.5rem 0 3.2rem;
}

.jh-accommodation__body {
    display: grid;
    grid-template-columns: minmax(0, 580px) minmax(0, 1fr);
    grid-template-areas:
        "visual content"
        "others content";
    gap: 45px;
    column-gap: 45px;
    row-gap: 1.75rem;
    align-items: start;
    max-width: 1040px;
    margin: 0 auto;
}

.jh-accommodation__visual {
    position: relative;
    grid-area: visual;
    width: 100%;
    max-width: 580px;
    justify-self: end;
    aspect-ratio: 580 / 670;
    line-height: 0;
}

.jh-accommodation__bastille {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.jh-accommodation__content {
    grid-area: content;
    width: 100%;
    max-width: 480px;
    margin: 0;
    padding: 0.15rem 0 0;
}

.jh-accommodation__others {
    grid-area: others;
    width: 100%;
    max-width: 580px;
    justify-self: end;
    align-self: start;
    padding-top: 0;
}

.jh-accommodation__title {
    text-align: center;
    margin: 0;
}

.jh-accommodation__subtitle {
    margin-bottom: 1rem;
    text-align: left;
}

.jh-accommodation__featured {
    text-align: left;
    padding: 0;
    border: none;
    margin-bottom: 0;
}

.jh-accommodation__featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.jh-accommodation__featured--count-2 .jh-accommodation__featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: stretch;
}

.jh-accommodation__hotel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    min-width: 0;
    height: 100%;
}

.jh-accommodation__hotel .jh-accommodation__btn {
    margin-top: auto;
}

.jh-accommodation__hotel-info {
    min-width: 0;
    max-width: 100%;
    color: var(--jh-white);
    margin-bottom: 0;
    line-height: var(--jh-lh-body);
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
    font-weight: 400;
    letter-spacing: 0;
    overflow-wrap: break-word;
    word-break: normal;
}

.jh-accommodation__featured--count-2 .jh-accommodation__hotel-info {
    font-size: var(--jh-text-body);
    line-height: var(--jh-lh-body);
}

.jh-accommodation__hotel-info p {
    margin: 0;
    max-width: 100%;
}

.jh-accommodation__hotel-name {
    font-weight: 700;
}

.jh-accommodation__meta--phone .jh-accommodation__meta-value {
    white-space: nowrap;
}

.jh-accommodation__meta--code .jh-accommodation__meta-label {
    display: block;
}

.jh-accommodation__meta--code .jh-accommodation__meta-value {
    display: block;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.jh-accommodation__featured--count-2 .jh-accommodation__btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0.75rem 1.1rem;
    font-size: clamp(0.6875rem, 0.95vw, 0.8125rem);
    letter-spacing: 0.12em;
}

.jh-accommodation__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.jh-accommodation__card {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.25rem 0;
    border: none;
    border-bottom: 1px solid rgba(225, 204, 183, 0.12);
    transition: color 0.3s, border-color 0.3s;
}

.jh-accommodation__card:first-child {
    border-top: 1px solid rgba(225, 204, 183, 0.12);
}

.jh-accommodation__card:hover {
    border-color: rgba(225, 204, 183, 0.35);
    color: var(--jh-gold-light);
}

.jh-accommodation__price-tier {
    font-family: var(--jh-font-ui);
    font-size: 0.85rem;
    color: var(--jh-gold);
    min-width: 2.25rem;
    flex-shrink: 0;
}

.jh-accommodation__hotel-link {
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
    color: var(--jh-cream);
}

/* -------------------------------------------------------
   Section headlines — Garamond Premier Pro, 43px, #E1CCB7
------------------------------------------------------- */
.jh-headline {
    font-family: var(--jh-font-headline);
    font-size: var(--jh-size-headline);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--jh-headline-color);
}

.jh-headline--sub {
    font-size: var(--jh-text-h3);
    letter-spacing: 0.08em;
    line-height: var(--jh-lh-h3);
}

.jh-tickets__title,
.jh-venue__title,
.jh-accommodation__title,
.jh-transport__title,
.jh-video__title,
.jh-faq__title {
    font-family: var(--jh-font-headline);
    font-size: var(--jh-size-headline);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--jh-headline-color);
    text-wrap-mode: nowrap;
}

/* -------------------------------------------------------
   Transportation Section
------------------------------------------------------- */
.jh-transport {
    margin-top: 70px;
    height: var(--jh-h-transport);
    display: flex;
    align-items: center;
    padding: 3rem var(--jh-content-inset) calc(var(--jh-marquee-h) + 1.5rem);
}

/* Membrete — recorte superior de marquee-1.webp, centrado en el arte */
.jh-transport__membrete {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    width: min(1440px, 100%);
    height: 350px;
    min-height: 350px;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-50%);
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 78%,
        rgba(0, 0, 0, 0.5) 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 78%,
        rgba(0, 0, 0, 0.5) 90%,
        transparent 100%
    );
}

.jh-transport__membrete img {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 1440px;
    max-width: none;
    height: auto;
    transform: translateX(-50%);
}

.jh-transport__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--jh-content-max);
    margin: 0 auto;
}

.jh-transport__header,
.jh-transport__layout {
    position: relative;
    z-index: 1;
}

.jh-transport__header {
    text-align: center;
    padding: 11rem 0 3.4rem 0;
}

.jh-transport__layout {
    position: relative;
    /* Contiene el carruaje (top: 550px + ~507px de alto a 795px de ancho) */
    min-height: 1060px;
}

.jh-transport__content {
    position: relative;
    z-index: 2;
    width: min(100%, 878.5px);
    padding: 0;
}

.jh-transport__title {
    margin: 0;
    text-align: center;
}

.jh-transport__section {
    margin-bottom: 2.5rem;
}

.jh-transport__section:last-child {
    margin-bottom: 0;
}

.jh-transport__subtitle {
    margin-bottom: 1rem;
    text-align: left;
}

.jh-transport__text,
.jh-transport__lead,
.jh-transport__note {
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
    font-weight: 400;
    line-height: var(--jh-lh-body);
    color: var(--jh-white);
}

.jh-transport__text p,
.jh-transport__lead,
.jh-transport__note {
    margin: 0 0 1rem;
}

.jh-transport__text.txt600 p {
    max-width: 600px;
}

.jh-transport__text p:last-child,
.jh-transport__note:last-child {
    margin-bottom: 0;
}

.jh-transport__options {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.jh-transport__options li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.1rem;
}

.jh-transport__options li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--jh-white);
}

.jh-transport__options a {
    color: var(--jh-white);
    text-decoration: none;
    transition: color 0.3s;
}

.jh-transport__options a:hover {
    color: var(--jh-headline-color);
}

.jh-transport__carriage {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 550px;
    width: min(795px, 100%);
    height: auto;
    pointer-events: none;
}

/* -------------------------------------------------------
   FAQ Section
------------------------------------------------------- */
.jh-faq {
    --jh-faq-row-pad-y: 0.9rem;
    --jh-faq-toggle-w: 3.5rem;
    --jh-faq-pad-x: 1.15rem;
    --jh-faq-row-h: 75px;
    height: auto;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 130px;
    padding: 3.75rem var(--jh-content-inset) 4rem;
    overflow: visible;
}

.jh-faq__inner {
    width: 100%;
    max-width: var(--jh-content-max);
    margin: 0 auto;
}

.jh-faq__content {
    width: 100%;
}

/* El header se ajusta al ancho del title (nowrap); el intro hereda ese ancho */
.jh-faq__header {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

.jh-faq__title {
    text-align: center;
    margin: 0 0 1.5rem;
}

.jh-faq__intro {
    width: 0;
    min-width: 100%;
    margin: 3.5rem auto;
    text-align: center;
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
    font-weight: 400;
    line-height: var(--jh-lh-body);
    color: var(--jh-white);
}

.jh-faq__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
}

.jh-faq__item {
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background: rgba(8, 2, 3, 0.42);
}

.jh-faq__item:not([open]) {
    height: var(--jh-faq-row-h);
}

.jh-faq__question {
    display: grid;
    grid-template-columns: var(--jh-faq-toggle-w) 1fr;
    align-items: stretch;
    height: var(--jh-faq-row-h);
    min-height: var(--jh-faq-row-h);
    box-sizing: border-box;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.jh-faq__item:not([open]) .jh-faq__question {
    height: 100%;
    min-height: 0;
}

.jh-faq__question::-webkit-details-marker { display: none; }
.jh-faq__question::marker { content: ''; }

.jh-faq__toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.92);
}

.jh-faq__item[open] .jh-faq__toggle {
    border-right: none;
}

.jh-faq__toggle::before,
.jh-faq__toggle::after {
    content: '';
    position: absolute;
    background: var(--jh-white);
    border-radius: 1px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.jh-faq__toggle::before {
    width: 1.05rem;
    height: 2px;
}

.jh-faq__toggle::after {
    width: 2px;
    height: 1.05rem;
}

.jh-faq__item[open] .jh-faq__toggle::after {
    opacity: 0;
    transform: scaleY(0);
}

.jh-faq__question-text {
    display: flex;
    align-items: center;
    padding: var(--jh-faq-row-pad-y) var(--jh-faq-pad-x);
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
    font-weight: 400;
    line-height: var(--jh-lh-body);
    color: var(--jh-white);
}

.jh-faq__answer {
    overflow: hidden;
    height: 0;
}

.jh-faq__answer-inner {
    padding: 0 var(--jh-faq-pad-x) var(--jh-faq-row-pad-y) calc(var(--jh-faq-toggle-w) + var(--jh-faq-pad-x));
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
    line-height: var(--jh-lh-body);
    color: var(--jh-white);
}

.jh-faq__answer-inner p {
    margin: 0 0 0.75rem;
}

.jh-faq__answer-inner p:last-child {
    margin-bottom: 0;
}

.jh-faq__answer-inner a {
    color: var(--jh-gold);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.jh-faq__answer-inner a:hover {
    color: var(--jh-gold-light);
}

/* -------------------------------------------------------
   Footer — copy arriba, mob abajo (sin solaparse)
------------------------------------------------------- */
.jh-footer {
    height: auto;
    min-height: auto;
    padding: 0;
    position: relative;
    overflow: visible;
}

.jh-footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
}

.jh-footer__pikes {
    flex: 0 0 auto;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    line-height: 0;
    text-align: center;
}

.jh-footer__pikes-img {
    display: block;
    width: 1190px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.jh-footer__content {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    padding: 0 var(--jh-content-inset);
    text-align: center;
}

.jh-footer__copy {
    margin: 0;
    font-family: var(--jh-font-body);
    font-size: var(--jh-text-body);
    font-weight: 400;
    letter-spacing: 0;
    line-height: var(--jh-lh-body);
    color: var(--jh-white);
}

.jh-footer__copy a {
    color: var(--jh-white);
    text-decoration: none;
    transition: color 0.3s;
}

.jh-footer__copy a:hover {
    color: var(--jh-gold);
}

.jh-footer__art {
    flex: 0 0 auto;
    width: min(100%, var(--jh-art-width));
    max-width: var(--jh-art-width);
    margin: auto auto 0;
    line-height: 0;
    pointer-events: none;
    overflow: hidden; /* clip: al saltar, rellena con imagen (sin hueco negro) */
}

.jh-footer__mob-img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    /* Extra inferior recortado; sube al viewport cuando el mob salta (~14px) */
    margin-bottom: -40px;
    will-change: transform;
}

/* -------------------------------------------------------
   Section Reveal (GSAP adds .is-visible)
------------------------------------------------------- */
.jh-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: none;
}

.jh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------
   Responsive
------------------------------------------------------- */
@media (max-width: 768px) {
    /* Mobile-only — no tocar reglas fuera de este bloque */
    :root {
        --jh-h-hero: auto;
        --jh-h-tickets: auto;
        --jh-h-venue: auto;
        --jh-h-accommodation: auto;
        --jh-h-transport: auto;
        --jh-h-video: auto;
        --jh-h-faq: auto;
        --jh-h-footer: auto;
        --jh-size-headline: clamp(1.625rem, 7.5vw, 2.125rem);
        --jh-text-body: 1rem;
        --jh-text-meta: 0.9375rem;
        --jh-text-btn: 0.875rem;
        --jh-faq-row-h: auto;
        /* El nav mobile mide 72px; el fondo arranca justo debajo (desktop usa 100px) */
        --jh-bg-offset: 72px;
    }

    /* Arte específico mobile (376px de ancho nativo) escalado al viewport */
    body.jh-body {
        background-image: url('../img/background-mobile.webp');
        background-size: 100vw auto;
    }

    .jh-nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        height: 72px;
        min-height: 72px;
        padding: 0 1rem;
    }

    .jh-nav__countdown {
        position: static;
        transform: none;
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        margin: 0;
        padding-right: 0;
        gap: clamp(0.55rem, 2.5vw, 0.9rem);
    }

    .jh-nav__menu {
        position: static;
        grid-column: 2;
        grid-row: 1;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        padding: 0;
        bottom: auto;
        right: auto;
        justify-content: flex-end;
        transform: none;
    }

    .jh-nav__menu::before {
        inset: -12px -8px -12px -24px;
        opacity: 0.28;
        background-size: 180px auto;
    }

    .jh-nav__account {
        gap: 0.65rem;
        margin-bottom: 0;
        min-height: 0;
    }

    #c7-account {
        max-width: 5.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .jh-nav__toggle {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 0;
        z-index: 1;
    }

    .jh-nav__toggle-label {
        display: none;
    }

    .jh-countdown__number {
        font-size: clamp(1.2rem, 5.5vw, 1.65rem);
    }

    .jh-countdown__label {
        font-size: 0.5rem;
        letter-spacing: 0.22em;
    }

    .jh-nav__drawer .jh-nav__link {
        font-size: 1.25rem;
        line-height: 1.4;
        letter-spacing: 0.16em;
    }

    .jh-tickets__title,
    .jh-venue__title,
    .jh-accommodation__title,
    .jh-transport__title,
    .jh-video__title,
    .jh-faq__title,
    .jh-headline {
        text-wrap-mode: wrap;
        white-space: normal;
        overflow-wrap: break-word;
    }

    /* Mobile: ningún texto centrado — headlines y párrafos a la izquierda */
    .jh-headline--sub {
        font-size: clamp(1rem, 4.5vw, 1.25rem);
        text-align: left;
    }

    .jh-accommodation__subtitle,
    .jh-accommodation__header,
    .jh-accommodation__title,
    .jh-video__title {
        text-align: left;
    }

    .jh-hero {
        margin-bottom: 0;
        padding-top: 8.25rem;
        padding-bottom: 1rem;
        min-height: 100svh;
        justify-content: flex-start;
    }

    /* Lottie hero en mobile: escala proporcional (composición 951×662 con título incluido) */
    .jh-hero__lottie-player {
        width: 100%;
        max-width: min(460px, 92vw);
        height: auto;
        aspect-ratio: 951 / 662;
        margin: 0 auto;
    }

    /* Sin !important: el JS oculta el fallback inline cuando el Lottie carga */
    .jh-hero__fallback {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: min(340px, 90vw);
        margin: 0 auto;
        overflow: visible;
        text-align: center;
    }

    .jh-hero__lottie-wrap {
        align-items: center;
        justify-content: center;
        flex: 0 1 auto;
        padding-bottom: 0;
        overflow: visible;
    }

    .jh-hero__fallback-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0;
    }

    .jh-hero__fallback-text {
        display: block !important;
        position: static;
        text-align: center;
        padding: 1rem 0.5rem 0;
        width: 100%;
    }

    /* Los membretes de cada sección ya marcan las transiciones en mobile */
    .jh-section-marquee {
        display: none;
    }

    .jh-video {
        margin-top: 2rem;
    }

    .jh-transport {
        margin-top: 2rem;
    }

    .jh-video {
        margin-top: 2.5rem;
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem; /*calc(var(--jh-marquee-h) + 2rem);*/
    }

    .jh-video__frame {
        max-width: 100%;
    }

    /* Membretes del player full-bleed (como el diseño 2025) */
    .jh-video__membrete {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .jh-footer {
        min-height: auto;
        height: auto;
        padding-bottom: 0;
    }

    .jh-footer__pikes {
        padding-top: 0;
    }

    .jh-footer__content {
        padding-top: 0;
        padding-bottom: 1.5rem;
    }

    .jh-hero,
    .jh-tickets,
    .jh-venue,
    .jh-accommodation,
    .jh-transport,
    .jh-faq {
        height: auto;
        min-height: auto;
    }

    .jh-hero__body { flex-direction: column; align-items: center; text-align: center; }
    .jh-hero__guillotine { width: clamp(160px, 55vw, 280px); }
    .jh-hero__grace { display: none; }
    .jh-hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }

    .jh-tickets__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
        width: 100%;
        max-width: min(1180px, 100%);
        margin-top: 0.5rem;
        z-index: 3;
    }

    /* Copy/CTA primero; Louis & Marie debajo (evita ver solo las cabezas al entrar) */
    .jh-tickets__content {
        order: 1;
        margin: 0;
        padding: 0.5rem 0 0;
        text-align: left;
        max-width: 100%;
    }

    .jh-tickets__visual {
        order: 2;
        width: min(360px, 94vw);
        margin: 0.75rem auto 0;
        justify-self: center;
    }

    /* Membrete visible también en mobile — banda ornamental centrada arriba */
    .jh-tickets__membrete {
        display: block;
        top: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 100vw;
        height: 150px;
        min-height: 150px;
    }

    /* Ornamento al 65% (como el diseño 2025) dejando visible la cola izquierda de la guarda */
    .jh-tickets__membrete img {
        left: 65%;
        right: auto;
        width: min(660px, 170vw);
        max-width: none;
        transform: translateX(-50%);
    }

    .jh-venue__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: min(1180px, 100%);
        margin-top: 0;
    }

    /* Como el diseño 2025: título y dirección alineados a la izquierda */
    .jh-venue__content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: left;
        padding: 0;
    }

    .jh-venue__pikes-clip {
        left: 50%;
        transform: translateX(-50%);
        width: min(520px, 94vw);
        top: auto;
        bottom: 8%;
    }

    .jh-venue__pikes-wrap {
        left: -40px;
    }

    .jh-venue__pikes {
        width: 100%;
        max-width: 1145px;
    }

    /* Membrete como el de tickets pero espejado: ornamento al 35%, cola derecha visible */
    .jh-venue__membrete {
        left: 50%;
        right: auto;
        width: 100vw;
        height: 150px;
        min-height: 150px;
        transform: translateX(-50%);
    }

    .jh-venue__membrete img {
        left: 35%;
        right: auto;
        width: min(660px, 170vw);
        max-width: none;
        transform: translateX(-50%);
    }

    .jh-venue__art {
        justify-content: center;
        width: 100%;
        padding-top: 0;
        overflow: hidden;
    }

    .jh-venue__scene {
        width: 100%;
        max-width: min(320px, 88vw);
        margin: 0 auto;
        padding-top: 0;
        margin-top: 0;
    }

    /* Mobile: ANIMATION-3 via CSS (triggered by .jh-venue--active) */
    .jh-venue--active:not(.jh-venue--gsap) .jh-venue__marie-fly {
        animation: jh-marie-subtle 4.5s ease-out forwards;
    }

    .jh-venue--static .jh-venue__marie-fly {
        opacity: 1;
        transform: rotate(-4deg) translate(0%, -20%) translate3d(40px, 100px, 0);
        animation: none;
    }

    .jh-tickets {
        height: auto;
        min-height: auto;
        align-items: flex-start;
        /* Baja el bloque completo (membrete incluido) respecto del hero */
        margin-top: 90px;
        /* Deja lugar al membrete ornamental (150px) con leve solape de los retratos */
        padding-top: 110px;
    }

    .jh-venue {
        height: auto;
        min-height: auto;
        align-items: flex-start;
        /* Título justo debajo de la guarda del membrete (150px) */
        padding-top: 85px;
        overflow: hidden;
    }

    .jh-accommodation {
        height: auto;
        min-height: auto;
        /* Título justo debajo de la guarda del membrete (150px) */
        padding-top: 85px;
        padding-bottom: 0;
    }

    /* Membrete como el de tickets: ornamento al 65%, cola izquierda visible */
    .jh-accommodation__membrete {
        left: 50%;
        width: 100vw;
        height: 150px;
        min-height: 150px;
        transform: translateX(-50%);
    }

    .jh-accommodation__membrete img {
        left: 65%;
        width: min(660px, 170vw);
        max-width: none;
        transform: translateX(-50%);
    }

    /* El inner trae 100px de padding desktop que en mobile duplica el espacio del membrete */
    .jh-accommodation__inner {
        padding-top: 0;
    }

    .jh-accommodation__header {
        padding: 1rem 0 2rem;
    }

    .jh-accommodation__body {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "others"
            "visual";
        gap: 2rem;
        row-gap: 2rem;
        max-width: 100%;
    }

    /* En el diseño 2025 la Bastilla cierra el bloque, después de los hoteles */
    .jh-accommodation__visual {
        order: unset;
        max-width: 360px;
        justify-self: center;
        margin: 0 auto;
    }

    .jh-accommodation__content,
    .jh-accommodation__others {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        justify-self: stretch;
    }

    .jh-accommodation__featured { padding-top: 1.5rem; }

    .jh-accommodation__featured--count-2 .jh-accommodation__featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .jh-accommodation__featured--count-2 .jh-accommodation__hotel-info {
        font-size: var(--jh-text-body);
        line-height: var(--jh-lh-body);
    }

    .jh-accommodation__featured--count-2 .jh-accommodation__btn {
        width: 100%;
        max-width: 20rem;
        font-size: var(--jh-text-btn);
        letter-spacing: 0.15em;
        padding: 0.85rem 2rem;
    }

    .jh-transport {
        height: auto;
        min-height: auto;
        /* Título justo debajo de la guarda del membrete (150px) */
        padding: 170px var(--jh-content-inset) 3rem;
        overflow: visible;
        padding-top: 85px;
    }

    /* Membrete espejado (como venue): ornamento al 35%, cola derecha visible */
    .jh-transport__membrete {
        left: 50%;
        width: 100vw;
        height: 150px;
        min-height: 150px;
        transform: translateX(-50%);
    }

    .jh-transport__membrete img {
        left: 35%;
        width: min(660px, 170vw);
        max-width: none;
        transform: translateX(-50%);
    }

    .jh-transport__header {
        padding: 0 0 2rem;
        text-align: left;
    }

    .jh-transport__title {
        text-align: left;
    }

    .jh-transport__layout {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: 0;
        padding-bottom: 0;
    }

    .jh-transport__content {
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .jh-transport__subtitle {
        text-align: left;
    }

    .jh-transport__carriage {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: min(92vw, 360px);
        margin: 3.5rem auto 0;
        display: block;
    }

    .jh-faq {
        --jh-faq-toggle-w: 2.75rem;
        --jh-faq-pad-x: 1rem;
        --jh-faq-row-h: auto;
        /* ~60px más arriba: sin margin y menos padding superior */
        margin-top: 0;
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .jh-faq__intro {
        margin: 1.5rem auto 2.5rem auto;
    }

    .jh-faq__list {
        max-width: 100%;
        padding: 0;
    }

    .jh-faq__item:not([open]) {
        height: auto;
        min-height: 3.25rem;
    }

    .jh-faq__question {
        height: auto;
        min-height: 3.25rem;
    }

    .jh-faq__item:not([open]) .jh-faq__question {
        min-height: 3.25rem;
    }

    .jh-faq__question-text {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .jh-footer__copy {
        font-size: var(--jh-text-body);
        padding: 0 0.5rem;
        line-height: var(--jh-lh-body);
    }

    .jh-footer__pikes-img {
        width: min(100%, 1190px);
    }

    /* Mob: zoom horizontal para ganar altura y ver las cabezas (el asset es 3:1) */
    .jh-footer__art {
        width: 100%;
        overflow: hidden;
    }

    .jh-footer__mob-img {
        width: 210%;
        max-width: none;
        height: auto;
        margin-left: -55%;
        margin-bottom: -12px;
    }

    .jh-btn,
    .jh-tickets__btn,
    .jh-accommodation__btn {
        width: 100%;
        max-width: 20rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .jh-nav__countdown {
        gap: 0.55rem;
        padding-right: 0;
    }

    .jh-countdown__number {
        font-size: 1.35rem;
    }

    .jh-countdown__label {
        font-size: 0.45rem;
    }

    /* Segundos fuera en pantallas muy chicas */
    .jh-nav__countdown .jh-countdown__unit:last-child {
        display: none;
    }

    .jh-hero__countdown { gap: 1rem; }

    .jh-tickets__visual {
        width: min(300px, 90vw);
    }
}

/* -------------------------------------------------------
   Commerce7 V2 — ocultar header propio (usamos el nuestro)
------------------------------------------------------- */
#c7-header,
.c7-header,
[id^="c7-nav"],
[class^="c7-nav"],
c7-header {
    display: none !important;
}

/* Commerce7 — botones alineados al theme */
.jh-tickets__c7-widgets .c7-btn,
.jh-tickets__c7-widgets .c7-button,
.jh-tickets__c7-widgets button,
.jh-tickets__c7-widgets a[role="button"] {
    font-family: var(--jh-font-ui) !important;
    font-size: var(--jh-text-btn) !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    line-height: var(--jh-lh-btn) !important;
    padding: 0.85rem 2rem !important;
    background: var(--jh-beige) !important;
    color: #1a1a1a !important;
    border: 1px solid var(--jh-beige) !important;
    border-radius: 0 !important;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease !important;
}

.jh-tickets__c7-widgets .c7-btn:hover,
.jh-tickets__c7-widgets .c7-button:hover,
.jh-tickets__c7-widgets button:hover,
.jh-tickets__c7-widgets a[role="button"]:hover {
    background: transparent !important;
    color: var(--jh-beige) !important;
    border-color: var(--jh-beige) !important;
    box-shadow: 0 0 22px rgba(225, 204, 183, 0.24) !important;
    transform: translateY(-2px) !important;
}

/* -------------------------------------------------------
   Commerce7 — páginas de cuenta (/profile, /profile/login)
   El widget de C7 asume fondo claro: le damos un panel
   claro dentro del layout oscuro del theme.
------------------------------------------------------- */
.jh-c7-page {
    min-height: 100vh;
    padding: 175px var(--jh-content-inset) 5rem;
    /* Sin fondo propio: se ve el artwork del body como en el resto del sitio */
}

.jh-c7-page__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3rem);
}

/* Widget sin panel propio: texto blanco sobre el artwork del body */
.jh-c7-page__inner #c7-content,
.jh-c7-page__inner #c7-content h1,
.jh-c7-page__inner #c7-content h2,
.jh-c7-page__inner #c7-content h3,
.jh-c7-page__inner #c7-content legend,
.jh-c7-page__inner #c7-content label,
.jh-c7-page__inner #c7-content p,
.jh-c7-page__inner #c7-content span {
    color: var(--jh-white) !important;
}

.jh-c7-page__inner #c7-content a {
    color: var(--jh-beige) !important;
    text-decoration: underline !important;
    transition: color 0.3s ease;
}

.jh-c7-page__inner #c7-content a:hover {
    color: var(--jh-gold-light) !important;
}

/* C7 trae links (14px) y labels (15px) más chicos que el body: igualarlos */
.jh-c7-page__inner #c7-content a,
.jh-c7-page__inner #c7-content label,
.jh-c7-page__inner #c7-content p,
.jh-c7-page__inner #c7-content span {
    font-size: var(--jh-text-body) !important;
}

/* Botones C7 alineados al theme (mismo tratamiento que en tickets) */
.jh-c7-page__inner #c7-content button[type="submit"],
.jh-c7-page__inner #c7-content .c7-btn--primary {
    font-family: var(--jh-font-ui) !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    background: var(--jh-beige) !important;
    color: #1a1a1a !important;
    border: 1px solid var(--jh-beige) !important;
    border-radius: 0 !important;
    transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease !important;
}

.jh-c7-page__inner #c7-content button[type="submit"]:hover,
.jh-c7-page__inner #c7-content .c7-btn--primary:hover {
    background: transparent !important;
    color: var(--jh-beige) !important;
    box-shadow: 0 0 22px rgba(225, 204, 183, 0.24) !important;
}

/* Botón secundario (ej: Cancel en Forgot Password) — ghost sobre fondo oscuro.
   Scopeado a las páginas de cuenta para no pisar .c7-btn--alt en otros contextos. */
.jh-c7-page__inner #c7-content a.c7-btn--alt,
.jh-c7-page__inner #c7-content .c7-btn--alt {
    font-family: var(--jh-font-ui) !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    background: transparent !important;
    color: var(--jh-beige) !important;
    border: 1px solid var(--jh-beige) !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease !important;
}

.jh-c7-page__inner #c7-content a.c7-btn--alt:hover,
.jh-c7-page__inner #c7-content .c7-btn--alt:hover {
    background: var(--jh-beige) !important;
    color: #1a1a1a !important;
    box-shadow: 0 0 22px rgba(225, 204, 183, 0.24) !important;
}

/* El contenido interno del botón hereda el color del botón */
.jh-c7-page__inner #c7-content button span,
.jh-c7-page__inner #c7-content .c7-btn--primary span,
.jh-c7-page__inner #c7-content .c7-btn--alt span {
    color: inherit !important;
}

@media (max-width: 768px) {
    .jh-c7-page {
        padding-top: 140px;
    }
}
