@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.css");

:root {
    --faith-background: #f4f1e9;
    --faith-surface: #ece8de;
    --faith-dark: #17211d;
    --faith-dark-soft: #26312c;
    --faith-text: #1c2521;
    --faith-muted: #68716c;
    --faith-line: rgba(28, 37, 33, 0.16);
    --faith-light-line: rgba(255, 255, 255, 0.17);
    --faith-accent: #a36f3f;
    --faith-accent-light: #d6b88d;
    --faith-white: #fffdf7;
    --faith-max-width: 1380px;
    --faith-header-height: 86px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.faith-landing-page {
    margin: 0;
    background: var(--faith-background);
    color: var(--faith-text);
    font-family:
        Pretendard,
        "Noto Sans KR",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    width: 100%;
}

.faith-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--faith-header-height);
    padding: 0 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--faith-white);
    border-bottom: 1px solid transparent;
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        backdrop-filter 0.35s ease,
        color 0.35s ease;
}

.faith-header.is-scrolled {
    color: var(--faith-text);
    background: rgba(244, 241, 233, 0.84);
    border-bottom-color: var(--faith-line);
    backdrop-filter: blur(18px);
}

.faith-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.faith-brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.faith-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faith-brand-text strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.faith-brand-text small {
    font-size: 10px;
    opacity: 0.66;
    letter-spacing: 0.08em;
}

.faith-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.faith-navigation-item {
    position: relative;
}

.faith-navigation-link {
    position: relative;
    display: inline-flex;
    padding: 13px 0;
    font-size: 14px;
    font-weight: 500;
}

.faith-navigation-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.faith-navigation-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.faith-navigation-dropdown {
    position: absolute;
    top: calc(100% + 3px);
    left: 50%;
    min-width: 190px;
    padding: 11px;
    border: 1px solid var(--faith-line);
    background: rgba(255, 253, 247, 0.98);
    color: var(--faith-text);
    box-shadow: 0 24px 70px rgba(20, 29, 25, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.faith-navigation-item:hover .faith-navigation-dropdown,
.faith-navigation-item:focus-within .faith-navigation-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.faith-navigation-dropdown a {
    display: block;
    padding: 11px 12px;
    font-size: 13px;
    transition:
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.faith-navigation-dropdown a:hover {
    padding-left: 17px;
    background: var(--faith-surface);
}

.faith-mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.faith-mobile-menu-button span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 6px auto;
    background: currentColor;
    transition: transform 0.3s ease;
}


/* Hero */

.faith-hero {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--faith-header-height) + 70px) 4vw 80px;
    display: flex;
    align-items: center;
    color: var(--faith-white);
    background:
        radial-gradient(circle at 72% 28%, #34483f 0%, transparent 30%),
        linear-gradient(125deg, #121b17 0%, #1f3029 52%, #15211c 100%);
    overflow: hidden;
}

.faith-hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.faith-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.faith-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.3;
}

.faith-hero-glow-one {
    top: 5%;
    right: 8%;
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(203, 171, 122, 0.35), transparent 67%);
}

.faith-hero-glow-two {
    bottom: -20%;
    left: 20%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(72, 118, 99, 0.3), transparent 68%);
}

.faith-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--faith-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.45fr);
    gap: 8vw;
    align-items: end;
}

.faith-eyebrow,
.faith-section-kicker {
    margin: 0 0 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.faith-eyebrow {
    color: var(--faith-accent-light);
}

.faith-hero h1 {
    max-width: 1000px;
    margin: 0;
    font-family:
        Georgia,
        "Times New Roman",
        "Noto Serif KR",
        serif;
    font-size: clamp(46px, 6vw, 92px);
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -0.055em;
}

.faith-hero h1 strong {
    font-weight: 700;
    color: var(--faith-accent-light);
    white-space: nowrap;
}

.faith-hero-description {
    max-width: 620px;
    margin: 40px 0 0;
    color: rgba(255, 253, 247, 0.72);
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.9;
    word-break: keep-all;
}

.faith-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 42px;
}

.faith-button {
    min-height: 56px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.faith-button span {
    transition: transform 0.3s ease;
}

.faith-button:hover {
    transform: translateY(-3px);
}

.faith-button:hover span {
    transform: translate(4px, -4px);
}

.faith-button-primary {
    background: var(--faith-white);
    color: var(--faith-dark);
}

.faith-button-secondary {
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--faith-white);
}

