:root {
    --navy-50: #f3f5f9;
    --navy-100: #e3e8f1;
    --navy-500: #2c4a7a;
    --navy-600: #23416d;
    --navy-700: #1c365b;
    --navy-800: #162a48;
    --navy-900: #0f1f38;
    --paper: #faf6ec;
    --paper-deep: #f6f1e3;
    --cream: #f6f1e7;
    --gold: #b88a3a;
    --gold-dark: #9a7129;
    --blue: #1d4ed8;
    --blue-dark: #1e40af;
    --white: #fffefa;
    --shadow-soft: 0 1px 2px rgba(15, 31, 56, 0.05);
    --shadow-card: 0 1px 2px rgba(15, 31, 56, 0.04), 0 8px 24px -12px rgba(15, 31, 56, 0.10);
    --font-serif: "Source Serif 4", Georgia, serif;
    --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--navy-900);
    font-family: var(--font-sans);
    background-color: var(--paper);
    background-image:
        radial-gradient(rgba(184, 138, 58, 0.04) 1px, transparent 1px),
        radial-gradient(rgba(184, 138, 58, 0.03) 1px, transparent 1px);
    background-position: 0 0, 12px 16px;
    background-size: 24px 24px, 32px 32px;
    -webkit-font-smoothing: antialiased;
}

body.modal-active {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

[x-cloak] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--gold) 45%, transparent);
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 2rem), 73.75rem);
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 40;
    padding: 1.25rem 0 0.5rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--gold);
}

.logo-mark svg {
    width: 2.5rem;
    height: 2.5rem;
}

.logo-text {
    display: grid;
    line-height: 1.08;
}

.logo-text strong {
    color: var(--navy-800);
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0;
}

.logo-text span {
    margin-top: -0.05rem;
    color: var(--gold-dark);
    font-size: 0.8rem;
}

.desktop-nav {
    display: none;
    align-items: center;
    color: var(--navy-800);
    font-size: 0.94rem;
}

.button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 0;
    border-radius: 0.375rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 80ms ease;
}

.button:active {
    transform: translateY(1px);
}

.button-primary,
.button-dark {
    background: var(--navy-800);
    color: white;
    box-shadow: var(--shadow-soft);
}

.button-primary:hover,
.button-dark:hover {
    background: var(--navy-900);
}

.button-outline {
    border: 1px solid color-mix(in srgb, var(--gold) 62%, transparent);
    background: transparent;
    color: var(--gold-dark);
}

.button-outline:hover {
    background: rgba(184, 138, 58, 0.1);
}

.button-gold {
    width: 100%;
    background: var(--gold);
    color: white;
    box-shadow: var(--shadow-soft);
}

.button-gold:hover {
    background: var(--gold-dark);
}

.button-full {
    width: 100%;
}

.button-icon {
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-toggle {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22, 42, 72, 0.15);
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy-800);
    box-shadow: var(--shadow-soft);
}

.mobile-nav-shell {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 60;
    transform: translateX(-50%);
    pointer-events: none;
}

.mobile-nav {
    margin-top: 0.75rem;
    border-radius: 0.375rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
    outline: 1px solid rgba(22, 42, 72, 0.1);
    pointer-events: auto;
}

.mobile-nav-cta {
    display: flex;
    width: 100%;
    min-height: 2.75rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
    color: var(--navy-800);
    background: transparent;
    font-size: 0.94rem;
    font-weight: 600;
    text-align: left;
}

.mobile-nav-cta {
    background: var(--navy-800);
    color: white;
}

.hero {
    padding: 1.75rem 0 2.75rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.hero-copy {
    width: min(100%, 42rem);
    margin-inline: auto;
    text-align: center;
}

.hero-copy h1,
.section-heading h2,
.work-intro h2,
.work-panel h2,
.expectation-panel h2,
.warning-panel h2,
.closing-panel h2,
.priority-card h3,
.cta-band h2,
.not-found h1,
.modal-title {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0;
}

.hero-copy h1 {
    max-width: 40rem;
    margin-inline: auto;
    font-size: clamp(2.35rem, 9vw, 3.7rem);
    line-height: 1.06;
}

.hero-copy .hero-subheading {
    max-width: 40rem;
    margin: 0.6rem auto 0;
    color: rgba(22, 42, 72, 0.78);
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 4.5vw, 1.75rem);
    font-weight: 400;
    line-height: 1.18;
    text-align: center;
}

.cross-divider {
    display: flex;
    max-width: 32rem;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem auto 1.65rem;
}

