/**
 * Tema ANIMAL · DOG — paleta cálida (cream + cacao + terracota)
 * templates/themes/animal/dog/dog.html.twig
 */

.theme-animal-dog {
    /* ─── Tokens ─── */
    --dog-cream-light: #faf3e8;
    --dog-cream:       #f5ede2;
    --dog-sand:        #e4d4ba;
    --dog-cacao:       #4a3520;
    --dog-cacao-soft:  #6e5036;
    --dog-terracotta:  #c87f5a;
    --dog-terracotta-deep: #a96545;
    --dog-paw:         #8b6442;
    --dog-shadow:      0 10px 36px rgba(74, 53, 32, 0.14);

    --dog-font-serif: 'Cormorant Garamond', Georgia, serif;
    --dog-font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    background: var(--dog-cream);
    color: var(--dog-cacao);
    font-family: var(--dog-font-sans);
    line-height: 1.7;
}

.theme-animal-dog h1,
.theme-animal-dog h2,
.theme-animal-dog h3 {
    font-family: var(--dog-font-serif);
    color: var(--dog-cacao);
    font-weight: 500;
}

.dog-app {
    position: relative;
    min-height: 100vh;
}

/* ─── Hero ─── */
.theme-animal-dog .hero-section,
.theme-animal-dog .hero-video-image {
    background:
        radial-gradient(ellipse at top, rgba(200, 127, 90, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, var(--dog-cream-light) 0%, var(--dog-cream) 100%);
    color: var(--dog-cacao);
}
.theme-animal-dog .hero-video-image__names,
.theme-animal-dog .hero-section__names {
    font-family: var(--dog-font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--dog-cacao);
    letter-spacing: -0.02em;
}
.theme-animal-dog .hero-video-image__amp,
.theme-animal-dog .hero-section__amp {
    color: var(--dog-terracotta);
}

/* ─── Secciones base ─── */
.theme-animal-dog section {
    padding: 4.5rem 1.5rem;
}
.theme-animal-dog .countdown-section,
.theme-animal-dog .venue-section,
.theme-animal-dog .infobox-schedule,
.theme-animal-dog .gallery-section,
.theme-animal-dog .rsvp,
.theme-animal-dog .site-footer {
    background-color: var(--dog-cream);
    color: var(--dog-cacao);
}

/* Alternancia de fondos para crear ritmo */
.theme-animal-dog section:nth-of-type(even) {
    background-color: var(--dog-cream-light);
}

/* ─── Countdown ─── */
.theme-animal-dog .countdown-section__title,
.theme-animal-dog h2 {
    font-family: var(--dog-font-serif);
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    color: var(--dog-cacao);
}
.theme-animal-dog .countdown__unit {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--dog-shadow);
}
.theme-animal-dog .countdown__number {
    color: var(--dog-terracotta-deep);
    font-family: var(--dog-font-serif);
}
.theme-animal-dog .countdown__label {
    color: var(--dog-cacao-soft);
}

/* ─── Botones (RSVP, etc.) ─── */
.theme-animal-dog .rsvp-form__submit,
.theme-animal-dog .smd-btn-primary {
    background: var(--dog-terracotta);
    color: #fff;
    border-radius: 999px;
    font-family: var(--dog-font-sans);
    transition: background 0.15s;
}
.theme-animal-dog .rsvp-form__submit:hover,
.theme-animal-dog .smd-btn-primary:hover {
    background: var(--dog-terracotta-deep);
}

