/* ============================================================
   TRUE JOY GLOBAL FOUNDATION — Renew Design
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 110px; }
body { font-family: 'Roboto', sans-serif; color: #1f2937; background: #fdfaf6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === DESIGN TOKENS === */
:root {
    --teal-900: #052e36;
    --teal-800: #0a4a52;
    --teal-600: #0c6b77;
    --teal-500: #0c7e89;
    --teal-100: #daf9ff;
    --gold:     #c9922a;
    --gold-400: #e8a820;
    --gold-300: #f5c842;
    --dark:     #0f1923;
    --text:     #1f2937;
    --gray:     #6b7280;
    --light:    #f3f4f6;
    --off-white:#fdfaf6;
    --white:    #ffffff;
    --radius:   10px;
    --shadow:   0 4px 24px rgba(0,0,0,0.09);
    --shadow-lg:0 16px 48px rgba(0,0,0,0.16);
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);
}

/* === UTILITIES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 0.6rem;
}
.section-eyebrow.light { color: var(--gold-300); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    color: var(--teal-800);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--gray);
    margin-top: 0.75rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.85rem 2.1rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-gold         { background: var(--gold-400); color: var(--dark); }
.btn-gold:hover   { background: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(232,168,32,0.35); }

.btn-outline-white             { border-color: rgba(255,255,255,0.8); color: white; }
.btn-outline-white:hover       { background: white; color: var(--teal-800); transform: translateY(-3px); }

.btn-teal         { background: var(--teal-500); color: white; }
.btn-teal:hover   { background: var(--teal-800); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(12,126,137,0.3); }

.btn-outline-teal             { border-color: var(--teal-500); color: var(--teal-500); }
.btn-outline-teal:hover       { background: var(--teal-500); color: white; transform: translateY(-3px); }

.btn-light        { background: white; color: var(--teal-800); }
.btn-light:hover  { background: var(--teal-100); transform: translateY(-3px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg .hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 8s ease;
}
.hero:hover .hero-bg .hero-img { transform: scale(1.04); }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(5, 46, 54, 0.62) 0%,
        rgba(10, 74, 82, 0.78) 55%,
        rgba(5, 20, 30, 0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    padding-top: 130px;
    animation: heroIn 1.1s var(--ease) both;
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.75rem;
    background: white;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0 6px 28px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

.hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 0.75rem;
    animation: heroIn 1.1s 0.15s var(--ease) both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
    animation: heroIn 1.1s 0.25s var(--ease) both;
}
.hero-title::after {
    content: '';
    display: block;
    width: 72px; height: 3px;
    background: var(--gold-400);
    margin: 1.1rem auto 1.25rem;
    border-radius: 3px;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.7rem);
    color: var(--teal-100);
    margin-bottom: 2.75rem;
    letter-spacing: 0.06em;
    animation: heroIn 1.1s 0.35s var(--ease) both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroIn 1.1s 0.45s var(--ease) both;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.65);
    font-size: 1.2rem;
    animation: bounce 2.2s 1.5s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--dark);
    border-top: 3px solid var(--gold-400);
    padding: 0;
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: stretch;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 2rem;
    flex: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease;
    position: relative;
}
.trust-item:hover {
    background: rgba(232, 168, 32, 0.06);
    text-decoration: none;
}

.trust-arrow {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--gold-400);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}
.trust-item:hover .trust-arrow {
    opacity: 1;
    transform: translateX(0);
}

.trust-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: rgba(232, 168, 32, 0.1);
    border: 1.5px solid rgba(232, 168, 32, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.trust-item:hover .trust-icon {
    background: rgba(232, 168, 32, 0.18);
    border-color: var(--gold-400);
    box-shadow: 0 0 18px rgba(232, 168, 32, 0.2);
}
.trust-icon i {
    font-size: 1.35rem;
    color: var(--gold-400);
}

.trust-text { display: flex; flex-direction: column; }
.trust-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.01em;
    line-height: 1.3;
}
.trust-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.22rem;
    letter-spacing: 0.01em;
}

.trust-divider {
    width: 1px;
    background: rgba(232, 168, 32, 0.15);
    align-self: stretch;
    margin: 0.75rem 0;
}

@media (max-width: 900px) {
    .trust-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }
    .trust-divider { display: none; }
    .trust-item {
        padding: 1.4rem 1.5rem;
        border-bottom: 1px solid rgba(232,168,32,0.1);
    }
    .trust-item:nth-child(odd) { border-right: 1px solid rgba(232,168,32,0.1); }
}

@media (max-width: 480px) {
    .trust-bar-inner { grid-template-columns: 1fr; }
    .trust-item:nth-child(odd) { border-right: none; }
}

/* ============================================================
   MISSION STRIP
   ============================================================ */
