:root {
    --bg: #07182b;
    --bg-alt: #0a2037;
    --bg-soft: #102c4d;
    --bg-soft-2: #edf4fb;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.14);
    --surface-light: #ffffff;
    --surface-tint: #f7f1e8;
    --card: #f6f1e7;
    --text: #edf3fb;
    --text-dark: #10263c;
    --text-soft-dark: #4d6378;
    --muted: #adc2d8;
    --muted-dark: #60758b;
    --line: rgba(255, 255, 255, 0.12);
    --line-soft: rgba(10, 32, 55, 0.1);
    --accent: #d8a451;
    --accent-strong: #f0ba64;
    --accent-soft: #f6e2bb;
    --teal: #7dd0c8;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 20px 55px rgba(10, 32, 55, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: min(1180px, calc(100% - 40px));
    --header-height: 88px;
    --radio-height: 132px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-bottom: calc(var(--radio-height) + 24px);
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    transition: background-color 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 12px 32px rgba(10, 32, 55, 0.08);
}

.site-header.is-scrolled {
    backdrop-filter: blur(18px);
    color: var(--text);
    background: rgba(10, 32, 55, 0.82);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 40px rgba(4, 12, 22, 0.25);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 8px 22px rgba(216, 164, 81, 0.2));
}

.brand strong,
.brand span {
    display: block;
}

.brand strong {
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    color: #8ea4b8;
}

.brand span {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--bg-alt);
}

.site-header.is-scrolled .brand strong {
    color: rgba(237, 243, 251, 0.72);
}

.site-header.is-scrolled .brand span {
    color: #fff;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: #6f879c;
    font-size: 0.94rem;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--bg-alt);
    background: rgba(10, 32, 55, 0.08);
    transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav a {
    color: var(--muted);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bg-alt);
    margin: 6px auto;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-scrolled .nav-toggle {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.site-header.is-scrolled .nav-toggle span {
    background: #fff;
}

.hero {
    position: relative;
    min-height: calc(100vh - 10px);
    display: flex;
    align-items: center;
    overflow: clip;
    isolation: isolate;
    color: var(--text);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 24, 43, 0.92) 0%, rgba(7, 24, 43, 0.72) 50%, rgba(7, 24, 43, 0.46) 100%),
        url("../images/hero/parallax2.jpg") center/cover no-repeat;
    z-index: -2;
}

.hero-backdrop {
    position: absolute;
    inset: auto 0 0;
    height: 220px;
    background: linear-gradient(180deg, rgba(10, 32, 55, 0) 0%, rgba(10, 32, 55, 1) 90%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding: 110px 0 80px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--accent-soft);
    font-size: 0.84rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero h1,
.section h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.hero h1 {
    max-width: 11ch;
    font-size: clamp(3.3rem, 7vw, 6.4rem);
}

.hero-text {
    max-width: 640px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    overflow: hidden;
    isolation: isolate;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 50%, transparent 100%);
    transform: translateX(-130%);
    transition: transform 420ms ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.01);
}

.btn:hover::before {
    transform: translateX(130%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    color: var(--text-dark);
    box-shadow: 0 18px 30px rgba(216, 164, 81, 0.28);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #1fae63, #25d366);
    color: #fff;
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 180ms ease;
}

.btn-whatsapp:hover svg {
    transform: scale(1.08) rotate(-6deg);
}

.btn-secondary {
    border-color: rgba(10, 32, 55, 0.12);
    background: #fff;
    color: var(--bg-alt);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    border-color: rgba(10, 32, 55, 0.22);
    box-shadow: 0 22px 40px rgba(10, 32, 55, 0.16);
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hero-highlights li,
.hero-card,
.history-note {
    backdrop-filter: blur(14px);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-highlights li {
    padding: 18px;
    border-radius: 22px;
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.hero-highlights strong,
.hero-highlights span {
    display: block;
}

.hero-highlights strong {
    color: #fff;
    font-size: 1rem;
}

.hero-highlights span {
    color: var(--muted);
    font-size: 0.86rem;
}

.hero-highlights li:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-panel {
    display: grid;
    gap: 18px;
}

.hero-card {
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.hero-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-card-top h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 12px 0;
}

.hero-card-top p,
.section-copy p,
.family-copy p,
.contact-copy p {
    color: var(--muted);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(125, 208, 200, 0.14);
    color: var(--teal);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-card-bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mini-stat {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
}

.mini-stat-value,
.mini-stat-label {
    display: block;
}

.mini-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.mini-stat-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding: 110px 0;
    position: relative;
    color: var(--text-dark);
}

.section-history,
.section-family,
.section-ministries {
    background: #ffffff;
}

.section-essence,
.section-contact {
    background:
        radial-gradient(circle at top right, rgba(216, 164, 81, 0.12), transparent 0 24%),
        linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.split-layout,
.family-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px;
    align-items: center;
}

.section h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin-bottom: 20px;
}

.history-frame {
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
}

.history-frame img {
    width: 100%;
    aspect-ratio: 4 / 4.7;
    object-fit: cover;
    transition: transform 500ms ease;
}

.history-frame:hover img {
    transform: scale(1.04);
}

.history-note {
    margin: -52px 0 0 auto;
    width: min(88%, 340px);
    border-radius: 24px;
    padding: 20px 22px;
    position: relative;
    background: var(--surface-light);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
}

.history-note span,
.history-note strong {
    display: block;
}

.history-note span {
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.history-note strong {
    margin-top: 8px;
}

.section-heading {
    max-width: 760px;
}

.essence-grid,
.ministries-grid,
.footer-grid {
    display: grid;
    gap: 24px;
}

.essence-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 38px;
}

.essence-card {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.essence-card h3,
.footer-column h3 {
    margin: 18px 0 10px;
    font-size: 1.25rem;
}

.footer-column h3 {
    color: #f3f7fc;
}

.essence-card p {
    margin: 0;
    color: var(--muted-dark);
}

.icon-wrap {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(216, 164, 81, 0.25), rgba(125, 208, 200, 0.18));
}

.icon-wrap svg,
.whatsapp-float svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.essence-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 164, 81, 0.28);
    box-shadow: 0 26px 60px rgba(10, 32, 55, 0.16);
}

.essence-card .icon-wrap {
    transition: transform 220ms ease, background-color 220ms ease;
}

.essence-card:hover .icon-wrap {
    transform: scale(1.06) rotate(-4deg);
}

.pillars {
    margin-top: 28px;
    border-radius: var(--radius-xl);
    padding: 28px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #0a2037, #163657);
    border: 1px solid rgba(10, 32, 55, 0.12);
    box-shadow: var(--shadow-soft);
    color: var(--text);
}

.pillars h3 {
    margin: 0;
    font-size: 2rem;
    font-family: "Cormorant Garamond", serif;
}

.pillars-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 84px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.pillar-item img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 42px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
    transition: transform 220ms ease;
}

