/* ════════════════════════════════════════════════════════════════════════════
   ASP ANAKBAL v2 — Main Stylesheet
   Pixel-perfect port from React + Tailwind v4
   All styles scoped under .asp-root or asp- prefix
   ════════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --asp-primary: #FCE34D;
    --asp-primary-hover: #f5d93d;
    --asp-dark: #111;
    --asp-white: #fff;
    --asp-font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
    --asp-font-serif: "Playfair Display", ui-serif, Georgia, serif;
}

/* ─── Reset ─── */
.asp-root *,
.asp-root *::before,
.asp-root *::after,
.asp-header-wrapper *,
.asp-footer-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--asp-font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Background ─── */
.asp-page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.asp-page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
}

/* ─── SVG Filters ─── */
.asp-svg-filters {
    position: absolute;
    pointer-events: none;
}

/* ════════ LIQUID GLASS SYSTEM ════════ */
.liquidGlass-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform: translateZ(0);
    will-change: transform;
}

.liquidGlass-effect {
    position: absolute;
    inset: -10px;
    z-index: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    filter: url(#glass-distortion);
    isolation: isolate;
    will-change: filter, backdrop-filter;
}

.liquidGlass-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
}

.liquidGlass-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.4), inset -1px -1px 1px 1px rgba(255, 255, 255, 0.2);
}

/* ─── Scrollbar ─── */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

/* ─── Icons ─── */
.asp-icon {
    flex-shrink: 0;
}

.asp-icon.w-4 {
    width: 1rem;
    height: 1rem;
}

.asp-icon.h-4 {
    height: 1rem;
}

.asp-icon.w-5 {
    width: 1.25rem;
    height: 1.25rem;
}

.asp-icon.w-6 {
    width: 1.5rem;
    height: 1.5rem;
}

.asp-icon.w-8 {
    width: 2rem;
    height: 2rem;
}

.asp-icon.w-10 {
    width: 2.5rem;
    height: 2.5rem;
}

.asp-icon.w-12 {
    width: 3rem;
    height: 3rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   NAVBAR — ADMIN-BAR FIX (Issue #1)
   ════════════════════════════════════════════════════════════════════════════ */
.asp-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    pointer-events: none;
}

/* ★ ADMIN-BAR OFFSET ★ */
.admin-bar .asp-header-wrapper {
    top: var(--wp-admin--admin-bar--height, 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .asp-header-wrapper {
        top: var(--wp-admin--admin-bar--height, 46px);
    }
}

.asp-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    pointer-events: none;
}

.asp-nav-logo {
    flex: 1;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.asp-nav-logo img {
    max-height: 36px;
    width: auto;
}

/* Site Logo block inside nav */
.asp-nav-logo .wp-block-site-logo {
    margin: 0;
    padding: 0;
}

.asp-nav-logo .wp-block-site-logo img {
    max-height: 36px;
    width: auto;
    display: block;
}

.asp-nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
    display: none;
}

@media (min-width: 768px) {
    .asp-nav-center {
        display: block;
    }
}

.asp-nav-pill {
    display: flex;
    align-items: center;
    padding: 0.375rem;
    border-radius: 9999px !important;
    min-height: 0 !important;
    min-width: 0 !important;
}

/* WP Navigation block — styled as glass pill items */
.asp-wp-nav {
    position: relative;
    z-index: 10;
}

.asp-wp-nav .wp-block-navigation__container {
    gap: 0.25rem;
}

.asp-wp-nav .wp-block-navigation-item__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.3s;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.asp-wp-nav .wp-block-navigation-item__content:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #111;
}

.asp-wp-nav .current-menu-item .wp-block-navigation-item__content,
.asp-wp-nav .current_page_item .wp-block-navigation-item__content {
    background: var(--asp-primary);
    color: #111;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Nav right (Donate) */
.asp-nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    pointer-events: auto;
}

.asp-donate-pill {
    min-height: 0 !important;
    min-width: 0 !important;
    border-radius: 9999px !important;
    padding: 0.375rem 0.5rem;
}

