/* ==========================================================================
   Mount Carmel Ministries — Common Stylesheet
   ========================================================================== */

/* ===== CSS CUSTOM PROPERTIES (Design Tokens) ===== */
:root {
    --cream:       #F6F0E4;
    --cream-2:     #EFE7D4;
    --ink:         #241A14;
    --oxblood:     #6E1F2B;
    --oxblood-deep:#4A141D;
    --gold:        #B98B3E;
    --gold-light:  #D9B876;
    --verdigris:   #3F5B52;
    --navy:        #0A2342;
    --navy-deep:   #051627;
    --navy-2:      #0F2E56;
    --line:        #DCD0B8;
    --line-dark:   rgba(246, 240, 228, 0.18);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

/* ===== LAYOUT ===== */
.wrap {
    max-width: 1180px;
    margin: 0px 85px;
    padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

h1, h2, h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 2px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.btn-primary {
    background: var(--oxblood);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--oxblood-deep);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(246, 240, 228, 0.55);
}

.btn-ghost:hover {
    background: rgba(246, 240, 228, 0.1);
    border-color: var(--cream);
}

/* ===== SECTION SHARED ===== */
.section {
    padding: 88px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 52px;
}

.section-head .eyebrow {
    color: var(--oxblood);
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.section-head p {
    font-size: 14.5px;
    color: #5a4f43;
    max-width: 340px;
    flex-shrink: 0;
}

/* ===== TOP UTILITY BAR ===== */
.utility-bar {
    background: var(--ink);
    color: rgba(246, 240, 228, 0.75);
    font-size: 11.5px;
    letter-spacing: 0.04em;
}

.utility-bar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 32px;
}

.utility-links {
    display: flex;
    gap: 20px;
}

.utility-links a:hover {
    color: var(--gold-light);
}

.utility-bar .verse {
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-size: 12.5px;
    color: var(--gold-light);
}

/* ===== NAVIGATION ===== */
header.site {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 240, 228, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    max-width: 1180px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand svg {
    width: 30px;
    height: 30px;
    flex: none;
    color: var(--oxblood);
}

.brand-text {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.brand-text span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.2em;
    color: var(--oxblood);
    font-weight: 700;
    margin-top: 2px;
}

nav.links {
    display: flex;
    gap: 26px;
    align-items: center;
}

nav.links a {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
    transition: color 0.15s;
}

nav.links a:hover {
    color: var(--oxblood);
}

.nav-cta {
/*    background: var(--oxblood);*/
    color: var(--cream);
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.15s;
}

.nav-cta:hover {
/*    background: var(--oxblood-deep);*/
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    color: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/church.jpeg') center/cover no-repeat,
                linear-gradient(160deg, rgba(58, 42, 30, 0.7) 0%, rgba(26, 13, 6, 0.8) 60%, rgba(10, 26, 42, 0.7) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(36, 26, 20, 0.25) 0%, rgba(36, 26, 20, 0.82) 100%);
}

.hero-cross {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 390px;
    opacity: 0.08;
    color: var(--cream);
}

.hero .wrap {
    position: relative;
    z-index: 2;
    padding: 0 32px 56px;
    width: 100%;
}

.hero-eyebrow {
    color: var(--gold-light);
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 56px);
/*    max-width: 400px;*/
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero .lede {
    font-size: 16px;
    max-width: 560px;
    color: rgba(246, 240, 228, 0.78);
    margin-bottom: 32px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-verse {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(246, 240, 228, 0.18);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 13.5px;
    color: rgba(246, 240, 228, 0.72);
}

/* ===== EXPLORE QUICKLINKS ===== */
.explore {
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
}

.explore-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    overflow-x: auto;
    gap: 2px;
    scrollbar-width: none;
}

.explore-grid::-webkit-scrollbar {
    display: none;
}

.explore-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 30px 22px;
    min-width: 90px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
/*    border-right: 1px solid var(--line);*/
    transition: background 0.15s;
}

.explore-item:last-child {
    border-right: none;
}

.explore-item:hover {
    background: var(--cream);
    color: var(--oxblood);
}

.ico-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}