/* ─── RSVP (paleta + ancho a juego con el tema dog) ─── */
.theme-animal-dog .rsvp-section {
    /* Reescribe las custom properties del componente para usar gold + cacao */
    --rsvp-accent: #c69a5a;
    --rsvp-accent-hover: #a8804a;
    --rsvp-text-dark: var(--dog-cacao);
    --rsvp-text-muted: var(--dog-cacao-soft);
    --rsvp-beige: var(--dog-cream-light);
    --rsvp-beige-dark: var(--dog-sand);
    --rsvp-cream: #fffaf0;
    background-color: var(--cmp-bg, var(--dog-cream));
    padding: 4.5rem 1rem;
}
.theme-animal-dog .rsvp-section__inner {
    max-width: 880px;
}
.theme-animal-dog .rsvp-section__title {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: #d9b176;
}
.theme-animal-dog .rsvp-section__subtitle {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: var(--dog-cacao);
    opacity: 0.85;
}
.theme-animal-dog .rsvp {
    background: #fffaf0;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(74, 53, 32, 0.10), 0 0 0 1px rgba(217, 177, 118, 0.25);
    padding: 2.5rem 2rem;
}
.theme-animal-dog .rsvp-form__input,
.theme-animal-dog .rsvp-form__textarea {
    border-color: var(--dog-sand);
    color: var(--dog-cacao);
    background: #fdf6e8;
}
.theme-animal-dog .rsvp-form__input:focus,
.theme-animal-dog .rsvp-form__textarea:focus {
    border-color: #c69a5a;
    box-shadow: 0 0 0 3px rgba(198, 154, 90, 0.22);
}
.theme-animal-dog .rsvp-form__choice-btn,
.theme-animal-dog .rsvp-form__chip {
    background: #fdf6e8;
    border-color: var(--dog-sand);
    color: var(--dog-cacao);
    border-radius: 12px;
}
.theme-animal-dog .rsvp-form__choice-btn.is-selected,
.theme-animal-dog .rsvp-form__chip.is-selected {
    background: #c69a5a;
    border-color: #c69a5a;
    color: #fffaf0;
}
.theme-animal-dog .rsvp-form__choice-btn:hover,
.theme-animal-dog .rsvp-form__chip:hover {
    border-color: #c69a5a;
}
.theme-animal-dog .rsvp-form__submit {
    background: #c69a5a;
}
.theme-animal-dog .rsvp-form__submit:hover {
    background: #a8804a;
}

@media (min-width: 768px) {
    .theme-animal-dog .rsvp-section { padding: 5rem 2rem; }
    .theme-animal-dog .rsvp { padding: 3rem 3rem; }
}

/* ─── Footer ─── */
.theme-animal-dog .site-footer {
    background: var(--dog-cacao);
    color: var(--dog-cream-light);
}
.theme-animal-dog .site-footer a { color: var(--dog-terracotta-soft, #e0a780); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .theme-animal-dog section { padding: 3rem 1.25rem; }
}

/* ═══════════════════ HERO · DOG ═══════════════════ */
.theme-animal-dog .dog-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    color: #f1e6d2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
}

.theme-animal-dog .dog-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback si no hay imagen */
    background-color: #1a1208;
    z-index: 0;
}
.theme-animal-dog .dog-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.theme-animal-dog .dog-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(20, 14, 6, 0.65) 60%, rgba(10, 7, 3, 0.85) 100%);
    z-index: 1;
}

.theme-animal-dog .dog-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    max-width: 520px;
}

/* Ornamento superior (huellas + laurel) */
.theme-animal-dog .dog-hero__ornament {
    color: #d9b176;
    width: 200px;
    margin-bottom: -0.5rem;
}
.theme-animal-dog .dog-hero__ornament-svg {
    width: 100%;
    height: auto;
}

/* Corazón decorativo */
.theme-animal-dog .dog-hero__heart {
    color: #d9b176;
    width: 14px;
    height: 14px;
    display: inline-flex;
    margin: 0.5rem 0;
}
.theme-animal-dog .dog-hero__heart svg { width: 100%; height: 100%; }
.theme-animal-dog .dog-hero__heart--bottom { margin-top: 1.4rem; }

/* Nombres "MILO & NALA" */
.theme-animal-dog .dog-hero__names {
    font-family: var(--dog-font-serif);
    font-weight: 500;
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    color: #f5ebd6;
    margin: 0 0 0.4rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.theme-animal-dog .dog-hero__name {
    color: #f5ebd6;
}
.theme-animal-dog .dog-hero__amp {
    color: #d9b176;
    font-style: italic;
    font-weight: 400;
    margin: 0 0.25em;
}

/* Tagline (caps + italic dorado) */
.theme-animal-dog .dog-hero__tagline {
    margin: 0.4rem 0 0.6rem;
}
.theme-animal-dog .dog-hero__tagline-caps {
    font-family: var(--dog-font-sans);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #f1e3c4;
    margin: 0 0 0.55rem;
}
.theme-animal-dog .dog-hero__tagline-italic {
    font-family: var(--dog-font-serif);
    font-style: italic;
    font-size: 1.45rem;
    color: #d9b176;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Divisor con hoja */
.theme-animal-dog .dog-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 1.2rem 0 1rem;
    color: #d9b176;
    width: 220px;
}
.theme-animal-dog .dog-hero__divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #d9b176, transparent);
}
.theme-animal-dog .dog-hero__divider-leaf {
    width: 28px;
    height: 14px;
    opacity: 0.95;
}

/* Fecha */
.theme-animal-dog .dog-hero__date {
    font-family: var(--dog-font-serif);
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    color: #f5ebd6;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.55rem;
}
.theme-animal-dog .dog-hero__date-sep {
    color: #d9b176;
    font-size: 0.85em;
}

