/* Main stylesheet for Lamp for the Nations Website */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #3d0778;
    --bg-section: #2f055d;
    --accent: #FF7F00;
    --accent-light: #c4a574;
    --accent-gradient: linear-gradient(135deg, #ff9f40 0%, #FF7F00 50%, #e66b00 100%);
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);
    --border-light: rgba(196, 165, 116, 0.6);
    --cream: #f5f0e6;
    --text-on-cream: #2d2a26;
    --text-on-cream-muted: #5c564d;
}

body {
    font-family: Oswald, "Arial Narrow", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-dark);
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Header */
.site-header {
    position: relative;
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-dark) 50%, #26044a 100%);
    padding: 0 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid rgba(255, 127, 0, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 127, 0, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.header-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: 0.5rem 0;
}

/* Blend white in logo with header so it appears transparent */
.logo-img {
    height: 72px;
    width: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    mix-blend-mode: multiply;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
}

.logo-title {
    font-family: Oswald, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: var(--text);
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--accent-light);
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-link {
    font-family: Oswald, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
}

/* Hero - full viewport height minus header (120px), video only */
.hero {
    position: relative;
    height: calc(100vh - 120px);
    min-height: calc(100vh - 120px);
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-bg-video.active {
    opacity: 1;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(61, 7, 120, 0.15) 0%, rgba(61, 7, 120, 0.35) 100%);
    z-index: 2;
}

/* Section rhythm – alternating backgrounds */
.section {
    padding: 3rem 2rem;
}

.section-alt {
    background-color: var(--bg-section);
}

.section-cream {
    background-color: var(--cream);
}

/* Welcome section – below hero */
.hero-welcome {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-welcome-title {
    font-family: Oswald, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-welcome-subtitle {
    font-family: Oswald, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-welcome-intro {
    color: var(--text-muted);
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 42em;
    margin: 0 auto;
}

.section-cream .hero-welcome-intro {
    color: var(--text-on-cream-muted);
}

.section-cream .hero-welcome-subtitle {
    color: var(--text-on-cream);
}

/* Pamphlet: EQUIP EMPOWER SEND tagline */
.hero-welcome-tagline {
    font-family: Oswald, sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 1.75rem;
    line-height: 1.5;
}

.tagline-break {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.section-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
}

/* Pamphlet: scripture quote bar */
.scripture-band {
    background: linear-gradient(90deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    padding: 0.9rem 1.5rem;
    margin-bottom: 2rem;
}

.scripture-band-text {
    font-family: Oswald, sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 500;
    color: var(--text);
    text-align: center;
    letter-spacing: 0.02em;
    margin: 0;
}

/* Scripture section - 4-panel with hexagonal frames (pamphlet) */
.scripture-section .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    min-height: 260px;
}

.scripture-section .image-grid.image-grid--hex .hex-wrap {
    position: relative;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.scripture-section .image-grid.image-grid--hex .hex-wrap img {
    width: 100%;
    height: 100%;
    min-height: 130px;
    object-fit: cover;
    display: block;
}

.scripture-section .image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.scripture-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.scripture-ref {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.scripture-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
}

.scripture-text sup {
    font-size: 0.75em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(255, 127, 0, 0.3);
}

@media (max-width: 480px) {
    .btn-primary {
        align-self: stretch;
        text-align: center;
    }
}

.btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(255, 127, 0, 0.4);
}

/* Mission section */
.mission-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.mission-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    text-align: center;
}

/* Why section */
.section-heading {
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.03em;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.3;
}

.why-content-box {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.why-content-box p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
}

.why-image img,
.programs-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

/* Programs section */
.programs-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.programs-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
}

/* ========== Staff Page ========== */

/* Eyebrow label */
.staff-eyebrow {
    font-family: Oswald, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin: 0 0 0.4rem;
}

.staff-eyebrow--light {
    color: var(--accent);
    opacity: 0.9;
}

.staff-page-title {
    font-family: Oswald, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0 0 0.6rem;
    line-height: 1.1;
}

.staff-page-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0 auto 2.5rem;
    max-width: 540px;
    line-height: 1.65;
}