.faith-button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
}

.faith-hero-note {
    padding: 27px 0 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.faith-note-number {
    display: block;
    margin-bottom: 30px;
    color: var(--faith-accent-light);
    font-size: 11px;
    letter-spacing: 0.12em;
}

.faith-hero-note p {
    margin: 0;
    color: rgba(255, 253, 247, 0.7);
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: 18px;
    line-height: 1.8;
    word-break: keep-all;
}

.faith-scroll-guide {
    position: absolute;
    right: 4vw;
    bottom: 35px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    letter-spacing: 0.14em;
}

.faith-scroll-guide i {
    display: block;
    width: 44px;
    height: 1px;
    background: currentColor;
    animation: faithScrollPulse 2s ease-in-out infinite;
}

@keyframes faithScrollPulse {
    0%,
    100% {
        transform: scaleX(0.45);
        transform-origin: left;
    }

    50% {
        transform: scaleX(1);
        transform-origin: left;
    }
}


/* Common sections */

.faith-section {
    max-width: var(--faith-max-width);
    margin: 0 auto;
    padding: 150px 4vw;
}

.faith-section-heading {
    display: grid;
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.2fr);
    gap: 8vw;
    margin-bottom: 70px;
}

.faith-section-number {
    margin: 0 0 15px;
    color: var(--faith-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.faith-section-kicker {
    color: var(--faith-muted);
}

.faith-section-heading h2,
.faith-basics-intro h2,
.faith-question-heading h2,
.faith-latest-heading h2 {
    margin: 0;
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -0.045em;
    word-break: keep-all;
}

.faith-section-heading > div:last-child > p {
    max-width: 600px;
    margin: 28px 0 0;
    color: var(--faith-muted);
    font-size: 16px;
    line-height: 1.85;
    word-break: keep-all;
}


/* Start paths */

.faith-path-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--faith-line);
    border-left: 1px solid var(--faith-line);
}

.faith-path-card {
    position: relative;
    min-height: 350px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--faith-line);
    border-bottom: 1px solid var(--faith-line);
    background: transparent;
    overflow: hidden;
    transition:
        background-color 0.35s ease,
        color 0.35s ease;
}

.faith-path-card::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(163, 111, 63, 0.13);
    transform: scale(0);
    transition: transform 0.45s ease;
}

.faith-path-card:hover {
    color: var(--faith-white);
    background: var(--faith-dark);
}

.faith-path-card:hover::before {
    transform: scale(1);
}

.faith-path-card-large {
    min-height: 440px;
    grid-row: span 2;
    background: var(--faith-surface);
}

.faith-card-index {
    position: relative;
    z-index: 1;
    font-size: 12px;
    letter-spacing: 0.14em;
}

.faith-card-label {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: var(--faith-accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.faith-path-card:hover .faith-card-label {
    color: var(--faith-accent-light);
}

.faith-path-card h3 {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0;
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: clamp(25px, 2.6vw, 42px);
    line-height: 1.3;
    font-weight: 400;
    word-break: keep-all;
}

.faith-path-card p:not(.faith-card-label) {
    position: relative;
    z-index: 1;
    max-width: 470px;
    margin: 20px 0 0;
    color: var(--faith-muted);
    font-size: 14px;
    line-height: 1.8;
    word-break: keep-all;
}

.faith-path-card:hover p:not(.faith-card-label) {
    color: rgba(255, 255, 255, 0.67);
}

.faith-card-arrow {
    position: absolute;
    top: 25px;
    right: 28px;
    z-index: 1;
    font-size: 21px;
    transition: transform 0.3s ease;
}

.faith-path-card:hover .faith-card-arrow {
    transform: translate(5px, -5px);
}


/* Basics */

.faith-basics-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    gap: 9vw;
}

.faith-basics-intro {
    position: sticky;
    top: 135px;
    align-self: start;
}

.faith-basics-list {
    border-top: 1px solid var(--faith-line);
}

.faith-basic-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto 25px;
    gap: 24px;
    align-items: center;
    padding: 34px 0;
    border-bottom: 1px solid var(--faith-line);
    transition:
        padding-left 0.3s ease,
        color 0.3s ease;
}

.faith-basic-row:hover {
    color: var(--faith-accent);
    background: rgba(163, 111, 63, 0.06);
}

