:root {
    --black: #080808;
    --ink: #151515;
    --paper: #ebe7df;
    --white: #f2eee6;
    --red: #c5302b;
    --line: rgba(255, 255, 255, .12);
    --max: 1280px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.45
}

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

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

button, input, textarea {
    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
}

.hidden {
    display: none
}

.nav-wrap {
    height: 72px;
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    top: 0;
    padding: 0 max(24px, calc((100vw - var(--max)) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(#090909f2, #090909c9);
    backdrop-filter: blur(9px);
    border-bottom: 1px solid var(--line)
}

.brand {
    display: flex;
    gap: 14px;
    align-items: center;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 15px
}

.brand-mark {
    border: 1px solid rgba(255, 255, 255, .35);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: system-ui;
    font-size: 10px;
    letter-spacing: .08em
}

nav {
    display: flex;
    gap: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em
}

nav a {
    opacity: .75
}

nav a:hover {
    opacity: 1
}

.menu {
    display: none;
    color: white;
    background: none;
    border: 0;
    font-size: 24px
}

.hero {
    min-height: 760px;
    padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 80px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns:1.05fr .95fr;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.hero-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, transparent 0 60%, rgba(255, 255, 255, .02)), repeating-linear-gradient(0deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 4px);
    pointer-events: none
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E")
}

.hero-copy {
    z-index: 2;
    max-width: 720px
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: #b5b1a8;
    margin: 0 0 20px
}

.eyebrow.red {
    color: var(--red)
}

h1, h2, h3 {
    font-family: Oswald, sans-serif;
    margin: 0
}

h1 {
    font-size: clamp(56px, 7vw, 104px);
    line-height: .87;
    letter-spacing: -.045em;
    max-width: 800px
}

.sub {
    margin: 28px 0 0;
    font-size: 14px;
    letter-spacing: .36em;
    text-transform: uppercase
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 38px
}

.btn {
    border: 1px solid transparent;
    padding: 15px 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .11em;
    font-weight: 700;
    font-size: 11px
}

.btn.light {
    background: var(--paper);
    color: #111
}

.btn.ghost {
    border-color: rgba(255, 255, 255, .38)
}

.btn.black {
    background: #111;
    color: white
}

.route-line {
    position: absolute;
    width: 54vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: rotate(-8deg);
    right: -8vw;
    bottom: 15%;
}

.section {
    max-width: var(--max);
    margin: auto;
    padding: 100px 44px
}

.dark {
    background: var(--black)
}

.about,
.verify,
.merch,
.contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 700px
}

.about {
    max-width: none;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 72px;
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.church-card {
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 540px;
    overflow: hidden
}

.church-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen
}

.copy-block {
    align-self: center
}

.copy-block h2, .section-head h2, .contact h2, .verify h2 {
    font-size: clamp(38px, 4vw, 62px);
    line-height: .94;
    letter-spacing: -.03em
}

.copy-block > p:not(.eyebrow) {
    font-size: 18px;
    max-width: 580px;
    color: #c6c3bc;
    margin: 25px 0
}

.values {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 0;
    margin-top: 38px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line)
}

.values span {
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    letter-spacing: .16em
}

.paper {
    max-width: none;
    background: var(--paper);
    color: var(--ink);
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 70px;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, .02), rgba(0, 0, 0, .02)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E")
}

.muted {
    color: #625f59
}

.verify-form {
    display: flex;
    gap: 10px;
    margin-top: 28px
}

.verify-form input {
    flex: 1;
    min-width: 0;
    padding: 16px;
    border: 1px solid #aaa49a;
    background: #f8f5ef
}

.tiny {
    font-size: 12px;
    color: #68635b
}

.link-button {
    border: 0;
    background: none;
    text-decoration: underline;
    color: inherit;
    padding: 0
}

.result-card {
    min-height: 225px;
    background: #111;
    color: #eee;
    border: 1px solid #262626;
    padding: 28px;
    display: flex;
    align-items: center
}

.result-empty {
    color: #777
}

.verified {
    width: 100%
}

.verified.has-photo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 24px;
    align-items: center
}

.member-photo {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border: 1px solid #333;
    background: #1a1a1a
}

.verified .status {
    font-size: 12px;
    color: #57c96f;
    letter-spacing: .18em;
    font-weight: 800
}

