:root {
    --main-color: #E7A8A0;
    --accent-color: #f3d5d1;
    --soft-color: #f9edea;
    --light-bg: #fff7f6;
    --text-color: #3f2623;
    --text-muted: #6d5250;
    --white: #ffffff;
    --divider: #f1c9c4;
    --glass-bg: rgba(255, 255, 255, 0.52);
    --glass-border: rgba(255, 255, 255, 0.8);
    --pastel-border: #f7dede;
    --shadow-soft: 0 18px 45px rgba(31, 41, 55, 0.08);
    --shadow-card: 0 12px 30px rgba(31, 41, 55, 0.11);
}

/* Shared public-site styles.
   Administration-specific rules live in admin.css. */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.95), transparent 25%),
                radial-gradient(circle at 20% 18%, rgba(231, 168, 160, 0.16), transparent 14%),
                linear-gradient(180deg, #fff8f6 0%, #fff1ee 38%, #f7ebe8 100%);
    color: var(--text-color);
    line-height: 1.65;
    min-height: 100vh;
    --mouse-x: 50vw;
    --mouse-y: 50vh;
}

::selection {
    background: rgba(231, 168, 160, 0.3);
    color: var(--text-color);
}


/* WATERMARK */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('../images/logo.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    opacity: 0.07;
    z-index: -1;
}

/* EFECTO DE LUZ DEL MOUSE */
body::after {
    content: "";
    position: fixed;
    top: var(--mouse-y);
    left: var(--mouse-x);
    width: 280px;
    height: 280px;
    background: radial-gradient(
        circle,
        rgba(231, 168, 160, 0.30) 0%,
        rgba(231, 168, 160, 0.14) 35%,
        rgba(231, 168, 160, 0.06) 60%,
        transparent 85%
    );
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: top 0.12s ease-out, left 0.12s ease-out;
    z-index: 0;
}

/* HEADER */
header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(94%, 1180px);
    min-height: 76px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.10),
        0 1px 0 rgba(255,255,255,0.85) inset,
        0 -1px 0 rgba(231,168,160,0.10) inset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    z-index: 2000;
}

header img {
    height: 96px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(176,95,95,0.12));
}

header h1 {
    color: #6b3d3b;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0;
    margin-left: -2px;
    white-space: nowrap;
    transform: translateY(1px);
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

header h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(231,168,160,0.7),
        transparent
    );
    opacity: 0.7;
}

header h1:hover::after {
    width: 90%;
    opacity: 1;
    transition: all 0.35s ease;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    min-width: 0;
}

/* NAVIGATION */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255,255,255,0.46);
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

nav ul li a {
    color: #5e4140;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    letter-spacing: -0.01em;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.92);
    color: #7c3d3b;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

#openJoinModalMenu {
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

#openJoinModalMenu:hover {
    background: linear-gradient(135deg, rgba(231,168,160,0.20), rgba(243,213,209,0.55));
    color: #9b5f5f;
    box-shadow: 0 8px 18px rgba(176,95,95,0.12);
    border-radius: 12px;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.62);
    border-radius: 18px;
    background: rgba(255,255,255,0.58);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    box-shadow:
        0 10px 24px rgba(15,23,42,0.10),
        inset 0 1px 0 rgba(255,255,255,0.72);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
}

.hamburger span {
    position: absolute;
    width: 24px;
    height: 3px;
    background: #6a4a4a;
    border-radius: 999px;
    transform-origin: center;
    transition: transform 0.28s ease, opacity 0.22s ease, background 0.25s ease;
}

.hamburger span:nth-child(1) {
    transform: translateY(-8px);
}

.hamburger span:nth-child(2) {
    transform: translateY(0);
}

.hamburger span:nth-child(3) {
    transform: translateY(8px);
}

.hamburger:hover,
.hamburger:focus-visible {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.74);
    border-color: rgba(255,255,255,0.82);
    box-shadow:
        0 14px 28px rgba(15,23,42,0.14),
        inset 0 1px 0 rgba(255,255,255,0.82);
    outline: none;
}

.hamburger.active {
    background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(243,213,209,0.72));
    border-color: rgba(255,255,255,0.88);
    box-shadow:
        0 16px 30px rgba(176,95,95,0.16),
        inset 0 1px 0 rgba(255,255,255,0.86);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

#menu-overlay {
    display: none;
}

/* HERO */
.hero {
    min-height: calc(100vh - 144px);
    padding: 180px 20px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top, rgba(255,255,255,0.9), transparent 32%),
                radial-gradient(circle at 85% 12%, rgba(231,168,160,0.22), transparent 12%),
                linear-gradient(180deg, rgba(255, 244, 241, 0.98) 0%, rgba(255, 238, 234, 0.95) 45%, rgba(251, 241, 239, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 35%, rgba(231, 168, 160, 0.12), transparent 24%);
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.03;
    color: #773a38;
    margin-bottom: 18px;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero .btn {
    padding: 16px 34px;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 40px rgba(231, 168, 160, 0.22);
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 22px;
    background: var(--main-color);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* SECTIONS */
section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

section h2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px auto 50px;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
    color: #1f2937;
    font-family: "SF Pro Display", "Inter", sans-serif;
    line-height: 1.05;
    gap: 18px;
}

/* Premium decorative lines */
section h2::before,
section h2::after {
    content: "";
    flex: 1;
    height: 1px;
    max-width: 120px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(231,168,160,0.7),
        transparent
    );
    opacity: 0.6;
}

/* Center glow halo */
section h2 span {
    position: relative;
    z-index: 1;
}

/* Soft premium glow behind title */
section h2 span::before {
    content: "";
    position: absolute;
    inset: -18px -40px;
    background: radial-gradient(
        circle,
        rgba(231,168,160,0.18),
        transparent 70%
    );
    filter: blur(20px);
    z-index: -1;
    opacity: 0.8;
}

/* Micro interaction */
section h2:hover span {
    letter-spacing: -0.01em;
    transform: translateY(-1px);
    transition: all 0.35s ease;
}

.section-header-premium {
    max-width: 880px;
    margin: 0 auto 24px;
    text-align: center;
    padding: 0 16px;
}

.section-header-premium h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.2rem, 3vw, 3.6rem);
    font-weight: 800;
    color: #6b3d3b;
    margin-bottom: 0.35rem;
    letter-spacing: -0.04em;
}

.section-header-premium p,
.section-header-premium .subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.section-header-premium span.icon {
    display: inline-block;
    font-size: 1rem;
    color: #d18a80;
    letter-spacing: 0.15em;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 44px;
    letter-spacing: 0.02em;
    font-weight: 500;
}

section h3,
section p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* DIVIDER */
.divider-glow {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(231,168,160,0.7), transparent);
    box-shadow: 0 0 12px rgba(231,168,160,0.35);
    margin: 20px 0;
}

/* CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: var(--white);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--pastel-border);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* =========================
   EVENTOS – CARRUSEL LIMPIO
========================= */

#events {
    max-width: 1400px;
    margin: 0 auto;
}

.events-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px;
    overflow: hidden;
}

/* La pista del carrusel SIEMPRE debe ser flex */
.events-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 26px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

/* Estilo base de las cards */
.events-track .card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    border: 1px solid rgba(231,168,160,0.30);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    padding: 32px 24px 28px;
    transition: 0.25s ease;
}

.events-track .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(231,168,160,0.16);
    border-color: rgba(231,168,160,0.48);
}

/* =========================
   ARROWS
========================= */

.events-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(231,168,160,0.96), rgba(217,143,135,0.92));
    color: white;
    font-size: 30px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    border: none;
    box-shadow: 0 14px 30px rgba(176,95,95,0.24);
}

.events-arrow.left { left: 8px; }
.events-arrow.right { right: 8px; }

.events-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

/* =========================
   DESKTOP (3 CARDS)
========================= */

@media (min-width: 1025px) {
    .events-track .card {
        min-width: calc((100% - 52px) / 3);
        flex: 0 0 calc((100% - 52px) / 3);
    }
}

/* =========================
   TABLET (2 CARDS)
========================= */

@media (min-width: 769px) and (max-width: 1024px) {
    .events-wrapper { padding: 0 32px; }

    .events-track .card {
        min-width: calc((100% - 26px) / 2);
        flex: 0 0 calc((100% - 26px) / 2);
    }
}

/* =========================
   MÓVIL (1 CARD)
========================= */

@media (max-width: 768px) {
    .events-wrapper { padding: 0 20px; }

    .events-track .card {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .events-arrow {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox.open {
    display: flex;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
}

#lightbox-img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

#lightbox-img.fade-in {
    opacity: 1;
}

.arrow {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    transform: translateY(-50%);
    transition: color 0.2s ease, transform 0.2s ease;
}

.arrow svg {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

#prev { left: 20px; }
#next { right: 20px; }

.arrow:hover {
    color: #E7A8A0;
    transform: translateY(-50%) scale(1.12);
}

#lightbox-counter {
    position: absolute;
    bottom: 25px;
    color: white;
    font-size: 18px;
    background: rgba(0,0,0,0.4);
    padding: 6px 14px;
    border-radius: 12px;
}

/* LIGHTBOX INVITADAS */
#invitee-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

#invitee-lightbox.open {
    display: flex;
}

#invitee-lightbox-content {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 25px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
}

#invitee-lightbox-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

#invitee-lightbox-close {
    display: none !important;
}

/* MODALS */
.modal-overlay,
.join-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.modal-overlay.open,
.modal-overlay.show,
.join-overlay.open {
    display: flex;
}

.modal-content,
.join-modal-content {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.close-modal,
.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    cursor: pointer;
    color: #444;
    transition: 0.3s ease;
}

.close-modal:hover,
.close-btn:hover {
    color: #e7a8a0;
}

/* JOIN SECTION */
.join-section {
    padding: 70px 0 60px;
    background: radial-gradient(circle at top left, rgba(231, 168, 160, 0.12), transparent 32%),
                linear-gradient(180deg, rgba(250, 244, 242, 1), rgba(255, 255, 255, 0.96));
}

.join-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.join-copy {
    text-align: left;
    padding-right: 20px;
}

.join-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 18px;
}

.join-copy h2 {
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 18px;
    color: var(--text-color);
}

.join-copy p {
    max-width: 580px;
    color: #5a4550;
    line-height: 1.8;
    margin-bottom: 28px;
}

.join-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.join-highlights div {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(231, 168, 160, 0.35);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 12px 24px rgba(234, 199, 190, 0.18);
}

.join-highlights strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #5b324d;
}

.join-highlights span {
    color: #6c5770;
    line-height: 1.7;
}

.join-visual {
    display: flex;
    justify-content: center;
}

.join-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(143, 92, 103, 0.18);
    max-width: 520px;
    width: 100%;
}

.join-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.join-image-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px 26px;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 6, 11, 0.66) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.join-image-overlay span {
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
}

.join-section .join-image-overlay p {
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
    color: #ffffff !important;
    font-weight: 650;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.join-section .join-image-overlay span {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.btn.btn-secondary {
    background: linear-gradient(135deg, rgba(231,168,160,1), rgba(226, 120, 108, 1));
    color: #fff;
}

.btn.btn-secondary:hover {
    transform: translateY(-2px);
}

/* JOIN FORM */
.join-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    margin-top: 20px;
}

.join-form label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #60505f;
    font-size: 0.9rem;
}

.join-form input,
.join-form select {
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(176, 95, 95, 0.25);
    font-size: 15px;
    outline: none;
    transition: 0.28s ease;
    width: 100%;
    background: rgba(255,255,255,0.95);
}

.join-form input:focus,
.join-form select:focus {
    border-color: rgba(231, 168, 160, 0.9);
    box-shadow: 0 0 18px rgba(231, 168, 160, 0.14);
}

.join-form .full-width {
    grid-column: 1 / -1;
}

.join-submit-btn {
    grid-column: 1 / -1;
    width: 100%;
    padding: 16px 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #7a4f63, #ce8f8a);
    color: #fff;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.join-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(122, 79, 99, 0.24);
}

.form-message {
    grid-column: 1 / -1;
    padding: 14px 18px;
    background: rgba(245, 237, 235, 0.9);
    border-left: 4px solid #c87f7b;
    border-radius: 14px;
    color: #5a3d45;
    margin-bottom: 0;
}

@media (max-width: 990px) {
    .join-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }

    .join-copy {
        padding-right: 0;
    }
}

@media (max-width: 680px) {
    .join-form {
        grid-template-columns: 1fr;
    }

    .join-image-card {
        max-width: 100%;
    }
}

/* DONATE SECTION */
.donate-container {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    max-width: 700px;
    margin: auto;
}

.donate-text {
    font-size: 18px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.7;
}

.donate-verse {
    font-style: italic;
    background: #fff7f6;
    padding: 20px;
    border-left: 4px solid #e7a8a0;
    border-radius: 10px;
    margin: 25px auto;
    max-width: 600px;
    color: #6a4a4a;
}

.donate-btn-new {
    display: inline-block;
    margin-top: 25px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #E7A8A0, #f3d5d1);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.donate-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 180, 180, 0.45);
}

.donate-subtitle {
    color: #555;
    margin-bottom: 20px;
}

.donate-amounts {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.amount {
    padding: 10px 18px;
    border-radius: 12px;
    border: none;
    background: #f3d4cf;
    color: #444;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
}

.amount:hover {
    background: #e7a8a0;
    color: white;
}

.amount.selected {
    background: linear-gradient(135deg, #E7A8A0, #f3d5d1);
    color: white;
    border: 2px solid #e7a8a0;
    box-shadow: 0 0 18px rgba(231, 168, 160, 0.55);
    transform: translateY(-2px);
    animation: pulseGlow 1.6s infinite ease-in-out;
}

.amount.selected::after {
    content: "✔";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e7a8a0;
    color: white;
    font-size: 14px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(231, 168, 160, 0.45);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 12px rgba(231, 168, 160, 0.45); }
    50% { box-shadow: 0 0 22px rgba(231, 168, 160, 0.75); }
    100% { box-shadow: 0 0 12px rgba(231, 168, 160, 0.45); }
}

.donate-custom {
    margin-bottom: 25px;
}

.donate-custom input {
    width: 100%;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.donate-methods {
    display: grid;
    gap: 12px;
}

.method {
    padding: 12px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    background: #e7a8a0;
    color: white;
    text-decoration: none;
}

.method:hover {
    background: #d98f87;
}

/* =========================
   PAYPAL BUTTON – 100% CUSTOM VISUAL
========================= */
#donate-button-container {
    position: relative;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

#donate-button-helper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(231,168,160,0.22);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
    color: #6a4a4a;
    font-weight: 700;
}
.paypal-qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(231,168,160,0.20);
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.paypal-qr-image {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 18px;
    background: #ffffff;
    padding: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.paypal-qr-caption {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #7a5b5b;
    font-weight: 600;
    text-align: center;
}
#donate-button {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 78px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 40%),
        linear-gradient(135deg, #a64b43, #7b3732);
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow:
        0 16px 34px rgba(74,39,32,0.28),
        inset 0 1px 0 rgba(255,255,255,0.20);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

#donate-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,0.22) 50%, transparent 82%);
    transform: translateX(-120%);
    transition: transform 0.75s ease;
    pointer-events: none;
    z-index: 2;
}

#donate-button::after {
    content: "Donar con PayPal";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-align: center;
    pointer-events: none;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

#donate-button:hover,
#donate-button:focus-within {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 20px 38px rgba(176,95,95,0.25),
        inset 0 1px 0 rgba(255,255,255,0.42);
    filter: saturate(1.04);
}

#donate-button:hover::before,
#donate-button:focus-within::before {
    transform: translateX(120%);
}

#donate-button > div,
#donate-button form,
#donate-button a {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    z-index: 4;
}

#donate-button img,
#donate-button input[type="image"] {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer;
    z-index: 5;
}

.method.paypal {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body.dark #donate-button-helper {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.10);
    color: #f2f2f2;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
body.dark .paypal-qr-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.10);
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

body.dark .paypal-qr-image {
    background: #ffffff;
}

body.dark .paypal-qr-caption {
    color: #f2f2f2;
}
body.dark #donate-button {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 42%),
        linear-gradient(135deg, rgba(176,95,95,0.96), rgba(231,168,160,0.78));
    border-color: rgba(255,255,255,0.10);
    box-shadow:
        0 16px 32px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.10);
}

@media (max-width: 768px) {
    #donate-button-container {
        max-width: 100%;
        gap: 12px;
    }

    #donate-button-helper {
        min-height: 48px;
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 16px;
    }

    #donate-button {
        min-height: 72px;
        border-radius: 20px;
    }

    #donate-button::after {
        font-size: 16px;
    }
        .paypal-qr-card {
        padding: 14px;
        border-radius: 18px;
    }

    .paypal-qr-image {
        max-width: 190px;
        border-radius: 16px;
        padding: 8px;
    }

    .paypal-qr-caption {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #donate-button-helper {
        font-size: 12px;
        line-height: 1.4;
    }

    #donate-button {
        min-height: 68px;
    }

    #donate-button::after {
        font-size: 15px;
    }
}
/* CONTACT + CALENDAR */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

.contact-form-card,
.calendar-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(231, 168, 160, 0.35);
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-form-card {
    padding: 26px;
}

.calendar-card {
    padding: 24px;
}

.calendar-head {
    text-align: center;
    margin-bottom: 18px;
}

.calendar-head h3 {
    font-size: 28px;
    color: #b05f5f;
    margin-bottom: 6px;
}

.calendar-head p {
    color: #6a4a4a;
    font-size: 15px;
}

.calendar-block + .calendar-block {
    margin-top: 18px;
}

.calendar-block h4 {
    font-size: 18px;
    color: #444;
    margin-bottom: 12px;
    text-align: left;
}

.calendar-list {
    display: grid;
    gap: 10px;
}

.calendar-item,
.calendar-empty {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(231, 168, 160, 0.25);
    border-radius: 16px;
    padding: 14px 16px;
    text-align: left;
}

.calendar-item-time {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #b05f5f;
    margin-bottom: 6px;
}

.calendar-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.calendar-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.calendar-note {
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(231, 168, 160, 0.12);
    color: #6a4a4a;
    font-weight: 600;
    margin-bottom: 10px;
}

.calendar-empty {
    color: #777;
    text-align: center;
}
/* CONTACT FORM */
section form,
.contact form,
#contact form,
#contacto form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

section form input,
section form textarea,
section form select,
#contact input,
#contact textarea,
#contacto input,
#contacto textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid #e7a8a0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

section form input:focus,
section form textarea:focus,
section form select:focus {
    border-color: #b05f5f;
    box-shadow: 0 0 8px rgba(176,95,95,0.3);
}

section form button,
#contact button,
#contacto button {
    background: linear-gradient(135deg, #E7A8A0, #f3d5d1);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s;
}

section form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* VERSE BLOCK */
.verse-block,
.bible-quote-block,
section .verse-block {
    max-width: 850px;
    margin: 50px auto;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeVerse 0.8s ease forwards;
}

@keyframes fadeVerse {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verse-block p,
.bible-quote-block p {
    font-style: italic;
    font-size: 20px;
    color: #6a4a4a;
    line-height: 1.7;
    margin-bottom: 18px;
}

.verse-block .author,
.bible-quote-block .author {
    font-size: 16px;
    color: #b05f5f;
    font-weight: 600;
}

.verse-block::after,
.bible-quote-block::after {
    content: "";
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e7a8a0, transparent);
    border-radius: 4px;
    display: block;
    margin: 20px auto 0;
    opacity: 0.8;
}