/* CTA pequeño en línea con el estilo del hero */
.theme-animal-dog .dog-hero__cta {
    display: inline-block;
    margin-top: 1.1rem;
    padding: 0.55rem 1.4rem;
    font-family: var(--dog-font-sans);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f5ebd6;
    background: transparent;
    border: 1px solid #d9b176;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.theme-animal-dog .dog-hero__cta:hover {
    background: #d9b176;
    color: #1a1208;
    border-color: #d9b176;
}

@media (max-width: 480px) {
    .theme-animal-dog .dog-hero__names {
        font-size: clamp(2rem, 9vw, 2.8rem);
        letter-spacing: 0.03em;
    }
    .theme-animal-dog .dog-hero__tagline-italic { font-size: 1.25rem; }
    .theme-animal-dog .dog-hero__date { font-size: 1rem; letter-spacing: 0.14em; gap: 0.4rem; }
    .theme-animal-dog .dog-hero__ornament { width: 160px; }
    .theme-animal-dog .dog-hero__divider { width: 180px; }
}

/* Reduced motion: nada que apagar de momento (no hay animaciones en el hero) */

/* ═══════════════════ COUNTDOWN · DOG ═══════════════════ */
.theme-animal-dog .dog-countdown {
    background:
        radial-gradient(ellipse at 30% 25%, rgba(217, 177, 118, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 75%, rgba(217, 177, 118, 0.05) 0%, transparent 55%),
        linear-gradient(180deg, #0f0a05 0%, #1a1208 100%);
    color: #f5ebd6;
    padding: 4.5rem 1.5rem;
    position: relative;
    text-align: center;
}
.theme-animal-dog .dog-countdown__inner {
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ornamento superior */
.theme-animal-dog .dog-countdown__ornament {
    color: #d9b176;
    width: 170px;
    margin-bottom: 0.5rem;
}
.theme-animal-dog .dog-countdown__ornament svg,
.theme-animal-dog .dog-countdown__ornament img { width: 100%; height: auto; display: block; }

/* Título "FALTAN" entre hairlines */
.theme-animal-dog .dog-countdown__title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    max-width: 320px;
    margin: 0.4rem 0 2.2rem;
}
.theme-animal-dog .dog-countdown__rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #d9b176, transparent);
    opacity: 0.7;
}
.theme-animal-dog .dog-countdown__title {
    font-family: var(--dog-font-sans);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #d9b176;
    margin: 0;
}

/* Grid de números */
.theme-animal-dog .dog-countdown__grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
    width: 100%;
    margin: 0 0 1.4rem;
}
.theme-animal-dog .dog-countdown__cell {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}
.theme-animal-dog .dog-countdown__num {
    font-family: var(--dog-font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(2.4rem, 8.5vw, 3.6rem);
    line-height: 1;
    color: #f5ebd6;
}
.theme-animal-dog .dog-countdown__label {
    font-family: var(--dog-font-sans);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d9b176;
    opacity: 0.85;
}
.theme-animal-dog .dog-countdown__sep {
    font-family: var(--dog-font-serif);
    font-style: italic;
    font-size: clamp(2rem, 7vw, 2.8rem);
    line-height: 1;
    color: #d9b176;
    padding-top: 0.1em;
    opacity: 0.85;
    user-select: none;
}

/* Divisor + corazón + subtítulo */
.theme-animal-dog .dog-countdown__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    margin: 1.4rem 0 0.4rem;
}
.theme-animal-dog .dog-countdown__divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #d9b176, transparent);
    opacity: 0.65;
}
.theme-animal-dog .dog-countdown__heart {
    color: #d9b176;
    width: 12px;
    height: 12px;
    display: inline-flex;
    margin: 0.15rem 0 0.5rem;
}
.theme-animal-dog .dog-countdown__heart svg { width: 100%; height: 100%; }
.theme-animal-dog .dog-countdown__sub {
    font-family: var(--dog-font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: #d9b176;
    margin: 0.15rem 0 1.5rem;
    letter-spacing: 0.01em;
}

/* Ornamento inferior */
.theme-animal-dog .dog-countdown__leaf {
    color: #d9b176;
    width: 90px;
    opacity: 0.85;
    margin-top: 0.4rem;
}
.theme-animal-dog .dog-countdown__leaf svg { width: 100%; height: auto; display: block; }

@media (max-width: 480px) {
    .theme-animal-dog .dog-countdown { padding: 3.5rem 1rem; }
    .theme-animal-dog .dog-countdown__grid { gap: 0.1rem; }
    .theme-animal-dog .dog-countdown__num { font-size: clamp(2rem, 11vw, 2.6rem); }
    .theme-animal-dog .dog-countdown__sep { font-size: clamp(1.6rem, 8vw, 2rem); }
    .theme-animal-dog .dog-countdown__label { font-size: 0.6rem; letter-spacing: 0.16em; }
    .theme-animal-dog .dog-countdown__sub { font-size: 0.95rem; }
}

/* ═══════════════════ VENUE · DOG ═══════════════════ */
.theme-animal-dog .dog-venue {
    background:
        radial-gradient(ellipse at 25% 20%, rgba(217, 177, 118, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 80%, rgba(217, 177, 118, 0.05) 0%, transparent 55%),
        linear-gradient(180deg, #0f0a05 0%, #1a1208 100%);
    color: #f5ebd6;
    padding: 4rem 1.25rem 4.5rem;
    text-align: center;
}
.theme-animal-dog .dog-venue__inner {
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Kicker "EL LUGAR" */
.theme-animal-dog .dog-venue__kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0 0 1.4rem;
}
.theme-animal-dog .dog-venue__kicker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d9b176;
    opacity: 0.85;
}
.theme-animal-dog .dog-venue__kicker-text {
    font-family: var(--dog-font-sans);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: #d9b176;
}

/* Tarjeta del venue */
.theme-animal-dog .dog-venue__card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.theme-animal-dog .dog-venue__card + .dog-venue__card {
    margin-top: 3rem;
}

/* Foto enmarcada con esquineras */
.theme-animal-dog .dog-venue__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    border: 2px solid #d9b176;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(217, 177, 118, 0.25);
    margin-bottom: 2.4rem;
}
.theme-animal-dog .dog-venue__media img {
    border-radius: 8px;
}
.theme-animal-dog .dog-venue__pin {
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    width: 26px;
    height: auto;
    color: #d9b176;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.45));
    pointer-events: none;
}
.theme-animal-dog .dog-venue__pin svg {
    width: 100%;
    height: auto;
    display: block;
}
.theme-animal-dog .dog-venue__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.theme-animal-dog .dog-venue__corner {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #d9b176;
    opacity: 0.9;
    pointer-events: none;
}
.theme-animal-dog .dog-venue__corner--tl { top: 8px; left: 8px; transform: rotate(0deg); }
.theme-animal-dog .dog-venue__corner--tr { top: 8px; right: 8px; transform: rotate(90deg); }
.theme-animal-dog .dog-venue__corner--br { bottom: 8px; right: 8px; transform: rotate(180deg); }
.theme-animal-dog .dog-venue__corner--bl { bottom: 8px; left: 8px; transform: rotate(270deg); }

/* Nombre del venue */
.theme-animal-dog .dog-venue__name {
    font-family: var(--dog-font-serif);
    font-weight: 500;
    font-size: clamp(1.4rem, 5vw, 1.95rem);
    letter-spacing: 0.06em;
    color: #f5ebd6;
    margin: 0 0 0.4rem;
}

/* Ciudad / línea pequeña debajo */
.theme-animal-dog .dog-venue__city {
    font-family: var(--dog-font-sans);
    font-weight: 500;
    font-size: 0.74rem;
    letter-spacing: 0.32em;
    color: #d9b176;
    margin: 0 0 0.9rem;
}

/* Tagline italic */
.theme-animal-dog .gallery-section__subtitle {
    font-family: var(--dog-font-serif);
    font-style: italic;
}

.theme-animal-dog .dog-venue__tagline {
    font-family: var(--dog-font-serif);
    font-style: italic;
    font-size: 0.96rem;
    color: #d9b176;
    margin: 0 0 1rem;
    max-width: 32ch;
}

/* Huella decorativa */
.theme-animal-dog .dog-venue__paw {
    color: #d9b176;
    display: inline-flex;
    width: 18px;
    height: 16px;
    margin: 0 0 1.3rem;
    opacity: 0.95;
}
.theme-animal-dog .dog-venue__paw svg { width: 100%; height: 100%; }

/* Botón ver ubicación */
.theme-animal-dog .dog-venue__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.4rem;
    font-family: var(--dog-font-sans);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    color: #f5ebd6;
    background: transparent;
    border: 1px solid #d9b176;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.theme-animal-dog .dog-venue__btn:hover {
    background: #d9b176;
    color: #1a1208;
}
.theme-animal-dog .dog-venue__btn-paw {
    display: inline-flex;
    width: 14px;
    height: 12px;
    color: currentColor;
}
.theme-animal-dog .dog-venue__btn-paw svg { width: 100%; height: 100%; }