.asp-donate-inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.asp-donate-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--asp-primary);
    color: #111;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.asp-donate-btn:hover {
    background: var(--asp-primary-hover);
    transform: scale(1.02);
}

@media (max-width: 1023px) {
    .asp-donate-text {
        display: none;
    }
}

/* ════════ MAIN CONTENT AREA ════════ */
.asp-main-content {
    position: relative;
    z-index: 20;
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8rem 1rem 8rem;
}

@media (min-width: 768px) {
    .asp-main-content {
        padding: 8rem 3rem 8rem;
    }
}

/* Admin-bar compensation for main content scroll */
.admin-bar .asp-main-content {
    padding-top: calc(8rem + var(--wp-admin--admin-bar--height, 32px));
}

.asp-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ════════ HERO ════════ */
.asp-hero {
    width: 100%;
    max-width: 1400px;
}

.asp-hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .asp-hero-inner {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .asp-hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
}

.asp-hero-left {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .asp-hero-left {
        width: 55%;
        min-height: 400px;
    }
}

.asp-hero-headline {
    font-family: var(--asp-font-serif);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--asp-dark);
    letter-spacing: -0.02em;
    white-space: pre-line;
}

@media (min-width: 768px) {
    .asp-hero-headline {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .asp-hero-headline {
        font-size: 4.5rem;
    }
}

.asp-hero-sub {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 32rem;
    margin-bottom: 3rem;
    line-height: 1.625;
    font-weight: 500;
}

/* Stacked Cards */
.asp-hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    height: 400px;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .asp-hero-right {
        width: 45%;
        justify-content: flex-end;
        height: 600px;
        margin-top: 0;
    }
}

.asp-cards-stack {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 100%;
}

.asp-card {
    position: absolute;
    background: #000;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.asp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.asp-card:hover img {
    transform: scale(1.05);
}

.asp-card[data-pos="0"] {
    top: 0;
    bottom: 0;
    left: 0;
    right: 1rem;
    z-index: 30;
}

.asp-card[data-pos="1"] {
    top: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.5rem;
    z-index: 20;
}

.asp-card[data-pos="2"] {
    top: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 0;
    z-index: 10;
}

@media (min-width: 768px) {
    .asp-card[data-pos="0"] {
        right: 4rem;
    }

    .asp-card[data-pos="1"] {
        top: 1.25rem;
        bottom: 1.25rem;
        left: 2rem;
        right: 2rem;
    }

    .asp-card[data-pos="2"] {
        top: 2.5rem;
        bottom: 2.5rem;
        left: 4rem;
    }
}

.asp-card[data-pos="0"] img {
    opacity: 1;
}

.asp-card[data-pos="1"] img {
    opacity: 0.7;
}

.asp-card[data-pos="2"] img {
    opacity: 0.5;
}

.asp-card-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.asp-card[data-pos="0"] .asp-card-overlay {
    opacity: 1;
}

.asp-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.asp-card-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    max-width: 240px;
    line-height: 1.625;
    font-weight: 500;
}

.asp-card-arrow {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--asp-primary);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    cursor: pointer;
    flex-shrink: 0;
    border: none;
    text-decoration: none;
}

.asp-card-arrow:hover {
    transform: scale(1.1);
    background: var(--asp-primary-hover);
}

/* ════════ ABOUT ════════ */
.asp-about-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
}

@media (min-width: 768px) {
    .asp-about-inner {
        padding: 4rem;
    }
}

.asp-about-icon {
    width: 6rem;
    height: 6rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.asp-about-title {
    font-family: var(--asp-font-serif);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--asp-dark);
}

.asp-about-desc {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    max-width: 56rem;
    line-height: 1.625;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.asp-about-divider {
    width: 100%;
    max-width: 56rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 4rem;
    margin-top: 4rem;
}

.asp-about-vol-title {
    font-family: var(--asp-font-serif);
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--asp-dark);
}

.asp-about-vol-text {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.625;
    font-weight: 500;
    margin-bottom: 2rem;
}

.asp-btn-primary {
    background: var(--asp-primary);
    color: #111;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.asp-btn-primary:hover {
    background: var(--asp-primary-hover);
}