.verse-block.enhanced {
    max-width: 850px;
    margin: 60px auto;
    padding: 40px 35px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(255, 240, 240, 0.55),
        rgba(255, 255, 255, 0.35)
    );
    backdrop-filter: blur(14px);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
}

.verse-block.enhanced::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(120deg, #e7a8a0, #f3d4cf, #e7a8a0);
    background-size: 200% 200%;
    animation: pastelBorder 6s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.verse-block.enhanced p {
    font-style: italic;
    font-size: 22px;
    color: #6a4a4a;
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.verse-block.enhanced .author {
    font-size: 17px;
    color: #b05f5f;
    font-weight: 600;
}

.verse-block.enhanced::after {
    content: "";
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e7a8a0, transparent);
    border-radius: 4px;
    display: block;
    margin: 25px auto 0;
    opacity: 0.8;
}

/* OFRECEMOS */
.ofrecemos-section {
    max-width: 1000px !important;
    margin: 80px auto;
    padding: 60px 30px;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        rgba(255, 240, 240, 0.6),
        rgba(255, 255, 255, 0.4)
    );
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.ofrecemos-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    background-image: linear-gradient(90deg, #e7a8a0, #f3d4cf, #e7a8a0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.ofrecemos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.ofrecemos-card {
    padding: 40px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeColumn 0.9s ease forwards;
}

.ofrecemos-card:nth-child(1) { animation-delay: 0.1s; }
.ofrecemos-card:nth-child(2) { animation-delay: 0.3s; }
.ofrecemos-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeColumn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ofrecemos-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(120deg, #e7a8a0, #f3d4cf, #e7a8a0);
    background-size: 200% 200%;
    animation: pastelBorder 6s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes pastelBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.ofrecemos-card .icon {
    font-size: 48px;
    margin-bottom: 18px;
    color: #b05f5f;
}

.ofrecemos-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #444;
}

.ofrecemos-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.ofrecemos-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* YOUTUBE */
.youtube-section {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}

.youtube-section h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
    background-image: linear-gradient(90deg, #e7a8a0, #f3d4cf, #e7a8a0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.youtube-subtitle {
    font-size: 17px;
    color: #555;
    margin-bottom: 35px;
}

.youtube-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 25px;
    max-width: 850px;
    margin: 0 auto 30px auto;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.youtube-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
}

.youtube-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-button {
    display: inline-block;
    padding: 12px 28px;
    background: #e7a8a0;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.youtube-button:hover {
    background: #d98f87;
}

.youtube-explore {
    max-width: 1100px !important;
    margin: 60px auto 80px auto;
    text-align: center;
    padding: 0 20px;
    padding-bottom: 20px !important;
}

.youtube-explore h3,
.youtube-explore h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    background-image: linear-gradient(90deg, #e7a8a0, #f3d4cf, #e7a8a0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.youtube-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 4px !important;
    scroll-snap-type: x mandatory;
}

.youtube-carousel::-webkit-scrollbar {
    height: 6px;
}

.youtube-carousel::-webkit-scrollbar-thumb {
    background: #e7a8a0;
    border-radius: 10px;
}

.youtube-item {
    min-width: 280px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    padding: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.youtube-item::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(120deg, #e7a8a0, #f3d4cf, #e7a8a0);
    background-size: 200% 200%;
    animation: pastelBorder 6s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.thumb-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.thumb-wrapper img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: 0.4s ease;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 42px;
    color: white;
    opacity: 0.85;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    pointer-events: none;
    transition: 0.3s ease;
}

.youtube-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.15);
}

.youtube-item:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
}

.youtube-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #444;
}

.youtube-item p {
    font-size: 15px;
    color: #555;
}

.youtube-more {
    display: inline-block;
    margin-top: 8px !important;
    padding: 12px 28px;
    background: #e7a8a0;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.youtube-more:hover {
    background: #d98f87;
}

.yt-kicker {
    display: inline-block !important;
    color: var(--mcp-gold) !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
}

.yt-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 26px !important;
    text-align: left !important;
}

.yt-card {
    background: #ffffff !important;
    border-radius: var(--mcp-radius-md) !important;
    overflow: hidden !important;
    box-shadow: var(--mcp-shadow-soft) !important;
    border: 1px solid var(--mcp-border) !important;
    cursor: pointer !important;
    transition: transform 0.35s cubic-bezier(.2,.8,.3,1), box-shadow 0.35s ease !important;
}

.yt-card:hover,
.yt-card:focus-visible {
    transform: translateY(-6px) !important;
    box-shadow: var(--mcp-shadow) !important;
}

.yt-card:focus-visible {
    outline: 2px solid var(--mcp-brand) !important;
    outline-offset: 3px !important;
}

.yt-thumb {
    position: relative !important;
    aspect-ratio: 16 / 9 !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
}

.yt-thumb img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease, opacity 0.3s ease !important;
}

.yt-card:hover .yt-thumb img {
    transform: scale(1.06) !important;
}

.yt-thumb::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.28)) !important;
}

.yt-thumb.yt-grad-1 { background: linear-gradient(135deg, var(--mcp-brand), var(--mcp-brand-dark)) !important; }
.yt-thumb.yt-grad-2 { background: linear-gradient(135deg, var(--mcp-gold), var(--mcp-brand)) !important; }
.yt-thumb.yt-grad-3 { background: linear-gradient(135deg, var(--mcp-brand-dark), #4a2c28) !important; }

.yt-play {
    position: relative !important;
    z-index: 1 !important;
    width: 58px !important;
    height: 58px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.92) !important;
    display: grid !important;
    place-items: center !important;
    box-shadow: 0 12px 26px rgba(0,0,0,0.28) !important;
    transition: transform 0.3s ease !important;
}

.yt-card:hover .yt-play {
    transform: scale(1.08) !important;
}

.yt-play svg {
    width: 20px !important;
    height: 20px !important;
    fill: var(--mcp-brand-dark) !important;
    margin-left: 3px !important;
}

.yt-tag {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 1 !important;
    background: rgba(0,0,0,0.34) !important;
    color: #fff !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    backdrop-filter: blur(6px) !important;
}

.yt-body {
    padding: 18px 20px 22px !important;
}

.yt-body h3 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.22rem !important;
    font-weight: 700 !important;
    color: var(--mcp-text) !important;
    margin: 0 0 6px !important;
    letter-spacing: -0.01em !important;
}

.yt-body p {
    margin: 0 !important;
    color: var(--mcp-muted) !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

.yt-lightbox {
    position: fixed !important;
    inset: 0 !important;
    z-index: 20000 !important;
    display: none !important;
    place-items: center !important;
    padding: 24px !important;
    background: rgba(20,11,9,0.72) !important;
    backdrop-filter: blur(6px) !important;
}

.yt-lightbox.open {
    display: grid !important;
}

.yt-lightbox-card {
    width: min(860px, 100%) !important;
    background: #201412 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 40px 90px rgba(0,0,0,0.5) !important;
}

.yt-player-stage {
    aspect-ratio: 16 / 9 !important;
    background: #000 !important;
}

.yt-player-stage iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block !important;
}

.yt-lightbox-footer {
    padding: 18px 22px 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    background: #201412 !important;
}

.yt-lightbox-footer h4 {
    margin: 0 !important;
    color: #fff !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 1.15rem !important;
}

.yt-lightbox-footer span {
    display: block !important;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.84rem !important;
    margin-top: 3px !important;
}

.yt-lightbox-actions {
    display: flex !important;
    gap: 10px !important;
    flex: 0 0 auto !important;
}

.yt-lightbox-actions a,
.yt-lightbox-actions button {
    border: none !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    font-size: 0.82rem !important;
    padding: 10px 16px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.yt-watch {
    background: linear-gradient(135deg, var(--mcp-brand), var(--mcp-brand-dark)) !important;
    color: #fff !important;
}

.yt-close {
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
}

@media (max-width: 860px) {
    .yt-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .yt-lightbox-footer {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .yt-lightbox-actions {
        width: 100% !important;
    }

    .yt-lightbox-actions a,
    .yt-lightbox-actions button {
        flex: 1 !important;
        text-align: center !important;
    }
}

/* SOCIAL */
.social-follow {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: white;
    background: #e7a8a0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-4px);
    background: #d98f86;
}

.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook {
    background: #1877f2;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, var(--mcp-brand-dark), var(--mcp-brand)) !important;
    color: #ffffff !important;
    padding: 56px 24px 26px !important;
    text-align: center !important;
    box-shadow: 0 -6px 30px rgba(74,39,32,0.14) !important;
}

.footer-inner {
    max-width: 1100px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 30px !important;
    text-align: left !important;
    padding-bottom: 30px !important;
    border-bottom: 1px solid rgba(255,255,255,0.18) !important;
}

.footer-brand {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    max-width: 360px !important;
}

.footer-logo {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    object-fit: cover !important;
    background: rgba(255,255,255,0.14) !important;
    padding: 4px !important;
    flex: 0 0 auto !important;
}

.footer-brand-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.footer-brand p {
    margin: 4px 0 0 !important;
    color: rgba(255,255,255,0.78) !important;
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
}

.footer-email {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.footer-email:hover {
    text-decoration: underline !important;
}

.footer-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px 22px !important;
    padding-top: 10px !important;
}

.footer-links a {
    color: rgba(255,255,255,0.88) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    letter-spacing: 0.01em !important;
    transition: color 0.2s ease !important;
}

.footer-links a:hover {
    color: var(--mcp-gold) !important;
}

.footer-bottom {
    max-width: 1100px !important;
    margin: 20px auto 0 !important;
    color: rgba(255,255,255,0.68) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.02em !important;
    font-variant-numeric: tabular-nums !important;
}

@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-brand {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-links {
        justify-content: center !important;
    }
}

.back-to-top {
    position: fixed !important;
    left: 20px !important;
    bottom: 22px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 999px !important;
    border: none !important;
    background: linear-gradient(135deg, var(--mcp-brand), var(--mcp-brand-dark)) !important;
    display: grid !important;
    place-items: center !important;
    box-shadow: 0 14px 30px rgba(74,39,32,0.28) !important;
    cursor: pointer !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(12px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s !important;
    z-index: 9998 !important;
}

.back-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.back-to-top:hover {
    transform: translateY(-3px) !important;
}

.back-to-top svg {
    width: 20px !important;
    height: 20px !important;
    fill: #ffffff !important;
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: opacity 0.25s ease, visibility 0.25s !important;
        transform: none !important;
    }

    .back-to-top:hover {
        transform: none !important;
    }
}

/* WHATSAPP */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 22px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    float: right;
    margin-top: 20px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* LOADER */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

#loadingOverlay .loader,
#loadingOverlay .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e7a8a0;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

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

/* DARK MODE */
body.dark {
    --light-bg: #1f1f1f;
    --text-color: #f2f2f2;
    --white: #2a2a2a;
    --divider: #444;
    --pastel-border: #444;
    --glass-bg: rgba(40,40,40,0.45);
    --glass-border: rgba(255,255,255,0.15);
}

body.dark header h1,
body.dark nav ul li a {
    color: #f2f2f2;
}

body.dark .donate-text,
body.dark .donate-verse,
body.dark .card,
body.dark .youtube-card {
    background: rgba(255,255,255,0.08);
    color: #f2f2f2;
}

body.dark .modal-content,
body.dark .join-modal-content {
    background: rgba(40,40,40,0.85);
    color: #f2f2f2;
}

body.dark footer {
    background: #b05f5f;
}

/* LOADERS DE SECCIÓN */
.section-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 28px 20px;
    margin: 10px auto 20px;
    max-width: 320px;
    border-radius: 18px;
    background: rgba(231, 168, 160, 0.10);
    border: 1px solid rgba(231, 168, 160, 0.28);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.section-loader-spinner {
    width: 34px;
    height: 34px;
    border: 4px solid rgba(231, 168, 160, 0.25);
    border-top-color: #e7a8a0;
    border-radius: 50%;
    animation: sectionSpin 0.8s linear infinite;
}

.section-loader p {
    margin: 0;
    color: #b05f5f;
    font-weight: 700;
    font-size: 15px;
}

@keyframes sectionSpin {
    to { transform: rotate(360deg); }
}

/* =========================
   INVITADAS – FINAL CLEAN
========================= */
#invitees {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

#invitees .invitees-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px;
    overflow: hidden;
}

#invitees .invitees-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 28px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    align-items: stretch;
}

#invitees .invitees-track.card-grid {
    grid-template-columns: none !important;
    margin-top: 30px;
}

#invitees .card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(231, 168, 160, 0.22);
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    padding: 18px;
    gap: 14px;
    min-height: 0;
    height: auto;
}

#invitees .card:hover {
    transform: translateY(-6px);
    border-color: rgba(231, 168, 160, 0.5);
    box-shadow: 0 18px 40px rgba(231, 168, 160, 0.20);
    z-index: 10;
}

#invitees .card:hover::after {
    display: none;
}

#invitees .card img {
    width: 100%;
    height: 520px;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 0;
    border-radius: 18px;
    background: #f7ecea;
    flex-shrink: 0;
}

#invitees .card h3 {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    color: #333;
    margin: 6px 8px 2px;
    text-align: center;
    padding: 0;
}

#invitees .card .invitee-title,
#invitees .card p {
    font-size: 16px;
    line-height: 1.35;
    color: #555;
    margin: 0 8px 8px;
    text-align: center;
    padding: 0;
}

#invitees .invitees-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, rgba(231, 168, 160, 0.96), rgba(217, 143, 135, 0.92));
    color: white;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    box-shadow: 0 14px 30px rgba(176, 95, 95, 0.24);
    opacity: 0.9;
}

#invitees .invitees-arrow:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 18px 34px rgba(176, 95, 95, 0.30);
    opacity: 1;
}

#invitees .invitees-arrow.left {
    left: 8px;
}

#invitees .invitees-arrow.right {
    right: 8px;
}

#invitees .invitees-arrow.hidden,
#invitees .invitees-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 1025px) {
    #invitees .invitees-track .card {
        min-width: calc((100% - 56px) / 3);
        flex: 0 0 calc((100% - 56px) / 3);
        width: calc((100% - 56px) / 3);
    }

    #invitees .card img {
        height: 520px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #invitees .invitees-wrapper {
        padding: 0 34px;
    }

    #invitees .invitees-track {
        gap: 18px;
    }

    #invitees .invitees-track .card {
        min-width: calc((100% - 18px) / 2);
        flex: 0 0 calc((100% - 18px) / 2);
        width: calc((100% - 18px) / 2);
    }

    #invitees .card img {
        height: 470px;
    }

    #invitees .invitees-arrow {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    #invitees .invitees-wrapper {
        padding: 0 18px;
    }

    #invitees .invitees-track {
        gap: 12px;
    }

    #invitees .invitees-track .card {
        min-width: 100%;
        flex: 0 0 100%;
        width: 100%;
    }

    #invitees .card {
        border-radius: 22px;
        padding: 14px;
    }

    #invitees .card img {
        height: 460px;
        border-radius: 16px;
        object-fit: cover;
        object-position: center top;
    }

    #invitees .card h3 {
        font-size: 21px;
        margin: 4px 8px 2px;
    }

    #invitees .card .invitee-title,
    #invitees .card p {
        font-size: 15px;
        margin: 0 8px 6px;
    }

    #invitees .invitees-arrow {
        width: 46px;
        height: 46px;
        font-size: 23px;
    }

    #invitees .invitees-arrow.left {
        left: 2px;
    }

    #invitees .invitees-arrow.right {
        right: 2px;
    }
}


@media (max-width: 480px) {
    #invitees .invitees-wrapper {
        padding: 0 14px;
    }

    #invitees .card img {
        height: 420px;
        object-fit: cover;
        object-position: center top;
    }

    #invitees .card h3 {
        font-size: 19px;
    }

    #invitees .card .invitee-title,
    #invitees .card p {
        font-size: 14px;
    }
}

/* =========================
   GALERÍA – STACK PREMIUM POR ACTIVIDAD
========================= */
#gallery {
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 22px;
    text-align: center;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 auto 32px;
}

.gallery-tabs .tab {
    appearance: none;
    border: 1px solid rgba(231, 168, 160, 0.18);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #7a5b5b;
    border-radius: 999px;
    padding: 12px 20px;
    min-height: 46px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.gallery-tabs .tab:hover,
.gallery-tabs .tab:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.94);
    color: #b05f5f;
    border-color: rgba(231, 168, 160, 0.38);
    box-shadow: 0 14px 28px rgba(176, 95, 95, 0.10);
    outline: none;
}

.gallery-tabs .tab.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 213, 209, 0.95));
    color: #9b5f5f;
    border-color: rgba(231, 168, 160, 0.46);
    box-shadow: 0 14px 28px rgba(176, 95, 95, 0.14);
}

.gallery-content {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}

.gallery-row {
    display: none;
    width: 100%;
}

.gallery-row.active {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 36px;
    align-items: start;
}

.gallery-activity-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.gallery-activity-block + .gallery-activity-block {
    margin-top: 0;
}

.gallery-activity-title {
    font-size: 30px;
    font-weight: 800;
    color: #9b5f5f;
    margin: 0;
    text-align: center;
    padding-left: 0;
    min-height: 3.4em;
    max-width: min(100%, 420px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.12;
}

.gallery-stack-card {
    position: relative;
    width: 260px;
    height: 260px;
    cursor: pointer;
    border-radius: 22px;
    outline: none;
    transition: transform 0.3s ease;
}

.gallery-stack-card:hover,
.gallery-stack-card:focus-visible {
    transform: translateY(-6px) scale(1.02);
}

.gallery-stack-photo {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    border: 8px solid rgba(255,255,255,0.92);
    background: #fff;
    transition: transform 0.3s ease;
}

.gallery-stack-photo.stack-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(0deg);
}

.gallery-stack-photo.stack-2 {
    top: 8px;
    left: -10px;
    z-index: 2;
    transform: rotate(-4deg);
}

.gallery-stack-photo.stack-3 {
    top: 12px;
    left: 10px;
    z-index: 1;
    transform: rotate(4deg);
}

.gallery-stack-card:hover .stack-2,
.gallery-stack-card:focus-visible .stack-2 {
    transform: rotate(-7deg) translateX(-4px);
}

.gallery-stack-card:hover .stack-3,
.gallery-stack-card:focus-visible .stack-3 {
    transform: rotate(7deg) translateX(4px);
}

.gallery-stack-overlay {
    position: absolute;
    left: 50%;
    bottom: -52px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    text-align: center;
}

.gallery-stack-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    color: #9b5f5f;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.gallery-stack-count {
    font-size: 14px;
    color: #7b6666;
    font-weight: 600;
}

.gallery-activity-photos {
    display: none !important;
}

@media (max-width: 1180px) {
    .gallery-row.active {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 24px;
    }
}