@media (max-width: 480px) {
    .theme-animal-dog .dog-venue { padding: 3rem 1rem 3.5rem; }
    .theme-animal-dog .dog-venue__name { font-size: 1.35rem; }
    .theme-animal-dog .dog-venue__tagline { font-size: 0.9rem; }
    .theme-animal-dog .dog-venue__btn { padding: 0.6rem 1.15rem; font-size: 0.72rem; letter-spacing: 0.18em; }
}

/* ─── Gallery (coverflow) ─── */
.theme-animal-dog .dog-gallery {
    background: var(--dog-cream-light, #f4ead9);
    color: var(--dog-cacao);
    padding: 4rem 1rem 4.5rem;
}
.theme-animal-dog .dog-gallery__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.theme-animal-dog .dog-gallery__title {
    font-family: var(--dog-font-serif);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d9b176;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    margin: 0 0 0.6rem;
}
.theme-animal-dog .dog-gallery__subtitle {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: var(--dog-cacao);
    margin: 0 0 0.6rem;
}
.theme-animal-dog .dog-gallery__divider {
    color: #d9b176;
    width: 140px;
    margin: 0 auto 1.8rem;
    opacity: 0.85;
}
.theme-animal-dog .dog-gallery__divider svg {
    width: 100%;
    height: auto;
    display: block;
}

.theme-animal-dog .dog-gallery__stage {
    position: relative;
    height: 360px;
    margin: 0 auto;
    max-width: 900px;
}
.theme-animal-dog .dog-gallery__track {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    perspective: 1200px;
}
.theme-animal-dog .dog-gallery__item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(260px, 46vw, 460px);
    height: 85%;
    transform: translate(-50%, -50%) scale(0.55);
    opacity: 0;
    z-index: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
    cursor: pointer;
    pointer-events: none;
}
.theme-animal-dog .dog-gallery__item[data-offset="0"] {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    cursor: default;
}
.theme-animal-dog .dog-gallery__item[data-offset="-1"] {
    transform: translate(calc(-50% - 42%), -50%) scale(0.72);
    opacity: 0.55;
    z-index: 5;
    pointer-events: auto;
}
.theme-animal-dog .dog-gallery__item[data-offset="1"] {
    transform: translate(calc(-50% + 42%), -50%) scale(0.72);
    opacity: 0.55;
    z-index: 5;
    pointer-events: auto;
}
.theme-animal-dog .dog-gallery__item[data-offset="-2"] {
    transform: translate(calc(-50% - 70%), -50%) scale(0.55);
    opacity: 0.18;
    z-index: 2;
}
.theme-animal-dog .dog-gallery__item[data-offset="2"] {
    transform: translate(calc(-50% + 70%), -50%) scale(0.55);
    opacity: 0.18;
    z-index: 2;
}
.theme-animal-dog .dog-gallery__frame {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px solid #d9b176;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(217, 177, 118, 0.18);
    background: #1a0f0a;
}
.theme-animal-dog .dog-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.theme-animal-dog .dog-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.85);
    color: var(--dog-cacao);
    border: 1px solid rgba(217, 177, 118, 0.45);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.theme-animal-dog .dog-gallery__nav:hover {
    background: #fffaf0;
    transform: translateY(-50%) scale(1.05);
}
.theme-animal-dog .dog-gallery__nav--prev { left: 8px; }
.theme-animal-dog .dog-gallery__nav--next { right: 8px; }

