:root {
    --ink: #172531;
    --navy: #163b4a;
    --teal: #167c80;
    --mint: #dcefed;
    --coral: #e46850;
    --gold: #eeb959;
    --cream: #f7f3eb;
    --white: #fff;
    --muted: #63727b;
    --line: rgba(23, 37, 49, .12);
    --shadow: 0 24px 70px rgba(23, 37, 49, .14);
    --radius: 26px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    background: var(--white);
    line-height: 1.6;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: auto;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--teal);
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 9px;
    background: var(--coral);
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    line-height: 1.08;
    margin: 0;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.6rem);
    letter-spacing: -.065em;
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 4.4rem);
    letter-spacing: -.045em;
}

h3 {
    font-size: 1.3rem;
    letter-spacing: -.025em;
}

p {
    margin: 0;
}

.lead {
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    color: var(--muted);
    max-width: 680px;
}

.section {
    padding: 75px 0;
}

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

.section-head .lead {
    max-width: 520px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 99px;
    font-weight: 800;
    transition: .25s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--coral);
    color: white;
    box-shadow: 0 12px 28px rgba(228, 104, 80, .25);
}

.btn-light {
    background: #fff;
    color: var(--navy);
}

.btn-outline {
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
}

.btn-dark {
    background: var(--navy);
    color: #fff;
}

.arrow {
    font-size: 1.25rem;
    line-height: 1;
}

header {
    height: 82px;
    position: sticky;
    background-color: var(--navy);
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Manrope";
    font-weight: 800;
}

.nad-logo {
    display: block;
    width: 245px;
    height: auto;
}

.family-label {
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, .38);
    font-size: .84rem;
    line-height: 1.05;
    letter-spacing: .04em;
    text-transform: uppercase;
    max-width: 82px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: .93rem;
    font-weight: 700;
}

.nav-links a:not(.btn):hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.6rem;
}

.hero {
    min-height: 760px;
    height: 92vh;
    max-height: 980px;
    display: flex;
    align-items: end;
    position: relative;
    overflow: hidden;
    color: white;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 38, 49, .94) 0%, rgba(10, 38, 49, .75) 43%, rgba(10, 38, 49, .14) 75%), url('https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=2200&q=88') center/cover;
}

.hero:after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -260px;
    width: 560px;
    height: 560px;
    border: 110px solid rgba(238, 185, 89, .17);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 90px;
    max-width: 840px;
}

.hero .eyebrow {
    color: #b8e2df;
}

.hero-copy {
    max-width: 630px;
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
    opacity: .86;
    margin: 24px 0 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 44px;
    font-weight: 700;
}

.faces {
    display: flex;
}

.faces span {
    width: 40px;
    height: 40px;
    margin-left: -8px;
    border: 3px solid var(--navy);
    border-radius: 50%;
    background-size: cover;
}

.faces span:first-child {
    margin-left: 0;
}

.faces span:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=100&q=70');
}

.faces span:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=100&q=70');
}

.faces span:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=100&q=70');
}

.scroll-note {
    position: absolute;
    z-index: 3;
    right: 4vw;
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: rotate(90deg);
    transform-origin: right center;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.scroll-note:after {
    content: "";
    width: 50px;
    height: 1px;
    background: #fff;
}

.ministries {
    background: var(--cream);
    overflow: hidden;
}

.top-ministry {
    padding-top: 142px;
    background: linear-gradient(180deg, var(--navy) 0 68%, var(--cream) 68%);
}

.top-ministry .section-head {
    color: white;
}

.top-ministry .section-head .lead {
    color: rgba(255, 255, 255, .7);
}

.top-ministry .eyebrow {
    color: #9bd5d2;
}

.carousel-wrap {
    position: relative;
}

.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow: hidden;
    border-radius: 32px;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
}

.slide {
    min-height: 560px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
}

.slide-copy {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.slide-number {
    font-family: "Manrope";
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .15em;
    font-size: .8rem;
}

.slide h3 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    margin: 14px 0 20px;
}

.slide p {
    font-size: 1.1rem;
    max-width: 530px;
    opacity: .78;
}

.slide .btn {
    margin-top: 30px;
}

.slide-photo {
    min-height: 480px;
    position: relative;
    background-position: center;
    background-size: cover;
}