.mission-strip {
    background: var(--teal-800);
    padding: 1.75rem 0;
}
.strip-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 2.2rem;
    color: white;
}
.strip-item i { font-size: 1.4rem; color: var(--gold-400); }
.strip-item span {
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.strip-divider {
    width: 1px; height: 36px;
    background: rgba(255,255,255,0.2);
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section {
    padding: 7rem 0;
    background: var(--off-white);
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    color: var(--teal-800);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}
.story-text h2 em { color: var(--teal-500); font-style: italic; }
.story-text p {
    font-size: 1.05rem;
    line-height: 1.82;
    color: var(--gray);
    margin-bottom: 1.2rem;
}
.story-text .btn-teal { margin-top: 0.5rem; }

.story-image { position: relative; }
.story-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    display: block;
}
.story-badge {
    position: absolute;
    bottom: -1.5rem; left: -1.5rem;
    background: var(--gold-400);
    color: var(--dark);
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: var(--shadow);
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.35;
}
.story-badge i { font-size: 1.5rem; color: var(--teal-800); }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars-section {
    padding: 7rem 0;
    background: white;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.pillar-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 2.75rem 2rem 2.25rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pillar-icon {
    width: 72px; height: 72px;
    background: var(--teal-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    transition: var(--transition);
}
.pillar-icon i { font-size: 1.75rem; color: var(--teal-500); transition: var(--transition); }
.pillar-card:hover .pillar-icon { background: var(--teal-500); }
.pillar-card:hover .pillar-icon i { color: white; }

.pillar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--teal-800);
    margin-bottom: 0.9rem;
}
.pillar-card p {
    color: var(--gray);
    line-height: 1.72;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.pillar-link {
    color: var(--teal-500);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}
.pillar-link:hover { color: var(--gold-400); gap: 0.85rem; }

/* ============================================================
   SCRIPTURE
   ============================================================ */
.scripture-section {
    position: relative;
    padding: 9rem 2rem;
    background-image: url('../images/home/home-3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}
.scripture-overlay {
    position: absolute; inset: 0;
    background: rgba(5, 18, 28, 0.84);
}
.scripture-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.scripture-quote-icon {
    font-size: 3.2rem;
    color: var(--gold-400);
    opacity: 0.65;
    display: block;
    margin-bottom: 1.5rem;
}
.scripture-content blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.25rem, 2.5vw, 1.85rem);
    color: white;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.scripture-content cite {
    font-size: 1rem;
    color: var(--gold-400);
    font-weight: 700;
    letter-spacing: 0.12em;
    font-style: normal;
    text-transform: uppercase;
}

/* ============================================================
   GET INVOLVED
   ============================================================ */
.involved-section { padding: 7rem 0; background: var(--off-white); }
.involved-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.involved-card {
    background: white;
    border-radius: 14px;
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}
.involved-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.involved-card.highlight {
    background: var(--teal-800);
    color: white;
    border-color: transparent;
}
.involved-card.highlight .involved-icon { color: var(--gold-400); }
.involved-card.highlight h3 { color: white; }
.involved-card.highlight p { color: rgba(255,255,255,0.8); }
.involved-card.highlight .involved-num { color: rgba(255,255,255,0.12); }

.involved-num {
    position: absolute;
    top: 1.4rem; right: 1.6rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--teal-100);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    user-select: none;
}
.involved-icon {
    font-size: 2.8rem;
    color: var(--teal-500);
    margin-bottom: 1.25rem;
    display: block;
}
.involved-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--teal-800);
    margin-bottom: 0.9rem;
}
.involved-card p {
    color: var(--gray);
    line-height: 1.74;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip { height: 380px; }
.photo-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.25fr;
    height: 100%;
}
.photo-strip-item {
    position: relative;
    overflow: hidden;
}
.photo-strip-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.photo-strip-item:hover img { transform: scale(1.09); }
.photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,74,82,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.photo-strip-item:hover .photo-overlay { opacity: 1; }
.photo-overlay span {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.photo-strip-cta {
    background: var(--teal-800);
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-strip-cta-inner {
    text-align: center;
    padding: 2.5rem 2rem;
    color: white;
}
.photo-strip-cta-inner i {
    font-size: 2.6rem;
    color: var(--gold-400);
    margin-bottom: 0.75rem;
    display: block;
}
.photo-strip-cta-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.65rem;
}
.photo-strip-cta-inner p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================================
   DONATE
   ============================================================ */
.donate-section {
    padding: 7rem 0;
    background: var(--teal-900);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.donate-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.donate-glow-1 {
    width: 600px; height: 600px;
    top: -200px; right: -150px;
    background: radial-gradient(circle, rgba(12,126,137,0.18) 0%, transparent 70%);
}
.donate-glow-2 {
    width: 400px; height: 400px;
    bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(232,168,32,0.12) 0%, transparent 70%);
}
.donate-content { position: relative; z-index: 1; }
.donate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.donate-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 3.25rem;
    line-height: 1.75;
}
.donate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.donate-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
    font-weight: 600;
    min-width: 210px;
    border: 2px solid transparent;
}
.donate-btn:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
.donate-btn i { font-size: 1.8rem; }
.donate-btn-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.82;
}
.donate-btn-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}
.gofundme  { background: var(--gold-400); color: var(--dark); }
.gofundme:hover { background: var(--gold); color: var(--dark); }
.givebutter {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.28);
    backdrop-filter: blur(4px);
}
.givebutter:hover { background: rgba(255,255,255,0.18); color: white; border-color: rgba(255,255,255,0.5); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .story-grid { gap: 3rem; }
}

