/* ── Base ── */
.main {
    background-color: #faf8f3;
    height: 90vh;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.main__container {
    padding-top: 6rem;
    padding-bottom: 6rem;
    height: 90vh;
    display: grid;
    grid-template-rows: auto auto auto auto;
    align-items: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    background-color: #faf8f3;
    background-image:
        radial-gradient(circle at 98% 7%, rgba(246, 220, 91, 0.296) 380px, transparent 380px),
        radial-gradient(circle at 69% -29%, rgba(247, 229, 138, 0.327) 360px, transparent 360px),
        radial-gradient(circle at 22% 103%, rgba(178, 238, 169, 0.451) 260px, transparent 260px),
        radial-gradient(circle at 5% 54%, rgba(138, 232, 157, 0.277) 300px, transparent 300px);
}

/* ── Desktop text ── */
.main__h1 {
    font-family: 'Playfair Display', sans-serif !important;
    font-size: clamp(4rem, 10vw, 6rem) !important;
    font-weight: 900 !important;
    letter-spacing: 0.3rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    background: linear-gradient(to right, #dec64e, #e1b659) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.main__h2 {
    font-family: 'Bebas Neue', serif !important;
    font-size: clamp(5rem, 10vw, 7.5rem) !important;
    letter-spacing: 0.6rem !important;
    line-height: 0.9 !important;
    text-align: center !important;
    background: linear-gradient(to right, #4a9460, #88c17a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.main__header {
    color: #1c1a16;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.main__header span {
    display: inline-block;
    width: 5vw;
    max-width: 100px;
    font-size: clamp(1rem, 4vw, 1.5rem);
    color: #1c1a16;
    white-space: nowrap;
}

.main__container .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.main__container .buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 2vh 3vw;
    margin: 0 2vh;
    border: 2px solid white;
    border-radius: 15px;
    background: #bfaa72;
    color: white;
    white-space: nowrap;
}

.main__container .buttons .button1 {
    border-color: #bfaa72;
    color: #bfaa72;
    background: white;
}

.main__container .buttons .button1:hover {
    border-color: white;
    color: white;
    background: #bfaa72;
}

.main__container .buttons .button2:hover {
    border-color: #bfaa72;
    color: #bfaa72;
    background: white;
}

/* ── Show/hide ── */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

/* ── Mobile ── */
@media screen and (max-width: 800px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .main {
        height: calc(100dvh - 64px);
    }

    .main__container {
        height: 100%;
        padding: 0 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        background-image:
        radial-gradient(circle at 105% 5%, rgba(246, 220, 91, 0.35) 160px, transparent 160px),
        radial-gradient(circle at 80% -10%, rgba(247, 229, 138, 0.3) 140px, transparent 130px),
        radial-gradient(circle at -5% 72%, rgba(138, 232, 157, 0.3) 130px, transparent 130px),
        radial-gradient(circle at 10% 100%, rgba(178, 238, 169, 0.45) 140px, transparent 140px);
    }

    .mobile__h1 {
        font-family: 'Playfair Display', sans-serif !important;
        font-size: 72px !important;
        font-weight: 900 !important;
        letter-spacing: -0.01em !important;
        line-height: 1.2 !important;
        text-align: left !important;
        background: linear-gradient(to right, #dec64e, #c9a832) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: transparent !important;
    }

    .mobile__h2 {
        font-family: 'Playfair Display', sans-serif !important;
        font-size: 64px !important;
        font-weight: 900 !important;
        letter-spacing: -0.01em !important;
        line-height: 1.2 !important;
        text-align: left !important;
        background: linear-gradient(to right, #4a9460, #6bb87e) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: transparent !important;
        margin-bottom: 0;
    }

    .main__container .buttons {
        padding: 1.5rem 0 0;
        gap: 0.6rem;
        justify-content: flex-start;
    }

    .main__container .buttons a {
        padding: 0.65rem 1.3rem;
        font-size: 0.9rem;
        margin: 0;
        border-radius: 12px;
    }
}

@media screen and (max-width: 400px) {
    .mobile__h1 {
        font-size: 58px !important;
    }

    .mobile__h2 {
        font-size: 52px !important;
    }
}

/* ── Scroll hint ── */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(191, 170, 114, 0.5);
    border-radius: 50%;
    font-size: 1rem;
    color: #bfaa72;
    text-decoration: none;
    animation: scrollHintBounce 2s ease-in-out infinite;
    transition: border-color 0.25s ease, background-color 0.25s ease;
    z-index: 2;
}

.scroll-hint:hover {
    border-color: #bfaa72;
    background-color: rgba(191, 170, 114, 0.08);
}

@keyframes scrollHintBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-hint {
        animation: none;
    }
}

@media screen and (max-width: 800px) {
    .scroll-hint {
        bottom: 26px;
        right: 26px;
    }
}

/* ── Divider ── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.2rem 0;
    background-color: #faf8f3;
    position: relative;
    z-index: 1;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: rgba(191, 170, 114, 0.4);
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #bfaa72;
}

/* ── Testimonials ── */
.testimonials {
    padding: 7vh 12.5vw;
    background-color: #faf8f3;
    border-bottom: 0.5px solid rgba(109, 109, 109, 0.241);
}

.testimonials .eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.9rem);
    font-weight: 900;
    letter-spacing: 0.2rem;
    color: #195923c1;
}