.faith-basic-number,
.faith-basic-time {
    color: var(--faith-muted);
    font-size: 11px;
    letter-spacing: 0.08em;
}

.faith-basic-row h3 {
    margin: 0 0 9px;
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: clamp(22px, 2.1vw, 31px);
    font-weight: 400;
}

.faith-basic-row p {
    margin: 0;
    color: var(--faith-muted);
    font-size: 14px;
    line-height: 1.7;
    word-break: keep-all;
}

.faith-basic-arrow {
    transition: transform 0.3s ease;
}

.faith-basic-row:hover .faith-basic-arrow {
    transform: translate(4px, -4px);
}


/* Questions */

.faith-question-section {
    max-width: none;
    padding-right: max(4vw, calc((100vw - var(--faith-max-width)) / 2 + 4vw));
    padding-left: max(4vw, calc((100vw - var(--faith-max-width)) / 2 + 4vw));
    color: var(--faith-white);
    background: var(--faith-dark);
}

.faith-question-heading {
    max-width: 900px;
    margin-bottom: 75px;
}

.faith-question-heading .faith-section-kicker {
    color: rgba(255, 255, 255, 0.48);
}

.faith-question-heading > p:last-child {
    max-width: 620px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.85;
}

.faith-question-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--faith-light-line);
    border-left: 1px solid var(--faith-light-line);
}

.faith-question-card {
    position: relative;
    min-height: 230px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--faith-light-line);
    border-bottom: 1px solid var(--faith-light-line);
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.faith-question-card:hover {
    color: var(--faith-dark);
    background: var(--faith-accent-light);
}

.faith-question-card span {
    color: var(--faith-accent-light);
    font-size: 11px;
}

.faith-question-card:hover span {
    color: var(--faith-dark);
}

.faith-question-card h3 {
    max-width: 540px;
    margin: 45px 50px 0 0;
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: clamp(23px, 2.4vw, 36px);
    line-height: 1.4;
    font-weight: 400;
    word-break: keep-all;
}

.faith-question-card i {
    position: absolute;
    right: 28px;
    bottom: 27px;
    font-style: normal;
    transition: transform 0.3s ease;
}

.faith-question-card:hover i {
    transform: translate(5px, -5px);
}


/* Promise */

.faith-promise-section {
    display: grid;
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.2fr);
    gap: 8vw;
}

.faith-promise-content {
    max-width: 870px;
}

.faith-promise-content p {
    margin: 0 0 34px;
    color: var(--faith-muted);
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: clamp(24px, 2.8vw, 42px);
    line-height: 1.65;
    letter-spacing: -0.02em;
    word-break: keep-all;
}

.faith-promise-content .faith-promise-lead {
    color: var(--faith-text);
}


/* Latest articles */

.faith-latest-section {
    border-top: 1px solid var(--faith-line);
}

.faith-latest-heading {
    margin-bottom: 58px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
}

.faith-text-link,
.faith-read-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 600;
}

.faith-text-link span,
.faith-read-link span {
    transition: transform 0.3s ease;
}

.faith-text-link:hover span,
.faith-read-link:hover span {
    transform: translate(4px, -4px);
}

.faith-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.6fr);
    gap: 22px;
}

.faith-featured-post {
    min-width: 0;
}

.faith-featured-image {
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
    background: var(--faith-dark);
}

.faith-featured-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.faith-featured-image:hover img {
    transform: scale(1.035);
}

.faith-featured-fallback {
    width: 100%;
    height: 100%;
    padding: 32px;
    display: flex;
    align-items: flex-end;
    background:
        radial-gradient(circle at 75% 30%, rgba(214, 184, 141, 0.28), transparent 25%),
        linear-gradient(135deg, #263b32, #101814);
    color: var(--faith-accent-light);
    font-family: Georgia, serif;
    font-size: 25px;
}

.faith-featured-content {
    padding: 27px 0 0;
}

.faith-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    color: var(--faith-muted);
    font-size: 11px;
    letter-spacing: 0.06em;
}

.faith-featured-content h3 {
    max-width: 850px;
    margin: 17px 0 0;
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: clamp(30px, 3.4vw, 51px);
    line-height: 1.25;
    font-weight: 400;
    word-break: keep-all;
}

.faith-featured-content > p:not(.faith-post-meta) {
    max-width: 740px;
    margin: 18px 0 25px;
    color: var(--faith-muted);
    font-size: 15px;
    line-height: 1.8;
}