.pillar-item span {
    display: block;
    line-height: 1.25;
    font-weight: 600;
}

.pillar-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
}

.pillar-item:hover img {
    transform: scale(1.08);
}

.family-stack {
    position: relative;
    min-height: 560px;
}

.family-stack img {
    position: absolute;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line-soft);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.family-stack img:first-child {
    width: 72%;
    height: 76%;
    inset: 0 auto auto 0;
}

.family-stack img:last-child {
    width: 58%;
    height: 52%;
    inset: auto 0 0 auto;
}

.family-stack:hover img:first-child {
    transform: translateY(-6px);
}

.family-stack:hover img:last-child {
    transform: translateY(-10px) rotate(1deg);
}

.leadership-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.leadership-notes div {
    padding: 18px;
    border-radius: 20px;
    background: var(--surface-tint);
    border: 1px solid rgba(216, 164, 81, 0.18);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.leadership-notes strong,
.leadership-notes span {
    display: block;
}

.leadership-notes span {
    color: var(--muted-dark);
    font-size: 0.94rem;
}

.leadership-notes div:hover {
    transform: translateY(-5px);
    border-color: rgba(216, 164, 81, 0.3);
    box-shadow: 0 18px 36px rgba(10, 32, 55, 0.1);
}

.ministries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
}

.ministry-card {
    overflow: hidden;
    border-radius: 28px;
    transition: transform 220ms ease, border-color 220ms ease;
    background: var(--surface-light);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
}

.ministry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 164, 81, 0.42);
    box-shadow: 0 28px 56px rgba(10, 32, 55, 0.16);
}

.ministry-card img {
    width: 100%;
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
    transition: transform 420ms ease;
}

.ministry-card:hover img {
    transform: scale(1.05);
}

.ministry-content {
    padding: 22px 22px 26px;
}

.ministry-content h3 {
    margin: 0 0 10px;
    font-size: 1.22rem;
}

.ministry-content p {
    margin: 0;
    color: var(--muted-dark);
    font-size: 0.95rem;
}

.section-contact {
    padding-bottom: 80px;
}

.contact-list {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 18px;
    transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.contact-item strong,
.contact-item span {
    display: block;
}

.contact-item span {
    color: var(--muted-dark);
}

.contact-item a {
    color: var(--bg-alt);
    font-weight: 700;
}

.contact-item a:hover {
    color: #163657;
}

.contact-item:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 16px 30px rgba(10, 32, 55, 0.08);
}

.contact-item .icon-wrap {
    transition: transform 220ms ease, background-color 220ms ease;
}

.contact-item:hover .icon-wrap {
    transform: scale(1.06);
}

.contact-panel {
    display: grid;
    gap: 18px;
    padding: 20px;
    border-radius: 30px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.social-panel,
.quote-panel {
    padding: 26px;
    border-radius: 24px;
    background: var(--surface-light);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.social-links {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid var(--line-soft);
    transition: background-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
    transform: translateX(4px);
    background: var(--surface-tint);
}

.social-panel:hover,
.quote-panel:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 164, 81, 0.22);
    box-shadow: 0 22px 48px rgba(10, 32, 55, 0.14);
}

.social-links a svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    fill: var(--bg-alt);
}

.social-links a span {
    display: block;
    font-weight: 500;
}

.quote-panel p {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1.02;
    color: var(--bg-alt);
}