.testimonials h2 {
    margin-bottom: 0.3rem;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.test-card {
    background: white;
    border: 0.5px solid rgba(109, 109, 109, 0.2);
    border-radius: 20px;
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-icon {
    font-size: 1.3rem;
    color: #cda63ba9;
}

.test-text {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: #333;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.test-footer {
    padding-top: 1rem;
    border-top: 0.5px solid rgba(109, 109, 109, 0.12);
}

.test-author {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1c1a16;
}

.test-role {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 2px;
}

@media screen and (max-width: 900px) {
    .test-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 600px) {
    .testimonials {
        padding: 5vh 6vw;
    }
}

/* ── Testimonial band ── */
.quote-band {
    background-color: #f5f2e9;
    background-image: radial-gradient(circle, rgba(180, 150, 80, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
    border-bottom: 0.5px solid rgba(109, 109, 109, 0.241);
    padding: 4vh 12.5vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.quote-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.quote-icon {
    font-family: 'Playfair Display', sans-serif;
    font-size: 1.6rem;
    color: #bfaa72;
    line-height: 0.6;
}

.quote-text {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    color: #1c1a16;
    font-style: italic;
    line-height: 1.6;
}

.quote-author {
    font-size: 0.78rem;
    color: #6b6255;
    font-weight: 500;
    margin-top: 0.2rem;
}

@media screen and (max-width: 900px) {
    .quote-band {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ── Upcoming dates ── */
.dates-card-wrap {
    padding: 7vh 12.5vw;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.dates-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 0.5px solid rgba(109, 109, 109, 0.2);
    position: relative;
    z-index: 1;
}

.dates-header {
    background: #205228b7;
    padding: 2rem 2.2rem;
}

.dates-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.dates-title {
    font-family: 'Playfair Display', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 0;
}

.dates-body {
    padding: 2rem 2.2rem;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.date-chip {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: #f8f8f8;
    border: 0.5px solid rgba(109, 109, 109, 0.15);
    border-radius: 12px;
    padding: 0.6rem 1rem;
}

.date-chip-date {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3rem;
    line-height: 1;
    /* padding-right: 0.9rem;
    border-right: 1px solid rgba(109, 109, 109, 0.2); */
}

.date-chip-month {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #205228;
}

.date-chip-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #205228;
    margin-top: 0.15rem;
}

.date-chip-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
}

.dates-bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.dates-bubble--1 {
    width: 380px;
    height: 380px;
    left: -70px;
    bottom: -100px;
    background: rgba(178, 238, 169, 0.4);
}

.dates-bubble--2 {
    width: 320px;
    height: 320px;
    right: -110px;
    bottom: 100px;
    background: rgba(246, 220, 91, 0.3);
}

.dates-bubble--3 {
    width: 420px;
    height: 420px;
    right: -140px;
    bottom: -90px;
    background: rgba(246, 220, 91, 0.3);
}

@media screen and (max-width: 900px) {
    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .dates-card-wrap {
        padding: 4vh 6vw;
    }

    .dates-header {
        padding: 1.5rem 1.5rem;
    }

    .dates-body {
        padding: 1.5rem;
    }

    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}