.slide-photo:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--navy), transparent 28%);
}

.family-photo {
    background-image: url('../../assets/images/familyimage.jpg?auto=format&fit=crop&w=1400&q=85');
}

.men-photo {
    background-image: url('../../assets/images/mensimage.jpg?auto=format&fit=crop&w=1400&q=85');
}

.singles-photo {
    background-image: url('../../assets/images/singlesimage.jpg?auto=format&fit=crop&w=1400&q=85');
}

.carousel-ui {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: #c1c5c1;
    transition: .25s;
}

.dot.active {
    width: 34px;
    border-radius: 9px;
    background: var(--coral);
}

.carousel-arrows {
    display: flex;
    gap: 10px;
}

.circle-btn {
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    color: var(--ink);
    font-size: 1.35rem;
    transition: .2s;
}

.circle-btn:hover {
    background: var(--navy);
    color: white;
}

.ministry-modal {
    width: min(980px, calc(100% - 32px));
    max-height: 90vh;
    padding: 0;
    border: 0;
    border-radius: 28px;
    background: white;
    color: var(--ink);
    box-shadow: 0 30px 100px rgba(5, 25, 33, .42);
    overflow: hidden;
}

.ministry-modal::backdrop {
    background: rgba(7, 28, 36, .78);
    backdrop-filter: blur(8px);
}

.modal-shell {
    max-height: 90vh;
    overflow: auto;
}

.modal-hero {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    min-height: 270px;
    padding: 54px 64px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: white;
    background: linear-gradient(90deg, rgba(10, 38, 49, .96), rgba(10, 38, 49, .52)), var(--modal-image) center/cover;
}

.modal-hero .eyebrow {
    color: #a9dcd9;
}

.modal-hero h2 {
    max-width: 720px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.modal-close {
    position: absolute;
    z-index: 3;
    right: 22px;
    top: 22px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(10, 38, 49, .35);
    color: white;
    font-size: 1.7rem;
    line-height: 1;
}

.modal-close:hover {
    background: white;
    color: var(--navy);
}

.modal-content {
    padding: 52px 64px 62px;
}

.modal-statements {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 18px;
    margin-bottom: 42px;
}

.modal-statement {
    padding: 28px;
    border-radius: 18px;
    background: #edf7f5;
}

.modal-statement:last-child {
    background: #fff0e8;
}

.modal-statement small,
.modal-content h3 {
    display: block;
    margin-bottom: 10px;
    color: var(--teal);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .76rem;
}

.modal-statement p {
    font: 700 1.12rem/1.45 "Manrope";
}

.modal-content h3 {
    margin-top: 0;
}

.modal-content>p {
    margin-bottom: 18px;
    color: #43545d;
}

.research-quote {
    margin: 30px 0;
    padding: 28px 30px;
    border-left: 5px solid var(--gold);
    background: var(--cream);
    font: 600 1.1rem/1.65 "Manrope";
    color: var(--navy);
}

.modal-actions-title {
    margin-top: 42px !important;
}

.action-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    counter-reset: action;
}

.action-card {
    position: relative;
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    counter-increment: action;
}

.action-card:before {
    content: "0" counter(action);
    display: block;
    margin-bottom: 24px;
    color: var(--coral);
    font-weight: 800;
    letter-spacing: .12em;
}

.action-card strong {
    display: block;
    margin-bottom: 8px;
    font: 800 1.06rem/1.3 "Manrope";
}

.action-card p {
    color: var(--muted);
    font-size: .92rem;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.modal-footer p {
    color: var(--muted);
    font-size: .88rem;
}

.modal-footer .btn {
    flex: none;
}

.welcome {
    position: relative;
}

.welcome-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 84px;
    align-items: center;
}

.director-photo {
    position: relative;
    padding: 0 30px 30px 0;
}

.director-photo img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    border-radius: 220px 220px 28px 28px;
}

.director-photo:after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 55px 0 0 55px;
    border-radius: 220px 220px 28px 28px;
    background: var(--mint);
}

.director-badge {
    position: absolute;
    right: -10px;
    bottom: 75px;
    width: 154px;
    height: 154px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--coral);
    color: white;
    font-weight: 800;
    box-shadow: var(--shadow);
    padding: 18px;
}