.faith-side-posts {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--faith-line);
}

.faith-side-post {
    flex: 1;
    border-bottom: 1px solid var(--faith-line);
}

.faith-side-post > a {
    position: relative;
    height: 100%;
    min-height: 290px;
    padding: 28px 45px 28px 0;
    display: flex;
    flex-direction: column;
    transition: padding-left 0.3s ease;
}

.faith-side-post > a:hover {
    padding-left: 15px;
}

.faith-side-post h3 {
    margin: 42px 0 14px;
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: clamp(23px, 2.3vw, 34px);
    line-height: 1.35;
    font-weight: 400;
    word-break: keep-all;
}

.faith-side-post > a > p:not(.faith-post-meta) {
    margin: 0;
    color: var(--faith-muted);
    font-size: 14px;
    line-height: 1.7;
}

.faith-side-post-arrow {
    position: absolute;
    right: 3px;
    bottom: 28px;
    transition: transform 0.3s ease;
}

.faith-side-post > a:hover .faith-side-post-arrow {
    transform: translate(5px, -5px);
}

.faith-empty-posts {
    padding: 80px 20px;
    text-align: center;
    border: 1px solid var(--faith-line);
    color: var(--faith-muted);
}


/* Author */

.faith-author-section {
    display: grid;
    grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.2fr);
    gap: 8vw;
    border-top: 1px solid var(--faith-line);
}