.cross-divider span {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, #c79a4a, transparent);
}

.cross-divider b {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 400;
}

.hero-copy p {
    max-width: 32.5rem;
    margin: 0 auto;
    color: rgba(15, 31, 56, 0.86);
    font-size: 0.98rem;
    line-height: 1.7;
    text-align: left;
}

.hero-copy strong {
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.8rem;
}

.hero-photo {
    width: min(100%, 24rem);
    aspect-ratio: 2 / 3;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0.375rem;
    background: var(--navy-100);
    box-shadow: var(--shadow-card);
    outline: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.heart-section {
    padding-bottom: 0.5rem;
}

.heart-option {
    display: grid;
}

.heart-option-shell {
    overflow: hidden;
    border-radius: 0.375rem;
    background: var(--paper-deep);
    box-shadow: var(--shadow-soft);
    outline: 1px solid rgba(22, 42, 72, 0.05);
}

.heart-option h2 {
    margin: 0 0 0.65rem;
    color: var(--navy-800);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
}

.heart-option p {
    margin: 0;
    color: rgba(15, 31, 56, 0.84);
    font-size: 0.9rem;
    line-height: 1.7;
}

.heart-feature-block,
.heart-callout-card {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1.15rem;
    align-items: start;
}

.heart-feature-block,
.heart-callout-card {
    padding: 1.2rem;
}

.heart-callout-stack {
    display: grid;
    border-top: 1px solid rgba(22, 42, 72, 0.1);
}

.heart-callout-card + .heart-callout-card {
    border-top: 1px solid rgba(22, 42, 72, 0.1);
}

.heart-callout-card {
    background: rgba(255, 254, 250, 0.48);
}

.heart-callout-card > svg {
    margin-top: 0.15rem;
    color: var(--gold-dark);
}

.heart-option .quote-text {
    margin-bottom: 0.65rem;
    color: var(--navy-800) !important;
    font-family: var(--font-serif);
    font-size: 1.18rem !important;
    font-style: italic;
    line-height: 1.38 !important;
}

.verse-copy p {
    font-size: 0.84rem;
    font-style: italic;
    line-height: 1.55;
}

.verse-copy strong {
    display: block;
    margin-top: 0.45rem;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cta-band p,
.modal-copy,
.success-state p,
.not-found p {
    color: rgba(15, 31, 56, 0.84);
    font-size: 0.9rem;
    line-height: 1.7;
}

.heart-feature-icon {
    display: grid;
    width: 2rem;
    min-height: 2rem;
    place-items: start center;
    color: var(--gold-dark);
}

.quote-icon {
    width: 2rem;
    color: var(--gold);
}

.quote-text {
    margin: 0 0 0.75rem;
    color: var(--navy-800) !important;
    font-family: var(--font-serif);
    font-size: 1.25rem !important;
    font-style: italic;
    line-height: 1.4 !important;
}

.services-section {
    padding: 3rem 0;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-heading span {
    display: none;
    width: 5rem;
    height: 1px;
    background: color-mix(in srgb, var(--gold) 70%, transparent);
}

.section-heading h2 {
    font-size: 1.65rem;
    line-height: 1.15;
    text-align: center;
}

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

.service-card,
.work-panel,
.expectation-panel,
.priority-card,
.warning-panel,
.closing-panel,
.pricing-card,
.testimonial-panel {
    border-radius: 0.375rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    outline: 1px solid rgba(22, 42, 72, 0.05);
}

.service-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
}

.service-icon {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: var(--navy-800);
    color: white;
}

.service-card h3 {
    margin: 0 0 0.45rem;
    color: var(--navy-800);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
}

.service-card p {
    margin: 0;
    color: rgba(15, 31, 56, 0.76);
    font-size: 0.8rem;
    line-height: 1.55;
}

.work-section {
    padding-bottom: 3rem;
}

.work-intro {
    margin-bottom: 1.5rem;
}

.church-illustration-intro {
    display: none;
}

.work-intro h2 {
    max-width: 46rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    line-height: 1.16;
}

.work-intro p:not(.panel-kicker) {
    max-width: 46rem;
    margin: 0 0 0.8rem;
    color: rgba(15, 31, 56, 0.84);
    font-size: 0.92rem;
    line-height: 1.7;
}

.work-intro p:last-child {
    margin-bottom: 0;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 0.375rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    outline: 1px solid rgba(22, 42, 72, 0.05);
}

.work-panel,
.expectation-panel,
.testimonial-panel {
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    padding: 1.5rem;
}

.expectation-panel,
.testimonial-panel,
.church-illustration {
    border-top: 1px solid rgba(22, 42, 72, 0.1);
}

.work-panel h2 {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

.priority-section {
    padding-top: 2.25rem;
}

.priority-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.priority-card {
    padding: 1.25rem;
}

.priority-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1rem;
    line-height: 1.2;
}

.priority-card p {
    margin: 0;
    color: rgba(15, 31, 56, 0.76);
    font-size: 0.82rem;
    line-height: 1.55;
}

.website-clarity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1rem;
}

.warning-panel,
.closing-panel {
    padding: 1.35rem;
}

.warning-panel h2,
.closing-panel h2 {
    margin-bottom: 0.9rem;
    font-size: 1.2rem;
    line-height: 1.2;
}

.closing-panel p:not(.panel-kicker) {
    margin: 0;
    color: rgba(15, 31, 56, 0.82);
    font-size: 0.9rem;
    line-height: 1.7;
}

.signal-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.signal-list li {
    position: relative;
    padding-left: 1.1rem;
    color: rgba(15, 31, 56, 0.78);
    font-size: 0.84rem;
    line-height: 1.45;
}

.signal-list li::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--gold);
    content: "";
}

