/* home.css — homepage-specific styles */

/* ============================================
   NAVBAR BASE (JS overrides trump these)
   ============================================ */

.site-header {
    width: 100%;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.donate-btn {
    white-space: nowrap;
    font-size: 0.88rem !important;
    padding: 9px 22px !important;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.donate-btn:hover {
    transform: translateY(-1px);
}

/* Dropdown nav */
.has-dropdown { position: relative; }

.nav-arrow {
    font-size: 0.62rem;
    margin-left: 4px;
    transition: transform 0.25s ease;
    vertical-align: middle;
}

.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 999;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    color: #1a4a2e !important;
    font-size: 0.9rem;
    font-weight: 400 !important;
    text-decoration: none;
    transition: background-color 0.15s, color 0.15s;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #f4f9f3;
    color: #4a7c59 !important;
}

/* Mobile dropdown */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: rgba(0,0,0,0.12);
        transition: opacity 0.3s ease, max-height 0.3s ease;
        pointer-events: none;
    }
    .has-dropdown.dropdown-open .dropdown-menu {
        opacity: 1;
        max-height: 400px;
        pointer-events: all;
    }
    .has-dropdown.dropdown-open .nav-arrow { transform: rotate(180deg); }
    .dropdown-menu li a {
        color: rgba(255,255,255,0.9) !important;
        padding: 10px 28px;
    }
    .dropdown-menu li a:hover {
        background: rgba(255,255,255,0.1);
        color: #ffffff !important;
    }
}

/* ============================================
   HERO — FULL VIEWPORT SLIDESHOW
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s ease-in-out, transform 7s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(5, 28, 10, 0.93) 0%,
        rgba(5, 28, 10, 0.60) 38%,
        rgba(5, 28, 10, 0.18) 68%,
        rgba(5, 28, 10, 0.04) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 90px;
    max-width: 820px;
}

.hero-label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: #ffffff;
    margin-bottom: 18px;
    padding: 6px 16px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    background: rgba(255,255,255,0.07);
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.14;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-subhead {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: rgba(255,255,255,0.87);
    max-width: 600px;
    margin-bottom: 34px;
    line-height: 1.72;
    font-weight: 300;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
    background-color: #4a7c59;
    color: #ffffff;
    border: 2px solid #4a7c59;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-hero-primary:hover {
    background-color: #1a4a2e;
    border-color: #1a4a2e;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.72);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background-color: rgba(255,255,255,0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.hero-indicators {
    position: absolute;
    bottom: 34px;
    right: 34px;
    z-index: 3;
    display: flex;
    gap: 9px;
}

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

.hero-dot.active {
    background: #ffffff;
    transform: scale(1.35);
}

.hero-scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.48);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    animation: scrollBounce 2.2s infinite;
}

.hero-scroll-cue i { font-size: 0.85rem; }

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION LABEL
   ============================================ */

.section-label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #4a7c59;
    margin-bottom: 10px;
    border-bottom: 2px solid #4a7c59;
    padding-bottom: 3px;
}

/* ============================================
   INTRO — text left, shaped image collage right
   ============================================ */