.quote-panel span {
    color: var(--accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 15% 20%, rgba(125, 208, 200, 0.1), transparent 0 32%),
        linear-gradient(180deg, rgba(4, 12, 22, 0.92), rgba(5, 10, 18, 1));
}

.footer-grid {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    padding: 70px 0 34px;
}

.footer-brand img {
    width: 124px;
    margin-bottom: 18px;
}

.footer-brand p,
.footer-column ul,
.footer-bottom p,
.footer-bottom a {
    color: var(--muted);
}

.section-copy p,
.family-copy p,
.contact-copy p,
.section-heading p + h2 + p {
    color: var(--text-soft-dark);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-column a {
    display: inline-block;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-bottom a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-map {
    width: 100%;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.footer-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.footer-bottom {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.radio-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 75;
    padding: 10px 0 14px;
    background: linear-gradient(180deg, rgba(10, 32, 55, 0), rgba(10, 32, 55, 0.12) 24%, rgba(10, 32, 55, 0.2) 100%);
    transition: transform 220ms ease;
}

.radio-player.is-collapsed {
    transform: translateY(calc(100% - 54px));
}

.radio-player__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr auto;
    align-items: center;
    gap: 18px;
    min-height: var(--radio-height);
    padding: 18px 18px;
    border-radius: 26px;
    background: rgba(10, 32, 55, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 48px rgba(4, 12, 22, 0.3);
    backdrop-filter: blur(18px);
    transition: transform 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.radio-player:hover .radio-player__inner {
    transform: translateY(-4px) scale(1.01);
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0 28px 56px rgba(4, 12, 22, 0.34);
}

.radio-player__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex-wrap: nowrap;
}

.radio-player__live {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 42px;
    padding: 0 16px 0 28px;
    border-radius: 999px;
    background: rgba(255, 82, 82, 0.16);
    color: #ff7b7b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    flex: 0 0 112px;
}

.radio-player__live::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff4d4f;
    box-shadow: 0 0 0 6px rgba(255, 77, 79, 0.16);
    transform: translateY(-50%);
}

.radio-player__meta strong,
.radio-player__meta span {
    display: block;
}

.radio-player__meta strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.1;
}

.radio-player__meta span {
    color: rgba(237, 243, 251, 0.7);
    font-size: 0.9rem;
    line-height: 1.2;
    align-content: center;
}

.radio-player__meta > div:last-child {
    min-width: 0;
}

.radio-player__embed {
    min-width: 0;
}

.radio-player__embed iframe {
    width: 100%;
    height: 92px;
    border: 0;
    display: block;
    border-radius: 16px;
    background: #fff;
    transition: height 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.radio-player:hover .radio-player__embed iframe {
    height: 104px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.radio-player__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-player__actions a,
.radio-player__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.radio-player__actions a:hover,
.radio-player__toggle:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 18px;
    z-index: 90;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #1fae63, #25d366);
    box-shadow: 0 18px 35px rgba(30, 189, 96, 0.42);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 22px 44px rgba(30, 189, 96, 0.5);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 90ms;
}

.delay-2 {
    transition-delay: 180ms;
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .family-grid,
    .contact-grid,
    .pillars,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-highlights,
    .essence-grid,
    .ministries-grid,
    .pillars-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .family-stack {
        min-height: 480px;
    }

    .footer-grid {
        padding-top: 58px;
    }

    .radio-player__inner {
        grid-template-columns: 1fr;
    }

    .radio-player__actions {
        justify-content: flex-end;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100% - 28px, 100%);
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 14px;
        right: 14px;
        display: grid;
        gap: 8px;
        padding: 14px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line-soft);
        border-radius: 24px;
        backdrop-filter: blur(16px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease;
        box-shadow: 0 18px 38px rgba(10, 32, 55, 0.14);
    }

    .site-header.menu-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-header.menu-open .nav-toggle span:first-child {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.menu-open .nav-toggle span:last-child {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 92px 0 60px;
        gap: 28px;
    }

    .hero h1 {
        max-width: none;
    }

    .hero-highlights,
    .essence-grid,
    .ministries-grid,
    .leadership-notes,
    .pillars-list {
        grid-template-columns: 1fr;
    }

    .hero-card-bottom {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 86px 0;
    }

    .family-stack {
        min-height: 420px;
    }

    .family-stack img:first-child {
        width: 78%;
        height: 72%;
    }

    .family-stack img:last-child {
        width: 56%;
        height: 46%;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }

    .quote-panel p {
        font-size: 1.7rem;
    }

    .radio-player__inner {
        gap: 12px;
        padding: 14px;
        border-radius: 22px 22px 0 0;
    }

    .radio-player__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .radio-player__live {
        width: auto;
        min-width: 112px;
        flex-basis: auto;
    }

    .radio-player__embed iframe {
        height: 82px;
    }

    .radio-player:hover .radio-player__embed iframe {
        height: 92px;
    }

    .radio-player__actions {
        width: 100%;
        justify-content: space-between;
    }

    .radio-player__actions a,
    .radio-player__toggle {
        flex: 1 1 0;
    }
}