.theme-animal-dog .dog-gallery__paw {
    width: 22px;
    height: auto;
    color: #d9b176;
    margin: 1.4rem auto 0;
    opacity: 0.85;
}
.theme-animal-dog .dog-gallery__paw svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 720px) {
    .theme-animal-dog .dog-gallery__stage { height: 260px; }
    .theme-animal-dog .dog-gallery__item { width: clamp(220px, 70vw, 320px); }
    .theme-animal-dog .dog-gallery__item[data-offset="-1"] { transform: translate(calc(-50% - 38%), -50%) scale(0.62); }
    .theme-animal-dog .dog-gallery__item[data-offset="1"] { transform: translate(calc(-50% + 38%), -50%) scale(0.62); }
    .theme-animal-dog .dog-gallery__nav { width: 38px; height: 38px; }
}

/* ─── Programa del día (timeline) ─── */
.theme-animal-dog .dog-program {
    background: var(--dog-cream-light, #f4ead9);
    color: var(--dog-cacao);
    padding: 4rem 1rem 4.5rem;
}
.theme-animal-dog .dog-program__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.theme-animal-dog .dog-program__ornament {
    width: 160px;
    margin: 0 auto 1rem;
}
.theme-animal-dog .dog-program__ornament img {
    width: 100%;
    height: auto;
    display: block;
}
.theme-animal-dog .dog-program__title {
    font-family: var(--dog-font-serif);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d9b176;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.15;
    margin: 0 0 0.6rem;
}
.theme-animal-dog .dog-program__subtitle {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: var(--dog-cacao);
    margin: 0 0 0.8rem;
    opacity: 0.85;
}
.theme-animal-dog .dog-program__leaf {
    color: #d9b176;
    width: 140px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}
.theme-animal-dog .dog-program__leaf svg {
    width: 100%;
    height: auto;
    display: block;
}

.theme-animal-dog .dog-program__timeline {
    position: relative;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}
/* Línea vertical centrada en los bullets. Las columnas son
   [time: 1fr] [bullet: 60px] [content: 1fr] → la línea va por la mitad del bullet. */
.theme-animal-dog .dog-program__timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 50%;
    width: 1px;
    background: rgba(217, 177, 118, 0.55);
    transform: translateX(-50%);
}
.theme-animal-dog .dog-program__row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    column-gap: 1rem;
    padding: 1rem 0;
    position: relative;
}
.theme-animal-dog .dog-program__time {
    font-family: var(--dog-font-sans);
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--dog-cacao);
    text-align: right;
    padding-right: 0.4rem;
    font-size: 0.95rem;
}
.theme-animal-dog .dog-program__bullet {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 1.5px solid #d9b176;
    background: #fffaf0;
    color: #d9b176;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}
.theme-animal-dog .dog-program__bullet-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.theme-animal-dog .dog-program__bullet-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.theme-animal-dog .dog-program__content {
    text-align: left;
    padding-left: 0.4rem;
}
.theme-animal-dog .dog-program__event-title {
    font-family: var(--dog-font-serif);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d9b176;
    font-size: 1.05rem;
    margin: 0 0 0.2rem;
}
.theme-animal-dog .dog-program__event-desc {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: var(--dog-cacao);
    opacity: 0.85;
    font-size: 0.95rem;
    margin: 0;
}
.theme-animal-dog .dog-program__event-heart {
    display: block;
    width: 12px;
    height: auto;
    margin: 0.6rem 0 0;
    color: #d9b176;
    opacity: 0.85;
}
.theme-animal-dog .dog-program__event-heart svg {
    width: 100%;
    height: auto;
    display: block;
}

.theme-animal-dog .dog-program__footer-ornament {
    width: 220px;
    color: #d9b176;
    margin: 1.6rem auto 0;
    opacity: 0.9;
}
.theme-animal-dog .dog-program__footer-ornament svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 600px) {
    .theme-animal-dog .dog-program__row {
        grid-template-columns: 60px 48px 1fr;
        column-gap: 0.6rem;
    }
    .theme-animal-dog .dog-program__time {
        font-size: 0.85rem;
        text-align: right;
    }
    .theme-animal-dog .dog-program__bullet {
        width: 46px;
        height: 46px;
    }
    .theme-animal-dog .dog-program__bullet-icon {
        width: 22px;
        height: 22px;
    }
    .theme-animal-dog .dog-program__timeline::before {
        left: calc(60px + 0.6rem + 24px);
    }
    .theme-animal-dog .dog-program__event-title {
        font-size: 0.95rem;
        letter-spacing: 0.16em;
    }
    .theme-animal-dog .dog-program__event-desc {
        font-size: 0.88rem;
    }
}