@media (max-width: 768px) {
    #gallery {
        padding: 52px 16px;
    }

    .gallery-row.active {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .gallery-tabs {
        gap: 10px;
        margin-bottom: 22px;
    }

    .gallery-tabs .tab {
        min-height: 44px;
        padding: 11px 16px;
        font-size: 14px;
    }

    .gallery-activity-block {
        align-items: center;
        gap: 14px;
    }

    .gallery-activity-block + .gallery-activity-block {
        margin-top: 34px;
    }

    .gallery-activity-title {
        font-size: 22px;
        text-align: center;
        padding-left: 0;
    }

    .gallery-stack-card {
        width: 210px;
        height: 210px;
    }

    .gallery-stack-photo {
        border-width: 6px;
        border-radius: 18px;
    }

    .gallery-stack-overlay {
        bottom: -48px;
    }
}

@media (max-width: 480px) {
    #gallery {
        padding: 46px 14px;
    }

    .gallery-tabs {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
    }

    .gallery-tabs .tab {
        width: 100%;
        justify-content: center;
    }

    .gallery-stack-card {
        width: 180px;
        height: 180px;
    }

    .gallery-activity-title {
        font-size: 20px;
    }

    .gallery-stack-label {
        font-size: 13px;
        padding: 7px 14px;
    }

    .gallery-stack-count {
        font-size: 13px;
    }
}
/* =========================
   SOUNDCLOUD PLAYER – APPLE MUSIC PREMIUM
========================= */
#soundcloud {
    max-width: 1240px;
    margin: 90px auto 50px;
    padding: 0 22px;
}

#soundcloud h2::before {
    content: "";
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-image: url('../images/tu-foto.JPG');
    background-color: #fff;
    filter: brightness(1.15) contrast(1.1) saturate(1.1);
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
    background-position: center;
    display: inline-block;
    margin-right: 14px;
    vertical-align: middle;
    position: relative;

    /* Premium glass border */
    box-shadow:
        0 0 0 3px rgba(255,255,255,0.9),
        0 0 14px rgba(231,168,160,0.55),
        0 6px 18px rgba(0,0,0,0.18);

    /* Smooth animation */
    animation: avatarGlow 3.2s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    flex: 0 0 auto;
    min-width: 52px;
}

/* Hover premium interaction */
#soundcloud h2:hover::before {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.2) contrast(1.12) saturate(1.15);

    box-shadow:
        0 0 0 3px rgba(255,255,255,1),
        0 0 24px rgba(231,168,160,0.9),
        0 12px 26px rgba(0,0,0,0.22);
}

/* Glow animation */
@keyframes avatarGlow {
    0% {
        box-shadow:
            0 0 0 3px rgba(255,255,255,0.9),
            0 0 10px rgba(231,168,160,0.45),
            0 6px 16px rgba(0,0,0,0.15);
        filter: brightness(1.15) contrast(1.1);
    }
    50% {
        box-shadow:
            0 0 0 3px rgba(255,255,255,1),
            0 0 22px rgba(231,168,160,0.85),
            0 10px 22px rgba(0,0,0,0.20);
        filter: brightness(1.15) contrast(1.1);
    }
    100% {
        box-shadow:
            0 0 0 3px rgba(255,255,255,0.9),
            0 0 10px rgba(231,168,160,0.45),
            0 6px 16px rgba(0,0,0,0.15);
        filter: brightness(1.15) contrast(1.1);
    }
}

#soundcloud h2 {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
}

@media (max-width: 1024px) {
    #soundcloud {
        padding: 0 18px;
    }
}

@media (max-width: 768px) {
    #soundcloud {
        margin: 70px auto 34px;
        padding: 0 14px;
    }
}
/* =========================
   FINAL RESPONSIVE FIXES
   MENU / CONTACT / TABLET / MOBILE
========================= */
@media (max-width: 850px) {
    header {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px;
        padding: 10px 14px !important;
        min-height: 74px;
        top: 10px;
        width: calc(100% - 20px);
        max-width: 1100px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        box-shadow:
            0 10px 28px rgba(15,23,42,0.10),
            0 1px 0 rgba(255,255,255,0.86) inset;
    }

    header img,
    .header-left img {
        height: 86px !important;
        width: auto !important;
        max-height: 86px !important;
        flex-shrink: 0;
        object-fit: contain;
    }

    header h1,
    .header-left h1 {
        margin: 0;
        margin-left: -3px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        letter-spacing: -0.04em !important;
        line-height: 1.02;
        text-align: left !important;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 170px;
    }

    .header-left {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 64px);
    }

    .hamburger {
        display: flex !important;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        flex-shrink: 0;
        position: relative;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: fixed !important;
        top: 80px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: min(92vw, 340px) !important;
        max-width: calc(100vw - 20px);
        margin: 0;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: saturate(180%) blur(22px);
        -webkit-backdrop-filter: saturate(180%) blur(22px);
        border: 1px solid rgba(255,255,255,0.78);
        box-shadow:
            0 18px 40px rgba(15,23,42,0.14),
            0 1px 0 rgba(255,255,255,0.86) inset;
        opacity: 0;
        pointer-events: none;
        z-index: 2200;
    }

    nav ul.show,
    nav ul.open,
    nav ul.active,
    nav.active ul,
    header.menu-open nav ul,
    body.menu-open nav ul {
        display: flex !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 50px;
        padding: 12px 16px;
        border-radius: 16px;
        background: rgba(255,255,255,0.58);
        border: 1px solid rgba(255,255,255,0.66);
        color: #4b5563;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
    }

    nav ul li a:hover,
    nav ul li a:focus-visible {
        background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(243,213,209,0.72));
        color: #9b5f5f;
        outline: none;
        box-shadow: 0 10px 20px rgba(176,95,95,0.10);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
    }

    section {
        padding: 35px 18px;
    }

    .contact-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        align-items: start !important;
        max-width: 100%;
    }

    .contact-form-card,
    .calendar-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 18px;
        border-radius: 18px;
    }

    .contact-form-card {
        order: 1;
    }

    .calendar-card {
        order: 2;
    }

    .calendar-head h3 {
        font-size: 24px;
    }

    .ofrecemos-section {
        max-width: 100% !important;
        margin: 50px auto;
        padding: 36px 18px;
        border-radius: 24px;
    }

    .ofrecemos-section h2 {
        font-size: 24px !important;
        line-height: 1.2;
        margin-bottom: 26px;
        text-align: center;
    }

    .ofrecemos-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .ofrecemos-card {
        width: 100%;
        min-height: auto;
        padding: 28px 20px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .ofrecemos-card .icon {
        font-size: 40px;
        margin-bottom: 14px;
    }

    .ofrecemos-card h3 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .ofrecemos-card p {
        font-size: 18px;
        line-height: 1.6;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    header {
        min-height: 70px;
        padding: 8px 12px !important;
    }

    header img,
    .header-left img {
        height: 76px !important;
        max-height: 76px !important;
    }

    header h1,
    .header-left h1 {
        margin: 0;
        margin-left: -3px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        letter-spacing: -0.04em !important;
        line-height: 1.02;
        max-width: 145px;
    }

    .header-left {
        gap: 6px;
        max-width: calc(100% - 58px);
    }

    .hamburger {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .hamburger span {
        width: 22px;
    }

    .hamburger span:nth-child(1) {
        transform: translateY(-7px);
    }

    .hamburger span:nth-child(3) {
        transform: translateY(7px);
    }
    nav ul {
        top: 78px !important;
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px);
        padding: 16px;
        display: none;
    }

    nav ul.show,
    nav ul.open,
    nav ul.active,
    nav.active ul,
    header.menu-open nav ul,
    body.menu-open nav ul {
        display: flex !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .contact-form-card,
    .calendar-card {
        padding: 16px;
    }

    .ofrecemos-section {
        padding: 30px 14px;
    }

    .ofrecemos-section h2 {
        font-size: 20px !important;
    }

    .ofrecemos-card {
        padding: 24px 16px;
    }

    .ofrecemos-card .icon {
        font-size: 34px;
    }

    .ofrecemos-card h3 {
        font-size: 20px;
    }

    .ofrecemos-card p {
        font-size: 16px;
    }
}


/* =========================
   SOUNDCLOUD MINI PREMIUM
========================= */
#soundcloud {
    max-width: 980px;
    margin: 70px auto 40px;
    padding: 0 18px;
}

.soundcloud-mini {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(231,168,160,0.18);
    border-radius: 28px;
    box-shadow: 0 16px 34px rgba(0,0,0,0.08);
    padding: 22px;
}

.sc-mini-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.sc-mini-head p {
    margin: 0;
    color: #6f5a5a;
    font-size: 14px;
    text-align: left;
}

.sc-mini-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff8a65, #e7a8a0);
    box-shadow: 0 10px 22px rgba(176,95,95,0.18);
}

.sc-mini-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(135deg, rgba(231,168,160,0.14), rgba(243,213,209,0.22));
    border: 1px solid rgba(231,168,160,0.18);
    border-radius: 22px;
    padding: 16px;
    margin-bottom: 16px;
}

.sc-mini-now {
    min-width: 0;
    text-align: left;
}

.sc-mini-badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.7);
    color: #9b5f5f;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sc-mini-now h3 {
    margin: 0;
    font-size: 20px;
    color: #413737;
    font-weight: 800;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.sc-mini-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sc-mini-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    color: #9b5f5f;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}

.sc-mini-btn-play {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #E7A8A0, #f3d5d1);
    color: #fff;
    font-size: 22px;
}

.sc-mini-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 4px;
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.sc-mini-list ul,
.sc-mini-list li {
    list-style: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
}

.sc-mini-list::-webkit-scrollbar {
    width: 6px;
}

.sc-mini-list::-webkit-scrollbar-thumb {
    background: rgba(231,168,160,0.45);
    border-radius: 999px;
}

.sc-track {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #4a3f3f;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(231,168,160,0.10);
    transition: 0.22s ease;
    list-style: none !important;
    position: relative;
}

.sc-track::before,
.sc-track li::before {
    content: none !important;
    display: none !important;
}

.sc-track:hover {
    background: rgba(243,213,209,0.7);
    transform: translateY(-1px);
}

.sc-track.active {
    background: linear-gradient(135deg, #e7a8a0, #f3d5d1);
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(176,95,95,0.14);
}

.sc-track-placeholder {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.6);
    text-align: center;
    color: #7b6666;
}

.sc-hidden-embed {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    #soundcloud {
        margin: 55px auto 28px;
        padding: 0 14px;
    }

    .soundcloud-mini {
        padding: 16px;
        border-radius: 22px;
    }

    .sc-mini-head h2 {
        font-size: 22px;
    }

    .sc-mini-player {
        flex-direction: column;
        align-items: stretch;
    }

    .sc-mini-now h3 {
        font-size: 18px;
        white-space: normal;
    }

    .sc-mini-controls {
        justify-content: center;
    }

    .sc-mini-list {
        max-height: 220px;
    }
}

.sc-mini-head h2 {
    margin: 0 0 4px;
    font-size: 28px;
    color: #b05f5f;
    text-align: left;
}

.sc-mini-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
#soundcloud h2::before {
    width: 44px;
    height: 44px;
    margin-right: 10px;
}
.sc-mini-list.sc-list-scrollable {
    mask-image: linear-gradient(to bottom, black 0%, black 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 82%, transparent 100%);
    scroll-behavior: smooth;
}

.sc-mini-list.sc-list-compact {
    mask-image: none;
    -webkit-mask-image: none;
}

.sc-mini-list.sc-list-scrollable::-webkit-scrollbar {
    width: 6px;
}

.sc-mini-list.sc-list-scrollable::-webkit-scrollbar-thumb {
    background: rgba(231,168,160,0.45);
    border-radius: 999px;
}

.sc-mini-list.sc-list-scrollable::-webkit-scrollbar-track {
    background: transparent;
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.form-message.ok {
  display: block;
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message.err {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
/* =========================
   COLOR PREMIUM MCP
========================= */
:root {
    --text-color: #6E4B5E;
    --heading-color: #6E4B5E;
    --body-soft: #7A5C61;
    --nav-color: #6E4B5E;
    --deep-rose: #8D5B6A;
}

/* Textos principales */
body,
.card h3,
.calendar-item-title,
.youtube-item h4,
.ofrecemos-card h3 {
    color: var(--text-color);
}

header h1,
section h2,
.hero h2 {
    color: var(--heading-color);
}

nav ul li a {
    color: var(--nav-color);
}

nav ul li a:hover {
    color: var(--deep-rose);
}

/* Párrafos suaves */
.hero p,
section p,
.card p,
.youtube-item p,
.ofrecemos-card p,
.calendar-item-desc {
    color: var(--body-soft);
}

/* =========================
   ARROWS DESTACADAS / INVITADAS PREMIUM
========================= */
#invitees .invitees-arrow {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.95), rgba(255,255,255,0.45) 42%, rgba(243,213,209,0.58) 100%);
    color: #8D5B6A;
    border: 1px solid rgba(255,255,255,0.75);
    box-shadow:
        0 16px 34px rgba(141, 91, 106, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.85),
        inset 0 -1px 0 rgba(231,168,160,0.18);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    font-size: 0;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, opacity 0.28s ease;
}


#invitees .invitees-arrow::before {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

#invitees .invitees-arrow.left::before,
#invitees .invitees-arrow.right::before {
    content: none !important;
}

#invitees .invitees-arrow:hover {
    transform: translateY(-50%) scale(1.08);
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,1), rgba(255,255,255,0.62) 42%, rgba(231,168,160,0.62) 100%);
    color: #6E4B5E;
    box-shadow:
        0 20px 42px rgba(141, 91, 106, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.95);
}

#invitees .invitees-arrow.left {
    left: 10px;
}

#invitees .invitees-arrow.right {
    right: 10px;
}

@media (max-width: 768px) {
    #invitees .invitees-arrow {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    #invitees .invitees-arrow::before {
        font-size: 24px;
    }
}

/* =========================================================
   MCP930 — FULL PREMIUM DESIGN ALIGNMENT OVERRIDES
   Mantiene la estructura actual, pero unifica diseño, tamaños,
   espaciados, header, hero, cards, secciones y responsive.
========================================================= */
:root {
    --mcp-bg: #fff8f5;
    --mcp-bg-soft: #fff1ec;
    --mcp-surface: rgba(255, 255, 255, 0.74);
    --mcp-surface-strong: rgba(255, 255, 255, 0.92);
    --mcp-border: rgba(167, 78, 70, 0.14);
    --mcp-border-light: rgba(255, 255, 255, 0.78);
    --mcp-text: #33211f;
    --mcp-muted: #795f58;
    --mcp-heading: #70485f;
    --mcp-brand: #a64b43;
    --mcp-brand-dark: #7b3732;
    --mcp-gold: #d8a85c;
    --mcp-radius-xl: 38px;
    --mcp-radius-lg: 30px;
    --mcp-radius-md: 22px;
    --mcp-shadow: 0 28px 90px rgba(74, 39, 32, 0.13);
    --mcp-shadow-soft: 0 16px 46px rgba(74, 39, 32, 0.09);
    --mcp-max: 1180px;
}

html {
    scroll-padding-top: 112px;
}

body {
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif !important;
    color: var(--mcp-text) !important;
    background:
        radial-gradient(circle at 10% 4%, rgba(216, 168, 92, 0.18), transparent 32rem),
        radial-gradient(circle at 92% 8%, rgba(231, 168, 160, 0.34), transparent 36rem),
        linear-gradient(180deg, #fffaf7 0%, #fff4ef 48%, #ffffff 100%) !important;
    overflow-x: hidden;
}

body::before {
    display: none !important;
}

body::after {
    display: none !important;
}

img {
    max-width: 100%;
}

/* ---------- Global layout ---------- */
section,
#invitees,
#events,
#gallery,
#soundcloud,
#contact,
.youtube-explore,
.ofrecemos-section,
.join-section,
.scripture,
#about,
#donate {
    width: min(var(--mcp-max), calc(100% - 44px)) !important;
    max-width: var(--mcp-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 82px 0 !important;
    text-align: center !important;
}

.divider-glow {
    width: min(860px, calc(100% - 80px)) !important;
    height: 1px !important;
    margin: 4px auto !important;
    background: linear-gradient(90deg, transparent, rgba(216, 168, 92, 0.62), rgba(166, 75, 67, 0.24), transparent) !important;
    box-shadow: 0 0 30px rgba(216, 168, 92, 0.18) !important;
}

.section-header-premium {
    max-width: 820px !important;
    margin: 0 auto 34px !important;
    padding: 0 !important;
    text-align: center !important;
}

.section-header-premium h2,
section h2,
.ofrecemos-section h2,
.youtube-explore h2,
#soundcloud h2,
#contact h2 {
    display: block !important;
    margin: 0 auto 14px !important;
    font-family: "Playfair Display", Georgia, serif !important;
    color: #b26464 !important;
    font-size: clamp(2.25rem, 4vw, 4rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    text-align: center !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

section h2::before,
section h2::after,
section h2 span::before {
    display: none !important;
}

.section-header-premium p,
.section-header-premium .subtitle,
.youtube-subtitle,
section p {
    color: var(--mcp-muted) !important;
    line-height: 1.75 !important;
}

.icon {
    color: var(--mcp-gold) !important;
}

/* ---------- Header premium ---------- */
header {
    position: sticky !important;
    top: 16px !important;
    left: auto !important;
    transform: none !important;
    z-index: 2000 !important;
    width: min(var(--mcp-max), calc(100% - 44px)) !important;
    min-height: 78px !important;
    margin: 16px auto 0 !important;
    padding: 10px 14px 10px 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    border-radius: 999px !important;
    border: 1px solid var(--mcp-border-light) !important;
    background: rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(24px) saturate(165%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(165%) !important;
    box-shadow: 0 18px 58px rgba(74, 39, 32, 0.12) !important;
    overflow: visible !important;
}

.header-left {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    min-width: 230px !important;
    flex: 0 0 auto !important;
}

.header-title-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    min-width: 0 !important;
}

.header-subtitle {
    color: #9a7770 !important;
    font-size: 0.6rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
}

.logo,
.header-left .logo {
    width: 92px !important;
    height: 58px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 0 0 auto !important;
}

header img,
.logo img,
.header-left img {
    width: 92px !important;
    height: auto !important;
    max-height: 58px !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 8px 16px rgba(74, 39, 32, 0.08)) !important;
}

header h1,
.header-left h1 {
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(1rem, 1.55vw, 1.35rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
    color: var(--mcp-heading) !important;
    white-space: nowrap !important;
    transform: none !important;
}

header h1::after {
    display: none !important;
}

header nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
}

nav ul,
#nav-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 4px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex-wrap: nowrap !important;
}

nav ul li a,
#nav-menu a {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 13px !important;
    border-radius: 999px !important;
    color: #6d514c !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    letter-spacing: -0.01em !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: 0.22s ease !important;
}

nav ul li a:hover,
#nav-menu a:hover,
#openJoinModalMenu:hover {
    color: var(--mcp-brand-dark) !important;
    background: rgba(166, 75, 67, 0.08) !important;
    transform: translateY(-1px) !important;
    box-shadow: none !important;
}

#nav-menu .menu-donate-btn,
.menu-donate-btn {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--mcp-brand), var(--mcp-brand-dark)) !important;
    box-shadow: 0 14px 32px rgba(166, 75, 67, 0.22) !important;
}