@media (max-width: 1100px) {
    /* Layout */
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .story-image { order: -1; }
    .story-badge { bottom: auto; top: -1rem; left: auto; right: -0.5rem; }

    .pillars-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .involved-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .photo-strip { height: auto; }
    .photo-strip-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .photo-strip-cta { grid-column: 1 / -1; }

    .strip-divider { display: none; }
    .strip-item { padding: 0.4rem 1.2rem; }

    .scripture-section { background-attachment: scroll; padding: 6rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.3rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .photo-strip-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 200px) auto; }
    .photo-strip-cta { grid-column: 1; }
    .donate-buttons { flex-direction: column; align-items: center; }
    .donate-btn { min-width: 260px; justify-content: center; }
    .strip-container { flex-direction: column; gap: 0.5rem; }
    .strip-item { width: 100%; justify-content: center; }
}

/* === IMPACT SLIDER === */
.impact-slider-section {
    padding: 5rem 0;
    background: #f4f7f6;
}

.impact-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    max-height: 520px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    background: #111;
}

.impact-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.impact-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.impact-slide.active { opacity: 1; }

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s;
    z-index: 2;
}

.slider-btn:hover { background: rgba(0,0,0,0.6); }
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.slider-gallery-link {
    text-align: center;
    margin-top: 1.75rem;
}

@media (max-width: 768px) {
    .impact-slider { aspect-ratio: 4 / 3; max-height: 340px; }
    .slider-btn { width: 38px; height: 38px; font-size: 0.85rem; }
}

/* === PILLAR CARD SLIDESHOWS === */
.pillar-slideshow {
    position: relative;
    width: calc(100% + 3rem);
    margin: -1.75rem -1.5rem 1.25rem;
    height: 210px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #111;
}

.pillar-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.pillar-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.pillar-slide.active { opacity: 1; }

.pillar-dots {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 2;
}

.pillar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

.pillar-dot.active {
    background: white;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .pillar-slideshow { height: 180px; }
}