/* Hero section */
.staff-hero {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
}

.staff-hero-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

/* Video column */
.staff-hero-video-col {
    display: flex;
    flex-direction: column;
}

.staff-hero-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    background: var(--bg-section);
    aspect-ratio: 16 / 9;
    border: 2px solid rgba(255, 127, 0, 0.25);
}

.staff-hero-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.staff-hero-video-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0.6rem 0 0;
    font-style: italic;
    opacity: 0.75;
}

/* Text column */
.staff-hero-text-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    padding-top: 0.25rem;
}

.staff-mission-label {
    font-weight: 600;
    color: var(--text);
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.staff-mission-list {
    margin: 0;
    padding-left: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.staff-mission-list li {
    font-size: 0.975rem;
    line-height: 1.65;
}

.staff-hero-closing {
    font-size: 0.975rem;
    color: var(--accent-light);
    font-style: italic;
    margin-top: 0.25rem;
}

/* ========== Vision Card ========== */
.vision-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.vision-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 6px 32px rgba(45, 42, 38, 0.1);
    border: 1px solid rgba(196, 165, 116, 0.25);
}

.vision-card-photo {
    width: 200px;
    flex-shrink: 0;
    margin: 0 auto;
}

.vision-card-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.vision-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.vision-card-tag {
    display: inline-block;
    font-family: Oswald, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--bg-dark);
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.3rem;
    width: fit-content;
}

.vision-card-name {
    font-family: Oswald, sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-on-cream);
    line-height: 1.2;
    margin: 0;
}

.vision-card-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FF7F00;
    letter-spacing: 0.02em;
    margin: 0 0 0.5rem;
}

.vision-card-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-on-cream-muted);
    margin: 0;
    font-style: italic;
    border-left: 3px solid var(--bg-dark);
    padding-left: 1rem;
}

/* ========== Team Section ========== */
.team-section {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

/* Staff Card */
.staff-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 127, 0, 0.3);
}

/* Hexagon photo inside card */
.staff-card-photo {
    width: 140px;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.staff-card-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hexagon clip */
.hex-image-wrap {
    overflow: hidden;
}

.staff-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
}

.staff-card-name {
    font-family: Oswald, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin: 0;
}

.staff-card-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.03em;
    margin: 0 0 0.6rem;
    text-transform: uppercase;
}

.staff-card-bio {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    text-align: left;
}

/* ========== About Page ========== */

.about-eyebrow {
    font-family: Oswald, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin: 0 0 0.4rem;
}

.about-eyebrow--light {
    opacity: 0.9;
}

.about-page-title {
    font-family: Oswald, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-align: center;
    margin: 0 0 2.5rem;
    line-height: 1.1;
}

/* ---- WHO WE ARE hero ---- */
.about-hero {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

.about-hero-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    max-width: 1060px;
    margin: 0 auto;
}

.about-hero-image-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.about-hero-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 127, 0, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    aspect-ratio: 4 / 3;
    background: var(--bg-section);
}

.about-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero-img-caption {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    opacity: 0.7;
}

.about-hero-text-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.about-inline-link {
    color: var(--accent);
    font-weight: 600;
    transition: opacity 0.2s;
}

.about-inline-link:hover {
    opacity: 0.8;
}

/* Scripture pull-quote block */
.about-scripture-block {
    border-left: 3px solid var(--accent);
    padding: 0.85rem 1.25rem;
    background: rgba(255, 127, 0, 0.06);
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.about-scripture-ref {
    font-family: Oswald, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.03em;
    margin: 0;
}

.about-scripture-text {
    font-size: 0.975rem;
    line-height: 1.75;
    color: var(--text);
    font-style: italic;
    margin: 0;
}

.about-scripture-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0;
}

/* ---- OUR CORE BELIEFS ---- */
.about-beliefs {
    padding-top: 4rem;
    padding-bottom: 5rem;
    background: var(--bg-section);
}