.welcome-copy h2 {
    margin-bottom: 24px;
}

.welcome-copy .lead {
    margin-bottom: 24px;
}

.quote {
    padding: 24px 0 24px 28px;
    border-left: 4px solid var(--gold);
    font-size: 1.08rem;
    color: #40515a;
}

.signature {
    margin-top: 28px;
    font-weight: 800;
}

.signature span {
    display: block;
    color: var(--muted);
    font-weight: 500;
    font-size: .92rem;
}

.purpose {
    padding: 110px 0 110px;
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.purpose-card {
    padding: 54px;
    background: var(--mint);
}

.purpose-card:last-child {
    background: var(--coral);
    color: white;
}

.purpose-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
}

.purpose-label span {
    width: 40px;
    height: 40px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.purpose-card h3 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.25;
}

.purpose-card:first-child h3 {
    color: var(--navy);
}

.resources {
    background: #f1f7f6;
}

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

.resource-card {
    min-height: 300px;
    padding: 32px;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: .25s;
}

.resource-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(23, 37, 49, .1);
}

.icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--mint);
    color: var(--teal);
    font-size: 1.4rem;
    margin-bottom: 38px;
}

.resource-card:nth-child(2) .icon {
    background: #fde5df;
    color: var(--coral);
}

.resource-card:nth-child(3) .icon {
    background: #fff0ce;
    color: #a76a00;
}

.resource-card h3 {
    margin-bottom: 12px;
}

.resource-card p {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--teal);
    font-weight: 800;
}

.resources-cta {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.videos {
    background: var(--navy);
    color: white;
    overflow: hidden;
}

.videos .eyebrow {
    color: #8fd1cd;
}

.videos .lead {
    color: rgba(255, 255, 255, .68);
}

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

.video-card {
    border-radius: 26px;
    overflow: hidden;
    background: #214b5a;
    border: 1px solid rgba(255, 255, 255, .12);
}

.video-preview {
    height: 330px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.video-preview:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 38, 49, .7), transparent 65%);
}

.video-one {
    background-image: url('https://images.unsplash.com/photo-1520857014576-2c4f4c972b57?auto=format&fit=crop&w=1400&q=85');
}

.video-two {
    background-image: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=1400&q=85');
}

.play {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 26px;
    width: 66px;
    height: 66px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--coral);
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.video-meta {
    padding: 28px 30px 32px;
}

.video-meta small {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.video-meta h3 {
    font-size: 1.65rem;
    margin: 8px 0 8px;
}

.video-meta p {
    color: rgba(255, 255, 255, .65);
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.issue-stack {
    height: 510px;
    position: relative;
}

.issue {
    position: absolute;
    width: 310px;
    height: 410px;
    border-radius: 16px;
    padding: 34px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    color: white;
    overflow: hidden;
}

.issue:after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 55px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    right: -100px;
    bottom: -80px;
}

.issue-one {
    left: 0;
    top: 50px;
    background: var(--teal);
    transform: rotate(-7deg);
}

.issue-two {
    left: 160px;
    top: 0;
    background: var(--coral);
    transform: rotate(5deg);
}

.issue small {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
}

.issue strong {
    font: 800 2rem/1.05 "Manrope";
    margin-top: 120px;
    max-width: 190px;
}

.newsletter-copy h2 {
    margin-bottom: 22px;
}

.newsletter-copy .lead {
    margin-bottom: 28px;
}

.signup {
    display: flex;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 99px;
    box-shadow: 0 15px 35px rgba(23, 37, 49, .08);
}

.signup input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 17px;
    background: transparent;
}

.fine {
    margin-top: 10px;
    color: var(--muted);
    font-size: .78rem;
}

.instagram {
    background: var(--cream);
}

.ig-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.ig-handle {
    color: var(--coral);
    font-weight: 800;
}

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

.ig-post {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ddd;
}

.ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.ig-post:hover img {
    transform: scale(1.07);
}

.ig-post:after {
    content: "↗";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.7rem;
    background: rgba(10, 38, 49, .48);
    opacity: 0;
    transition: .25s;
}

.ig-post:hover:after {
    opacity: 1;
}

.ig-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: .82rem;
}