/* ════════ OUR WORK ════════ */
.asp-work {
    padding-top: 1rem;
    padding-bottom: 6rem;
}

.asp-work-header {
    text-align: center;
    margin-bottom: 3rem;
}

.asp-work-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.asp-work-title {
    font-family: var(--asp-font-serif);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--asp-dark);
}

.asp-work-subtitle {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 500;
}

.asp-work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 768px) {
    .asp-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .asp-work-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.asp-work-card {
    height: 450px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.asp-work-card:hover {
    transform: translateY(-0.5rem);
}

.asp-work-card-img {
    height: 13rem;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.asp-work-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.asp-work-card:hover .asp-work-card-img img {
    transform: scale(1.05);
}

.asp-work-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05));
}

.asp-work-card-cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.asp-work-card-title {
    font-family: var(--asp-font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--asp-dark);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.asp-work-card-summary {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
    flex: 1;
}

.asp-work-card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--asp-dark);
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: auto;
    text-decoration: none;
}

.asp-work-card-link svg {
    transition: transform 0.2s;
}

.asp-work-card:hover .asp-work-card-link svg {
    transform: translateX(0.25rem);
}

/* ════════ NEWS ════════ */
.asp-news-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
}

@media (min-width: 768px) {
    .asp-news-inner {
        padding: 4rem;
    }
}

.asp-news-icon {
    width: 6rem;
    height: 6rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.asp-news-title {
    font-family: var(--asp-font-serif);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--asp-dark);
}

.asp-news-text {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    max-width: 48rem;
    line-height: 1.625;
    font-weight: 500;
}

/* ════════ CONTACT ════════ */
.asp-contact {
    padding-top: 1rem;
    padding-bottom: 6rem;
    text-align: center;
}

.asp-contact-title {
    font-family: var(--asp-font-serif);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--asp-dark);
}

.asp-contact-subtitle {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 42rem;
    margin: 0 auto 3rem;
    font-weight: 500;
}

.asp-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    text-align: left;
}

@media (min-width: 1024px) {
    .asp-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.asp-contact-info {
    position: relative;
    z-index: 10;
    padding: 2.5rem;
}

.asp-contact-info-title {
    font-family: var(--asp-font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--asp-dark);
    margin-bottom: 2rem;
}

.asp-contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.asp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.asp-contact-item-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(252, 227, 77, 0.8);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--asp-primary);
}

.asp-contact-item-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.asp-contact-item-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--asp-dark);
    line-height: 1.5;
}

.asp-contact-social {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.asp-contact-social-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.asp-contact-social-icons {
    display: flex;
    gap: 1rem;
}

.asp-contact-social-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--asp-dark);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.asp-contact-social-btn.fb:hover {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.5);
}

.asp-contact-social-btn.yt:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

.asp-contact-form-wrap {
    position: relative;
    z-index: 10;
    padding: 2.5rem;
}

.asp-contact-form-title {
    font-family: var(--asp-font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--asp-dark);
    margin-bottom: 2rem;
}

.asp-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.asp-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

.asp-form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    color: #111;
    font-weight: 500;
    font-family: var(--asp-font-sans);
    font-size: 1rem;
    transition: all 0.2s;
    outline: none;
}

.asp-form-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.asp-form-input:focus {
    box-shadow: 0 0 0 2px rgba(252, 227, 77, 0.5);
}

textarea.asp-form-input {
    resize: none;
    min-height: 120px;
}

.asp-btn-submit {
    width: 100%;
    background: var(--asp-primary);
    color: #111;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: var(--asp-font-sans);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.asp-btn-submit:hover {
    background: var(--asp-primary-hover);
    transform: scale(1.02);
}

.asp-btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ════════ DONATE ════════ */
.asp-donate-section {
    padding-top: 1rem;
    padding-bottom: 6rem;
    text-align: center;
}

.asp-donate-title {
    font-family: var(--asp-font-serif);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--asp-dark);
}

.asp-donate-subtitle {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 42rem;
    margin: 0 auto 3rem;
    font-weight: 500;
}

.asp-donate-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