.about-beliefs-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Core Values quick summary box */
.core-values-summary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 127, 0, 0.2);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.core-values-summary-title {
    font-family: Oswald, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 1rem;
}

.core-values-ol {
    margin: 0;
    padding-left: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.core-values-ol li {
    font-size: 0.975rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Core Values detail section */
.core-values-detail {
    margin-top: 0;
}

.core-values-detail-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.core-values-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* Belief cards grid */
.belief-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.belief-card {
    display: flex;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.6rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.belief-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 127, 0, 0.3);
}

.belief-card-number {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 0.1rem;
    box-shadow: 0 2px 10px rgba(255, 127, 0, 0.35);
}

.belief-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.belief-card-title {
    font-family: Oswald, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
}

.belief-card-ref {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
    margin: 0;
}

.belief-card-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ---- About responsive ---- */
@media (max-width: 768px) {
    .about-hero-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-img-wrap {
        aspect-ratio: 16 / 9;
    }

    .belief-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .core-values-summary {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .about-beliefs {
        padding-top: 2.5rem;
        padding-bottom: 3.5rem;
    }

    .about-page-title {
        margin-bottom: 1.75rem;
    }

    .belief-card {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .belief-card-number {
        width: 32px;
        height: 32px;
        font-size: 0.88rem;
    }
}

/* ========== Academics Page ========== */

.acad-eyebrow {
    font-family: Oswald, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin: 0 0 0.4rem;
}

.acad-eyebrow--light {
    opacity: 0.9;
}

.acad-page-title {
    font-family: Oswald, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-align: center;
    margin: 0 0 2.5rem;
    line-height: 1.1;
}

/* ---- Hero ---- */
.acad-hero {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

.acad-hero-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}

.acad-hero-video-col {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.acad-hero-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 127, 0, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    background: var(--bg-section);
}

.acad-hero-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.acad-hero-video-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    opacity: 0.7;
    margin: 0;
}

.acad-hero-text-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acad-hero-subtitle {
    font-family: Oswald, sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
}

.acad-hero-text-col p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* ---- Three-Year Curriculum ---- */
.acad-curriculum {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    background: var(--bg-dark);
}

/* Stats bar */
.curr-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0;
    max-width: 760px;
    margin: 0 auto 4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 127, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.curr-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0 1.75rem;
}

.curr-stat-value {
    font-family: Oswald, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.curr-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.65;
}

.curr-stat-sep {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 127, 0, 0.2);
    flex-shrink: 0;
}

/* Year blocks */
.curr-year-block {
    max-width: 1060px;
    margin: 0 auto 3.5rem;
}

.curr-year-block--last {
    margin-bottom: 0;
}

/* Year 3 badge variant */
.curr-year-badge--y3 {
    background: rgba(255, 127, 0, 0.15);
    border: 1px solid rgba(255, 127, 0, 0.5);
    color: var(--accent);
    box-shadow: none;
}

/* Two-phase grid */
.curr-phases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Individual phase card */
.curr-phase {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.curr-phase-label {
    font-family: Oswald, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
    margin: 0;
    padding: 0.75rem 1.1rem;
    background: rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Course rows */
.curr-course-list {
    display: flex;
    flex-direction: column;
}

.curr-course-row {
    display: grid;
    grid-template-columns: 62px 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s ease;
}

.curr-course-row:last-child {
    border-bottom: none;
}

.curr-course-row:hover {
    background: rgba(255, 127, 0, 0.05);
}

/* Category tags */
.curr-cat-tag {
    font-family: Oswald, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    border: 1px solid transparent;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.curr-cat-ot {
    color: #ffc84a;
    background: rgba(255, 200, 74, 0.1);
    border-color: rgba(255, 200, 74, 0.28);
}

.curr-cat-nt {
    color: #6db8ff;
    background: rgba(109, 184, 255, 0.1);
    border-color: rgba(109, 184, 255, 0.28);
}

.curr-cat-dp {
    color: #6de0a0;
    background: rgba(109, 224, 160, 0.1);
    border-color: rgba(109, 224, 160, 0.28);
}

.curr-cat-mp {
    color: var(--accent);
    background: rgba(255, 127, 0, 0.1);
    border-color: rgba(255, 127, 0, 0.28);
}

/* Course body (code + name) */
.curr-course-body {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}

.curr-course-code {
    font-family: Oswald, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.curr-course-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
}

.curr-course-prof {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Schedule Section ---- */
.acad-schedule {
    padding-top: 4rem;
    padding-bottom: 5rem;
    background: var(--bg-section);
}

.acad-schedule-notes {
    max-width: 780px;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 127, 0, 0.18);
    border-radius: 10px;
    padding: 1.5rem 2rem;
}

.acad-schedule-notes p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

/* Year block */
.acad-year-block {
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

.acad-year-block:last-child {
    margin-bottom: 0;
}

.acad-year-title {
    font-family: Oswald, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.03em;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 127, 0, 0.3);
}

.acad-year-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Oswald, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 127, 0, 0.35);
}

.acad-year-badge--alt {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 127, 0, 0.5);
}