.contact {
    background: linear-gradient(135deg, #dcefed 0%, #f7f3eb 60%);
}

.contact-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-copy h2 {
    margin-bottom: 22px;
}

.contact-copy .lead {
    margin-bottom: 34px;
}

.contact-list {
    display: grid;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item strong {
    display: block;
}

.contact-item span,
.contact-item a {
    color: var(--muted);
}

.form {
    padding: 38px;
    background: white;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1/-1;
}

.field label {
    font-size: .84rem;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    background: #fbfcfc;
    outline: 0;
}

.field textarea {
    height: 130px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(22, 124, 128, .12);
}

.form .btn {
    margin-top: 20px;
    width: 100%;
}

footer {
    padding: 62px 0 28px;
    background: #102f3b;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr;
    gap: 60px;
    padding-bottom: 44px;
}

.footer-intro .nad-logo {
    width: min(360px, 100%);
}

.footer-intro .family-label {
    font-size: .9rem;
    max-width: 95px;
}

.footer-intro p {
    max-width: 390px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .62);
}

.footer-title {
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-links {
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, .65);
}

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .13);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .48);
    font-size: .82rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width:900px) {
    .nav .nad-logo {
        width: 230px;
    }

    .nav .family-label {
        display: none;
    }

    .nav-links {
        position: fixed;
        inset: 0 0 0 22%;
        padding: 110px 38px;
        flex-direction: column;
        align-items: flex-start;
        background: var(--navy);
        transform: translateX(100%);
        transition: .3s;
    }

    .nav-links.open {
        transform: none;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 3;
    }

    .slide {
        grid-template-columns: 1fr;
    }

    .slide-copy {
        padding: 46px;
    }

    .slide-photo {
        min-height: 360px;
        grid-row: 1;
    }

    .slide-photo:before {
        background: linear-gradient(0deg, var(--navy), transparent 40%);
    }

    .modal-statements {
        grid-template-columns: 1fr;
    }

    .action-list {
        grid-template-columns: 1fr;
    }

    .welcome-grid,
    .newsletter-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .welcome-grid {
        gap: 60px;
    }

    .director-photo {
        max-width: 560px;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .resource-grid {
        grid-template-columns: 1fr 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .ig-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-intro {
        grid-column: 1/-1;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width:620px) {
    .container {
        width: min(100% - 28px, var(--max));
    }

    .nav .nad-logo {
        width: min(205px, 72vw);
    }

    .section {
        padding: 78px 0;
    }

    .top-ministry {
        padding-top: 120px;
        background: linear-gradient(180deg, var(--navy) 0 78%, var(--cream) 78%);
    }

    .hero {
        min-height: 620px;
        height: auto;
    }

    .hero-bg {
        background: linear-gradient(0deg, rgba(10, 38, 49, .96), rgba(10, 38, 49, .35)), url('https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=1000&q=85') center/cover;
    }

    .hero-content {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-proof,
    .scroll-note {
        display: none;
    }

    .slide-copy {
        padding: 34px 26px 44px;
    }

    .slide-photo {
        min-height: 280px;
    }

    .ministry-modal {
        width: calc(100% - 16px);
        max-height: 96vh;
        border-radius: 20px;
    }

    .modal-shell {
        max-height: 96vh;
    }

    .modal-hero {
        min-height: 230px;
        padding: 72px 24px 30px;
    }

    .modal-content {
        padding: 32px 24px 40px;
    }

    .modal-statement,
    .action-card {
        padding: 22px;
    }

    .modal-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
    }

    .purpose {
        padding-bottom: 78px;
    }

    .purpose-card {
        padding: 36px 28px;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }

    .video-preview {
        height: 250px;
    }

    .director-photo img {
        height: 480px;
    }

    .director-badge {
        width: 125px;
        height: 125px;
        font-size: .86rem;
    }

    .issue-stack {
        height: 420px;
    }

    .issue {
        width: 245px;
        height: 340px;
    }

    .issue-two {
        left: 80px;
    }

    .issue strong {
        font-size: 1.6rem;
        margin-top: 85px;
    }

    .signup {
        border-radius: 18px;
        display: grid;
    }

    .signup .btn {
        width: 100%;
    }

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

    .form {
        padding: 24px;
    }

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

    .field.full {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-intro {
        grid-column: auto;
    }

    .copyright {
        gap: 10px;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}