.intro { background-color: #ffffff; }

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 { margin-bottom: 14px; }

.intro-text > p {
    color: #666;
    line-height: 1.78;
    margin-bottom: 20px;
}

.intro-quote-block {
    background: linear-gradient(135deg, #f0f7ee, #e8f5e4);
    border-radius: 8px;
    padding: 20px 24px;
    border-left: 4px solid #4a7c59;
    position: relative;
    margin-bottom: 20px;
}

.intro-quote-block::before {
    content: "\201C";
    font-size: 5rem;
    color: #4a7c59;
    opacity: 0.1;
    position: absolute;
    top: -6px;
    left: 12px;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.intro-quote-block blockquote { margin: 0; padding: 0; border: none; }

.intro-quote-block blockquote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.06rem;
    color: #1a4a2e;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 8px;
}

.intro-quote-block cite {
    font-size: 0.81rem;
    color: #888;
    font-style: normal;
    font-weight: 600;
}

/* ---- IMAGE COLLAGE: tree-canopy shape ---- */

.intro-images {
    position: relative;
    width: 100%;
    height: 440px;
}

/* Image A — large, left, tall, rounded top like a canopy */
.intro-img-a {
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 82%;
    overflow: hidden;
    border-radius: 140px 140px 20px 20px; /* dome/canopy top */
    box-shadow: 0 16px 48px rgba(0,0,0,0.16);
    z-index: 2;
}

/* Image B — smaller, right, lower, rounded like a leaf */
.intro-img-b {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 62%;
    overflow: hidden;
    border-radius: 20px 100px 20px 100px; /* leaf / organic shape */
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    border: 5px solid #ffffff;
    z-index: 3;
}

.intro-img-a img,
.intro-img-b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.intro-img-a:hover img,
.intro-img-b:hover img {
    transform: scale(1.07);
}

/* Green accent circle between the two images */
.intro-img-accent {
    position: absolute;
    bottom: 36%;
    left: 46%;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid #4a7c59;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.intro-img-accent i {
    font-size: 1.3rem;
    color: #4a7c59;
}

/* ============================================
   FOCUS AREAS — FA icon circles
   ============================================ */

.focus-areas { background-color: #f7f9f7; }

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.focus-card {
    background-color: #ffffff;
    padding: 28px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-bottom-color 0.25s;
    border-bottom: 3px solid transparent;
    text-align: center;
}

.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom-color: #4a7c59;
}

.focus-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4edcf, #a8d5a2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background 0.25s;
}

.focus-card:hover .focus-icon-wrap {
    background: linear-gradient(135deg, #4a7c59, #1a4a2e);
}

.focus-icon-wrap i {
    font-size: 1.6rem;
    color: #1a4a2e;
    transition: color 0.25s;
}

.focus-card:hover .focus-icon-wrap i { color: #ffffff; }

.focus-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #1a4a2e;
}

.focus-card p {
    font-size: 0.91rem;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.6;
}

.card-link {
    font-weight: 700;
    color: #4a7c59;
    text-decoration: none;
    font-size: 0.88rem;
}
.card-link:hover { text-decoration: underline; }

/* ============================================
   IMPACT SECTION
   ============================================ */

.impact { background-color: #ffffff; }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.impact-card {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(135deg, #f5faf4, #edf5eb);
    border-radius: 10px;
    border-top: 4px solid #4a7c59;
    transition: transform 0.2s;
}

.impact-card:hover { transform: translateY(-4px); }

.impact-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a4a2e;
    line-height: 1;
    margin-bottom: 8px;
}

.impact-icon-fa {
    font-size: 2.6rem;
    color: #4a7c59;
    margin-bottom: 8px;
    line-height: 1;
}

.impact-label {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a7c59;
    margin-bottom: 6px;
}

.impact-detail {
    font-size: 0.86rem;
    color: #888;
    margin: 0;
}

/* ============================================
   TESTIMONIALS — photos + FA author icons
   ============================================ */

.testimonials {
    background-color: #f5f0e8;
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.testimonial-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

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

.testimonial-body { padding: 22px; }

.quote-mark {
    font-size: 3.5rem;
    color: #4a7c59;
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: -12px;
}

.testimonial-body p {
    font-size: 0.94rem;
    color: #444;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #eeeeee;
    padding-top: 14px;
}

.author-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4edcf, #a8d5a2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-icon i {
    font-size: 1rem;
    color: #1a4a2e;
}

.testimonial-author strong {
    display: block;
    font-size: 0.87rem;
    color: #1a4a2e;
}

.testimonial-author span {
    font-size: 0.77rem;
    color: #888;
}

/* ============================================
   FEATURED ACTIVITIES — real images
   ============================================ */

.featured { background-color: #f7f9f7; }

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.activity-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.activity-img-wrap {
    height: 200px;
    overflow: hidden;
}

.activity-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img-wrap img { transform: scale(1.06); }

.activity-body { padding: 22px; }

.activity-body h3 {
    font-size: 1.05rem;
    color: #1a4a2e;
    margin-bottom: 8px;
}

.activity-body p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.6;
}

/* ============================================
   QUOTE STRIP
   ============================================ */

.quote-strip {
    background-color: #1a4a2e;
    padding: 40px 0;
}

.quote-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.quote-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.quote-item span {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 7px;
}

.quote-item cite {
    font-size: 0.77rem;
    color: #a8d5a2;
    font-style: normal;
    font-weight: 600;
}

.quote-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

/* ============================================
   GET INVOLVED CTA
   ============================================ */

.get-involved {
    background: linear-gradient(135deg, #1a4a2e 0%, #2d6a4f 100%);
    color: #ffffff;
}

.cta-box {
    text-align: center;
    padding: 60px 0;
    max-width: 720px;
    margin: 0 auto;
}

.cta-box .section-label {
    color: #a8d5a2;
    border-bottom-color: #a8d5a2;
}

.cta-box h2 {
    color: #ffffff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 14px;
}

.cta-box > p {
    color: rgba(255,255,255,0.82);
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.72;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
    display: inline-block;
}

.btn-outline-white:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
}

.donate-detail {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* ============================================
   NEWS / UPDATES
   ============================================ */

.updates { background-color: #ffffff; }

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
}

.update-card {
    background-color: #f7f9f7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.update-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.update-img-wrap {
    height: 210px;
    overflow: hidden;
}

.update-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.update-body { padding: 20px; }

.update-date {
    font-size: 0.81rem;
    color: #888;
    margin-bottom: 8px;
}

.update-date i { margin-right: 5px; color: #4a7c59; }

.update-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.45;
}

.update-card h3 a { color: #1a4a2e; text-decoration: none; }
.update-card h3 a:hover { color: #4a7c59; }

.update-excerpt {
    font-size: 0.87rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.placeholder-news {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    border: 2px dashed #c8e6c0;
    background-color: #f8fbf7;
    box-shadow: none;
}

.placeholder-news .update-body { text-align: center; }
.placeholder-news h3 { color: #aaa !important; font-size: 0.95rem !important; }

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
    background: linear-gradient(135deg, #e4f2e0, #d0e8cc);
    text-align: center;
}

.final-cta-content { max-width: 640px; margin: 0 auto; }

.final-cta-content h2 {
    color: #1a4a2e;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.final-cta-content p {
    margin-bottom: 28px;
    color: #555;
    line-height: 1.7;
}

.final-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
    gap: 40px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 14px;
    display: block;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: #4a7c59;
    color: #ffffff;
}

.footer-donate-btn { margin-bottom: 12px; display: inline-block; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-quote {
    font-style: italic;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.42);
}

/* ============================================
   UTILITY
   ============================================ */

.text-center { text-align: center; }
.mt-2 { margin-top: 24px; }

.section-hidden {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
    .focus-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .placeholder-news:last-child { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
    .intro-layout { grid-template-columns: 1fr; }
    .intro-images { height: 320px; }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
    .activity-grid { grid-template-columns: 1fr 1fr; }
    .quote-strip-inner { flex-direction: column; gap: 20px; }
    .quote-divider { width: 60px; height: 1px; }
}

@media (max-width: 768px) {
    .hero { height: 100svh; }
    .hero-content { padding-bottom: 100px; }
    .hero-title { font-size: 2rem; }
    .hero-subhead { font-size: 0.95rem; }
    .focus-grid { grid-template-columns: 1fr 1fr; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .activity-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn,
    .cta-buttons .btn-outline-white { width: 100%; max-width: 300px; text-align: center; }
    .final-cta-btns { flex-direction: column; align-items: center; }
    .hero-indicators { right: 16px; bottom: 20px; }
    .intro-images { height: 260px; }
    .intro-img-a { border-radius: 80px 80px 16px 16px; }
    .intro-img-b { border-radius: 16px 60px 16px 60px; }
}