/* ---------- Hero premium stable ---------- */
.hero,
.hero.hero-premium {
    position: relative !important;
    width: min(var(--mcp-max), calc(100% - 44px)) !important;
    max-width: var(--mcp-max) !important;
    min-height: auto !important;
    margin: 20px auto 0 !important;
    padding: clamp(76px, 7vw, 112px) clamp(24px, 4vw, 54px) clamp(54px, 6vw, 74px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.76fr) !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(22px, 3.2vw, 42px) !important;
    overflow: hidden !important;
    border-radius: 42px !important;
    background:
        radial-gradient(circle at 88% 20%, rgba(231, 168, 160, 0.34), transparent 30rem),
        radial-gradient(circle at 18% 18%, rgba(216, 168, 92, 0.15), transparent 28rem),
        linear-gradient(135deg, #fff9f6 0%, #fff1ed 48%, #fffaf7 100%) !important;
    box-shadow: var(--mcp-shadow) !important;
    text-align: left !important;
}

.hero::before,
.hero.hero-premium::before {
    content: "" !important;
    position: absolute !important;
    inset: 22px !important;
    border: 1px solid rgba(255, 255, 255, 0.78) !important;
    border-radius: 32px !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.hero::after,
.hero.hero-premium::after {
    content: "" !important;
    position: absolute !important;
    width: 380px !important;
    height: 380px !important;
    right: -90px !important;
    bottom: -140px !important;
    background: radial-gradient(circle, rgba(166, 75, 67, 0.13), transparent 68%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.hero-premium-content,
.hero-premium-panel,
.hero > div {
    position: relative !important;
    z-index: 2 !important;
}

.hero-kicker {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 22px !important;
    padding: 10px 16px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.76) !important;
    border: 1px solid rgba(166, 75, 67, 0.12) !important;
    color: #8e403b !important;
    font-size: 0.8rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    box-shadow: 0 12px 32px rgba(74, 39, 32, 0.07) !important;
}

.hero h2,
.hero.hero-premium h2 {
    max-width: 560px !important;
    margin: 0 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(3rem, 4.75vw, 4.95rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em !important;
    color: #33201d !important;
    text-align: left !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    display: block !important;
}

.hero h2 span,
.hero.hero-premium h2 span {
    display: block !important;
}

.hero h2 .hero-title-accent,
.hero.hero-premium h2 .hero-title-accent {
    color: var(--mcp-heading) !important;
}

.hero p,
.hero.hero-premium p {
    max-width: 560px !important;
    margin: 26px 0 0 !important;
    color: var(--mcp-muted) !important;
    font-size: clamp(1rem, 1.35vw, 1.18rem) !important;
    line-height: 1.72 !important;
    text-align: left !important;
}

.hero-premium-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 14px !important;
    margin-top: 32px !important;
}

.btn,
form button,
.donate-btn-new,
.youtube-more,
.method,
.hero-main-btn,
.hero-secondary-link {
    min-height: 52px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 24px !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--mcp-brand), var(--mcp-brand-dark)) !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    box-shadow: 0 16px 38px rgba(166, 75, 67, 0.24) !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease !important;
    cursor: pointer !important;
}

.hero-secondary-link {
    color: var(--mcp-brand-dark) !important;
    background: rgba(255, 255, 255, 0.76) !important;
    border: 1px solid rgba(166, 75, 67, 0.12) !important;
    box-shadow: 0 12px 30px rgba(74, 39, 32, 0.07) !important;
}

.btn:hover,
form button:hover,
.donate-btn-new:hover,
.youtube-more:hover,
.method:hover,
.hero-secondary-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 46px rgba(166, 75, 67, 0.30) !important;
}

.hero-premium-panel {
    min-height: 430px !important;
    border-radius: 36px !important;
    padding: 16px !important;
    background: rgba(255, 255, 255, 0.46) !important;
    border: 1px solid rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    box-shadow: 0 26px 76px rgba(74, 39, 32, 0.14) !important;
    transform: rotate(0.4deg) !important;
    align-self: stretch !important;
}

.hero-logo-card {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 398px !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.36), rgba(166,75,67,0.08)),
        radial-gradient(circle at 50% 40%, rgba(255,255,255,0.68), transparent 22rem) !important;
}

.hero-logo-card img {
    width: min(88%, 520px) !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    filter: drop-shadow(0 22px 40px rgba(74, 39, 32, 0.14)) !important;
    transform: rotate(-0.4deg) !important;
}

.hero-floating-card {
    position: absolute !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 20px !important;
    display: grid !important;
    gap: 6px !important;
    padding: 18px 20px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.84) !important;
    border: 1px solid rgba(255, 255, 255, 0.88) !important;
    box-shadow: 0 18px 46px rgba(74, 39, 32, 0.13) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    text-align: center !important;
}

.hero-floating-card strong {
    color: #8e403b !important;
    font-size: 1.05rem !important;
}

.hero-floating-card span {
    color: var(--mcp-muted) !important;
    line-height: 1.5 !important;
    font-weight: 650 !important;
}

.hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    max-width: 620px !important;
    margin-top: 38px !important;
}

.hero-stat {
    min-height: 100px !important;
    padding: 16px 14px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.66) !important;
    border: 1px solid rgba(166, 75, 67, 0.10) !important;
    box-shadow: 0 14px 34px rgba(74, 39, 32, 0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.hero-stat strong {
    color: #8e403b !important;
    font-size: 1.05rem !important;
    margin-bottom: 2px !important;
}

.hero-stat span {
    color: var(--mcp-muted) !important;
    font-size: 0.9rem !important;
    font-weight: 650 !important;
}

/* ---------- Shared premium cards ---------- */
.card,
.ofrecemos-card,
.youtube-item,
.donate-container,
#about,
.verse-block,
.contact-form-card,
.calendar-card,
.soundcloud-mini,
.join-grid,
.gallery-content,
.events-wrapper,
#invitees .invitees-wrapper {
    border: 1px solid var(--mcp-border-light) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.80), rgba(255, 244, 240, 0.56)) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border-radius: var(--mcp-radius-lg) !important;
    box-shadow: var(--mcp-shadow-soft) !important;
}

.card,
.ofrecemos-card,
.youtube-item {
    padding: 22px !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

.card:hover,
.ofrecemos-card:hover,
.youtube-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--mcp-shadow) !important;
    border-color: rgba(166, 75, 67, 0.20) !important;
}

/* ---------- Invitees ---------- */
#invitees .invitees-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: var(--mcp-max) !important;
    margin: 0 auto !important;
    padding: 24px 58px !important;
    overflow: hidden !important;
}

#invitees .invitees-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    align-items: stretch !important;
    margin: 0 !important;
}

#invitees .invitees-track .card {
    flex: 0 0 calc((100% - 48px) / 3) !important;
    width: calc((100% - 48px) / 3) !important;
    min-width: calc((100% - 48px) / 3) !important;
    border-radius: 28px !important;
    padding: 14px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    overflow: hidden !important;
}

#invitees .card img {
    width: 100% !important;
    height: 440px !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 22px !important;
    margin: 0 0 16px !important;
}

#invitees .card h3 {
    color: var(--mcp-text) !important;
    font-size: 1.35rem !important;
    margin: 0 0 4px !important;
    text-align: center !important;
}

#invitees .card p,
#invitees .invitee-title {
    color: var(--mcp-muted) !important;
    text-align: center !important;
    margin: 0 0 8px !important;
}

#invitees .invitees-arrow,
.events-arrow {
    width: 52px !important;
    height: 52px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    color: var(--mcp-brand-dark) !important;
    border: 1px solid rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 16px 34px rgba(74, 39, 32, 0.13) !important;
    backdrop-filter: blur(18px) saturate(170%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(170%) !important;
}

#invitees .invitees-arrow.left,
.events-arrow.left {
    left: 12px !important;
}

#invitees .invitees-arrow.right,
.events-arrow.right {
    right: 12px !important;
}

/* ---------- Events ---------- */
#events {
    max-width: var(--mcp-max) !important;
}

.events-wrapper {
    max-width: var(--mcp-max) !important;
    padding: 24px 58px !important;
}

.events-track {
    display: flex !important;
    gap: 24px !important;
    align-items: stretch !important;
}

.events-track .card {
    flex: 0 0 calc((100% - 48px) / 3) !important;
    width: calc((100% - 48px) / 3) !important;
    min-width: calc((100% - 48px) / 3) !important;
    min-height: 260px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.card-icon,
.ofrecemos-card .icon {
    width: 64px !important;
    height: 64px !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 auto 16px !important;
    border-radius: 22px !important;
    background: rgba(216, 168, 92, 0.14) !important;
    font-size: 2rem !important;
    text-align: center !important;
}

.ofrecemos-card .icon i {
    color: var(--mcp-brand) !important;
    font-size: 1.7rem !important;
}

.ofrecemos-card .icon.icon-image {
    overflow: hidden !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.78) !important;
}

.ofrecemos-card .icon.icon-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: inherit !important;
}

/* ---------- About / scripture / ofrecemos / donate ---------- */
#about,
.verse-block,
.donate-container {
    padding: clamp(28px, 5vw, 54px) !important;
}

#about p,
.verse-block p,
.donate-text,
.donate-verse {
    max-width: 780px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.about-more-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 22px !important;
    padding: 0 26px !important;
    min-height: 46px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--mcp-brand), var(--mcp-brand-dark)) !important;
    color: #ffffff !important;
    font-size: 0.92rem !important;
    font-weight: 850 !important;
    letter-spacing: 0.01em !important;
    box-shadow: 0 14px 30px rgba(166,75,67,0.24) !important;
    cursor: pointer !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}

.about-more-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 18px 36px rgba(166,75,67,0.3) !important;
}

.verse-block p {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(1.45rem, 3vw, 2.7rem) !important;
    line-height: 1.28 !important;
    color: var(--mcp-brand-dark) !important;
}

.ofrecemos-section {
    padding: 82px 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.ofrecemos-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    padding: 26px !important;
}

.ofrecemos-card {
    min-height: 260px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.66) !important;
    box-shadow: none !important;
}

.ofrecemos-card::before {
    display: none !important;
}

.ofrecemos-card h3,
.card h3,
.youtube-item h4 {
    color: var(--mcp-text) !important;
    font-weight: 850 !important;
}

/* ---------- Join ---------- */
.join-section {
    background: transparent !important;
}

.join-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr) !important;
    align-items: center !important;
    gap: clamp(22px, 4vw, 46px) !important;
    padding: clamp(22px, 4vw, 42px) !important;
    text-align: left !important;
}

.join-copy,
.join-copy h2,
.join-copy p {
    text-align: left !important;
}

.join-copy h2 {
    font-family: "Playfair Display", Georgia, serif !important;
    color: #b26464 !important;
    font-size: clamp(2rem, 3.5vw, 3.65rem) !important;
    line-height: 1.02 !important;
    margin: 0 0 16px !important;
}

.join-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.join-image-card {
    min-height: 420px !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    box-shadow: var(--mcp-shadow-soft) !important;
}

.join-image-card img {
    width: 100% !important;
    min-height: 420px !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* ---------- YouTube ---------- */
.youtube-explore {
    padding: 82px 0 !important;
}

.youtube-carousel {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    padding: 26px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
}

.youtube-item {
    min-width: 0 !important;
    background: rgba(255, 255, 255, 0.66) !important;
    box-shadow: none !important;
}

.youtube-item::before {
    display: none !important;
}

.thumb-wrapper,
.thumb-wrapper img {
    border-radius: 22px !important;
}

/* ---------- Gallery ---------- */
#gallery {
    padding: 82px 0 !important;
}

.gallery-content {
    padding: clamp(18px, 3vw, 32px) !important;
    max-width: var(--mcp-max) !important;
}

.gallery-tabs {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    margin: 0 auto 26px !important;
}

.gallery-tabs .tab {
    border: 1px solid var(--mcp-border) !important;
    background: rgba(255, 255, 255, 0.76) !important;
    color: var(--mcp-muted) !important;
    border-radius: 999px !important;
    padding: 12px 18px !important;
    font-weight: 850 !important;
    box-shadow: 0 10px 24px rgba(74, 39, 32, 0.05) !important;
}

.gallery-tabs .tab.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--mcp-brand), var(--mcp-brand-dark)) !important;
}

.gallery-row.active {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

.gallery-stack-card,
.gallery-stack-photo {
    border-radius: 24px !important;
}

/* ---------- SoundCloud ---------- */
#soundcloud {
    padding: 82px 0 !important;
    margin: 0 auto !important;
}

.soundcloud-mini {
    padding: clamp(20px, 3vw, 34px) !important;
    max-width: 980px !important;
    margin: 0 auto !important;
}

.sc-mini-head {
    align-items: center !important;
}

.sc-mini-head h2 {
    text-align: left !important;
    margin: 0 0 6px !important;
}

.sc-mini-player,
.sc-track {
    border: 1px solid var(--mcp-border) !important;
    background: rgba(255, 255, 255, 0.70) !important;
}

/* ---------- Contact / calendar ---------- */
.contact-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr) !important;
    gap: 24px !important;
    align-items: start !important;
    max-width: var(--mcp-max) !important;
    margin: 0 auto !important;
}

.contact-form-card,
.calendar-card {
    padding: clamp(20px, 3vw, 30px) !important;
}

#contactForm,
#contact form,
section form {
    max-width: 100% !important;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

section form input,
section form textarea,
section form select,
.join-form input,
.join-form select {
    border: 1px solid rgba(166, 75, 67, 0.16) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    min-height: 52px !important;
    padding: 14px 16px !important;
    color: var(--mcp-text) !important;
}

/* ---------- Floating buttons ---------- */
.social-follow {
    position: fixed !important;
    right: 20px !important;
    bottom: 92px !important;
    z-index: 900 !important;
    display: grid !important;
    gap: 10px !important;
    margin: 0 !important;
}

.social-icon,
.whatsapp-float {
    width: 54px !important;
    height: 54px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    color: #ffffff !important;
    box-shadow: 0 16px 38px rgba(74, 39, 32, 0.18) !important;
}

.whatsapp-float {
    right: 20px !important;
    bottom: 22px !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
    header {
        width: min(980px, calc(100% - 28px)) !important;
    }

    .header-left {
        min-width: 190px !important;
    }

    nav ul li a,
    #nav-menu a {
        padding: 0 9px !important;
        font-size: 0.84rem !important;
    }

    #invitees .card img {
        height: 400px !important;
    }
}

@media (max-width: 920px) {
    html {
        scroll-padding-top: 96px;
    }

    header {
        top: 10px !important;
        width: calc(100% - 22px) !important;
        min-height: 72px !important;
        border-radius: 24px !important;
    }

    .header-left {
        min-width: 0 !important;
        max-width: calc(100% - 62px) !important;
        flex: 1 1 auto !important;
    }

    .logo,
    .header-left .logo,
    header img,
    .logo img,
    .header-left img {
        width: 76px !important;
        max-height: 54px !important;
    }

    header h1,
    .header-left h1 {
        max-width: 180px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .hamburger {
        display: flex !important;
        position: relative !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 16px !important;
        flex-shrink: 0 !important;
    }

    nav ul,
    #nav-menu {
        position: fixed !important;
        top: 86px !important;
        left: 12px !important;
        right: 12px !important;
        width: auto !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 6px !important;
        padding: 14px !important;
        border-radius: 26px !important;
        background: rgba(255, 255, 255, 0.96) !important;
        box-shadow: var(--mcp-shadow) !important;
        border: 1px solid var(--mcp-border-light) !important;
        z-index: 2200 !important;
    }

    nav ul.open,
    nav ul.show,
    nav ul.active,
    body.menu-open nav ul,
    #nav-menu.open,
    #nav-menu.show,
    #nav-menu.active {
        display: flex !important;
    }

    nav ul li a,
    #nav-menu a {
        justify-content: center !important;
        width: 100% !important;
        min-height: 48px !important;
        font-size: 0.95rem !important;
    }

    #menu-overlay.visible,
    #menu-overlay.active,
    body.menu-open #menu-overlay {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        background: rgba(20, 12, 10, 0.22) !important;
        z-index: 1200 !important;
    }

    .hero,
    .hero.hero-premium {
        grid-template-columns: 1fr !important;
        padding-top: 76px !important;
        text-align: center !important;
    }

    .hero h2,
    .hero.hero-premium h2,
    .hero p,
    .hero.hero-premium p,
    .join-copy,
    .join-copy h2,
    .join-copy p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-premium-actions,
    .hero-stats {
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-premium-panel {
        min-height: 360px !important;
        transform: none !important;
    }

    .hero-logo-card {
        min-height: 332px !important;
    }

    #invitees .invitees-wrapper,
    .events-wrapper {
        padding: 22px 46px !important;
    }

    #invitees .invitees-track .card,
    .events-track .card {
        flex: 0 0 calc((100% - 24px) / 2) !important;
        width: calc((100% - 24px) / 2) !important;
        min-width: calc((100% - 24px) / 2) !important;
    }

    #invitees .card img {
        height: 380px !important;
    }

    .ofrecemos-grid,
    .youtube-carousel,
    .join-grid,
    .contact-layout {
        grid-template-columns: 1fr !important;
    }

    .join-grid {
        text-align: center !important;
    }

    .join-highlights {
        grid-template-columns: 1fr !important;
    }

    .join-image-card,
    .join-image-card img {
        min-height: 320px !important;
    }

    .contact-layout {
        gap: 20px !important;
    }
}

@media (max-width: 620px) {
    section,
    #invitees,
    #events,
    #gallery,
    #soundcloud,
    #contact,
    .youtube-explore,
    .ofrecemos-section,
    .join-section,
    .scripture,
    #about,
    #donate {
        width: calc(100% - 28px) !important;
        padding: 64px 0 !important;
    }

    header {
        width: calc(100% - 20px) !important;
        min-height: 68px !important;
        padding: 8px 12px !important;
        border-radius: 22px !important;
    }

    .logo,
    .header-left .logo,
    header img,
    .logo img,
    .header-left img {
        width: 66px !important;
        max-height: 48px !important;
    }

    header h1,
    .header-left h1 {
        max-width: 150px !important;
        font-size: 0.92rem !important;
    }

    .hamburger {
        width: 46px !important;
        height: 46px !important;
    }

    nav ul,
    #nav-menu {
        top: 78px !important;
    }

    .hero,
    .hero.hero-premium {
        width: calc(100% - 24px) !important;
        padding: 70px 18px 46px !important;
        border-radius: 30px !important;
    }

    .hero::before,
    .hero.hero-premium::before {
        inset: 12px !important;
        border-radius: 22px !important;
    }

    .hero h2,
    .hero.hero-premium h2 {
        font-size: clamp(2.35rem, 11.5vw, 3.55rem) !important;
        line-height: 1.02 !important;
    }

    .hero p,
    .hero.hero-premium p {
        font-size: 1rem !important;
    }

    .hero-premium-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .hero-main-btn,
    .hero-secondary-link {
        width: 100% !important;
    }

    .hero-stats {
        grid-template-columns: 1fr !important;
    }

    .hero-premium-panel {
        min-height: 310px !important;
        padding: 12px !important;
        border-radius: 30px !important;
    }

    .hero-logo-card {
        min-height: 286px !important;
        border-radius: 24px !important;
    }

    .hero-floating-card {
        position: static !important;
        margin: 18px !important;
    }

    #invitees .invitees-wrapper,
    .events-wrapper {
        padding: 18px 14px !important;
    }

    #invitees .invitees-arrow,
    .events-arrow {
        display: none !important;
    }

    #invitees .invitees-track,
    .events-track {
        gap: 14px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
    }

    #invitees .invitees-track::-webkit-scrollbar,
    .events-track::-webkit-scrollbar {
        display: none !important;
    }

    #invitees .invitees-track .card,
    .events-track .card {
        flex: 0 0 86vw !important;
        width: 86vw !important;
        min-width: 86vw !important;
        scroll-snap-align: center !important;
    }

    #invitees .card img {
        height: 390px !important;
    }

    .ofrecemos-grid,
    .youtube-carousel,
    .gallery-content,
    .soundcloud-mini,
    .contact-form-card,
    .calendar-card,
    #about,
    .verse-block,
    .donate-container {
        padding: 18px !important;
        border-radius: 24px !important;
    }

    .gallery-row.active {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .social-follow {
        right: 12px !important;
        bottom: 84px !important;
    }

    .social-icon,
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
    }

    .whatsapp-float {
        right: 12px !important;
        bottom: 20px !important;
    }
}