/* ─── Información práctica (location & transportation) ─── */
.theme-animal-dog .dog-practical {
    background: var(--dog-cream-light, #f4ead9);
    color: var(--dog-cacao);
    padding: 4rem 1rem 4.5rem;
}
.theme-animal-dog .dog-practical__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.theme-animal-dog .dog-practical__ornament {
    width: 160px;
    margin: 0 auto 1rem;
}
.theme-animal-dog .dog-practical__ornament img {
    width: 100%;
    height: auto;
    display: block;
}
.theme-animal-dog .dog-practical__title {
    font-family: var(--dog-font-serif);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d9b176;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.15;
    margin: 0 0 0.6rem;
}
.theme-animal-dog .dog-practical__subtitle {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: var(--dog-cacao);
    opacity: 0.85;
    margin: 0 0 0.8rem;
}
.theme-animal-dog .dog-practical__leaf {
    color: #d9b176;
    width: 140px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}
.theme-animal-dog .dog-practical__leaf svg {
    width: 100%;
    height: auto;
    display: block;
}

.theme-animal-dog .dog-practical__list {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
.theme-animal-dog .dog-practical__item {
    position: relative;
    padding: 1.4rem 0 2rem;
    text-align: center;
}
.theme-animal-dog .dog-practical__item + .dog-practical__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 1.4rem;
    background-image: linear-gradient(to bottom, #d9b176 50%, transparent 50%);
    background-size: 1px 6px;
    background-repeat: repeat-y;
    transform: translateX(-50%);
}
.theme-animal-dog .dog-practical__bullet {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1.5px solid #d9b176;
    background: #fffaf0;
    color: #d9b176;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 0 auto 0.8rem;
}
.theme-animal-dog .dog-practical__bullet-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.theme-animal-dog .dog-practical__bullet-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.theme-animal-dog .dog-practical__card-title {
    font-family: var(--dog-font-serif);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #d9b176;
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
}
.theme-animal-dog .dog-practical__card-text {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: var(--dog-cacao);
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0 auto;
    max-width: 38ch;
    line-height: 1.55;
}

.theme-animal-dog .dog-practical__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 2.5rem auto 0;
    max-width: 420px;
    text-align: center;
}
.theme-animal-dog .dog-practical__footer-icon {
    color: #c69a5a;
    flex-shrink: 0;
}
.theme-animal-dog .dog-practical__footer-icon--paw {
    width: 22px;
    height: auto;
}
.theme-animal-dog .dog-practical__footer-icon--bone {
    width: 28px;
    height: auto;
}
.theme-animal-dog .dog-practical__footer-icon svg {
    width: 100%;
    height: auto;
    display: block;
}
.theme-animal-dog .dog-practical__footer-text {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: var(--dog-cacao);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .theme-animal-dog .dog-practical { padding: 3rem 1rem 3.5rem; }
    .theme-animal-dog .dog-practical__bullet { width: 42px; height: 42px; }
    .theme-animal-dog .dog-practical__bullet-icon { width: 20px; height: 20px; }
    .theme-animal-dog .dog-practical__card-title { font-size: 0.95rem; letter-spacing: 0.18em; }
    .theme-animal-dog .dog-practical__card-text { font-size: 0.88rem; }
    .theme-animal-dog .dog-practical__footer-text { font-size: 0.82rem; }
}

/* ─── Footer minimal (una sola línea con huellas y "setmyday" dorado) ─── */
.theme-animal-dog .dog-footer {
    background: #1a0f0a;
    color: #f0e3c7;
    padding: 1.2rem 1rem;
    text-align: center;
}
.theme-animal-dog .dog-footer__inner {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    max-width: 100%;
}
.theme-animal-dog .dog-footer__paw {
    width: 18px;
    height: 16px;
    color: #c69a5a;
    flex-shrink: 0;
}
.theme-animal-dog .dog-footer__paw svg {
    width: 100%;
    height: 100%;
    display: block;
}
.theme-animal-dog .dog-footer__text {
    font-family: var(--dog-font-sans);
    font-size: 0.92rem;
    line-height: 1.4;
    color: inherit;
    letter-spacing: 0.01em;
}
.theme-animal-dog .dog-footer__link {
    font-family: var(--dog-font-serif);
    font-style: italic;
    font-weight: 500;
    color: #d9b176;
    text-decoration: none;
    font-size: 1.05rem;
    margin-left: 0.2rem;
}
.theme-animal-dog .dog-footer__link:hover {
    color: #e9c082;
}
.theme-animal-dog .dog-footer__heart {
    color: #c69a5a;
    width: 12px;
    height: 11px;
    display: inline-block;
    margin-left: 0.35rem;
    vertical-align: -1px;
}
.theme-animal-dog .dog-footer__heart svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 480px) {
    .theme-animal-dog .dog-footer { padding: 1rem 0.75rem; }
    .theme-animal-dog .dog-footer__inner { gap: 0.6rem; }
    .theme-animal-dog .dog-footer__text { font-size: 0.82rem; }
    .theme-animal-dog .dog-footer__link { font-size: 0.95rem; }
    .theme-animal-dog .dog-footer__paw { width: 16px; height: 14px; }
}