.ico-circle svg {
    width: 18px;
    height: 18px;
}

.explore-item:hover .ico-circle {
    background: var(--oxblood);
    border-color: var(--oxblood);
    color: var(--cream);
}

/* ===== MINISTRIES GRID ===== */
.ministries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.m-card {
    padding: 32px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.18s;
    cursor: default;
}

.m-card a {
    color: inherit;
}

.m-icon {
    width: 32px;
    height: 32px;
    color: var(--oxblood);
    flex-shrink: 0;
}

.m-card h3 {
    font-size: 18px;
    font-weight: 500;
}

.m-card p {
    font-size: 13.5px;
    color: #5a4f43;
    line-height: 1.6;
    flex: 1;
}

.m-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-top: auto;
}

.m-link svg {
    width: 14px;
    height: 14px;
}

.m-card:hover {
    background: var(--cream-2);
}

.m-card.accent {
    background: var(--oxblood);
    color: var(--cream);
    border-color: var(--oxblood);
}

.m-card.accent .m-icon {
    color: var(--gold-light);
}

.m-card.accent p {
    color: rgba(246, 240, 228, 0.8);
}

.m-card.accent .m-link {
    color: var(--gold-light);
}

.m-card.accent:hover {
    background: var(--oxblood-deep);
}

.app-badges {
    display: flex;
    gap: 8px;
    margin-top: 2px;
    flex-wrap: wrap;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(63, 91, 82, 0.35);
    padding: 7px 11px;
    border-radius: 2px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--verdigris);
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.app-badge svg {
    width: 14px;
    height: 14px;
}

.app-badge:hover {
    background: var(--verdigris);
    color: var(--cream);
    border-color: var(--verdigris);
}

/* ===== COLORFUL INITIATIVE PANELS ===== */
.panels {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
}