/* =========================
   MCP FINAL PREMIUM FIXES
========================= */

#invitees .invitees-track .card {
    min-width: calc((100% - 28px) / 2) !important;
    flex: 0 0 calc((100% - 28px) / 2) !important;
    width: calc((100% - 28px) / 2) !important;
}

#invitees .card img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
    border-radius: 22px !important;
}

@media (max-width: 768px) {
    #invitees .invitees-track .card {
        min-width: 100% !important;
        flex: 0 0 100% !important;
        width: 100% !important;
    }
}

.calendar-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
}

.calendar-item {
    background: rgba(255,255,255,0.92) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(231,168,160,0.18) !important;
    padding: 16px !important;
}

.calendar-item-title::before {
    content: '✦';
    margin-right: 8px;
    color: #b26464;
}

.gallery-row.active {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 26px !important;
    align-items: stretch !important;
}

.gallery-activity-block {
    width: 100% !important;
    min-width: 0 !important;
    padding-bottom: 38px !important;
}

.gallery-stack-card {
    width: 100% !important;
    max-width: 280px !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    margin: 0 auto 18px !important;
}

.gallery-stack-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.gallery-content,
.gallery-row,
.gallery-activity-block {
    overflow: visible !important;
}

img[src=''],
img:not([src]) {
    opacity: 0 !important;
}

.card img,
.gallery-stack-photo,
#invitees .card img {
    background: #f9f3f1 !important;
}
/* =========================================================
   MCP930 — FORCE FINAL OVERRIDES 2026
   Este bloque debe quedarse al FINAL del archivo.
========================================================= */

/* DESTACADAS: flyer completo, 2 cards en desktop */
#invitees .invitees-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 28px 70px !important;
    overflow: hidden !important;
}

#invitees .invitees-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 28px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    padding: 8px 0 12px !important;
    align-items: stretch !important;
}

#invitees .invitees-track::-webkit-scrollbar {
    display: none !important;
}

#invitees .invitees-track .card {
    flex: 0 0 calc((100% - 28px) / 2) !important;
    width: calc((100% - 28px) / 2) !important;
    min-width: calc((100% - 28px) / 2) !important;
    max-width: none !important;
    scroll-snap-align: start !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 22px !important;
    border-radius: 32px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.86) !important;
    box-shadow: 0 24px 70px rgba(74, 39, 32, 0.12) !important;
    overflow: hidden !important;
}

#invitees .card img,
#invitees .invitees-track .card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5.45 !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 24px !important;
    margin: 0 0 28px !important;
    background: #f7eeee !important;
    box-shadow: none !important;
}

#invitees .card h3 {
    font-size: clamp(1.7rem, 2.5vw, 2.15rem) !important;
    line-height: 1.08 !important;
    margin: 0 0 10px !important;
    color: #2f201d !important;
    font-weight: 900 !important;
    letter-spacing: -0.04em !important;
    text-align: center !important;
}

#invitees .card .invitee-title,
#invitees .card p {
    font-size: clamp(1.05rem, 1.7vw, 1.35rem) !important;
    line-height: 1.3 !important;
    margin: 0 0 8px !important;
    color: #5f4641 !important;
    font-weight: 500 !important;
    text-align: center !important;
}

#invitees .invitees-arrow {
    top: 52% !important;
    z-index: 50 !important;
}

#invitees .invitees-arrow.left {
    left: 18px !important;
}

#invitees .invitees-arrow.right {
    right: 18px !important;
}

@media (max-width: 920px) {
    #invitees .invitees-wrapper {
        padding: 24px 54px !important;
    }

    #invitees .invitees-track .card {
        flex: 0 0 calc((100% - 22px) / 2) !important;
        width: calc((100% - 22px) / 2) !important;
        min-width: calc((100% - 22px) / 2) !important;
    }

    #invitees .card img,
    #invitees .invitees-track .card img {
        aspect-ratio: 4 / 5.55 !important;
    }
}

@media (max-width: 620px) {
    #invitees .invitees-wrapper {
        padding: 18px 12px !important;
    }

    #invitees .invitees-track .card {
        flex: 0 0 86vw !important;
        width: 86vw !important;
        min-width: 86vw !important;
        padding: 18px !important;
        border-radius: 28px !important;
    }

    #invitees .card img,
    #invitees .invitees-track .card img {
        aspect-ratio: 4 / 5.65 !important;
        border-radius: 22px !important;
        margin-bottom: 24px !important;
    }
}

/* CALENDARIO PREMIUM */
.calendar-card-premium,
.calendar-card {
    border-radius: 30px !important;
    background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,244,240,0.68)) !important;
    border: 1px solid rgba(255,255,255,0.84) !important;
    box-shadow: 0 22px 60px rgba(74,39,32,0.10) !important;
    padding: 26px !important;
}

.calendar-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 32px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: rgba(216,168,92,0.16) !important;
    color: #9a4a43 !important;
    font-size: 0.72rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
}

.calendar-head h3 {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(1.8rem, 2.6vw, 2.35rem) !important;
    color: #b26464 !important;
    line-height: 1 !important;
    margin: 0 0 8px !important;
}

.calendar-head p {
    color: #795f58 !important;
    font-weight: 650 !important;
    margin: 0 !important;
}

.calendar-block {
    margin-top: 20px !important;
    padding: 16px !important;
    border-radius: 24px !important;
    background: rgba(255,255,255,0.62) !important;
    border: 1px solid rgba(166,75,67,0.10) !important;
}

.calendar-block-title {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
}

.calendar-block-icon {
    width: 34px !important;
    height: 34px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 12px !important;
    background: rgba(216,168,92,0.16) !important;
    color: #9a4a43 !important;
    font-weight: 900 !important;
}

.calendar-block h4 {
    margin: 0 !important;
    color: #33211f !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    text-align: left !important;
}

.calendar-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}

.calendar-item,
.calendar-empty-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,0.86) !important;
    border: 1px solid rgba(166,75,67,0.10) !important;
    color: #795f58 !important;
    box-shadow: 0 10px 24px rgba(74,39,32,0.05) !important;
    text-align: left !important;
}

.calendar-item-mark {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    border-radius: 12px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(216,168,92,0.16) !important;
    color: #9a4a43 !important;
    font-weight: 900 !important;
}

.calendar-item strong {
    display: block !important;
    color: #33211f !important;
    margin-bottom: 2px !important;
}

.calendar-item span,
.calendar-empty-item span {
    display: block !important;
    line-height: 1.45 !important;
}

/* EVENTOS MINIMALISTAS */
.card-icon.premium-icon,
#events .premium-icon,
#events .card-icon {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
    flex: 0 0 58px !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,0.95), rgba(255,255,255,0.55)),
        linear-gradient(135deg, rgba(216,168,92,0.20), rgba(166,75,67,0.10)) !important;
    color: #9a4a43 !important;
    font-size: 1.55rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 14px 30px rgba(74,39,32,0.08) !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 auto 16px !important;
}

.event-image-icon {
    overflow: hidden !important;
    padding: 0 !important;
}

.event-image-icon img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: inherit !important;
}

/* GALERÍA ROBUSTA PARA MUCHAS FOTOS */
.gallery-content {
    overflow: visible !important;
}

.gallery-row {
    display: none !important;
}

.gallery-row.active {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 22px !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.gallery-row img,
.gallery-row.active img,
.gallery-row img:first-child,
.gallery-row img.is-expanded,
.gallery-row img:hover {
    width: 100% !important;
    height: 300px !important;
    min-width: 0 !important;
    flex: none !important;
    object-fit: cover !important;
    border-radius: 26px !important;
    transform: none !important;
    filter: saturate(0.98) contrast(1.02) !important;
    box-shadow: 0 16px 40px rgba(74,39,32,0.12) !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease !important;
}

.gallery-row img:hover {
    transform: translateY(-4px) scale(1.01) !important;
    filter: saturate(1.06) contrast(1.04) !important;
    box-shadow: 0 24px 58px rgba(74,39,32,0.16) !important;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 34px auto 0;
}

.gallery-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(166, 75, 67, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #8e403b;
    font-size: 1.45rem;
    font-weight: 950;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(74, 39, 32, 0.12), inset 0 1px 0 rgba(255,255,255,0.92);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #a64b43, #7b3732);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(166, 75, 67, 0.22);
    outline: none;
}

@media (max-width: 920px) {
    .gallery-row.active {
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)) !important;
        gap: 16px !important;
    }

    .gallery-row img,
    .gallery-row.active img {
        height: 260px !important;
    }
}

@media (max-width: 620px) {
    .gallery-row.active {
        grid-template-columns: 1fr !important;
    }

    .gallery-row img,
    .gallery-row.active img {
        height: 320px !important;
    }
}
/* =========================================================
   FORMULARIO PREMIUM — ÚNETE / CONTACTO
   Diseño moderno, limpio y responsive
========================================================= */

/* Overlay del formulario */
.join-overlay,
.modal-overlay {
    background: rgba(35, 20, 18, 0.42) !important;
    backdrop-filter: blur(18px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
}

/* Caja principal del formulario */
.join-modal-content,
.modal-content {
    width: min(760px, calc(100vw - 28px)) !important;
    max-width: 760px !important;
    max-height: min(88vh, 920px) !important;
    overflow-y: auto !important;
    padding: clamp(24px, 4vw, 42px) !important;
    border-radius: 34px !important;
    border: 1px solid rgba(255, 255, 255, 0.84) !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(216, 168, 92, 0.16), transparent 22rem),
        radial-gradient(circle at 100% 0%, rgba(231, 168, 160, 0.30), transparent 26rem),
        linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,244,240,0.88)) !important;
    box-shadow: 0 34px 95px rgba(74, 39, 32, 0.24) !important;
    text-align: left !important;
}

.join-modal-content::-webkit-scrollbar,
.modal-content::-webkit-scrollbar {
    width: 8px !important;
}

.join-modal-content::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track {
    margin: 26px 0 !important;
    background: transparent !important;
}

.join-modal-content::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(166, 75, 67, 0.24) !important;
    border-radius: 999px !important;
}

/* Botón cerrar */
.close-modal,
.close-btn {
    top: 18px !important;
    right: 18px !important;
    width: 42px !important;
    height: 42px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.78) !important;
    border: 1px solid rgba(166,75,67,0.10) !important;
    color: #8e403b !important;
    font-size: 24px !important;
    line-height: 1 !important;
    box-shadow: 0 12px 28px rgba(74,39,32,0.10) !important;
    transition: 0.22s ease !important;
}

.close-modal:hover,
.close-btn:hover {
    transform: translateY(-2px) scale(1.04) !important;
    background: #ffffff !important;
    color: #7b3732 !important;
}

/* Títulos del modal */
.join-modal-content h2,
.modal-content h2 {
    max-width: 560px !important;
    margin: 0 0 10px !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(2.1rem, 4.5vw, 3.55rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em !important;
    color: #b26464 !important;
    text-align: left !important;
}

.join-modal-content > p,
.modal-content > p {
    max-width: 580px !important;
    margin: 0 0 24px !important;
    color: #795f58 !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    text-align: justify !important;
    text-align-last: left !important;
}

/* El modal genérico (.modal-content) es más angosto que el de únete
   (.join-modal-content), así que el texto no debe topar en 560/580px:
   eso deja un hueco grande a la derecha. Que ocupe todo el ancho. */
.modal-content h2,
.modal-content > p {
    max-width: 100% !important;
}

.modal-content h3 {
    max-width: 100% !important;
    margin: 22px 0 10px !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
    color: #b26464 !important;
    text-align: left !important;
}

.modal-title-divider {
    width: 84px !important;
    height: 3px !important;
    margin: 4px 0 20px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, var(--mcp-gold), var(--mcp-brand)) !important;
}

.modal-content h3:first-of-type {
    margin-top: 0 !important;
}

#visionModal .modal-content h3 + p {
    text-indent: 2.5em !important;
}

.modal-values-list {
    max-width: 100% !important;
    margin: 0 0 24px !important;
    padding: 0 !important;
    list-style: none !important;
    display: grid !important;
    gap: 12px !important;
}

.modal-values-list li {
    padding-left: 22px !important;
    position: relative !important;
    color: #795f58 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: left !important;
}

.modal-values-list li::before {
    content: "✦" !important;
    position: absolute !important;
    left: 0 !important;
    top: 1px !important;
    color: var(--mcp-gold) !important;
    font-size: 0.85rem !important;
}

.modal-values-list li strong {
    color: #b26464 !important;
    font-weight: 850 !important;
}

/* Badge superior si existe */
.join-modal-content::before,
.modal-content::before {
    content: "Comunidad Mujeres con Propósito";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    max-width: calc(100% - 56px);
    padding: 0 14px;
    margin-bottom: 16px;
    margin-right: 56px;
    border-radius: 999px;
    background: rgba(216,168,92,0.15);
    border: 1px solid rgba(166,75,67,0.10);
    color: #8e403b;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-sizing: border-box;
}

/* Formulario en grid */
.join-form,
.join-modal-content form,
.modal-content form {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin: 24px 0 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

.join-form .full-width,
.join-modal-content form .full-width,
.modal-content form .full-width,
.join-form button,
.join-form .form-message,
.join-modal-content form button,
.join-modal-content form .form-message,
.modal-content form button,
.modal-content form .form-message {
    grid-column: 1 / -1 !important;
}

/* Labels */
.join-form label,
.join-modal-content form label,
.modal-content form label {
    display: grid !important;
    gap: 8px !important;
    margin: 0 !important;
    color: #6f5650 !important;
    font-size: 0.78rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
    text-align: left !important;
}

/* Inputs */
.join-form input,
.join-form select,
.join-form textarea,
.join-modal-content input,
.join-modal-content select,
.join-modal-content textarea,
.modal-content input,
.modal-content select,
.modal-content textarea,
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100% !important;
    min-height: 56px !important;
    padding: 15px 16px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(166, 75, 67, 0.14) !important;
    background: rgba(255, 255, 255, 0.84) !important;
    color: #33211f !important;
    font-size: 0.98rem !important;
    font-weight: 650 !important;
    outline: none !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 10px 24px rgba(74,39,32,0.04) !important;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease !important;
}

.join-form textarea,
.join-modal-content textarea,
.modal-content textarea,
.contact-form-card textarea {
    min-height: 118px !important;
    resize: vertical !important;
    line-height: 1.55 !important;
}

.join-form input::placeholder,
.join-form textarea::placeholder,
.join-modal-content input::placeholder,
.join-modal-content textarea::placeholder,
.modal-content input::placeholder,
.modal-content textarea::placeholder,
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: rgba(121, 95, 88, 0.62) !important;
    font-weight: 500 !important;
}

.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus,
.join-modal-content input:focus,
.join-modal-content select:focus,
.join-modal-content textarea:focus,
.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus,
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: rgba(166, 75, 67, 0.42) !important;
    background: rgba(255,255,255,0.98) !important;
    box-shadow: 0 0 0 5px rgba(231,168,160,0.16), 0 16px 34px rgba(74,39,32,0.08) !important;
    transform: translateY(-1px) !important;
}

/* Select premium */
.join-form select,
.join-modal-content select,
.modal-content select,
.contact-form-card select {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image:
        linear-gradient(45deg, transparent 50%, #8e403b 50%),
        linear-gradient(135deg, #8e403b 50%, transparent 50%) !important;
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50% !important;
    background-size: 6px 6px, 6px 6px !important;
    background-repeat: no-repeat !important;
    padding-right: 42px !important;
}

/* Botón submit */
.join-submit-btn,
.join-form button,
.join-modal-content form button,
.modal-content form button,
.contact-form-card button,
#contactForm button {
    width: 100% !important;
    min-height: 58px !important;
    margin-top: 6px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,0.34), transparent 32%),
        linear-gradient(135deg, #a64b43, #7b3732) !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.01em !important;
    box-shadow: 0 18px 42px rgba(166,75,67,0.26) !important;
    cursor: pointer !important;
    transition: 0.24s ease !important;
}

.join-submit-btn:hover,
.join-form button:hover,
.join-modal-content form button:hover,
.modal-content form button:hover,
.contact-form-card button:hover,
#contactForm button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 24px 52px rgba(166,75,67,0.34) !important;
}

/* Mensajes del formulario */
.form-message,
.join-form .form-message,
.join-modal-content .form-message,
.modal-content .form-message {
    margin-top: 2px !important;
    padding: 14px 16px !important;
    border-radius: 18px !important;
    font-size: 0.92rem !important;
    font-weight: 750 !important;
    line-height: 1.45 !important;
    text-align: left !important;
}

.form-message.ok {
    background: rgba(236, 253, 243, 0.92) !important;
    color: #166534 !important;
    border: 1px solid rgba(187, 247, 208, 0.95) !important;
}

.form-message.err {
    background: rgba(254, 242, 242, 0.92) !important;
    color: #b91c1c !important;
    border: 1px solid rgba(254, 202, 202, 0.95) !important;
}

/* Contact card también más premium */
.contact-form-card {
    border-radius: 32px !important;
    border: 1px solid rgba(255,255,255,0.84) !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(231,168,160,0.24), transparent 22rem),
        linear-gradient(145deg, rgba(255,255,255,0.86), rgba(255,244,240,0.64)) !important;
    box-shadow: 0 22px 60px rgba(74,39,32,0.10) !important;
}

.contact-form-card h3,
.contact-form-card h2 {
    font-family: "Playfair Display", Georgia, serif !important;
    color: #b26464 !important;
    letter-spacing: -0.035em !important;
}

/* Mobile */
@media (max-width: 680px) {
    .join-modal-content,
    .modal-content {
        width: calc(100vw - 22px) !important;
        max-height: 90vh !important;
        padding: 24px 18px !important;
        border-radius: 28px !important;
    }

    .join-form,
    .join-modal-content form,
    .modal-content form {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .join-modal-content h2,
    .modal-content h2 {
        font-size: clamp(2rem, 10vw, 2.75rem) !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .join-modal-content > p,
    .modal-content > p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #visionModal .modal-content > p,
    #visionModal .modal-values-list li {
        text-align: justify !important;
        text-align-last: left !important;
        text-justify: inter-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        overflow-wrap: break-word !important;
    }

    #visionModal .modal-content h3 + p {
        text-indent: 1.75em !important;
    }

    .join-modal-content::before,
    .modal-content::before {
        margin-left: 0 !important;
        margin-right: 56px !important;
        display: inline-flex !important;
        width: auto !important;
        max-width: calc(100% - 56px) !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .close-modal,
    .close-btn {
        top: 12px !important;
        right: 12px !important;
    }
}
/* DESTACADAS FINAL: carrusel con 2 cartas visibles */
#invitees .invitees-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 28px 70px !important;
    overflow: hidden !important;
}