.faith-author-quote {
    max-width: 930px;
    margin: 0;
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: clamp(32px, 4.3vw, 65px);
    line-height: 1.35;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

.faith-author-description {
    max-width: 650px;
    margin: 40px 0 0;
    color: var(--faith-muted);
    font-size: 16px;
    line-height: 1.9;
    word-break: keep-all;
}


/* Final CTA */

.faith-final-cta {
    position: relative;
    padding: 140px 4vw;
    color: var(--faith-white);
    background:
        radial-gradient(circle at 82% 24%, rgba(214, 184, 141, 0.18), transparent 24%),
        var(--faith-dark);
    overflow: hidden;
}

.faith-final-cta-inner {
    max-width: var(--faith-max-width);
    margin: 0 auto;
}

.faith-final-cta p {
    margin: 0 0 30px;
    color: var(--faith-accent-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.faith-final-cta h2 {
    max-width: 1100px;
    margin: 0 0 52px;
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: clamp(34px, 4.8vw, 70px);
    line-height: 1.16;
    font-weight: 400;
    letter-spacing: -0.05em;
    word-break: keep-all;
}

.faith-button-light {
    color: var(--faith-dark);
    background: var(--faith-white);
}


/* Footer */

.faith-footer {
    padding: 65px 4vw 35px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    color: var(--faith-white);
    background: #101713;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faith-footer-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.faith-footer > div:first-child p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
}

.faith-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: start;
    font-size: 13px;
}

.faith-footer-links a {
    color: rgba(255, 255, 255, 0.62);
    transition: color 0.2s ease;
}

.faith-footer-links a:hover {
    color: var(--faith-white);
}

.faith-footer-copyright {
    grid-column: 1 / -1;
    margin: 50px 0 0;
    padding-top: 25px;
    color: rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
}


/* Reveal animation */

.reveal-item {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s cubic-bezier(0.2, 0.75, 0.25, 1),
        transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Tablet */

@media (max-width: 1024px) {
    :root {
        --faith-header-height: 76px;
    }

    .faith-navigation {
        gap: 17px;
    }

    .faith-navigation-link {
        font-size: 12px;
    }

    .faith-hero-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .faith-hero-note {
        max-width: 470px;
        margin-top: 35px;
    }

    .faith-section {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .faith-basics-section {
        grid-template-columns: 1fr;
    }

    .faith-basics-intro {
        position: static;
    }

    .faith-question-grid {
        grid-template-columns: 1fr;
    }

    .faith-editorial-grid {
        grid-template-columns: 1fr;
    }

    .faith-side-post > a {
        min-height: 230px;
    }
}


/* Mobile */

@media (max-width: 760px) {
    .faith-header {
        height: 72px;
        padding: 0 20px;
    }

    .faith-brand-mark {
        width: 36px;
        height: 36px;
    }

    .faith-brand-text strong {
        font-size: 15px;
    }

    .faith-brand-text small {
        display: none;
    }

    .faith-mobile-menu-button {
        display: block;
        z-index: 3;
    }

    .faith-navigation {
        position: fixed;
        inset: 0;
        padding: 110px 25px 40px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        color: var(--faith-white);
        background: var(--faith-dark);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .faith-navigation.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .faith-navigation-item {
        border-bottom: 1px solid var(--faith-light-line);
    }

    .faith-navigation > .faith-navigation-link,
    .faith-navigation-item > .faith-navigation-link {
        width: 100%;
        padding: 20px 0;
        font-family: var(--faith-font, Pretendard, "Pretendard Variable", "Noto Sans KR", sans-serif);
        font-size: 24px;
    }

    .faith-navigation-dropdown {
        position: static;
        min-width: auto;
        padding: 0 0 15px;
        color: var(--faith-white);
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .faith-navigation-dropdown a {
        padding: 9px 0;
        color: rgba(255, 255, 255, 0.6);
    }

    .faith-navigation-dropdown a:hover {
        padding-left: 0;
        background: transparent;
    }

    .faith-mobile-menu-button.is-active span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .faith-mobile-menu-button.is-active span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .faith-header.is-scrolled:has(.faith-navigation.is-open) {
        color: var(--faith-white);
        background: transparent;
        border-bottom-color: transparent;
        backdrop-filter: none;
    }

    .faith-hero {
        min-height: 100svh;
        padding: 125px 20px 90px;
    }

    .faith-hero h1 {
        font-size: clamp(44px, 13vw, 67px);
        line-height: 1.12;
    }

    .faith-hero h1 strong {
        white-space: normal;
    }

    .faith-hero-description {
        margin-top: 28px;
        font-size: 15px;
        line-height: 1.85;
    }

    .faith-hero-actions {
        flex-direction: column;
    }

    .faith-button {
        width: 100%;
        justify-content: space-between;
    }

    .faith-hero-note {
        margin-top: 25px;
    }

    .faith-scroll-guide {
        display: none;
    }

    .faith-section {
        padding: 90px 20px;
    }

    .faith-section-heading,
    .faith-promise-section,
    .faith-author-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faith-section-heading {
        margin-bottom: 45px;
    }

    .faith-section-heading h2,
    .faith-basics-intro h2,
    .faith-question-heading h2,
    .faith-latest-heading h2 {
        font-size: 39px;
    }

    .faith-path-grid {
        grid-template-columns: 1fr;
    }

    .faith-path-card,
    .faith-path-card-large {
        min-height: 310px;
        grid-row: auto;
    }

    .faith-path-card h3 {
        font-size: 29px;
    }

    .faith-basic-row {
        grid-template-columns: 35px minmax(0, 1fr) 20px;
        gap: 15px;
    }

    .faith-basic-time {
        display: none;
    }

    .faith-basic-row p {
        display: none;
    }

    .faith-question-section {
        padding: 90px 20px;
    }

    .faith-question-card {
        min-height: 210px;
    }

    .faith-question-card h3 {
        margin-right: 25px;
        font-size: 26px;
    }

    .faith-promise-content p {
        font-size: 26px;
    }

    .faith-latest-heading {
        align-items: start;
        flex-direction: column;
    }

    .faith-featured-content h3 {
        font-size: 34px;
    }

    .faith-side-post h3 {
        margin-top: 30px;
        font-size: 27px;
    }

    .faith-author-quote {
        font-size: 34px;
    }

    .faith-final-cta {
        padding: 100px 20px;
    }

    .faith-final-cta h2 {
        font-size: 34px;
    }

    .faith-footer {
        grid-template-columns: 1fr;
        padding: 55px 20px 30px;
    }

    .faith-footer-links {
        flex-direction: column;
        gap: 14px;
    }

    .faith-footer-copyright {
        margin-top: 20px;
    }
}


/* Motion accessibility */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}

.faith-footer > div:first-child {
    justify-self: start;
    text-align: left;
}

body.faith-landing-page,
body.faith-landing-page button,
body.faith-landing-page input,
body.faith-landing-page textarea,
body.faith-landing-page select,
body.faith-landing-page h1,
body.faith-landing-page h2,
body.faith-landing-page h3,
body.faith-landing-page p,
body.faith-landing-page a,
body.faith-landing-page span {
    font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", sans-serif;
}