/* ─── Dress code (overrides para que la imagen no se recorte
   y para alinear tipos con program/infobox) ─── */
.theme-animal-dog .dress-section {
    padding: 4rem 1rem 4.5rem;
    border-top: 1px solid #1a0f0a;
}
.theme-animal-dog .dress-section__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.theme-animal-dog .dress-section__title {
    font-family: var(--dog-font-serif);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d9b176;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.15;
    margin: 0 0 1.6rem;
    text-align: center;
}
.theme-animal-dog .dress-image {
    margin: 1.5rem auto 1.6rem;
    text-align: center;
}
.theme-animal-dog .dress-image__img {
    max-width: 100%;
    width: auto;
    /* Ratio 2:3 (1024x1536). Altura generosa para que respire sin invadir el viewport. */
    max-height: clamp(420px, 75vh, 760px);
    height: auto;
    display: inline-block;
    object-fit: contain;
}
.theme-animal-dog .dress-description {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: var(--dog-cacao);
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 38ch;
    margin: 0 auto 1rem;
    text-align: center;
}
.theme-animal-dog .dress-note {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: var(--dog-cacao);
    opacity: 0.75;
    margin: 0 auto;
    max-width: 38ch;
}

@media (max-width: 600px) {
    /* En móvil ajustamos contra ancho disponible:
       width 100% (max 320px) y la altura sigue ratio 3:2. */
    .theme-animal-dog .dress-image__img {
        width: 100%;
        max-width: 320px;
        max-height: 70vh;
    }
    .theme-animal-dog .dress-section__title { letter-spacing: 0.18em; }
}