#invitees .invitees-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 28px !important;
    overflow-x: visible !important;
    scroll-snap-type: x mandatory !important;
    align-items: stretch !important;
}

#invitees .invitees-track .card {
    flex: 0 0 calc((100% - 28px) / 2) !important;
    width: calc((100% - 28px) / 2) !important;
    min-width: calc((100% - 28px) / 2) !important;
    max-width: none !important;
    scroll-snap-align: start !important;
}

#invitees .card img,
#invitees .invitees-track .card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5.45 !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 24px !important;
    background: transparent !important;
}

#invitees .invitees-arrow {
    display: flex !important;
    top: 52% !important;
    z-index: 50 !important;
}

#invitees .invitees-arrow.hidden,
#invitees .invitees-arrow:disabled {
    display: none !important;
}

@media (max-width: 620px) {
    #invitees .invitees-wrapper {
        padding: 18px 12px !important;
    }

    #invitees .invitees-track .card {
        flex: 0 0 86vw !important;
        width: 86vw !important;
        min-width: 86vw !important;
    }

    #invitees .card img,
    #invitees .invitees-track .card img {
        aspect-ratio: 4 / 5.65 !important;
    }
}

/* FORMULARIO ÚNETE FINAL */
#joinModal.join-overlay {
    padding: 18px !important;
    background: rgba(45, 32, 30, 0.44) !important;
}

#joinModal .join-modal-content {
    width: min(920px, calc(100vw - 32px)) !important;
    max-width: 920px !important;
    max-height: min(90vh, 940px) !important;
    padding: clamp(28px, 4vw, 46px) !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at 0% 0%, rgba(216,168,92,0.16), transparent 24rem),
        radial-gradient(circle at 100% 0%, rgba(231,168,160,0.28), transparent 26rem),
        linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,245,243,0.92)) !important;
}

#joinModal .join-modal-content::before {
    margin-bottom: 18px !important;
}

#joinModal .join-modal-content h3 {
    max-width: 680px !important;
    margin: 0 auto 8px !important;
    color: #8e403b !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(2.3rem, 4.8vw, 4rem) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
}

#joinModal .join-subtitle {
    margin: 0 auto 28px !important;
    color: #5f4641 !important;
    font-size: clamp(1rem, 1.8vw, 1.28rem) !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
    text-align: center !important;
}

#joinModal .join-form {
    grid-template-columns: minmax(180px, 0.72fr) minmax(280px, 1.28fr) !important;
    column-gap: clamp(22px, 4vw, 42px) !important;
    row-gap: 16px !important;
    align-items: center !important;
    margin-top: 0 !important;
}

#joinModal .join-form label {
    align-self: center !important;
    color: #6b524d !important;
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.055em !important;
}

#joinModal .join-form input,
#joinModal .join-form select,
#joinModal .join-form textarea {
    min-height: 58px !important;
    padding: 14px 18px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(166,75,67,0.13) !important;
    background-color: rgba(255,255,255,0.9) !important;
    font-size: 1rem !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 10px 24px rgba(74,39,32,0.045) !important;
}

#joinModal .join-form input:focus,
#joinModal .join-form select:focus,
#joinModal .join-form textarea:focus {
    border-color: rgba(166,75,67,0.38) !important;
    box-shadow: 0 0 0 5px rgba(231,168,160,0.14), 0 18px 36px rgba(74,39,32,0.08) !important;
}

#joinModal .join-form .full-width,
#joinModal .join-form button,
#joinModal .join-form .form-message {
    grid-column: 1 / -1 !important;
}

#joinModal .join-form label.full-width {
    margin-top: 8px !important;
}

#joinModal .join-form textarea.full-width {
    min-height: 116px !important;
}

#joinModal .join-submit-btn {
    width: min(420px, 100%) !important;
    justify-self: center !important;
    margin-top: 12px !important;
}

@media (max-width: 760px) {
    #joinModal .join-modal-content {
        width: calc(100vw - 22px) !important;
        padding: 26px 18px !important;
        border-radius: 28px !important;
    }

    #joinModal .join-form {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    #joinModal .join-form label {
        margin-top: 8px !important;
    }

    #joinModal .join-form input,
    #joinModal .join-form select,
    #joinModal .join-form textarea {
        min-height: 54px !important;
        border-radius: 18px !important;
    }
}

/* =========================================================
   JOIN MODAL — FINAL PREMIUM RESPONSIVE FIX
   Fixes old .join-form grid conflicts and keeps the form clean
   on desktop, tablet and mobile.
========================================================= */
#joinModal.join-overlay {
    padding: 14px !important;
    align-items: center !important;
    justify-content: center !important;
    overflow-y: auto !important;
}

#joinModal .join-modal-content {
    width: min(94vw, 760px) !important;
    max-width: 760px !important;
    max-height: min(92vh, 920px) !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at top right, rgba(231, 168, 160, 0.22), transparent 22rem),
        linear-gradient(180deg, #fffdfc 0%, #fff7f6 100%) !important;
    border: 1px solid rgba(169, 80, 69, 0.12) !important;
    box-shadow: 0 30px 90px rgba(74, 39, 32, 0.18) !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

#joinModal .close-modal {
    top: 18px !important;
    right: 22px !important;
    z-index: 20 !important;
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    font-size: 28px !important;
    line-height: 1 !important;
}

#joinModal .join-modal-premium-head {
    position: relative !important;
    padding: 34px 38px 28px !important;
    background:
        linear-gradient(135deg, rgba(169, 80, 69, 0.96), rgba(126, 58, 53, 0.92)),
        radial-gradient(circle at 85% 10%, rgba(255,255,255,0.28), transparent 20rem) !important;
    color: #ffffff !important;
    overflow: hidden !important;
    flex: 0 0 auto !important;
}

#joinModal .join-modal-premium-head::after {
    content: "" !important;
    position: absolute !important;
    right: -80px !important;
    top: -100px !important;
    width: 260px !important;
    height: 260px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.16) !important;
    pointer-events: none !important;
}

#joinModal .join-modal-premium-badge {
    position: relative !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 14px !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    color: #ffffff !important;
    font-size: 0.76rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
}

#joinModal .join-modal-premium-head h3 {
    position: relative !important;
    z-index: 2 !important;
    margin: 0 !important;
    color: #ffffff !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(2rem, 4vw, 3.15rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
    text-align: left !important;
}

#joinModal .join-modal-premium-head p {
    position: relative !important;
    z-index: 2 !important;
    max-width: 590px !important;
    margin: 14px 0 0 !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
    text-align: left !important;
}

#joinModal .join-form-premium,
#joinModal form.join-form.join-form-premium {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 24px 34px 32px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    flex: 1 1 auto !important;
}

#joinModal .join-form-section {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.86) !important;
    border: 1px solid rgba(169, 80, 69, 0.10) !important;
    box-shadow: 0 12px 28px rgba(74, 39, 32, 0.055) !important;
}

#joinModal .join-form-section + .join-form-section {
    margin-top: 16px !important;
}

#joinModal .join-section-title {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 0 16px !important;
    color: #8e403b !important;
    font-weight: 900 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
    text-align: left !important;
}

#joinModal .join-section-title span {
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 30px !important;
    border-radius: 999px !important;
    background: #fff7f6 !important;
    border: 1px solid #f1ddda !important;
    color: #8e403b !important;
}

#joinModal .join-form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
}

#joinModal .join-field {
    display: grid !important;
    gap: 7px !important;
    min-width: 0 !important;
}

#joinModal .join-field.full-width {
    grid-column: 1 / -1 !important;
}

#joinModal .join-field label,
#joinModal .join-form-premium label {
    display: block !important;
    margin: 0 !important;
    color: #5e3d39 !important;
    font-size: 0.86rem !important;
    font-weight: 850 !important;
    letter-spacing: 0.025em !important;
    text-transform: none !important;
    line-height: 1.25 !important;
    text-align: left !important;
}

#joinModal .join-field small {
    color: #9a7770 !important;
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
    text-align: left !important;
}

#joinModal .join-form-premium input,
#joinModal .join-form-premium select,
#joinModal .join-form-premium textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px !important;
    box-sizing: border-box !important;
    padding: 0 15px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(169, 80, 69, 0.14) !important;
    background: rgba(255, 255, 255, 0.94) !important;
    color: #33201d !important;
    font-size: 0.98rem !important;
    font-weight: 600 !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7) !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

#joinModal .join-form-premium textarea {
    min-height: 106px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    resize: vertical !important;
    line-height: 1.5 !important;
}

#joinModal .join-form-premium input:focus,
#joinModal .join-form-premium select:focus,
#joinModal .join-form-premium textarea:focus {
    outline: none !important;
    border-color: rgba(169, 80, 69, 0.45) !important;
    box-shadow: 0 0 0 4px rgba(231, 168, 160, 0.18) !important;
    transform: translateY(-1px) !important;
}

#joinModal #joinMessage.form-message {
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    width: 100% !important;
}

#joinModal .join-form-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
    margin-top: 18px !important;
    padding: 14px 4px 0 !important;
}

.cf-turnstile-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

#contactForm .cf-turnstile-wrap {
    margin: 4px 0;
}

#joinModal .join-form-note {
    max-width: 420px !important;
    margin: 0 !important;
    color: #8b6b64 !important;
    font-size: 0.86rem !important;
    line-height: 1.5 !important;
    text-align: left !important;
}

#joinModal .join-submit-btn,
#joinModal button.join-submit-btn {
    grid-column: auto !important;
    width: auto !important;
    min-width: 190px !important;
    min-height: 54px !important;
    margin-top: 0 !important;
    padding: 0 30px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #a95045, #7d3a35) !important;
    box-shadow: 0 16px 38px rgba(169, 80, 69, 0.25) !important;
    color: #ffffff !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
}

@media (max-width: 720px) {
    #joinModal.join-overlay {
        padding: 9px !important;
        align-items: center !important;
    }

    #joinModal .join-modal-content {
        width: calc(100vw - 18px) !important;
        max-height: calc(100vh - 18px) !important;
        border-radius: 26px !important;
    }

    #joinModal .close-modal {
        top: 12px !important;
        right: 14px !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 25px !important;
    }

    #joinModal .join-modal-premium-head {
        padding: 28px 20px 22px !important;
    }

    #joinModal .join-modal-premium-badge {
        font-size: 0.68rem !important;
        padding: 7px 10px !important;
        margin-bottom: 12px !important;
    }

    #joinModal .join-modal-premium-head h3 {
        font-size: clamp(1.75rem, 9vw, 2.45rem) !important;
        line-height: 1.04 !important;
        padding-right: 34px !important;
    }

    #joinModal .join-modal-premium-head p {
        font-size: 0.94rem !important;
        line-height: 1.55 !important;
    }

    #joinModal .join-form-premium,
    #joinModal form.join-form.join-form-premium {
        padding: 18px 14px 22px !important;
    }

    #joinModal .join-form-section {
        padding: 16px !important;
        border-radius: 20px !important;
    }

    #joinModal .join-form-section + .join-form-section {
        margin-top: 12px !important;
    }

    #joinModal .join-section-title {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        margin-bottom: 14px !important;
    }

    #joinModal .join-section-title span {
        width: 26px !important;
        height: 26px !important;
        flex: 0 0 26px !important;
    }

    #joinModal .join-form-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    #joinModal .join-field label,
    #joinModal .join-form-premium label {
        font-size: 0.82rem !important;
    }

    #joinModal .join-form-premium input,
    #joinModal .join-form-premium select,
    #joinModal .join-form-premium textarea {
        min-height: 46px !important;
        border-radius: 14px !important;
        font-size: 0.95rem !important;
    }

    #joinModal .join-form-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
    }

    #joinModal .join-form-note {
        max-width: none !important;
        margin: 0 !important;
        font-size: 0.82rem !important;
    }

    #joinModal .join-submit-btn,
    #joinModal button.join-submit-btn {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 52px !important;
    }
}

@media (max-width: 420px) {
    #joinModal .join-modal-premium-head {
        padding-top: 24px !important;
    }

    #joinModal .join-modal-premium-badge {
        font-size: 0.64rem !important;
    }

    #joinModal .join-modal-premium-head h3 {
        font-size: 1.78rem !important;
    }
}
/* =========================================================
   CALENDAR — PREMIUM APPLE/GLASS REDESIGN
   Improves visual hierarchy, empty states, events and mobile.
========================================================= */
#contact .calendar-card,
.calendar-card {
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
    border-radius: 34px !important;
    background:
        radial-gradient(circle at 92% 0%, rgba(231, 168, 160, 0.26), transparent 18rem),
        radial-gradient(circle at 0% 100%, rgba(216, 168, 92, 0.13), transparent 18rem),
        rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(169, 80, 69, 0.13) !important;
    box-shadow:
        0 24px 70px rgba(74, 39, 32, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.82) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
}

.calendar-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 0 auto 0 !important;
    height: 7px !important;
    background: linear-gradient(90deg, #a95045, #e7a8a0, #d8a85c) !important;
    opacity: 0.9 !important;
}

.calendar-head {
    position: relative !important;
    padding: 30px 28px 22px !important;
    margin: 0 !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(169, 80, 69, 0.10) !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.64), rgba(255,255,255,0.28)) !important;
}

.calendar-head::before {
    content: "✦" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 14px !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #a95045, #d98f87) !important;
    box-shadow: 0 14px 28px rgba(169, 80, 69, 0.22) !important;
}

.calendar-head h3 {
    margin: 0 !important;
    color: #70485f !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(1.75rem, 3vw, 2.35rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.04em !important;
    text-align: left !important;
}

.calendar-head p {
    max-width: 440px !important;
    margin: 10px 0 0 !important;
    color: #795f58 !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    text-align: left !important;
}

.calendar-block {
    padding: 24px 26px 0 !important;
}

.calendar-block:last-child {
    padding-bottom: 26px !important;
}

.calendar-block + .calendar-block {
    margin-top: 0 !important;
}

.calendar-block h4 {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 0 14px !important;
    color: #8e403b !important;
    font-size: 0.86rem !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: left !important;
}

.calendar-block h4::before {
    content: "" !important;
    width: 9px !important;
    height: 9px !important;
    border-radius: 999px !important;
    background: #d8a85c !important;
    box-shadow: 0 0 0 5px rgba(216, 168, 92, 0.16) !important;
    flex: 0 0 9px !important;
}

.calendar-list {
    display: grid !important;
    gap: 12px !important;
}

.calendar-item,
.calendar-empty,
.calendar-note {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    padding: 16px 17px !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.76) !important;
    border: 1px solid rgba(169, 80, 69, 0.10) !important;
    box-shadow:
        0 12px 26px rgba(74, 39, 32, 0.055),
        inset 0 1px 0 rgba(255,255,255,0.74) !important;
    text-align: left !important;
}

.calendar-item::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 14px !important;
    bottom: 14px !important;
    width: 4px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #a95045, #e7a8a0) !important;
}

.calendar-item-time {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    min-height: 28px !important;
    margin: 0 0 9px !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    background: rgba(231, 168, 160, 0.17) !important;
    color: #8e403b !important;
    font-size: 0.76rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 0.03em !important;
}

.calendar-item-time::before {
    content: "🕊" !important;
    font-size: 0.82rem !important;
    line-height: 1 !important;
}

.calendar-item-title {
    margin: 0 0 5px !important;
    color: #33211f !important;
    font-size: 1rem !important;
    line-height: 1.28 !important;
    font-weight: 900 !important;
    text-align: left !important;
}

.calendar-item-desc {
    margin: 0 !important;
    color: #795f58 !important;
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    text-align: left !important;
}

.calendar-empty {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #8b6b64 !important;
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
}

.calendar-empty::before {
    content: "♡" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    flex: 0 0 34px !important;
    border-radius: 999px !important;
    color: #a95045 !important;
    background: rgba(231, 168, 160, 0.18) !important;
    font-weight: 900 !important;
}

.calendar-note {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin: 0 0 12px !important;
    color: #70485f !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,247,246,0.92)) !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    font-weight: 750 !important;
}

.calendar-note::before {
    content: "🎂" !important;
    width: 34px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 34px !important;
    border-radius: 999px !important;
    background: rgba(216, 168, 92, 0.15) !important;
}

body.dark .calendar-card {
    background:
        radial-gradient(circle at 92% 0%, rgba(231, 168, 160, 0.14), transparent 18rem),
        rgba(35, 30, 32, 0.86) !important;
    border-color: rgba(255,255,255,0.10) !important;
}

body.dark .calendar-head {
    background: rgba(255,255,255,0.04) !important;
    border-bottom-color: rgba(255,255,255,0.08) !important;
}

body.dark .calendar-head h3,
body.dark .calendar-block h4,
body.dark .calendar-item-title {
    color: #fff7f6 !important;
}

body.dark .calendar-head p,
body.dark .calendar-item-desc,
body.dark .calendar-empty {
    color: rgba(255,255,255,0.74) !important;
}

body.dark .calendar-item,
body.dark .calendar-empty,
body.dark .calendar-note {
    background: rgba(255,255,255,0.07) !important;
    border-color: rgba(255,255,255,0.09) !important;
}

@media (max-width: 768px) {
    #contact .calendar-card,
    .calendar-card {
        border-radius: 26px !important;
    }

    .calendar-head {
        padding: 26px 20px 20px !important;
    }

    .calendar-head::before {
        width: 40px !important;
        height: 40px !important;
        border-radius: 14px !important;
        margin-bottom: 12px !important;
    }

    .calendar-head h3 {
        font-size: 1.78rem !important;
    }

    .calendar-head p {
        font-size: 0.9rem !important;
    }

    .calendar-block {
        padding: 20px 16px 0 !important;
    }

    .calendar-block:last-child {
        padding-bottom: 18px !important;
    }

    .calendar-block h4 {
        font-size: 0.76rem !important;
        gap: 9px !important;
    }

    .calendar-list {
        gap: 10px !important;
    }

    .calendar-item,
    .calendar-empty,
    .calendar-note {
        padding: 14px 15px !important;
        border-radius: 18px !important;
    }

    .calendar-item-title {
        font-size: 0.96rem !important;
    }

    .calendar-item-desc {
        font-size: 0.86rem !important;
    }
}

@media (max-width: 420px) {
    .calendar-head {
        padding: 24px 18px 18px !important;
    }

    .calendar-head h3 {
        font-size: 1.58rem !important;
    }

    .calendar-block {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .calendar-empty,
    .calendar-note {
        align-items: flex-start !important;
    }
}

/* =========================================================
   FINAL RESPONSIVE + FORM SELECT POLISH
========================================================= */
select,
select option,
#joinModal select,
#joinModal select option,
.join-form select,
.join-form select option,
.join-form-premium select,
.join-form-premium select option,
.contact-form-card select,
.contact-form-card select option,
.modal-content select,
.modal-content select option {
    font-weight: 400 !important;
}

select:disabled,
select option:disabled,
#joinModal select option[value=""] {
    font-weight: 400 !important;
    color: #8f817e !important;
}

html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

img,
iframe,
video {
    max-width: 100% !important;
}