.expectation-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.panel-kicker {
    margin: 0;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.expectation-panel h2 {
    font-size: 1.2rem;
}

.expectation-panel > p:not(.panel-kicker) {
    margin: 0;
    color: rgba(15, 31, 56, 0.78);
    font-size: 0.86rem;
    line-height: 1.55;
}

.expectation-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.expectation-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: rgba(15, 31, 56, 0.85);
    font-size: 0.8rem;
    line-height: 1.45;
}

.expectation-icon {
    display: grid;
    width: 1.6rem;
    height: 1.6rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: var(--navy-100);
    color: var(--gold-dark);
}

.check-list {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 0.75rem;
    color: rgba(15, 31, 56, 0.85);
    font-size: 0.86rem;
    line-height: 1.5;
}

.check-list svg {
    flex: 0 0 auto;
    margin-top: 0.12rem;
    color: var(--gold-dark);
}

.testimonial-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.testimonial-panel blockquote {
    margin: 0 0 1.25rem;
    color: rgba(15, 31, 56, 0.9);
    font-family: var(--font-serif);
    font-size: 0.98rem;
    font-style: italic;
    line-height: 1.55;
    text-align: center;
}

.testimonial-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-person > span {
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    color: var(--navy-800);
    background: linear-gradient(135deg, var(--navy-100), rgba(44, 74, 122, 0.38));
    font-family: var(--font-serif);
    font-size: 1.12rem;
    font-weight: 600;
    outline: 1px solid rgba(22, 42, 72, 0.1);
}

.testimonial-person strong {
    display: block;
    color: var(--navy-800);
    font-family: var(--font-serif);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.15;
}

.testimonial-person small {
    display: block;
    margin-top: 0.2rem;
    color: rgba(15, 31, 56, 0.65);
    font-size: 0.73rem;
    line-height: 1.25;
}

.church-illustration {
    min-height: 16rem;
    margin: 0;
    padding: 1rem;
    background: white;
}