@media (min-width: 1024px) {
    .asp-donate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.asp-donate-impact {
    position: relative;
    z-index: 10;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.asp-donate-impact-title {
    font-family: var(--asp-font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--asp-dark);
    margin-bottom: 2rem;
}

.asp-donate-tiers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.asp-donate-tier {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.asp-donate-tier-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(252, 227, 77, 0.8);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--asp-primary);
}

.asp-donate-tier-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--asp-dark);
    margin-bottom: 0.25rem;
}

.asp-donate-tier-desc {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    line-height: 1.625;
}

.asp-donate-quote {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.asp-donate-quote p {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8);
    font-style: italic;
    line-height: 1.625;
}

.asp-donate-form-wrap {
    position: relative;
    z-index: 10;
    padding: 2.5rem;
}

.asp-donate-form-title {
    font-family: var(--asp-font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--asp-dark);
    margin-bottom: 1.5rem;
}

.asp-donate-toggle {
    display: flex;
    padding: 0.375rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 9999px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.asp-donate-toggle-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    font-family: var(--asp-font-sans);
}

.asp-donate-toggle-btn:hover {
    color: #111;
}

.asp-donate-toggle-btn.active {
    background: #fff;
    color: #111;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.asp-amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .asp-amount-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.asp-amount-btn {
    padding: 0.875rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s;
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.7);
    font-family: var(--asp-font-sans);
}

.asp-amount-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.asp-amount-btn.active {
    background: var(--asp-primary);
    border-color: var(--asp-primary);
    color: #111;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.asp-amount-custom {
    position: relative;
}

.asp-amount-custom-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
}

.asp-amount-custom input {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 0.875rem 1rem 0.875rem 2rem;
    color: #111;
    font-weight: 700;
    font-family: var(--asp-font-sans);
    font-size: 1rem;
    outline: none;
    transition: all 0.2s;
}

.asp-amount-custom input:focus {
    box-shadow: 0 0 0 2px rgba(252, 227, 77, 0.5);
}

.asp-donate-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.asp-donate-fields-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .asp-donate-fields-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.asp-donate-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.asp-donate-field-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    color: #111;
    font-weight: 500;
    font-family: var(--asp-font-sans);
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s;
}

.asp-donate-field-input:focus {
    box-shadow: 0 0 0 2px rgba(252, 227, 77, 0.5);
}

.asp-btn-donate {
    width: 100%;
    background: var(--asp-dark);
    color: #fff;
    padding: 1.125rem;
    border-radius: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: var(--asp-font-sans);
    font-size: 1rem;
    margin-top: 1rem;
}

.asp-btn-donate:hover {
    background: #000;
    transform: scale(1.02);
}

.asp-donate-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ════════ FOOTER ════════ */
.asp-footer-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    pointer-events: none;
}

.asp-mobile-nav {
    display: block;
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: 95%;
    max-width: 400px;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .asp-mobile-nav {
        display: none;
    }
}

.asp-mobile-nav-pill {
    min-height: 0 !important;
    min-width: 0 !important;
    border-radius: 9999px !important;
    padding: 0.375rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.asp-mobile-nav-items {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0.5rem;
}

.asp-mob-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 9999px;
    transition: all 0.3s;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
}

.asp-mob-nav-item:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #111;
}

.asp-mob-nav-item.active {
    background: var(--asp-primary);
    color: #111;
}

.asp-footer-bar {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: 95%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .asp-footer-bar {
        bottom: 1.5rem;
        gap: 0.75rem;
    }
}

.asp-footer-main {
    flex: 1;
    min-height: 0 !important;
    min-width: 0 !important;
    border-radius: 9999px !important;
}

.asp-footer-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .asp-footer-content {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
}