@media (max-width: 1120px) {
    header {
        width: min(94vw, 1180px) !important;
        padding-left: clamp(18px, 3vw, 30px) !important;
        padding-right: clamp(18px, 3vw, 30px) !important;
    }

    #nav-menu {
        gap: 8px !important;
    }

    #nav-menu a {
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 0.92rem !important;
    }

    .hero.hero-premium,
    section,
    .ofrecemos-section,
    .join-section {
        width: min(94vw, 1180px) !important;
    }
}

@media (max-width: 920px) {
    header {
        min-height: 82px !important;
        align-items: center !important;
    }

    #nav-menu {
        max-height: calc(100vh - 112px) !important;
        overflow-y: auto !important;
    }

    .hero.hero-premium {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding-top: 88px !important;
        padding-bottom: 38px !important;
    }

    .hero.hero-premium h2,
    .hero.hero-premium p {
        max-width: 760px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-premium-actions {
        justify-content: center !important;
    }

    .hero-premium-panel {
        min-height: auto !important;
        transform: none !important;
    }

    .join-grid,
    .contact-layout {
        grid-template-columns: 1fr !important;
    }

    .card-grid,
    .events-track,
    .invitees-track {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    header {
        width: calc(100vw - 24px) !important;
        top: 10px !important;
        min-height: 72px !important;
        border-radius: 28px !important;
        padding: 10px 14px !important;
    }

    .header-left {
        min-width: 0 !important;
        gap: 10px !important;
    }

    header h1,
    .header-left h1 {
        max-width: 52vw !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-size: clamp(1.08rem, 6vw, 1.45rem) !important;
    }

    section,
    .hero.hero-premium,
    .ofrecemos-section,
    .join-section {
        width: calc(100vw - 24px) !important;
        border-radius: 26px !important;
    }

    section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero.hero-premium {
        margin-top: 14px !important;
        padding: 82px 18px 30px !important;
    }

    .hero.hero-premium h2 {
        font-size: clamp(2.15rem, 13vw, 3.25rem) !important;
        line-height: 1.02 !important;
    }

    .hero.hero-premium p,
    .section-header-premium p,
    section p {
        font-size: 0.96rem !important;
        line-height: 1.62 !important;
    }

    .hero-premium-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .hero-premium-actions .btn,
    .hero-secondary-link {
        width: 100% !important;
    }

    .card-grid,
    .events-track,
    .invitees-track,
    .gallery-row.active {
        grid-template-columns: 1fr !important;
    }

    .contact-form-card,
    .calendar-card,
    .join-grid,
    .admin-dashboard,
    .admin-card {
        border-radius: 24px !important;
    }

    #joinModal .join-modal-content,
    .modal-content {
        width: calc(100vw - 18px) !important;
        max-height: calc(100vh - 18px) !important;
    }
}

@media (max-width: 420px) {
    header h1,
    .header-left h1 {
        max-width: 46vw !important;
    }

    .section-header-premium h2,
    section h2 {
        font-size: clamp(2rem, 12vw, 2.75rem) !important;
    }

    #joinModal .join-form-premium input,
    #joinModal .join-form-premium select,
    #joinModal .join-form-premium textarea,
    section form input,
    section form textarea,
    section form select {
        font-size: 16px !important;
    }

    body[data-admin-page="true"] .admin-hero-premium h2 {
        max-width: 100% !important;
        font-size: clamp(1.7rem, 9vw, 2.15rem) !important;
        overflow-wrap: anywhere !important;
    }
}

/* =========================================================
   MOBILE HEADER MENU — FINAL FIT FIX
   Keeps the brand readable and the opened menu inside viewport.
========================================================= */
@media (max-width: 620px) {
    header {
        width: calc(100vw - 24px) !important;
        min-height: 76px !important;
        padding: 10px 12px !important;
        gap: 8px !important;
    }

    .header-left {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 58px) !important;
        gap: 8px !important;
    }

    .logo,
    .header-left .logo {
        width: 64px !important;
        height: 46px !important;
    }

    header img,
    .logo img,
    .header-left img {
        width: 64px !important;
        max-height: 46px !important;
    }

    header h1,
    .header-left h1 {
        max-width: calc(100vw - 176px) !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        font-size: clamp(1.05rem, 5.2vw, 1.28rem) !important;
        line-height: 1.04 !important;
        letter-spacing: -0.025em !important;
    }

    .hamburger {
        width: 50px !important;
        height: 50px !important;
        border-radius: 18px !important;
    }

    nav ul,
    #nav-menu {
        left: 50% !important;
        right: auto !important;
        width: min(calc(100vw - 44px), 720px) !important;
        max-width: min(calc(100vw - 44px), 720px) !important;
        box-sizing: border-box !important;
        transform: translateX(-50%) !important;
    }
}

@media (max-width: 380px) {
    header h1,
    .header-left h1 {
        max-width: calc(100vw - 164px) !important;
        font-size: 1rem !important;
    }
}

/* =========================================================
   CALENDAR TIME BADGE — CENTER ALIGNMENT FIX
========================================================= */
.calendar-item-time,
#contact .calendar-item-time,
.calendar-card .calendar-item-time {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.15 !important;
    min-width: 104px !important;
    min-height: 104px !important;
    width: 104px !important;
    height: 104px !important;
    padding: 12px !important;
    border-radius: 999px !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    flex: 0 0 104px !important;
}

.calendar-item-time::before,
#contact .calendar-item-time::before,
.calendar-card .calendar-item-time::before {
    display: none !important;
}

.calendar-item,
#contact .calendar-item,
.calendar-card .calendar-item {
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
}

.calendar-item-title,
.calendar-item-desc,
#contact .calendar-item-title,
#contact .calendar-item-desc,
.calendar-card .calendar-item-title,
.calendar-card .calendar-item-desc {
    text-align: left !important;
}

@media (max-width: 560px) {
    .calendar-item,
    #contact .calendar-item,
    .calendar-card .calendar-item {
        gap: 16px !important;
    }

    .calendar-item-time,
    #contact .calendar-item-time,
    .calendar-card .calendar-item-time {
        min-width: 86px !important;
        min-height: 86px !important;
        width: 86px !important;
        height: 86px !important;
        flex-basis: 86px !important;
        padding: 10px !important;
        font-size: 0.8rem !important;
    }
}
/* =========================================================
   SOUNDCLOUD PLAYLIST — REMOVE BULLETS FINAL FIX
========================================================= */
#soundcloud ul,
#soundcloud ol,
#soundcloud li,
#soundcloud .sc-mini-list,
#soundcloud .sc-mini-list ul,
#soundcloud .sc-mini-list ol,
#soundcloud .sc-mini-list li,
#soundcloud .sc-track {
    list-style: none !important;
    list-style-type: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

#soundcloud li::marker,
#soundcloud .sc-mini-list li::marker,
#soundcloud .sc-track::marker {
    content: "" !important;
    font-size: 0 !important;
}

#soundcloud .sc-mini-list li::before,
#soundcloud .sc-mini-list li::after,
#soundcloud .sc-track::before,
#soundcloud .sc-track::after {
    content: none !important;
    display: none !important;
}

#soundcloud .sc-track {
    padding: 12px 18px !important;
    gap: 0 !important;
}

/* =========================================================
   IPAD / TABLET MENU — FINAL OVERLAY ALIGNMENT FIX
   Prevents the mobile menu from overflowing or covering the page incorrectly.
========================================================= */
@media (min-width: 681px) and (max-width: 1024px) {
    body.menu-open {
        overflow: hidden !important;
    }

    body.menu-open::after {
        display: none !important;
    }

    #menu-overlay,
    body.menu-open #menu-overlay,
    header.menu-open + #menu-overlay {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(49, 36, 33, 0.34) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        z-index: 1990 !important;
    }

    header {
        z-index: 2300 !important;
    }

    header nav,
    header nav.open,
    header nav.active,
    body.menu-open header nav {
        position: fixed !important;
        top: 108px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: min(520px, calc(100vw - 40px)) !important;
        max-width: calc(100vw - 40px) !important;
        height: auto !important;
        max-height: calc(100vh - 140px) !important;
        overflow-y: auto !important;
        border-radius: 34px !important;
        background: rgba(255, 255, 255, 0.94) !important;
        border: 1px solid rgba(255,255,255,0.84) !important;
        box-shadow: 0 26px 80px rgba(49, 36, 33, 0.24), inset 0 1px 0 rgba(255,255,255,0.90) !important;
        backdrop-filter: blur(24px) saturate(165%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(165%) !important;
        padding: 14px !important;
        z-index: 2400 !important;
    }

    header nav ul,
    #nav-menu,
    body.menu-open header nav ul,
    body.menu-open #nav-menu,
    header nav ul.show,
    header nav ul.open,
    header nav ul.active,
    #nav-menu.show,
    #nav-menu.open,
    #nav-menu.active {
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    header nav ul li,
    #nav-menu li {
        width: 100% !important;
        list-style: none !important;
    }

    header nav ul li a,
    #nav-menu a,
    body.menu-open header nav ul li a,
    body.menu-open #nav-menu a {
        width: 100% !important;
        min-height: 58px !important;
        padding: 0 22px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        border-radius: 22px !important;
        background: rgba(255,255,255,0.72) !important;
        border: 1px solid rgba(169,80,69,0.09) !important;
        color: #6d514c !important;
        font-size: 1.08rem !important;
        font-weight: 900 !important;
        text-align: left !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.82) !important;
    }

    header nav ul li a:hover,
    #nav-menu a:hover {
        background: rgba(166, 75, 67, 0.10) !important;
        color: #7b3732 !important;
        transform: none !important;
    }

    #nav-menu .menu-donate-btn,
    .menu-donate-btn {
        background: linear-gradient(135deg, #a64b43, #7b3732) !important;
        color: #ffffff !important;
        justify-content: center !important;
        box-shadow: 0 16px 34px rgba(166,75,67,0.22) !important;
    }
}

@media (max-width: 680px) {
    body.menu-open {
        overflow: hidden !important;
    }

    #menu-overlay,
    body.menu-open #menu-overlay {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        background: rgba(49, 36, 33, 0.34) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        z-index: 1990 !important;
    }

    header nav,
    body.menu-open header nav {
        position: fixed !important;
        top: 96px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
        height: auto !important;
        max-height: calc(100vh - 118px) !important;
        overflow-y: auto !important;
        padding: 12px !important;
        border-radius: 28px !important;
        background: rgba(255,255,255,0.95) !important;
        z-index: 2400 !important;
    }

    header nav ul,
    #nav-menu,
    body.menu-open header nav ul,
    body.menu-open #nav-menu,
    header nav ul.show,
    header nav ul.open,
    header nav ul.active,
    #nav-menu.show,
    #nav-menu.open,
    #nav-menu.active {
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    header nav ul li,
    #nav-menu li {
        width: 100% !important;
    }

    header nav ul li a,
    #nav-menu a {
        width: 100% !important;
        justify-content: flex-start !important;
        text-align: left !important;
        min-height: 56px !important;
        font-size: 1rem !important;
    }
}
@media (min-width: 681px) and (max-width: 1024px) {
  header nav,
  body.menu-open header nav {
    top: 145px !important;
    width: min(680px, calc(100vw - 96px)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 36px !important;
  }

  .hamburger {
    position: fixed !important;
    top: 350px !important;
    left: calc((100vw - min(680px, calc(100vw - 96px))) / 2 + 18px) !important;
    width: 72px !important;
    height: 72px !important;
    border-radius: 22px !important;
    z-index: 2450 !important;
  }

  header nav ul li a,
  #nav-menu a {
    min-height: 70px !important;
    font-size: 1.28rem !important;
    padding: 0 34px !important;
  }
}
/* =========================================================
   IPAD MENU — CLEAN FINAL OVERRIDE
   Keeps hamburger inside the header and centers the menu panel.
========================================================= */
@media (min-width: 681px) and (max-width: 1024px) {
    body.menu-open {
        overflow: hidden !important;
    }

    body.menu-open::after {
        display: none !important;
    }

    header {
        position: sticky !important;
        top: 16px !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: calc(100vw - 48px) !important;
        max-width: 1180px !important;
        min-height: 92px !important;
        margin: 16px auto 0 !important;
        padding: 16px 24px !important;
        border-radius: 32px !important;
        overflow: visible !important;
        z-index: 2500 !important;
    }

    .header-left {
        max-width: calc(100% - 84px) !important;
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }

    .hamburger,
    body.menu-open .hamburger,
    header .hamburger,
    header.menu-open .hamburger {
        display: flex !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        flex: 0 0 60px !important;
        margin: 0 !important;
        border-radius: 22px !important;
        z-index: 2600 !important;
    }

    .hamburger span {
        width: 28px !important;
        height: 4px !important;
    }

    .hamburger span:nth-child(1) {
        transform: translateY(-9px) !important;
    }

    .hamburger span:nth-child(2) {
        transform: translateY(0) !important;
    }

    .hamburger span:nth-child(3) {
        transform: translateY(9px) !important;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(0) rotate(45deg) !important;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(0) rotate(-45deg) !important;
    }

    #menu-overlay,
    body.menu-open #menu-overlay {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(49, 36, 33, 0.34) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        z-index: 2100 !important;
    }

    header nav,
    header nav.open,
    header nav.active,
    body.menu-open header nav {
        position: fixed !important;
        top: 128px !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translateX(-50%) !important;
        width: min(640px, calc(100vw - 64px)) !important;
        max-width: calc(100vw - 64px) !important;
        height: auto !important;
        max-height: calc(100vh - 160px) !important;
        overflow-y: auto !important;
        padding: 18px !important;
        border-radius: 34px !important;
        background: rgba(255, 255, 255, 0.96) !important;
        border: 1px solid rgba(255, 255, 255, 0.88) !important;
        box-shadow: 0 28px 90px rgba(49, 36, 33, 0.24), inset 0 1px 0 rgba(255,255,255,0.92) !important;
        backdrop-filter: blur(24px) saturate(165%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(165%) !important;
        z-index: 2400 !important;
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    body.menu-open header nav,
    header.menu-open nav,
    header nav.open,
    header nav.active {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    header nav ul,
    #nav-menu,
    body.menu-open header nav ul,
    body.menu-open #nav-menu,
    header nav ul.show,
    header nav ul.open,
    header nav ul.active,
    #nav-menu.show,
    #nav-menu.open,
    #nav-menu.active {
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    header nav ul li,
    #nav-menu li {
        width: 100% !important;
        list-style: none !important;
    }

    header nav ul li a,
    #nav-menu a,
    body.menu-open header nav ul li a,
    body.menu-open #nav-menu a {
        width: 100% !important;
        min-height: 68px !important;
        padding: 0 30px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        border-radius: 24px !important;
        background: rgba(255,255,255,0.78) !important;
        border: 1px solid rgba(169,80,69,0.10) !important;
        color: #6d514c !important;
        font-size: 1.22rem !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        text-align: left !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.84) !important;
    }

    #nav-menu .menu-donate-btn,
    .menu-donate-btn {
        justify-content: center !important;
        background: linear-gradient(135deg, #a64b43, #7b3732) !important;
        color: #ffffff !important;
        box-shadow: 0 18px 36px rgba(166,75,67,0.22) !important;
    }
}
/* =========================================================
   IPAD MENU — VISIBILITY RECOVERY FINAL FIX
   Shows hamburger on iPad and makes the menu panel visible when JS opens it.
========================================================= */
@media (min-width: 681px) and (max-width: 1024px) {
    header {
        position: sticky !important;
        top: 16px !important;
        width: calc(100vw - 48px) !important;
        max-width: 1180px !important;
        min-height: 92px !important;
        margin: 16px auto 0 !important;
        padding: 16px 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        overflow: visible !important;
        z-index: 2500 !important;
    }

    .header-left {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 80px) !important;
    }

    .hamburger,
    header .hamburger {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        flex: 0 0 60px !important;
        margin: 0 !important;
        z-index: 2700 !important;
    }

    header nav {
        position: fixed !important;
        top: 126px !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translateX(-50%) !important;
        width: min(640px, calc(100vw - 64px)) !important;
        max-width: calc(100vw - 64px) !important;
        height: auto !important;
        max-height: calc(100vh - 158px) !important;
        overflow-y: auto !important;
        padding: 18px !important;
        border-radius: 34px !important;
        background: rgba(255, 255, 255, 0.96) !important;
        border: 1px solid rgba(255, 255, 255, 0.88) !important;
        box-shadow: 0 28px 90px rgba(49, 36, 33, 0.24), inset 0 1px 0 rgba(255,255,255,0.92) !important;
        backdrop-filter: blur(24px) saturate(165%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(165%) !important;
        z-index: 2400 !important;
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    body.menu-open header nav,
    header.menu-open nav,
    header nav.open,
    header nav.active,
    header nav:has(ul.show),
    header nav:has(ul.open),
    header nav:has(ul.active),
    header nav:has(#nav-menu.show),
    header nav:has(#nav-menu.open),
    header nav:has(#nav-menu.active) {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }

    header nav ul,
    #nav-menu {
        position: static !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    body.menu-open header nav ul,
    body.menu-open #nav-menu,
    header.menu-open nav ul,
    header.menu-open #nav-menu,
    header nav.open ul,
    header nav.active ul,
    header nav ul.show,
    header nav ul.open,
    header nav ul.active,
    #nav-menu.show,
    #nav-menu.open,
    #nav-menu.active {
        display: flex !important;
        visibility: visible !important;
    }

    header nav ul li,
    #nav-menu li {
        width: 100% !important;
        list-style: none !important;
    }

    header nav ul li a,
    #nav-menu a {
        width: 100% !important;
        min-height: 68px !important;
        padding: 0 30px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        border-radius: 24px !important;
        background: rgba(255,255,255,0.78) !important;
        border: 1px solid rgba(169,80,69,0.10) !important;
        color: #6d514c !important;
        font-size: 1.22rem !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        text-align: left !important;
    }

    #nav-menu .menu-donate-btn,
    .menu-donate-btn {
        justify-content: center !important;
        background: linear-gradient(135deg, #a64b43, #7b3732) !important;
        color: #ffffff !important;
    }
}

/* =========================================================
   TABLET MENU — ABSOLUTE LAST OVERRIDE
   Covers iPad landscape widths where older mobile menu rules leaked through.
========================================================= */
@media (max-width: 1180px) {
    body.menu-open {
        overflow: hidden !important;
    }

    body.menu-open #menu-overlay,
    #menu-overlay.visible,
    #menu-overlay.active {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(49, 36, 33, 0.34) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        z-index: 2100 !important;
    }

    body.menu-open header {
        z-index: 2600 !important;
    }

    body.menu-open header nav,
    header.menu-open nav,
    header nav:has(#nav-menu.open),
    header nav:has(#nav-menu.show),
    header nav:has(#nav-menu.active) {
        position: fixed !important;
        top: clamp(108px, 12vh, 142px) !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        width: min(760px, calc(100vw - 56px)) !important;
        max-width: calc(100vw - 56px) !important;
        height: auto !important;
        max-height: calc(100vh - 164px) !important;
        margin: 0 !important;
        padding: 18px !important;
        display: block !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(-50%) !important;
        border-radius: 34px !important;
        background: rgba(255, 255, 255, 0.96) !important;
        border: 1px solid rgba(255, 255, 255, 0.88) !important;
        box-shadow: 0 28px 90px rgba(49, 36, 33, 0.24), inset 0 1px 0 rgba(255,255,255,0.92) !important;
        backdrop-filter: blur(24px) saturate(165%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(165%) !important;
        z-index: 2500 !important;
    }

    body.menu-open #nav-menu,
    header.menu-open #nav-menu,
    #nav-menu.open,
    #nav-menu.show,
    #nav-menu.active {
        position: static !important;
        inset: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    body.menu-open #nav-menu li,
    #nav-menu.open li,
    #nav-menu.show li,
    #nav-menu.active li {
        width: 100% !important;
        list-style: none !important;
    }

    body.menu-open #nav-menu a,
    #nav-menu.open a,
    #nav-menu.show a,
    #nav-menu.active a {
        width: 100% !important;
        min-height: 62px !important;
        padding: 0 28px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 24px !important;
        text-align: center !important;
        font-size: clamp(1rem, 2.3vw, 1.18rem) !important;
        font-weight: 900 !important;
    }
}

/* =========================================================
   MOBILE/TABLET MENU — TRUE FINAL FIX
   The hamburger lives inside nav, so nav must stay in the header.
   Only #nav-menu becomes the centered popup.
========================================================= */
@media (max-width: 1180px) {
    #menu-overlay.visible,
    #menu-overlay.active {
        display: block !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(49, 36, 33, 0.34) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        z-index: 2100 !important;
    }

    header {
        z-index: 2700 !important;
    }

    header nav,
    body.menu-open header nav,
    header.menu-open nav,
    header nav.open,
    header nav.active,
    header nav:has(#nav-menu.open),
    header nav:has(#nav-menu.show),
    header nav:has(#nav-menu.active) {
        position: static !important;
        inset: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        overflow: visible !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: auto !important;
    }

    .hamburger,
    header .hamburger,
    .hamburger.active {
        display: inline-flex !important;
        position: relative !important;
        inset: auto !important;
        transform: none !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        z-index: 2800 !important;
    }

    #nav-menu {
        display: none !important;
    }

    #nav-menu.open,
    #nav-menu.show,
    #nav-menu.active {
        position: fixed !important;
        top: 126px !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        width: min(720px, calc(100vw - 56px)) !important;
        max-width: calc(100vw - 56px) !important;
        height: auto !important;
        max-height: calc(100vh - 154px) !important;
        margin: 0 !important;
        padding: 18px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(-50%) !important;
        border-radius: 34px !important;
        background: rgba(255, 255, 255, 0.97) !important;
        border: 1px solid rgba(255, 255, 255, 0.88) !important;
        box-shadow: 0 28px 90px rgba(49, 36, 33, 0.24), inset 0 1px 0 rgba(255,255,255,0.92) !important;
        backdrop-filter: blur(24px) saturate(165%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(165%) !important;
        z-index: 2600 !important;
    }

    #nav-menu.open li,
    #nav-menu.show li,
    #nav-menu.active li {
        width: 100% !important;
        list-style: none !important;
    }

    #nav-menu.open a,
    #nav-menu.show a,
    #nav-menu.active a {
        width: 100% !important;
        min-height: 62px !important;
        padding: 0 26px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 24px !important;
        text-align: center !important;
        color: #6d514c !important;
        font-size: clamp(1rem, 2.2vw, 1.16rem) !important;
        font-weight: 900 !important;
        background: rgba(255,255,255,0.78) !important;
        border: 1px solid rgba(169,80,69,0.10) !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.84) !important;
    }

    #nav-menu.open .menu-donate-btn,
    #nav-menu.show .menu-donate-btn,
    #nav-menu.active .menu-donate-btn {
        color: #ffffff !important;
        background: linear-gradient(135deg, #a64b43, #7b3732) !important;
        box-shadow: 0 18px 36px rgba(166,75,67,0.22) !important;
    }
}

