* {
    font-family: 'Lexend', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --accent-color: #B86500;
}

body {
    padding-top: 120px;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 90px;
    /* height: 76px; */
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 1); /* 0.75 a */
    /* backdrop-filter: blur(14px); */
    /* -webkit-backdrop-filter: blur(14px); */
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    transition: background 0.3s ease;
}


.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-ul {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-ul-li {
    display: inline-block;
}

.nav-ul-li-a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
    display: block;
}

.nav-ul-li-a:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}

.nav-a-action {
    color: white;
    background-color: var(--accent-color);
    border: none;
    border-radius: 30px;
    padding: 9px 24px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.nav-a-action:hover {
    color: var(--accent-color);
    background: white;
}

/* Homepage */

/* Homepage hero */
.homepage-hero {
    position: relative;
    background-image: url('/images/background2.webp');
    background-size: cover;
    background-position: center 40%;
    background-position: fixed;
    height: calc(100vh - 100px);
    display: flex;
    align-items: flex-end;
}

.homepage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.75) 60%,
        rgba(0,0,0,0.85) 100%
    );
}

.homepage-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 90px 80px 90px;
}

/* ── Subpage hero fade-in (reusable) ─────────────────────── */

@keyframes page-hero-fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-anim-1 {
    will-change: transform, opacity;
    animation: page-hero-fade 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-anim-2 {
    will-change: transform, opacity;
    animation: page-hero-fade 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.hero-anim-3 {
    will-change: transform, opacity;
    animation: page-hero-fade 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* ── Hero entrance keyframes ─────────────────────────────── */

@keyframes hero-eyebrow-reveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-title-reveal {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-sub-reveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step 1 — eyebrow drifts down, fires immediately */
.homepage-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
    will-change: transform, opacity;
    animation: hero-eyebrow-reveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Step 2 — H1 masked slide-up, 150ms after eyebrow */
.homepage-heading-mask {
    overflow: hidden;
    margin-bottom: 14px;
}

.homepage-heading {
    font-size: 88px;
    font-weight: 700;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    will-change: transform, opacity;
    animation: hero-title-reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* Step 3 — subheading drifts up, 300ms after H1 starts */
.homepage-heading-secondary {
    font-size: 22px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    margin-bottom: 36px;
    letter-spacing: 0.04em;
    will-change: transform, opacity;
    animation: hero-sub-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.homepage-hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.homepage-hero-button {
    font-size: 15px;
    border-radius: 30px;
    padding: 13px 34px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Instrument Sans', sans-serif;
    background: var(--accent-color);
    color: white;
    border: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.homepage-hero-button:hover {
    background: white;
    color: var(--accent-color);
}

.homepage-hero-button-ghost {
    font-size: 15px;
    border-radius: 30px;
    text-decoration: none;
    padding: 12px 34px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Instrument Sans', sans-serif;
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.45);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.homepage-hero-button-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}

/* Homepage second image grid */

.homepage-second {
    background: #f8f2ed;
}

.homepage-second-centered {
    display: flex;
    flex: 0 0 auto;
    gap: 60px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 90px;
}

.homepage-second-image-grid {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 0;
    height: 400px;
}

.homepage-second-image-grid-0 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.homepage-second-image-grid-0-0 {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.homepage-second-image-grid-0-0 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage-second-image-grid-0-1 {
    flex: 2;
    overflow: hidden;
    border-radius: 12px;
}

.homepage-second-image-grid-0-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage-second-image-grid-1 {
    gap: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.homepage-second-image-grid-1-0 {
    flex: 2;
    overflow: hidden;
    border-radius: 12px;
}

.homepage-second-image-grid-1-0 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.homepage-second-image-grid-1-1 {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.homepage-second-image-grid-1-1 img {
    transform: scale(1.5) translateY(-20px);
}

.homepage-second-image-grid-1-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Homepage second text */
.homepage-second-text-div {
    flex: 1;
}

.homepage-second-text-heading {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.15;
}

.homepage-second-text-subheading {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.homepage-second-text-button {
    color: white;
    background: var(--accent-color);
    margin-top: 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s linear, color 0.2s linear;
}

.homepage-second-text-button:hover {
    color: var(--accent-color);
    background: white;
    transition: background 0.2s linear, color 0.2s linear;
}

.homepage-second-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.75;
}

/* Image Slider */
.slider-section {
    padding: 60px 90px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.slider-background-div {
    background: #111;
}

.highlights-text-heading {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 20px 20px 0 20px;
    color: white;
}

.highlights-text-subheading {
    text-align: center;
    margin: 10px 20px 70px 20px;
    font-size: 20px;
    color: #888;
}

.slider-track-wrapper {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 10px;
    transition: transform 0.4s ease;
}

.slider-slide {
    flex: 0 0 calc(25% - 8px);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
}

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

.slider-see-more {
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-see-more-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.slider-see-more-link:hover {
    opacity: 1;
}

.slider-see-more-text {
    font-size: 1.1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.slider-btn {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.65);
    color: white;
}

/* Testimonial section */

.testimonial-quote-name {
    color: var(--accent-color);
}

.testimonial-div {
    background: #f8f2ed;
}

.testimonial-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 90px;
}

.testimonial-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
}

.testimonial-subtitle {
    font-size: 16px;
    color: #999;
    margin-top: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.testimonial-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.testimonial-btn {
    background: transparent;
    color: #888;
    border: 1.5px solid #ddd;
    border-radius: 30px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.testimonial-btn:hover {
    background: #f0e8e0;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.testimonial-btn--pause {
    width: 36px;
    height: 36px;
    align-self: center;
    opacity: 0.6;
}

.testimonial-btn--pause:hover {
    opacity: 1;
}

.testimonial-track-wrapper {
    overflow: hidden;
    margin-top: 40px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e8e0d8;
    padding: 36px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
}

.testimonial-quote-mark {
    font-size: 64px;
    line-height: 1;
    color: var(--accent-color);
    font-family: Georgia, serif;
    display: block;
    margin-bottom: -8px;
}

.testimonial-body {
    font-size: 16px;
    color: #444;
    line-height: 1.75;
}

/* Schedule Section */
.schedule-section {
    background: #111;
}

.schedule-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 90px;
}

.schedule-header {
    margin-bottom: 40px;
}

.schedule-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.schedule-subtitle {
    font-size: 16px;
    color: #888;
    margin-top: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.schedule-day-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #2a2a2a;
}

.schedule-day-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #2a2a2a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.schedule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schedule-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-time {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    min-width: 48px;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.schedule-event {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #1e1e1e;
}

.footer-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 90px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #1e1e1e;
}

/* Brand */
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Newsletter */
.footer-newsletter-heading {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.footer-newsletter-sub {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
}

.footer-input {
    flex: 1;
    background: #141414;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Instrument Sans', sans-serif;
    color: white;
}

.footer-input::placeholder {
    color: #555;
}

.footer-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Instrument Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.footer-submit:hover {
    background: #d07500;
}

/* Links */
.footer-links-heading {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-list a {
    text-decoration: none;
    color: #888;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-link-list a:hover {
    color: white;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
}

.footer-copy {
    font-size: 13px;
    color: #444;
}

.footer-org {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* FAQ Section */
.faq-section {
    background: #f8f2ed;
}

.faq-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 90px;
}

.faq-header {
    margin-bottom: 48px;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
}

.faq-subtitle {
    font-size: 16px;
    color: #999;
    margin-top: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e0d8d0;
}

.faq-item {
    border-bottom: 1px solid #e0d8d0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    color: #111;
    text-align: left;
    gap: 24px;
    transition: color 0.3s ease-in-out;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-item--open .faq-question {
    color: var(--accent-color);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    line-height: 1;
    transition: transform 0.3s ease-in-out;
    display: inline-block;
}

.faq-item--open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-in-out;
}

.faq-item--open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding-bottom: 0;
    transition: padding-bottom 0.3s ease-in-out;
}

.faq-item--open .faq-answer-inner {
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    max-width: 780px;
}

.faq-answer-btn {
    display: inline-block;
    width: fit-content;
    margin-top: 16px;
    padding: 10px 24px;
    background: var(--accent-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-answer-btn:hover {
    background: #111;
    color: white;
}

/* ── About Page ─────────────────────────────────────────── */

.about-hero {
    position: relative;
    background-image: url('/images/Grouppicture.webp');
    background-size: cover;
    background-position: center 40%;
    height: 72vh;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.75) 60%,
        rgba(0,0,0,0.85) 100%
    );
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 90px 64px;
}

.about-hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.about-hero-heading {
    font-size: 64px;
    font-weight: 700;
    color: white;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.about-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    max-width: 560px;
    line-height: 1.6;
}

/* Mission strip */
.about-mission-section {
    background: #111;
}

.about-mission-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 90px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-mission-text {
    flex: 1;
}

.about-mission-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.about-mission-heading {
    font-size: 38px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-mission-body {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
}

.about-mission-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    flex-shrink: 0;
}

.about-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-stat-number {
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.about-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Team grid */
.about-team-section {
    background: #111;
}

.about-team-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 90px;
}

.about-team-header {
    margin-bottom: 56px;
}

.about-team-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.about-team-heading {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 12px;
}

.about-team-sub {
    font-size: 16px;
    color: #999;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-team-card {
    /* background: #e8edf0; */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 48px;
    position: relative;
}

.about-team-card-avatar {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: -48px;
    position: relative;
    z-index: 1;
    border: 4px solid #e8edf0;
}

.about-team-card-avatar-zoomed {
    scale: 0.85;
}

.about-team-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.about-team-card-avatar--placeholder {
    background: linear-gradient(135deg, #2a1a0a 0%, #5a2e00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-team-card-avatar--placeholder span {
    font-size: 36px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
}

.about-team-card-body {
    background: #292929;
    border-radius: 16px;
    padding: 64px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
    width: 100%;
}

.about-team-card-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.about-team-card-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.about-team-card-bio {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

/* Join CTA */
.about-join-section {
    background: #f8f2ed;
}

.about-join-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 90px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.about-join-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.about-join-heading {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-join-body {
    font-size: 17px;
    color: #666;
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 40px;
}

.about-join-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    padding: 14px 38px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.about-join-btn:hover {
    background: #111;
    color: white;
}

/* =====================
   CONTACT PAGE
   ===================== */

/* Hero */
.contact-hero {
    position: relative;
    height: 300px;
    background: black;
    display: flex;
    align-items: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 90px;
}

.contact-hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.contact-hero-heading {
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1.05;
    margin-bottom: 14px;
}

.contact-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    line-height: 1.7;
}

/* Body Section */
.contact-body-section {
    background: #0a0a0a;
}

.contact-body-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 90px;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

/* Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-icon {
    color: var(--accent-color);
    margin-bottom: 8px;
}

.contact-info-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
}

.contact-info-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.contact-info-note {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Main 2-col grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

/* Form */
.contact-form-wrap {
    display: flex;
    flex-direction: column;
}

.contact-form-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.contact-form-heading {
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 12px;
}

.contact-form-sub {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.04em;
}

.contact-input {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    color: white;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
}

.contact-input::placeholder {
    color: #444;
}

.contact-input:focus {
    border-color: var(--accent-color);
}

.contact-select {
    appearance: none;
    cursor: pointer;
    color: #444;
}

.contact-select option {
    color: white;
    background: #1a1a1a;
}

.contact-select:valid {
    color: white;
}

.contact-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    align-self: flex-start;
    background: var(--accent-color);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 14px 38px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 4px;
}

.contact-submit:hover {
    background: #9a5500;
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form-success {
    display: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 4px;
}

/* Side Panel */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 74px;
}

.contact-side-block {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-side-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.contact-side-body {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
}

.contact-inline-link {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-social-link:hover {
    color: var(--accent-color);
}

/* =====================
   RETREAT PAGE
   ===================== */

/* Hero */
.retreat-hero {
    position: relative;
    height: 300px;
    background: black;
    display: flex;
    align-items: center;
}

.retreat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
}

.retreat-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 90px;
}

.retreat-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.retreat-hero-heading {
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1.05;
    margin-bottom: 14px;
}

.retreat-hero-verse {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    line-height: 1.7;
    /* font-style: italic; */
}

.retreat-hero-verse-ref {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 0.04em;
}

/* Quick Details Bar */
.retreat-bar-section {
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
}

.retreat-bar-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 22px 90px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.retreat-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #aaa;
}

.retreat-bar-item svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.retreat-bar-divider {
    width: 1px;
    height: 20px;
    background: #333;
}

/* Body */
.retreat-body-section {
    background: #0a0a0a;
}

.retreat-body-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 90px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.retreat-divider {
    height: 1px;
    background: #1e1e1e;
    margin: 64px 0;
}

/* 2-col block */
.retreat-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.retreat-block--reverse {
    direction: rtl;
}

.retreat-block--reverse > * {
    direction: ltr;
}

.retreat-block-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.retreat-block-heading {
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.retreat-block-body {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.retreat-block-body strong {
    color: #aaa;
    font-weight: 600;
}

.retreat-btn {
    display: inline-block;
    align-self: center;
    background: var(--accent-color);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    padding: 13px 36px;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.2s ease;
}

.retreat-btn:hover {
    background: #9a5500;
}

/* Pricing Grid */
.retreat-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-self: start;
}

.retreat-price-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.retreat-price-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
}

.retreat-price-amount {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.retreat-price-free {
    color: var(--accent-color);
}

/* Info Cards (meals/lodging) */
.retreat-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: start;
}

.retreat-info-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.retreat-info-icon {
    color: var(--accent-color);
    margin-bottom: 4px;
}

.retreat-info-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
}

.retreat-info-value {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.retreat-info-note {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Notices */
.retreat-notice {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 32px 36px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.retreat-notice--accent {
    border-color: rgba(184, 101, 0, 0.3);
    background: rgba(184, 101, 0, 0.07);
}

.retreat-notice-icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.retreat-notice-heading {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.retreat-notice-body {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Get Involved list */
.retreat-involve-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-self: center;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 36px 32px;
}

.retreat-involve-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #ccc;
}

.retreat-involve-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    flex-shrink: 0;
}

/* Volunteer CTA */
.retreat-volunteer-block {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 64px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 64px;
}

.retreat-volunteer-heading {
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
}

.retreat-volunteer-body {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 36px;
}

/* Flyer */
.retreat-flyer-block {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.retreat-flyer-img {
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    display: block;
}

/* Theme Block */
.retreat-theme-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0 8px;
}

.retreat-theme-heading {
    font-size: 72px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 36px;
}

.retreat-theme-verse {
    font-size: 18px;
    font-style: italic;
    color: rgba(255,255,255,0.55);
    max-width: 680px;
    line-height: 1.75;
    border-left: 3px solid var(--accent-color);
    padding-left: 24px;
    text-align: left;
    margin-bottom: 14px;
}

.retreat-theme-ref {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.06em;
    align-self: flex-start;
    margin-left: calc((100% - 680px) / 2);
    margin-bottom: 36px;
}

.retreat-theme-body {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 640px;
}

/* =====================
   GALLERY PAGE
   ===================== */

/* Hero */
.gallery-hero {
    position: relative;
    height: 300px;
    background: black;
    display: flex;
    align-items: center;
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
}

.gallery-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 90px;
}

.gallery-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.gallery-hero-heading {
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1.05;
    margin-bottom: 14px;
}

.gallery-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    line-height: 1.7;
}

/* Retreat Picker */
.gallery-picker-section {
    background: #111;
    border-bottom: 1px solid #1e1e1e;
}

.gallery-picker-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 56px 90px;
}

.gallery-picker-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 24px;
}

.gallery-picker-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.gallery-picker-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
    text-align: left;
    width: 220px;
    padding: 0;
}

.gallery-picker-card:hover {
    border-color: #444;
    transform: translateY(-2px);
}

.gallery-picker-card--active {
    border-color: var(--accent-color) !important;
}

.gallery-picker-card-img-wrap {
    position: relative;
    height: 120px;
    background: #222;
    overflow: hidden;
}

.gallery-picker-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-picker-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.gallery-picker-card-info {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gallery-picker-card-year {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.gallery-picker-card-label {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.gallery-picker-card-count {
    font-size: 12px;
    color: #555;
}

/* Photo Grids */
.gallery-body-section {
    background: #0a0a0a;
    min-height: 400px;
}

.gallery-body-centered {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 90px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumb {
    background: #1a1a1a;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    aspect-ratio: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.gallery-thumb:hover {
    transform: scale(1.02);
    opacity: 0.88;
}

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

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.93);
    align-items: center;
    justify-content: center;
}

.gallery-lightbox--open {
    display: flex;
}

.gallery-lb-img {
    max-width: 88vw;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.1s ease;
}

.gallery-lb-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gallery-lb-close:hover {
    background: rgba(255,255,255,0.2);
}

.gallery-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gallery-lb-nav:hover {
    background: rgba(255,255,255,0.2);
}

.gallery-lb-prev { left: 28px; }
.gallery-lb-next { right: 28px; }

.gallery-lb-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
}

/* ============================================================
   HAMBURGER + MOBILE MENU
   ============================================================ */

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 201;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger--open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 8, 0.98);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 40px 24px;
}

.nav-mobile-menu--open {
    display: flex;
}

.nav-mobile-menu-link {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.nav-mobile-menu-link:hover,
.nav-mobile-menu-link:active {
    color: white;
    background: rgba(255,255,255,0.07);
}

.nav-mobile-menu-action {
    margin-top: 24px;
    display: inline-block;
    background: var(--accent-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    padding: 14px 48px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.nav-mobile-menu-action:hover {
    background: #d07500;
}

.nav-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-mobile-close:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

/* ============================================================
   RESPONSIVE — TABLET  ≤ 900px
   ============================================================ */

@media (max-width: 900px) {
    .nav {
        padding: 0 28px;
        height: 80px;
    }

    .nav-logo-img {
        height: 60px;
    }

    .nav-ul,
    .nav-a-action {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    body {
        padding-top: 80px;
    }

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

    /* Reduce all section horizontal padding from 90px → 32px */
    .homepage-hero-content,
    .homepage-second-centered,
    .slider-section,
    .testimonial-centered,
    .schedule-centered,
    .faq-centered,
    .footer-centered,
    .about-hero-content,
    .about-mission-centered,
    .about-team-centered,
    .about-join-centered,
    .contact-hero-content,
    .contact-body-centered,
    .retreat-hero-content,
    .retreat-bar-centered,
    .retreat-body-centered,
    .gallery-hero-content,
    .gallery-picker-centered,
    .gallery-body-centered {
        padding-left: 32px;
        padding-right: 32px;
    }

    /* Scale down headings */
    .homepage-heading { font-size: 62px; }
    .about-hero-heading { font-size: 50px; }
    .contact-hero-heading { font-size: 50px; }
    .gallery-hero-heading { font-size: 50px; }
    .retreat-hero-heading { font-size: 50px; }
    .retreat-theme-heading { font-size: 58px; }

    /* Schedule: 4 → 2 columns */
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Team: 3 → 2 columns */
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Retreat 2-col block gap */
    .retreat-block {
        gap: 40px;
    }

    /* Footer: 3 → 2 columns (hide quick links) */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-links {
        display: none;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE  ≤ 700px
   ============================================================ */

@media (max-width: 700px) {

    #left-align-retreat-btn {
        align-self: start;
    }

    .nav {
        padding: 0 16px;
        height: 70px;
    }

    .nav-logo-img {
        height: 50px;
    }

    body {
        padding-top: 70px;
    }

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

    /* All horizontal padding → 20px */
    .homepage-hero-content,
    .homepage-second-centered,
    .slider-section,
    .testimonial-centered,
    .schedule-centered,
    .faq-centered,
    .footer-centered,
    .about-hero-content,
    .about-mission-centered,
    .about-team-centered,
    .about-join-centered,
    .contact-hero-content,
    .contact-body-centered,
    .retreat-hero-content,
    .retreat-bar-centered,
    .retreat-body-centered,
    .gallery-hero-content,
    .gallery-picker-centered,
    .gallery-body-centered {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-logo {
        height: 50px;
    }

    /* Reduce section vertical padding */
    .homepage-second-centered,
    .testimonial-centered,
    .schedule-centered,
    .faq-centered,
    .about-mission-centered,
    .about-team-centered {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .about-join-centered {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .contact-body-centered {
        padding-top: 56px;
        padding-bottom: 56px;
        gap: 48px;
    }

    .gallery-picker-centered {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .gallery-body-centered {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .retreat-body-centered {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .footer-centered {
        padding-top: 48px;
        padding-bottom: 28px;
    }

    .slider-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    /* Hero heights */
    .about-hero {
        height: 50vh;
        min-height: 260px;
    }

    .about-hero-content {
        padding-bottom: 32px;
    }

    .contact-hero {
        height: 260px;
    }

    .gallery-hero {
        height: 240px;
    }

    .retreat-hero {
        height: 220px;
    }

    /* Heading sizes */
    .homepage-heading { font-size: 38px; }
    .homepage-heading-secondary { font-size: 16px; }
    .about-hero-heading { font-size: 34px; }
    .contact-hero-heading { font-size: 34px; }
    .gallery-hero-heading { font-size: 34px; }
    .retreat-hero-heading { font-size: 34px; }
    .retreat-theme-heading { font-size: 44px; }
    .retreat-block-heading { font-size: 28px; }
    .retreat-volunteer-heading { font-size: 28px; }
    .about-join-heading { font-size: 32px; }
    .about-mission-heading { font-size: 26px; }
    .about-team-heading { font-size: 28px; }
    .contact-form-heading { font-size: 26px; }
    .testimonial-title { font-size: 28px; }
    .schedule-title { font-size: 28px; }
    .faq-title { font-size: 28px; }
    .homepage-second-text-heading { font-size: 24px; }

    /* Homepage hero: stack buttons */
    .homepage-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* Homepage second section: stack */
    .homepage-second-centered {
        flex-direction: column;
        gap: 36px;
    }

    .homepage-second-image-grid {
        height: 340px;
        width: 100%;
    }

    /* Image slider: show 2 slides */
    .slider-slide {
        flex: 0 0 calc(50% - 5px);
    }

    /* Testimonial: 1 card at a time */
    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Schedule: 2 → 1 column */
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    /* About mission: stack */
    .about-mission-centered {
        flex-direction: column;
        gap: 36px;
    }

    .about-mission-stat-grid {
        width: 100%;
    }

    .about-stat {
        padding: 24px 20px;
    }

    .about-stat-number {
        font-size: 32px;
    }

    /* About team: 2 → 1 column */
    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-team-card-avatar {
        width: 180px;
        height: 180px;
    }

    /* Contact: stack everything */
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-side {
        padding-top: 0;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    /* Retreat: stack blocks */
    .retreat-block {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .retreat-block--reverse {
        direction: ltr;
    }

    .retreat-pricing-grid {
        grid-template-columns: 1fr;
    }

    .retreat-divider {
        margin: 40px 0;
    }

    .retreat-volunteer-block {
        padding: 40px 24px;
        text-align: left;
        align-items: flex-start;
    }

    .retreat-theme-ref {
        margin-left: 0;
    }

    .retreat-theme-verse,
    .retreat-theme-body {
        max-width: 100%;
    }

    .retreat-bar-centered {
        gap: 12px;
    }

    .retreat-bar-divider {
        display: none;
    }

    /* Gallery: 4 → 2 columns */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery picker: horizontal scroll instead of wrap */
    .gallery-picker-grid {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .gallery-picker-card {
        flex-shrink: 0;
    }

    /* Footer: 1 column, show all links */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Lightbox nav buttons: smaller on mobile */
    .gallery-lb-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-lb-prev { left: 12px; }
    .gallery-lb-next { right: 12px; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES  ≤ 400px
   ============================================================ */


@media (max-width: 400px) {
    .homepage-heading { font-size: 32px; }
    .about-hero-heading { font-size: 28px; }
    .contact-hero-heading { font-size: 28px; }
    .gallery-hero-heading { font-size: 28px; }
    .retreat-hero-heading { font-size: 28px; }
    .retreat-theme-heading { font-size: 36px; }

    .homepage-hero-content,
    .homepage-second-centered,
    .slider-section,
    .testimonial-centered,
    .schedule-centered,
    .faq-centered,
    .footer-centered,
    .about-hero-content,
    .about-mission-centered,
    .about-team-centered,
    .about-join-centered,
    .contact-hero-content,
    .contact-body-centered,
    .retreat-hero-content,
    .retreat-bar-centered,
    .retreat-body-centered,
    .gallery-hero-content,
    .gallery-picker-centered,
    .gallery-body-centered {
        padding-left: 16px;
        padding-right: 16px;
    }


}

/* Subscribe Modal */
.subscribe-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.subscribe-modal-overlay--open {
    opacity: 1;
    pointer-events: all;
}

.subscribe-modal {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 48px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.25s ease;
}

.subscribe-modal-overlay--open .subscribe-modal {
    transform: translateY(0);
}

.subscribe-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.subscribe-modal-close:hover {
    color: white;
}

.subscribe-modal-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.subscribe-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.subscribe-modal-sub {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 28px;
}

.subscribe-modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-modal-input {
    width: 100%;
    padding: 13px 18px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: white;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.subscribe-modal-input:focus {
    border-color: var(--accent-color);
}

.subscribe-modal-btn {
    width: 100%;
    padding: 13px;
    background: var(--accent-color);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.subscribe-modal-btn:hover {
    background: #9a5500;
}

.subscribe-modal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.subscribe-modal-msg {
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
}