.asp-footer-copy {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.asp-footer-link {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    flex-shrink: 0;
    transition: color 0.2s;
    cursor: pointer;
}

.asp-footer-link:hover {
    color: #111;
}

.asp-social-droplet {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    min-height: 0 !important;
    min-width: 0 !important;
    border-radius: 9999px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .asp-social-droplet {
        width: 3.25rem;
        height: 3.25rem;
    }
}

.asp-social-droplet:hover {
    transform: scale(1.05);
}

.asp-social-icon {
    position: relative;
    z-index: 10;
    width: 1rem;
    height: 1rem;
    color: rgba(0, 0, 0, 0.8);
    transition: color 0.3s;
}

@media (min-width: 768px) {
    .asp-social-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.asp-social-fb:hover {
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.5);
}

.asp-social-fb:hover .asp-social-icon {
    color: #1877F2;
}

.asp-social-fb:hover .liquidGlass-tint {
    background: rgba(24, 119, 242, 0.1) !important;
}

.asp-social-yt:hover {
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

.asp-social-yt:hover .asp-social-icon {
    color: #FF0000;
}

.asp-social-yt:hover .liquidGlass-tint {
    background: rgba(255, 0, 0, 0.1) !important;
}

/* ════════ ARTICLE DETAIL ════════ */
.asp-article-view {
    max-width: 1100px;
    width: 100%;
}

.asp-article-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .asp-article-inner {
        padding: 3rem;
    }
}

.asp-article-back {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    border: none;
    background: none;
    font-family: var(--asp-font-sans);
    font-size: 1rem;
}

.asp-article-back:hover {
    color: #111;
}

.asp-article-hero {
    width: 100%;
    height: 30vh;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .asp-article-hero {
        height: 40vh;
    }
}

.asp-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asp-article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

@media (min-width: 768px) {
    .asp-article-hero-overlay {
        padding: 3rem;
    }
}

.asp-article-hero-title {
    font-family: var(--asp-font-serif);
    font-size: 2.25rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.15;
    max-width: 56rem;
}

@media (min-width: 768px) {
    .asp-article-hero-title {
        font-size: 3.75rem;
    }
}

.asp-article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.asp-article-badge {
    background: var(--asp-primary);
    color: #111;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.asp-article-read-time {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    font-size: 0.875rem;
}

.asp-article-summary {
    font-family: var(--asp-font-serif);
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.625;
    margin-bottom: 2rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .asp-article-summary {
        font-size: 1.5rem;
    }
}

.asp-article-bar {
    width: 3rem;
    height: 0.25rem;
    background: var(--asp-primary);
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.asp-article-body {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    white-space: pre-line;
    line-height: 2;
    padding-bottom: 3rem;
    font-size: 1.125rem;
}

/* Gallery */
.asp-gallery {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.asp-gallery-title {
    font-family: var(--asp-font-serif);
    font-size: 1.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--asp-dark);
}

.asp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .asp-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.asp-gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.2s;
}

.asp-gallery-item:hover {
    transform: scale(1.02);
}

.asp-gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.asp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.asp-gallery-item.featured img {
    aspect-ratio: auto;
}

.asp-gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.asp-gallery-item:hover .asp-gallery-item-overlay {
    opacity: 1;
}

.asp-gallery-view-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: #111;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    transform: translateY(1rem);
    transition: transform 0.2s;
}

.asp-gallery-item:hover .asp-gallery-view-btn {
    transform: translateY(0);
}

/* Lightbox */
.asp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem;
}

.asp-lightbox.active {
    display: flex;
}

@media (min-width: 768px) {
    .asp-lightbox {
        padding: 3rem;
    }
}

.asp-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.asp-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.asp-lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Toast */
.asp-toast {
    position: fixed;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    font-weight: 700;
    font-size: 0.875rem;
}

.asp-toast.active {
    display: flex;
}

.asp-toast.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #15803d;
}

.asp-toast.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

/* ════════ ANIMATIONS ════════ */
@keyframes asp-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes asp-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.asp-animate-in {
    animation: asp-fade-in 0.4s ease forwards;
}

.asp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.asp-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ════════ WP OVERRIDES ════════ */
.asp-root .wp-block-group {
    max-width: none;
    padding: 0;
    margin: 0;
}

.asp-root p {
    margin: 0;
}

.asp-root h1,
.asp-root h2,
.asp-root h3,
.asp-root h4 {
    margin: 0;
    padding: 0;
}

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

.asp-root a {
    color: inherit;
}