@media (max-width: 680px) {
    #nav-menu.open,
    #nav-menu.show,
    #nav-menu.active {
        top: 104px !important;
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        max-height: calc(100vh - 128px) !important;
        padding: 14px !important;
        border-radius: 28px !important;
    }

    #nav-menu.open a,
    #nav-menu.show a,
    #nav-menu.active a {
        min-height: 56px !important;
        padding: 0 20px !important;
        font-size: 1rem !important;
    }
}

/* MENU OVERLAY — FINAL HARD HIDE WHEN CLOSED */
@media (max-width: 1180px) {
  #menu-overlay:not(.visible):not(.active) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* =========================================================
   MOBILE/TABLET MENU — SPECIFICITY LOCK
   Beats older body.menu-open #nav-menu rules that kept the menu inside header.
========================================================= */
@media (max-width: 1180px) {
  body.menu-open header {
    min-height: 76px !important;
    overflow: visible !important;
  }

  body.menu-open header nav,
  body.menu-open header nav:has(#nav-menu.open),
  body.menu-open header nav:has(#nav-menu.show),
  body.menu-open header nav:has(#nav-menu.active) {
    position: static !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    overflow: visible !important;
    transform: none !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.menu-open header #nav-menu.open,
  body.menu-open header #nav-menu.show,
  body.menu-open header #nav-menu.active,
  body.menu-open #nav-menu.open,
  body.menu-open #nav-menu.show,
  body.menu-open #nav-menu.active {
    position: fixed !important;
    top: 116px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: min(680px, calc(100vw - 44px)) !important;
    max-width: calc(100vw - 44px) !important;
    height: auto !important;
    max-height: calc(100vh - 144px) !important;
    margin: 0 !important;
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    overflow-y: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) !important;
    border-radius: 30px !important;
    background: rgba(255, 255, 255, 0.97) !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 24px 70px rgba(49, 36, 33, 0.22), inset 0 1px 0 rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
    z-index: 2600 !important;
  }

  body.menu-open header #nav-menu.open li,
  body.menu-open header #nav-menu.show li,
  body.menu-open header #nav-menu.active li,
  body.menu-open #nav-menu.open li,
  body.menu-open #nav-menu.show li,
  body.menu-open #nav-menu.active li {
    width: 100% !important;
    list-style: none !important;
  }

  body.menu-open header #nav-menu.open a,
  body.menu-open header #nav-menu.show a,
  body.menu-open header #nav-menu.active a,
  body.menu-open #nav-menu.open a,
  body.menu-open #nav-menu.show a,
  body.menu-open #nav-menu.active a {
    width: 100% !important;
    min-height: 58px !important;
    padding: 0 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 22px !important;
    text-align: center !important;
    color: #6d514c !important;
    font-size: clamp(1rem, 2.1vw, 1.14rem) !important;
    font-weight: 900 !important;
    background: rgba(255,255,255,0.78) !important;
    border: 1px solid rgba(169,80,69,0.10) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.84) !important;
  }

  body.menu-open header #nav-menu.open .menu-donate-btn,
  body.menu-open header #nav-menu.show .menu-donate-btn,
  body.menu-open header #nav-menu.active .menu-donate-btn,
  body.menu-open #nav-menu.open .menu-donate-btn,
  body.menu-open #nav-menu.show .menu-donate-btn,
  body.menu-open #nav-menu.active .menu-donate-btn {
    color: #ffffff !important;
    background: linear-gradient(135deg, #a64b43, #7b3732) !important;
  }
}

@media (max-width: 680px) {
  body.menu-open header #nav-menu.open,
  body.menu-open header #nav-menu.show,
  body.menu-open header #nav-menu.active,
  body.menu-open #nav-menu.open,
  body.menu-open #nav-menu.show,
  body.menu-open #nav-menu.active {
    top: 100px !important;
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    max-height: calc(100vh - 122px) !important;
    padding: 14px !important;
    border-radius: 26px !important;
  }
}

/* =========================================================
   SOUNDCLOUD PLAYER — PREMIUM FINAL DESIGN
========================================================= */
#soundcloud {
  width: min(1180px, calc(100% - 44px)) !important;
  padding: clamp(56px, 8vw, 96px) 0 !important;
  margin: 0 auto !important;
  background: transparent !important;
}

#soundcloud .soundcloud-mini {
  position: relative !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: clamp(22px, 4vw, 42px) !important;
  border-radius: 34px !important;
  border: 1px solid rgba(169, 80, 69, 0.12) !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 244, 233, 0.95), transparent 23rem),
    radial-gradient(circle at 95% 0%, rgba(231, 168, 160, 0.26), transparent 28rem),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,247,246,0.78)) !important;
  box-shadow: 0 28px 90px rgba(74, 39, 32, 0.10), inset 0 1px 0 rgba(255,255,255,0.86) !important;
  overflow: hidden !important;
}

#soundcloud .soundcloud-mini::before {
  content: "" !important;
  position: absolute !important;
  inset: 18px !important;
  border-radius: 26px !important;
  border: 1px solid rgba(255,255,255,0.74) !important;
  pointer-events: none !important;
}

#soundcloud .sc-mini-head {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 20px !important;
  align-items: end !important;
  margin-bottom: 26px !important;
}

#soundcloud .sc-mini-head h2 {
  max-width: 860px !important;
  margin: 0 0 10px !important;
  color: #b56568 !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(2.4rem, 6.2vw, 5.4rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.045em !important;
  text-wrap: balance !important;
}

#soundcloud .sc-mini-head p {
  max-width: 560px !important;
  margin: 0 !important;
  color: #7c625d !important;
  font-size: clamp(1rem, 1.5vw, 1.18rem) !important;
  line-height: 1.55 !important;
}

#soundcloud .sc-mini-link {
  min-height: 50px !important;
  padding: 0 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff8f72, #e7a8a0) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: 0 16px 34px rgba(231, 168, 160, 0.32) !important;
}

#soundcloud .sc-mini-player {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 22px !important;
  align-items: center !important;
  margin-bottom: 18px !important;
  padding: clamp(18px, 3vw, 28px) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(169, 80, 69, 0.12) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,247,246,0.86)) !important;
  box-shadow: 0 18px 50px rgba(74, 39, 32, 0.08) !important;
}

#soundcloud .sc-mini-badge {
  display: inline-flex !important;
  width: max-content !important;
  margin-bottom: 10px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  color: #9e4d49 !important;
  background: rgba(255, 244, 233, 0.92) !important;
  border: 1px solid rgba(169, 80, 69, 0.08) !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

#soundcloud #scCurrentTitle {
  margin: 0 !important;
  color: #352523 !important;
  font-size: clamp(1.45rem, 3vw, 2.35rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
}

#soundcloud .sc-progress-track {
  position: relative !important;
  width: 100% !important;
  height: 6px !important;
  margin-top: 16px !important;
  border-radius: 999px !important;
  background: rgba(166, 75, 67, 0.14) !important;
  cursor: pointer !important;
}

#soundcloud .sc-progress-fill {
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 0% !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #e7a8a0, #a64b43) !important;
  transition: width 0.15s linear !important;
}

#soundcloud .sc-time-row {
  display: flex !important;
  justify-content: space-between !important;
  margin-top: 8px !important;
  color: #9e8480 !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  font-variant-numeric: tabular-nums !important;
}

#soundcloud .sc-mini-controls {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

#soundcloud .sc-mini-btn {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #9e4d49 !important;
  background: rgba(255,255,255,0.88) !important;
  box-shadow: 0 14px 34px rgba(74, 39, 32, 0.10) !important;
  font-size: 1rem !important;
  cursor: pointer !important;
}

#soundcloud .sc-mini-btn-play {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #e7a8a0, #d58b82) !important;
  font-size: 1.35rem !important;
  box-shadow: 0 18px 42px rgba(213, 139, 130, 0.34) !important;
}

#soundcloud .sc-mini-list {
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 4px 0 0 !important;
}

#soundcloud .sc-track {
  min-height: 64px !important;
  padding: 12px 18px !important;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: center !important;
  border-radius: 22px !important;
  border: 1px solid rgba(169, 80, 69, 0.10) !important;
  background: rgba(255,255,255,0.74) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78) !important;
  color: #4a3734 !important;
  cursor: pointer !important;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease !important;
}

#soundcloud .sc-track:hover {
  transform: translateY(-1px) !important;
  background: rgba(255, 250, 249, 0.96) !important;
  box-shadow: 0 14px 30px rgba(74, 39, 32, 0.08) !important;
}

#soundcloud .sc-track.active {
  background: linear-gradient(135deg, rgba(166, 75, 67, 0.10), rgba(231, 168, 160, 0.16)) !important;
  border-color: rgba(166, 75, 67, 0.18) !important;
}

#soundcloud .sc-track-index {
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  color: #9e4d49 !important;
  background: #fff7f6 !important;
  font-size: 0.84rem !important;
  font-weight: 950 !important;
}

#soundcloud .sc-track.active .sc-track-index {
  color: #ffffff !important;
  background: #a64b43 !important;
}

#soundcloud .sc-track-title {
  min-width: 0 !important;
  overflow: hidden !important;
  color: #3e302d !important;
  font-size: 1.03rem !important;
  font-weight: 850 !important;
  line-height: 1.3 !important;
  white-space: normal !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

#soundcloud .sc-track-duration {
  flex: 0 0 auto !important;
  color: #9e4d49 !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  font-variant-numeric: tabular-nums !important;
  white-space: nowrap !important;
}

#soundcloud .sc-track-placeholder {
  padding: 22px !important;
  border-radius: 22px !important;
  background: rgba(255,255,255,0.72) !important;
  color: #7c625d !important;
  font-weight: 850 !important;
  text-align: center !important;
}

#soundcloud .sc-hidden-embed {
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  left: -9999px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 760px) {
  #soundcloud {
    width: calc(100% - 24px) !important;
    padding: 44px 0 !important;
  }

  #soundcloud .soundcloud-mini {
    padding: 18px !important;
    border-radius: 28px !important;
  }

  #soundcloud .sc-mini-head,
  #soundcloud .sc-mini-player {
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
  }

  #soundcloud .sc-mini-head h2 {
    font-size: clamp(2.1rem, 12vw, 3.4rem) !important;
  }

  #soundcloud .sc-mini-link {
    width: 100% !important;
  }

  #soundcloud .sc-mini-controls {
    justify-content: center !important;
  }

  #soundcloud .sc-track {
    grid-template-columns: 42px minmax(0, 1fr) auto !important;
    padding: 10px 14px !important;
  }

  #soundcloud .sc-track-duration {
    font-size: 0.78rem !important;
  }
}

/* =========================================================
   TIMELINE — HORIZONTAL SCROLL, SCALABLE
========================================================= */
#timeline.timeline-section {
  width: min(1300px, calc(100% - 44px)) !important;
  max-width: 1300px !important;
  margin: 100px auto !important;
  padding: 40px 0 !important;
  overflow: visible !important;
}

#timeline .timeline-horizontal {
  --timeline-card-width: clamp(260px, 32vw, 340px);
  --timeline-line-top: 46px;
  position: relative !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  margin-top: 50px !important;
  padding: 76px 8px 18px !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-snap-type: x mandatory !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(166, 75, 67, 0.42) rgba(255, 247, 246, 0.82) !important;
}

#timeline .timeline-horizontal::before {
  content: "" !important;
  position: absolute !important;
  top: var(--timeline-line-top) !important;
  left: 8% !important;
  right: 8% !important;
  height: 3px !important;
  background: linear-gradient(90deg, rgba(231,168,160,0.4), rgba(231,168,160,0.9), rgba(231,168,160,0.4)) !important;
  z-index: 1 !important;
}

#timeline .timeline-horizontal::-webkit-scrollbar {
  height: 10px !important;
}

#timeline .timeline-horizontal::-webkit-scrollbar-track {
  border-radius: 999px !important;
  background: rgba(255,247,246,0.82) !important;
}

#timeline .timeline-horizontal::-webkit-scrollbar-thumb {
  border-radius: 999px !important;
  background: rgba(166,75,67,0.38) !important;
}

#timeline .timeline-step {
  position: relative !important;
  z-index: 2 !important;
  flex: 0 0 var(--timeline-card-width) !important;
  min-width: var(--timeline-card-width) !important;
  scroll-snap-align: start !important;
  padding: 30px 20px !important;
  text-align: center !important;
  border-radius: 24px !important;
  border: 1px solid rgba(231,168,160,0.20) !important;
  background: rgba(255,255,255,0.75) !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#timeline .timeline-step::before {
  content: "" !important;
  position: absolute !important;
  top: calc((var(--timeline-line-top) * -1) + 1px) !important;
  left: 50% !important;
  width: 22px !important;
  height: 22px !important;
  transform: translateX(-50%) !important;
  border-radius: 50% !important;
  border: 4px solid #ffffff !important;
  background: #e7a8a0 !important;
  box-shadow: 0 0 0 8px rgba(231,168,160,0.18) !important;
}

#timeline .timeline-step::after {
  content: "" !important;
  position: absolute !important;
  top: calc((var(--timeline-line-top) * -1) - 7px) !important;
  left: 50% !important;
  width: 46px !important;
  height: 46px !important;
  transform: translateX(-50%) !important;
  border-radius: 50% !important;
  background: rgba(231,168,160,0.18) !important;
  z-index: -1 !important;
}

#timeline .timeline-step:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 18px 34px rgba(231,168,160,0.15) !important;
}

#timeline .timeline-step .year {
  display: inline-block !important;
  margin-bottom: 14px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(231,168,160,0.14) !important;
  color: #9b5f5f !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

#timeline .timeline-step h3 {
  margin: 0 0 10px !important;
  font-size: 22px !important;
  color: #70485f !important;
}

#timeline .timeline-step p {
  margin: 0 !important;
  color: #715853 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

@media (max-width: 900px) {
  #timeline.timeline-section {
    width: calc(100% - 28px) !important;
    margin: 76px auto !important;
  }

  #timeline .timeline-horizontal {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
    margin-top: 34px !important;
    padding: 10px 0 10px 42px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }

  #timeline .timeline-horizontal::before {
    top: 0 !important;
    bottom: 0 !important;
    left: 14px !important;
    right: auto !important;
    width: 3px !important;
    height: auto !important;
    background: linear-gradient(180deg, rgba(231,168,160,0.4), rgba(231,168,160,0.95), rgba(231,168,160,0.4)) !important;
  }

  #timeline .timeline-step {
    width: 100% !important;
    min-width: 0 !important;
    padding: 24px 18px !important;
    text-align: left !important;
    scroll-snap-align: none !important;
  }

  #timeline .timeline-step::before {
    top: 50% !important;
    left: -28px !important;
    transform: translate(-50%, -50%) !important;
  }

  #timeline .timeline-step::after {
    display: none !important;
  }

  #timeline .timeline-step h3,
  #timeline .timeline-step p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Gallery: fixed title area so long category names do not move the cards */
.gallery-activity-title {
  min-height: 3.4em !important;
  max-width: min(100%, 460px) !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
  line-height: 1.12 !important;
  text-wrap: balance !important;
}

@media (max-width: 680px) {
  .gallery-activity-title {
    min-height: auto !important;
  }

  .gallery-activity-block {
    padding-bottom: 58px !important;
  }

  .gallery-stack-card {
    width: min(88vw, 320px) !important;
    max-width: 320px !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    margin-bottom: 18px !important;
  }

  .gallery-stack-card .gallery-stack-photo {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
  }

  .gallery-stack-overlay {
    bottom: -64px !important;
    gap: 8px !important;
  }

  .gallery-stack-count {
    display: block !important;
    line-height: 1.25 !important;
    color: #7b6666 !important;
  }
}