/* ─── Text block (REGALOS y similares) ─── */
.theme-animal-dog .text-section {
    background: #2b1c10;
    padding: 4rem 1.5rem 4.5rem;
}
.theme-animal-dog .text-section__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.theme-animal-dog .text-section__title {
    font-family: var(--dog-font-serif);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f0e3c7;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    margin: 0 0 1.2rem;
    text-align: center;
}
.theme-animal-dog .text-block {
    color: #e8d8b8;
}
.theme-animal-dog .text-block__subtitle,
.theme-animal-dog .text-block__content {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: #e8d8b8;
    font-size: 1rem;
    line-height: 1.65;
    text-align: center;
    margin: 0 auto;
    max-width: 44ch;
}
.theme-animal-dog .text-block__content p { margin: 0 0 0.8rem; }
.theme-animal-dog .text-block__content p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
    .theme-animal-dog .text-section { padding: 3rem 1.25rem 3.5rem; }
    .theme-animal-dog .text-section__title { letter-spacing: 0.18em; }
    .theme-animal-dog .text-block__subtitle,
    .theme-animal-dog .text-block__content { font-size: 0.95rem; }
}

/* ─── FAQ accordion (paleta del tema Dog) ─── */
.theme-animal-dog .faq-section {
    /* Reescribe las custom properties del componente */
    --faq-beige: var(--dog-cream-light);
    --faq-text-dark: var(--dog-cacao);
    --faq-text-muted: var(--dog-cacao-soft);
    --faq-card-bg: transparent;
    background-color: var(--cmp-bg, var(--dog-cream-light));
    padding: 4.5rem 1rem 5rem;
}
.theme-animal-dog .faq-section__inner {
    max-width: 760px;
    margin: 0 auto;
}
.theme-animal-dog .faq-section__title {
    font-family: var(--dog-font-serif);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c69a5a;
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    margin: 0 0 2.4rem;
    text-align: center;
}
.theme-animal-dog .faq-section__subtitle {
    font-family: var(--dog-font-serif);
    font-style: italic;
    color: var(--dog-cacao);
    opacity: 0.85;
    text-align: center;
    margin: -1rem 0 2rem;
}
.theme-animal-dog .faq-list {
    border-top: 1px solid rgba(74, 53, 32, 0.18);
}
.theme-animal-dog .faq-item {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(74, 53, 32, 0.18);
    margin-bottom: 0;
}
.theme-animal-dog .faq-item__header {
    padding: 1.1rem 0.25rem;
    font-family: var(--dog-font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dog-cacao);
    background: none;
}
.theme-animal-dog .faq-item__header:hover {
    color: #6e5036;
}
.theme-animal-dog .faq-item__chevron {
    color: var(--dog-cacao);
    opacity: 0.8;
}
.theme-animal-dog .faq-item__chevron svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.4;
}
.theme-animal-dog .faq-item__content-inner {
    padding: 0 0.25rem 1.1rem;
}
.theme-animal-dog .faq-item__content p {
    font-family: var(--dog-font-serif);
    font-size: 0.98rem;
    color: var(--dog-cacao);
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .theme-animal-dog .faq-section { padding: 3.5rem 1rem 4rem; }
    .theme-animal-dog .faq-section__title { letter-spacing: 0.22em; }
    .theme-animal-dog .faq-item__header { font-size: 0.98rem; }
    .theme-animal-dog .faq-item__content p { font-size: 0.92rem; }
}