.verified h3 {
    font-size: 34px;
    margin: 8px 0
}

.verified dl {
    display: grid;
    grid-template-columns:max-content 1fr;
    gap: 7px 18px;
    font-size: 13px;
    margin: 18px 0 0
}

.verified dt {
    color: #888
}

.not-found {
    color: #bbb
}

.not-found strong {
    color: white;
    font-size: 22px;
    display: block;
    margin-bottom: 6px
}

.merch {
    max-width: none;
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
}

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

.muted-light {
    color: #8d8b86
}

.products {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 24px
}

.product-card {
    background: #111;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column
}

.product-art {
    aspect-ratio: 1/1;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.product-art img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.product-spin {
    perspective: 1200px;
    background: #d8d8d8
}

.product-spin-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: product-spin 8s ease-in-out infinite
}

.product-spin-delay {
    animation-delay: -2s
}

.product-face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden
}

.product-back {
    transform: rotateY(180deg)
}

.product-card:hover .product-spin-inner {
    animation-play-state: paused
}

@keyframes product-spin {
    0%, 38% {
        transform: rotateY(0deg)
    }
    50%, 88% {
        transform: rotateY(180deg)
    }
    100% {
        transform: rotateY(360deg)
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-spin-inner {
        animation: none
    }

    .product-back {
        display: none
    }
}

.product-info {
    padding: 17px 18px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--line)
}

.product-info h3 {
    font-family: system-ui;
    font-size: 15px
}

.product-info p {
    font-size: 12px;
    color: #85827b;
    margin: 3px 0 0
}

.buy {
    margin: 0 18px 18px;
    padding: 12px;
    border: 1px solid #454545;
    background: transparent;
    color: white;
    text-align: center;
    font-size: 11px;
    letter-spacing: .14em;
    font-weight: 700
}

.buy:hover {
    background: white;
    color: black
}

.contact {
    max-width: none;
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
    display: grid;
    grid-template-columns:.85fr 1.15fr;
    gap: 70px;
    border-top: 1px solid var(--line)
}

.contact-form {
    display: grid;
    gap: 10px
}

.contact-form input, .contact-form textarea {
    background: #0d0d0d;
    border: 1px solid #333;
    color: white;
    padding: 14px
}

.contact-form textarea {
    resize: vertical
}

.contact-form .btn {
    justify-self: start;
    min-width: 160px
}

.contact-form .btn:disabled {
    opacity: .55;
    cursor: wait
}

.contact-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.form-status {
    min-height: 20px;
    margin: 2px 0 0;
    color: #aaa;
    font-size: 12px
}

.form-status.success {
    color: #57c96f
}

.form-status.error {
    color: #e06a64
}

footer {
    padding: 28px max(24px, calc((100vw - var(--max)) / 2));
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #807d76;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase
}

@media (max-width: 900px) {
    .nav-wrap {
        height: 64px
    }

    .menu {
        display: block
    }

    nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #090909;
        padding: 20px 24px;
        flex-direction: column;
        gap: 20px;
        border-bottom: 1px solid var(--line)
    }

    nav.open {
        display: flex
    }

    .brand {
        font-size: 12px
    }

    .hero {
        min-height: 720px;
        padding-top: 110px;
        grid-template-columns:1fr
    }

    .hero-copy {
        align-self: end
    }

    .about, .paper, .contact {
        grid-template-columns:1fr;
        gap: 38px
    }

    .about {
        padding-top: 70px;
        padding-bottom: 70px
    }

    .church-card {
        min-height: 340px
    }

    .paper {
        padding-top: 70px;
        padding-bottom: 70px
    }

    .products {
        grid-template-columns:1fr 1fr
    }

    .section {
        padding-left: 24px;
        padding-right: 24px
    }

    footer {
        flex-direction: column
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 56px
    }

    .hero {
        min-height: 690px
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .about {
        gap: 26px
    }

    .products {
        grid-template-columns:1fr
    }

    .verify-form {
        flex-direction: column
    }

    .verified.has-photo {
        grid-template-columns: minmax(0, 1fr) 88px;
        gap: 16px
    }

    .member-photo {
        width: 88px;
        height: 88px
    }

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

    .contact {
        padding-top: 70px;
        padding-bottom: 70px
    }

    .brand-mark {
        display: none
    }

    footer {
        padding-top: 22px;
        padding-bottom: 22px
    }
}