/* Class list */
.acad-class-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

/* Individual class row */
.acad-class-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.15s ease;
}

.acad-class-item:last-child {
    border-bottom: none;
}

.acad-class-item:hover {
    background: rgba(255, 127, 0, 0.05);
}

/* Break rows — more subtle */
.acad-class-item--break {
    background: rgba(0, 0, 0, 0.15);
}

.acad-class-item--break:hover {
    background: rgba(0, 0, 0, 0.2);
}

.acad-class-day-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
    padding: 1rem 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.12);
}

.acad-class-day {
    font-family: Oswald, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.acad-class-item--break .acad-class-day {
    color: var(--text-muted);
    font-size: 0.78rem;
    opacity: 0.6;
}

.acad-class-slot {
    font-size: 0.73rem;
    color: var(--text-muted);
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.acad-class-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.9rem 1.25rem;
}

.acad-class-times {
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.acad-class-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.45;
}

/* ---- Academics responsive ---- */
@media (max-width: 768px) {
    .acad-hero-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .acad-class-item {
        grid-template-columns: 110px 1fr;
    }

    .acad-year-title {
        font-size: 1.1rem;
    }

    .acad-schedule-notes {
        padding: 1.25rem 1.25rem;
    }

    .curr-phases {
        grid-template-columns: 1fr;
    }

    .curr-stat {
        padding: 0 1rem;
    }

    .curr-course-row {
        grid-template-columns: 56px 1fr;
    }

    .curr-course-prof {
        display: none;
    }
}

@media (max-width: 600px) {
    .acad-hero {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .acad-curriculum {
        padding-top: 3rem;
        padding-bottom: 3.5rem;
    }

    .curr-stats {
        padding: 1.25rem 1rem;
        gap: 0.75rem 0;
    }

    .curr-stat {
        padding: 0 0.75rem;
    }

    .curr-stat-value {
        font-size: 1.4rem;
    }

    .curr-stat-sep {
        height: 2rem;
    }

    .curr-course-row {
        grid-template-columns: 50px 1fr;
    }

    .acad-schedule {
        padding-top: 2.5rem;
        padding-bottom: 3.5rem;
    }

    .acad-page-title {
        margin-bottom: 1.75rem;
    }

    .acad-class-item {
        grid-template-columns: 1fr;
    }

    .acad-class-day-wrap {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .acad-class-info {
        padding: 0.75rem 1rem;
    }

    .acad-class-slot::before {
        content: "·  ";
    }
}

/* ========== Enroll Page ========== */

.enroll-eyebrow {
    font-family: Oswald, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin: 0 0 0.4rem;
}

.enroll-eyebrow--light {
    opacity: 0.9;
}

.enroll-page-title {
    font-family: Oswald, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-align: center;
    margin: 0 0 2.5rem;
    line-height: 1.1;
}

.enroll-section-title {
    font-family: Oswald, sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0 0 3rem;
    line-height: 1.2;
}

/* ---- Hero ---- */
.enroll-hero {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

.enroll-hero-centered {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

/* Scripture pull-quote */
.enroll-hero-scripture {
    background: rgba(255, 127, 0, 0.07);
    border: 1px solid rgba(255, 127, 0, 0.25);
    border-radius: 12px;
    padding: 1.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.enroll-scripture-ref {
    font-family: Oswald, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.enroll-scripture-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Visual divider between scripture and intro */
.enroll-hero-divider {
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.6;
}

.enroll-hero-intro {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.enroll-hero-subtitle {
    font-family: Oswald, sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
}

.enroll-hero-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* ---- Requirements Section ---- */
.enroll-requirements {
    padding-top: 4rem;
    padding-bottom: 5rem;
    background: var(--bg-section);
}

.enroll-req-list {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

/* Each requirement row */
.enroll-req-item {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.15s ease;
}

.enroll-req-item:last-child {
    border-bottom: none;
}

.enroll-req-item:hover {
    background: rgba(255, 127, 0, 0.04);
}

/* Highlight the "ready to enroll" row */
.enroll-req-item--cta {
    background: rgba(255, 127, 0, 0.06);
    border-top: 1px solid rgba(255, 127, 0, 0.2);
}

.enroll-req-item--cta:hover {
    background: rgba(255, 127, 0, 0.1);
}

/* Label column */
.enroll-req-label-col {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.1);
}

.enroll-req-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 127, 0, 0.15);
    border: 1px solid rgba(255, 127, 0, 0.4);
    color: var(--accent);
    font-family: Oswald, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 0.1rem;
}

.enroll-req-number--accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 2px 10px rgba(255, 127, 0, 0.4);
}

.enroll-req-label {
    font-family: Oswald, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    padding-top: 0.2rem;
}

/* Description column */
.enroll-req-desc {
    padding: 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.enroll-req-desc p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

/* CTA button */
.enroll-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-enroll {
    font-family: Oswald, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 127, 0, 0.4);
}

.btn-enroll:hover {
    box-shadow: 0 6px 28px rgba(255, 127, 0, 0.55);
}

/* ---- Enroll responsive ---- */
@media (max-width: 768px) {
    .enroll-hero-scripture {
        padding: 1.4rem 1.5rem;
    }

    .enroll-req-item {
        grid-template-columns: 1fr;
    }

    .enroll-req-label-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 1.25rem 1.5rem;
        background: rgba(0, 0, 0, 0.15);
    }

    .enroll-req-desc {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .enroll-hero {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .enroll-requirements {
        padding-top: 2.5rem;
        padding-bottom: 3.5rem;
    }

    .enroll-page-title {
        margin-bottom: 1.75rem;
    }

    .enroll-section-title {
        margin-bottom: 2rem;
    }

    .enroll-req-label-col {
        padding: 1rem 1.25rem;
    }

    .enroll-req-desc {
        padding: 1rem 1.25rem;
    }

    .btn-enroll {
        width: 100%;
        max-width: 360px;
        padding: 1rem 1.5rem;
    }
}

/* ========== Donate Page ========== */

.donate-eyebrow {
    font-family: Oswald, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin: 0 0 0.4rem;
}

.donate-eyebrow--light {
    opacity: 0.9;
}

.donate-page-title {
    font-family: Oswald, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-align: center;
    margin: 0 0 2.5rem;
    line-height: 1.15;
}

.donate-page-title--white {
    color: var(--text);
}

/* ---- Hero ---- */
.donate-hero {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

.donate-hero-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}

.donate-hero-image-col {
    flex-shrink: 0;
}

.donate-hero-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(255, 127, 0, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    aspect-ratio: 4 / 3;
    background: var(--bg-section);
}

.donate-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.donate-hero-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.donate-hero-subtitle {
    font-family: Oswald, sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin: 0;
}

.donate-hero-text-col p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.btn-donate {
    font-family: Oswald, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    align-self: flex-start;
    box-shadow: 0 4px 20px rgba(255, 127, 0, 0.4);
}

.btn-donate:hover {
    box-shadow: 0 6px 28px rgba(255, 127, 0, 0.55);
}

/* ---- Partner Section ---- */
.donate-partner {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    background: var(--bg-section);
}

.donate-partner-body {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Partner text card */
.donate-partner-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 2rem 2rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.donate-partner-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* ---- Donate responsive ---- */
@media (max-width: 768px) {
    .donate-hero-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .donate-hero-img-wrap {
        aspect-ratio: 16 / 9;
    }

    .donate-partner-card {
        padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    }
}

@media (max-width: 600px) {
    .donate-hero {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .donate-partner {
        padding-top: 2.5rem;
        padding-bottom: 3.5rem;
    }

    .donate-page-title {
        margin-bottom: 1.75rem;
    }

    .btn-donate {
        align-self: stretch;
        text-align: center;
    }
}

/* ========== Inquiry / Contact Form (Home Page) ========== */

.inquiry-section {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
}

.inquiry-eyebrow {
    font-family: Oswald, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    text-align: center;
    margin: 0 0 0.4rem;
}

.inquiry-title {
    font-family: Oswald, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0 0 1rem;
    line-height: 1.1;
}

.inquiry-lead {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 0.75rem;
}

.inquiry-email-line {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0 auto 2.5rem;
}

.inquiry-email-link {
    color: var(--accent);
    font-weight: 600;
    transition: opacity 0.2s;
}

.inquiry-email-link:hover {
    opacity: 0.8;
}

.inquiry-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.inquiry-label {
    font-family: Oswald, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.inquiry-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-family: Oswald, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    width: 100%;
}

.inquiry-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.inquiry-input:focus {
    border-color: var(--accent);
    background: rgba(255, 127, 0, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.15);
}

.inquiry-submit-row {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
}

.inquiry-submit-btn {
    font-family: Oswald, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 127, 0, 0.4);
    cursor: pointer;
    border: none;
}

.inquiry-submit-btn:hover {
    box-shadow: 0 6px 28px rgba(255, 127, 0, 0.55);
}

@media (max-width: 600px) {
    .inquiry-section {
        padding-top: 3rem;
        padding-bottom: 3.5rem;
    }

    .inquiry-submit-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
}

/* Footer */
.site-footer {
    padding: 3rem 2rem 2rem;
    margin-top: 0;
    border-top: 2px solid rgba(255, 127, 0, 0.3);
    background-color: var(--bg-section);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    vertical-align: middle;
}

.footer-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
}

.footer-contact,
.footer-address {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========== Mobile & tablet ========== */

/* Nav toggle (hamburger) – hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    cursor: pointer;
    z-index: 101;
    transition: border-color 0.2s;
}

.nav-toggle:hover {
    border-color: var(--accent);
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 0 auto;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(280px, 85vw);
        padding: 5rem 1.5rem 2rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--bg-dark);
        border-left: 1px solid rgba(255, 127, 0, 0.3);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99;
        border-left: none;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-link {
        padding: 0.85rem 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 98;
    }
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .scripture-section .two-col {
        gap: 1.5rem;
    }

    .why-content-box {
        padding: 1.5rem;
    }

    .why-image img,
    .programs-image img {
        height: 240px;
    }

    .section-heading {
        margin-bottom: 1.75rem;
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    /* Staff page responsive */
    .staff-hero-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-card {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .vision-card-photo {
        margin: 0 auto;
    }

    .vision-card-quote {
        text-align: left;
    }

    .vision-card-tag {
        margin: 0 auto 0.3rem;
    }

    .staff-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 0 1rem;
        height: 72px;
    }

    .logo {
        gap: 0.6rem;
    }

    .logo-img {
        height: 48px;
    }

    .logo-title {
        font-size: 1rem;
        letter-spacing: 0.04em;
    }

    .logo-tagline {
        font-size: 0.7rem;
    }

    .hero {
        min-height: 50vh;
        height: calc(100vh - 72px);
    }

    .section {
        padding: 2rem 1rem;
    }

    .hero-welcome {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-welcome-title {
        font-size: 1.75rem;
    }

    .hero-welcome-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .hero-welcome-intro {
        font-size: 0.95rem;
        text-align: left;
    }

    .hero-welcome-tagline {
        font-size: 1.1rem;
        letter-spacing: 0.06em;
        margin-top: 1.5rem;
    }

    .scripture-band {
        padding: 0.75rem 1rem;
        margin-bottom: 1.5rem;
    }

    .scripture-band-text {
        font-size: 0.85rem;
    }

    /* Staff page mobile */
    .staff-hero {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }

    .staff-hero-body {
        gap: 1.75rem;
    }

    .staff-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .staff-card-photo {
        width: 120px;
        height: 120px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .vision-card {
        padding: 1.5rem 1.25rem;
    }

    .vision-card-photo {
        width: 160px;
    }

    .container-narrow {
        padding: 0 0.75rem;
    }

    .scripture-section .image-grid {
        min-height: 220px;
        gap: 0.35rem;
    }

    .mission-text {
        font-size: 0.95rem;
    }

    .mission-section {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .why-image img,
    .programs-image img {
        height: 200px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .site-footer {
        padding: 2rem 1rem;
    }

    .footer-copy {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 0.9rem;
    }

    .logo-tagline {
        display: none;
    }

    .scripture-section .image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
    }

    /* Rounded corners instead of hexagons on small screens */
    .scripture-section .image-grid.image-grid--hex .hex-wrap {
        clip-path: none;
        border-radius: 10px;
    }

    .scripture-content {
        gap: 1rem;
    }

    .scripture-ref {
        font-size: 1rem;
    }

    .scripture-text {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }

    .programs-heading {
        font-size: 1.15rem;
    }

    .programs-content p,
    .why-content-box p {
        font-size: 0.95rem;
    }
}

/* ========== Large screens ========== */

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 2rem;
    }

    .container-narrow {
        max-width: 960px;
        padding: 0 2rem;
    }

    .section {
        padding: 4rem 2rem;
    }

    .hero-welcome {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .two-col {
        gap: 3.5rem;
    }

    .section-heading {
        font-size: 1.85rem;
        margin-bottom: 3rem;
    }

    .why-content-box {
        padding: 2.5rem;
    }

    .why-image img,
    .programs-image img {
        height: 320px;
    }

    .footer-inner {
        max-width: 1320px;
    }

    /* Staff page */
    .staff-hero-body {
        max-width: 1200px;
        gap: 4rem;
    }

    .staff-hero-text-col {
        font-size: 1.05rem;
    }

    .vision-card {
        max-width: 1060px;
        padding: 3rem 3.5rem;
    }

    .vision-card-photo {
        width: 220px;
    }

    .staff-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }

    /* About page */
    .about-hero-body {
        max-width: 1200px;
        gap: 4rem;
    }

    .belief-cards {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
        gap: 1.75rem;
    }

    /* Academics page */
    .acad-hero-body {
        max-width: 1200px;
        gap: 4rem;
    }

    .acad-year-block {
        max-width: 1060px;
    }

    .acad-schedule-notes {
        max-width: 900px;
    }

    /* Enroll page */
    .enroll-req-list {
        max-width: 1060px;
    }

    .enroll-hero-centered {
        max-width: 860px;
    }

    /* Donate page */
    .donate-hero-body {
        max-width: 1200px;
        gap: 4rem;
    }

    .donate-partner-body {
        max-width: 1060px;
    }
}

@media (min-width: 1800px) {
    .container {
        max-width: 1440px;
    }

    .container-narrow {
        max-width: 1040px;
    }

    .section {
        padding: 5rem 2rem;
    }

    /* Staff page */
    .staff-hero-body {
        max-width: 1320px;
    }

    .vision-card {
        max-width: 1160px;
    }

    .staff-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }

    /* About page */
    .about-hero-body {
        max-width: 1320px;
    }

    /* Academics page */
    .acad-hero-body {
        max-width: 1320px;
    }

    .acad-year-block {
        max-width: 1160px;
    }

    /* Donate page */
    .donate-hero-body {
        max-width: 1320px;
    }

    .donate-partner-body {
        max-width: 1160px;
    }
}