.church-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.church-illustration svg {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    min-height: 14rem;*/
/*    overflow: hidden;*/
/*    border-radius: 0.25rem;*/
/*    background: linear-gradient(#bcd9ec, #e9f2db);*/
/*}*/

.pricing-section {
    padding: 0 0 3.25rem;
}

.pricing-intro {
    max-width: 42rem;
    margin: -0.35rem auto 1.5rem;
    color: rgba(15, 31, 56, 0.78);
    font-size: 0.92rem;
    line-height: 1.65;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.pricing-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.35rem;
}

.pricing-card h3 {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
}

.pricing-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.pricing-price-row strong {
    color: var(--navy-800);
    font-family: var(--font-serif);
    font-size: 2.15rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
}

.pricing-price-row span {
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-card p {
    margin: 0.85rem 0 0;
    color: rgba(15, 31, 56, 0.78);
    font-size: 0.86rem;
    line-height: 1.6;
}

.pricing-list {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-list li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    color: rgba(15, 31, 56, 0.84);
    font-size: 0.82rem;
    line-height: 1.45;
}

.pricing-list svg {
    flex: 0 0 auto;
    margin-top: 0.12rem;
    color: var(--gold-dark);
}

.pricing-guidance {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: center;
    margin-top: 1.35rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(22, 42, 72, 0.1);
    text-align: center;
}

.pricing-guidance p {
    max-width: 42rem;
    margin: 0;
    color: rgba(15, 31, 56, 0.76);
    font-size: 0.86rem;
    line-height: 1.6;
}

.pricing-guidance strong {
    color: var(--navy-800);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
}

.cta-band {
    background: var(--navy-800);
    color: white;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
}

.line-church {
    color: rgba(184, 138, 58, 0.72);
}

.line-church svg {
    width: 6rem;
    height: 5rem;
}

.cta-band h2 {
    color: white;
    font-size: 1.55rem;
    line-height: 1.2;
}

.cta-band p {
    max-width: 32rem;
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.86rem;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
}

.footer-inner span:nth-child(2) {
    font-family: var(--font-serif);
    font-style: italic;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: none;
}

.modal-visible {
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(15, 31, 56, 0);
    backdrop-filter: blur(0);
    transition: opacity 180ms ease, background-color 180ms ease, backdrop-filter 180ms ease;
    will-change: opacity, background-color, backdrop-filter;
}

.modal-visible .modal-backdrop {
    opacity: 1;
    background: rgba(15, 31, 56, 0.56);
    backdrop-filter: blur(6px);
}

.modal-panel {
    position: relative;
    width: min(100%, 32rem);
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    border-radius: 0.75rem;
    background: white;
    padding: 1.35rem;
    box-shadow: 0 28px 80px rgba(15, 31, 56, 0.24);
    outline: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(0.35rem) scale(0.985);
    transition: opacity 180ms ease, transform 180ms ease;
    will-change: opacity, transform;
}

.modal-visible .modal-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 0.72rem;
    right: 0.72rem;
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0.25rem;
    background: transparent;
    color: rgba(15, 31, 56, 0.45);
}

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

.modal-title {
    padding-right: 2.5rem;
    font-size: 1.55rem;
}

.modal-copy {
    margin: 0.35rem 0 1.25rem;
}

.form-alert {
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0.85rem;
    background: #fff4e6;
    color: #7a3f09;
    font-size: 0.86rem;
    line-height: 1.4;
}

.mockup-form {
    display: grid;
    gap: 0.9rem;
}

.field {
    display: grid;
    gap: 0.4rem;
}

.field span {
    color: rgba(15, 31, 56, 0.82);
    font-size: 0.8rem;
    font-weight: 600;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(22, 42, 72, 0.16);
    border-radius: 0.375rem;
    background: white;
    color: var(--navy-900);
    padding: 0.72rem 0.85rem;
    font-size: 0.88rem;
    line-height: 1.4;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.16);
    outline: 0;
}

.field em {
    color: #9b1c1c;
    font-size: 0.78rem;
    font-style: normal;
}