.panel-copy {
    padding: 52px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.panel-copy .eyebrow {
    color: var(--gold);
}

.panel-copy h3 {
    font-size: clamp(24px, 2.6vw, 32px);
    color: var(--cream);
    font-weight: 400;
}

.panel-copy p {
    font-size: 14.5px;
    color: rgba(246, 240, 228, 0.75);
    max-width: 420px;
}

.panel.dark  .panel-copy  { background: var(--oxblood-deep); }
.panel.dark  .panel-image { background: linear-gradient(135deg, #8a2a37, #3d1119); }
.panel.green .panel-copy  { background: var(--verdigris); }
.panel.green .panel-copy .eyebrow { color: var(--gold-light); }
.panel.green .panel-image { background: linear-gradient(135deg, #4f7167, #26362f); }
.panel.navy  .panel-copy  { background: var(--navy-deep); }
.panel.navy  .panel-copy .eyebrow { color: var(--gold-light); }
.panel.navy  .panel-image { background: linear-gradient(135deg, var(--navy-2), var(--navy-deep)); }

.panel-image {
    position: relative;
    overflow: hidden;
}

.panel-image .ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(246, 240, 228, 0.25);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.panel-image .ring.r2 {
    width: 220px;
    height: 220px;
}

.panel-image svg.big-icon {
    width: 88px;
    height: 88px;
    color: rgba(246, 240, 228, 0.85);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.app-row {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.app-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(246, 240, 228, 0.35);
    padding: 9px 16px;
    border-radius: 2px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cream);
    transition: background 0.15s;
}

.app-pill svg {
    width: 15px;
    height: 15px;
}

.app-pill:hover {
    background: rgba(246, 240, 228, 0.12);
}

/* ===== MEDIA / SPOTLIGHT ===== */
.spotlight {
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 10%, rgba(184, 139, 62, 0.14), transparent 55%);
}

.spotlight .wrap {
    position: relative;
    z-index: 2;
}

.spotlight .section-head .eyebrow { color: var(--gold-light); }
.spotlight .section-head p        { color: rgba(246, 240, 228, 0.6); }
.spotlight .section-head h2       { color: var(--cream); }

.media-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.media-main {
    aspect-ratio: 16/10;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(200deg, #3a2a20, #1a120e 70%);
    border: 1px solid var(--line-dark);
    display: flex;
    align-items: flex-end;
}

.play-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(246, 240, 228, 0.12);
    border: 1px solid rgba(246, 240, 228, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.15s;
    cursor: pointer;
}

.play-btn:hover {
    background: rgba(246, 240, 228, 0.22);
}

.play-btn svg {
    width: 20px;
    height: 20px;
    color: var(--cream);
    margin-left: 3px;
}

.media-main .cap {
    padding: 24px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
    width: 100%;
}

.media-main .cap .eyebrow {
    color: var(--gold-light);
    margin-bottom: 6px;
}

.media-main .cap h3 {
    font-size: 22px;
    color: var(--cream);
    font-weight: 400;
}

.media-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.media-item {
    display: flex;
    gap: 14px;
    border: 1px solid var(--line-dark);
    padding: 14px;
    border-radius: 2px;
    align-items: center;
    transition: background 0.15s;
    cursor: pointer;
}

.media-item:hover {
    background: rgba(246, 240, 228, 0.05);
}

.media-item .thumb {
    width: 76px;
    height: 56px;
    flex: none;
    border-radius: 2px;
    background: linear-gradient(200deg, #4a3626, #241a14);
}

.media-item h4 {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Fraunces', serif;
    color: var(--cream);
}

.media-item span {
    font-size: 11.5px;
    color: rgba(246, 240, 228, 0.55);
}

/* ===== FOUNDER SECTION ===== */
.founder {
    background: var(--cream);
}

.founder .wrap {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.founder-portrait {
    aspect-ratio: 3/4;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 38%, var(--cream-2) 0%, var(--cream-2) 45%, var(--cream) 75%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.founder-portrait::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid var(--line);
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.founder-portrait img {
    width: 100%;
    max-width: 320px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 18px 30px rgba(36, 26, 20, 0.18));
}

/* Placeholder portrait when no image */
.founder-portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.founder-portrait-placeholder svg {
    width: 140px;
    height: 180px;
    color: var(--oxblood);
    opacity: 0.35;
}

.founder-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 18px;
    text-align: center;
    z-index: 3;
    background: linear-gradient(0deg, rgba(239, 231, 212, 0.95), transparent);
}

.founder-label strong {
    color: var(--oxblood-deep);
    font-family: 'Fraunces', serif;
    font-size: 14px;
    display: block;
}

.founder-label span {
    color: #8a7f6f;
    font-size: 11.5px;
}

.founder blockquote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.35;
    color: var(--oxblood-deep);
    border-left: 2px solid var(--gold);
    padding-left: 28px;
}

.founder .signoff {
    margin-top: 26px;
    padding-left: 30px;
}

.founder .signoff strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 600;
}

.founder .signoff span {
    font-size: 12.5px;
    color: #5a4f43;
    letter-spacing: 0.02em;
}

/* ===== RETREAT CENTER BANNER ===== */
.retreat-banner {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 70% 40%, rgba(184, 139, 62, 0.14), transparent 60%),
                linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.retreat-banner .wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.retreat-banner .rb-copy .eyebrow {
    color: var(--gold-light);
    margin-bottom: 14px;
}

.retreat-banner h3 {
    color: var(--cream);
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 400;
    max-width: 440px;
}

.retreat-banner p {
    color: rgba(246, 240, 228, 0.75);
    font-size: 14px;
    margin-top: 14px;
    max-width: 400px;
}

.retreat-banner .rb-btn {
    margin-top: 24px;
}

.retreat-banner .rb-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.retreat-banner .rb-image img {
    width: 100%;
    max-width: 460px;
}

/* Church illustration placeholder */
.church-illustration {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.church-illustration svg {
    width: 100%;
    height: 100%;
    color: rgba(246, 240, 228, 0.25);
}

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--verdigris);
    color: var(--cream);
    padding: 64px 0;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    margin-bottom: 22px;
    color: var(--cream);
}

.cta-band .btn-primary {
    background: var(--gold);
    color: #1c2b26;
}

.cta-band .btn-primary:hover {
    background: var(--gold-light);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: var(--cream-2);
    border-top: 1px solid var(--line);
    padding: 56px 0;
}

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

.newsletter h4 {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
}

.newsletter p {
    font-size: 13px;
    color: #5a4f43;
    margin-top: 6px;
}

.newsletter > div:last-child {
    flex: 1;
    min-width: 300px;
}

.news-form {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
}

.news-form input {
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-right: none;
    background: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    width: 240px;
    outline: none;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.news-form input:focus {
    border-color: var(--oxblood);
    box-shadow: 0 0 0 3px rgba(110, 31, 43, 0.08);
}

.news-form button {
    background: var(--oxblood);
    color: var(--cream);
    border: none;
    padding: 0 22px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s;
}

.news-form button:hover {
    background: var(--oxblood-deep);
}

.news-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-success-message {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 2px solid #10b981;
    color: #065f46;
    padding: 14px 16px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease;
}

.newsletter-success-message::before {
    content: '✓';
    font-size: 18px;
    font-weight: bold;
    color: #10b981;
    flex-shrink: 0;
}

.newsletter-error-message {
    background: #fdf2f2;
    border: 1px solid #f8b4b4;
    color: #9b1c1c;
    padding: 12px 16px;
    border-radius: 2px;
    font-size: 13px;
    animation: slideDown 0.3s ease;
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(246, 240, 228, 0.72);
    padding: 72px 0 30px;
}

.foot-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(246, 240, 228, 0.14);
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.foot-brand svg {
    width: 28px;
    height: 28px;
    color: var(--gold-light);
}

.foot-brand span {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    color: var(--cream);
}

footer p.desc {
    font-size: 13.5px;
    max-width: 280px;
    color: rgba(246, 240, 228, 0.55);
}

footer h5 {
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

footer ul a {
    font-size: 13.5px;
    color: rgba(246, 240, 228, 0.72);
    transition: color 0.15s;
}

footer ul a:hover {
    color: var(--cream);
}

.foot-apps {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.foot-apps a {
    border: 1px solid rgba(246, 240, 228, 0.25);
    padding: 8px 12px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    transition: background 0.15s;
}

.foot-apps a:hover {
    background: rgba(246, 240, 228, 0.1);
}

.foot-apps svg {
    width: 14px;
    height: 14px;
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 26px;
    font-size: 12px;
    color: rgba(246, 240, 228, 0.4);
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .utility-bar .verse { display: none; }
    nav.links { display: none; }
    .explore-item { min-width: 78px; }
    .hero .wrap { padding: 0 24px 40px; }
    .ministries { grid-template-columns: 1fr 1fr; }
    .panel { grid-template-columns: 1fr; }
    .panel-image { min-height: 200px; }
    .media-grid { grid-template-columns: 1fr; }
    .founder .wrap { grid-template-columns: 1fr; }
    .founder-portrait { max-width: 260px; }
    .retreat-banner .wrap { grid-template-columns: 1fr; }
    .retreat-banner .rb-image { order: -1; max-width: 280px; margin: 0 auto; }
    .foot-top { grid-template-columns: 1fr 1fr; }
    .newsletter .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .ministries { grid-template-columns: 1fr; }
    .explore-item { min-width: 70px; }
    .explore-item span:not(.ico-circle) { display: none; }
    .foot-top { grid-template-columns: 1fr; }
    .news-form { width: 100%; }
    .news-form input { flex: 1; width: auto; }
}