.honeypot {
    position: absolute;
    left: -100vw;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.success-state {
    padding: 1rem 0;
    text-align: center;
}

.success-state .modal-title {
    padding-right: 0;
}

.success-state p {
    max-width: 23rem;
    margin: 0.5rem auto 1.4rem;
}

.success-icon {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    place-items: center;
    border-radius: 999px;
    background: rgba(29, 78, 216, 0.1);
    color: var(--blue);
}

.text-button {
    border: 0;
    background: transparent;
    color: var(--blue);
    font-weight: 700;
}

.text-button:hover {
    color: var(--blue-dark);
}

.not-found {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 4rem 0;
}

.not-found .container {
    max-width: 36rem;
}

.eyebrow {
    margin: 0 0 0.5rem;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.not-found h1 {
    font-size: 2.5rem;
}

.not-found p {
    margin-bottom: 1.5rem;
}

.icon-xs {
    width: 0.9rem;
    height: 0.9rem;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-md {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-lg {
    width: 1.75rem;
    height: 1.75rem;
}

.icon-xl {
    width: 2rem;
    height: 2rem;
}

@media (min-width: 40rem) {
    .container {
        width: min(calc(100% - 3rem), 73.75rem);
    }

    .site-header {
        padding-top: 2rem;
    }

    .logo-text strong {
        font-size: 1.55rem;
    }

    .logo-text span {
        font-size: 0.82rem;
    }

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

    .hero-grid {
        gap: 1.5rem;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-photo {
        width: min(100%, 40rem);
        aspect-ratio: 4 / 5;
    }

    .heart-feature-block,
    .heart-callout-card {
        padding: 1.4rem;
    }

    .section-heading span {
        display: block;
    }

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

    .pricing-card {
        padding: 1.5rem;
    }

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

    .pricing-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc((100% - 1rem) / 2);
        justify-self: center;
    }

    .pricing-guidance {
        flex-direction: row;
        justify-content: space-between;
        gap: 1.5rem;
        text-align: left;
    }

    .pricing-guidance p {
        max-width: 42rem;
    }

    .pricing-guidance .button {
        flex: 0 0 auto;
    }

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

    .priority-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc((100% - 1rem) / 2);
        justify-self: center;
    }

    .button-gold {
        width: auto;
    }

    .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-inner span:nth-child(2) {
        text-align: right;
    }

    .modal-panel {
        padding: 1.75rem;
    }
}

@media (min-width: 56rem) {
    .desktop-nav {
        display: flex;
    }

    .mobile-nav-toggle,
    .mobile-nav {
        display: none !important;
    }

    .hero-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 2.5rem;
    }

    .hero-copy {
        grid-column: span 6;
        width: auto;
        margin-inline: 0;
        padding-top: 0.5rem;
        text-align: left;
    }

    .hero-copy h1,
    .hero-copy .hero-subheading,
    .cross-divider,
    .hero-copy p {
        margin-right: 0;
        margin-left: 0;
    }

    .hero-copy .hero-subheading {
        text-align: left;
    }

    .hero-actions {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-photo {
        grid-column: span 6;
        width: 100%;
        height: 37.5rem;
        aspect-ratio: auto;
    }

    .hero-photo img {
        object-position: top center;
    }

    .heart-option-callouts .heart-option-shell {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 0;
    }

    .heart-option-callouts .heart-feature-block {
        grid-column: span 7;
        padding: 2rem;
    }

    .heart-callout-stack {
        grid-column: span 5;
        border-top: 0;
        border-left: 1px solid rgba(22, 42, 72, 0.1);
    }

    .heart-option-callouts .heart-callout-card {
        padding: 1.6rem 2rem;
    }

    .services-section {
        padding-block: 3.5rem;
    }

    .pricing-section {
        padding-bottom: 4rem;
    }

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

    .pricing-card:last-child:nth-child(odd) {
        grid-column: auto;
        width: auto;
        justify-self: stretch;
    }

    .work-grid {
        grid-template-areas:
            "questions search"
            "image image";
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        outline: 0;
        gap: 1.25rem;
    }

    .work-panel,
    .expectation-panel,
    .testimonial-panel,
    .church-illustration {
        border: 0;
        border-radius: 0.375rem;
        background: var(--white);
        box-shadow: var(--shadow-soft);
        outline: 1px solid rgba(22, 42, 72, 0.05);
    }

    .work-panel {
        grid-area: questions;
    }

    .expectation-panel {
        grid-area: search;
    }

    .church-illustration {
        grid-area: image;
        height: clamp(17rem, 32vw, 20rem);
        min-height: 0;
        overflow: hidden;
        padding: 0;
        background: linear-gradient(#bcd9ec, #e9f2db);
    }

    .church-illustration-intro {
        display: none;
    }

    .priority-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .priority-card:last-child:nth-child(odd) {
        grid-column: auto;
        width: auto;
        justify-self: stretch;
    }

    .website-clarity-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    /*.church-illustration svg {*/
    /*    min-height: 16.25rem;*/
    /*    border-radius: 0;*/
    /*}*/

    .cta-inner {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding-block: 2.25rem;
    }

    .cta-inner > div:nth-child(2) {
        flex: 1;
    }
}

@media (min-width: 56rem) and (max-width: 71.99rem) {
    .work-intro {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
        gap: 1.5rem;
        align-items: stretch;
    }

    .work-intro-copy {
        align-self: center;
    }

    .work-grid {
        grid-template-areas: "questions search";
    }

    .church-illustration-grid {
        display: none;
    }

    .work-intro .church-illustration-intro {
        display: block;
        grid-area: auto;
        height: auto;
        min-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        border-radius: 0.375rem;
        background: linear-gradient(#bcd9ec, #e9f2db);
        box-shadow: var(--shadow-soft);
        outline: 1px solid rgba(22, 42, 72, 0.05);
    }

    .work-intro .church-illustration-intro img {
        object-position: 58% center;
    }
}

@media (min-width: 72rem) {
    .service-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .work-grid {
        grid-template-areas: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .work-panel,
    .expectation-panel,
    .church-illustration {
        grid-area: auto;
    }

    .church-illustration {
        height: auto;
        min-height: 16rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
