:root {
    --ink: #20241f;
    --muted: #68706a;
    --cream: #f4f0e8;
    --paper: #fbfaf7;
    --green: #273d36;
    --green-light: #35554a;
    --plum: #6e2d42;
    --gold: #c9a878;
    --line: #d9d6cd;
    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans), sans-serif;
    font-size: 15px;
    line-height: 1.65
}

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

.container {
    width: min(1160px, calc(100% - 64px));
    margin: 0 auto
}

.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
}

.announcement {
    background: var(--plum);
    color: #f9eee7;
    display: flex;
    justify-content: center;
    gap: 34px;
    align-items: center;
    min-height: 36px;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.announcement p {
    margin: 0
}

.announcement strong {
    color: #fff
}

.announcement a {
    color: var(--gold);
    font-weight: 600
}

.nav {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.site-header {
    background: var(--paper);
    position: relative;
    z-index: 5
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--green);
    font-weight: 600;
    line-height: 1.05
}

.brand-mark {
    background-image: url("/images/Logo.jpg");
    background-size: contain;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    position: relative
}

.brand-mark:after {
    content: "";
    height: 60px;
    width: 60px;
    position: absolute;
    border: 1px solid var(--gold);
    border-radius: 50%
}

.brand-name {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.brand-name i {
    font-family: var(--serif), serif;
    font-weight: 650;
    color: var(--plum)
}

.brand-name small {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted)
}

.nav-links {
    display: flex;
    gap: 29px;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #5b625b
}

.nav-links a {
    transition: color .2s
}

.nav-links a:hover, .nav-links a.active {
    color: var(--plum)
}

.nav-cta {
    background: var(--green);
    color: white !important;
    padding: 12px 17px;
    border-radius: 2px
}

.nav-cta span {
    color: var(--gold);
    padding-left: 5px
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 10px
}

.hero {
    min-height: 650px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-image, .hero-overlay {
    position: absolute;
    inset: 0
}

.hero-image {
    background-image: url("https://images.unsplash.com/photo-1507692049790-de58290a4334?auto=format&fit=crop&w=2000&q=85");
    background-position: center 55%;
    background-size: cover;
    transform: scale(1.02)
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(22, 34, 28, .8) 0%, rgba(27, 38, 32, .49) 46%, rgba(23, 26, 22, .15) 100%)
}

.hero-content {
    position: relative;
    padding: 88px 0 96px
}

.eyebrow {
    color: var(--plum);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
    margin: 0 0 21px
}

.eyebrow.light {
    color: #dac6a4
}

.hero h1 {
    font-size: clamp(52px, 7vw, 92px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .99;
    margin: 0;
    max-width: 700px
}

.hero h1 em, .visit h2 em {
    font-family: var(--serif), serif;
    font-weight: 500
}

.hero-copy {
    color: #f1f2ed;
    max-width: 420px;
    margin: 27px 0 30px;
    font-size: 16px;
    line-height: 1.7
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: all .2s
}

.button span {
    font-size: 18px;
    color: var(--gold);
    line-height: 0
}

.button-primary {
    background: var(--gold);
    color: #252a25
}

.button-primary:hover {
    background: #dfc18f
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff
}

.button-ghost:hover {
    background: #fff;
    color: var(--green)
}

.hero-scroll {
    position: absolute;
    right: 32px;
    bottom: 28px;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #d5d9d2;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 10px
}

.hero-scroll span {
    height: 35px;
    border-left: 1px solid var(--gold)
}

.section {
    padding: 112px 0
}

.welcome {
    background: var(--paper)
}

.welcome-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 100px
}

.welcome h2, .section-heading h2, .feature h2 {
    font-size: clamp(40px, 5vw, 63px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1.03;
    margin: 0
}

.welcome h2 em, .section-heading h2 em, .feature h2 em {
    font-family: var(--serif), serif;
    font-weight: 500;
    color: var(--plum)
}

.welcome-copy {
    padding-top: 7px;
    max-width: 440px;
    color: var(--muted);
    font-size: 16px
}

.text-link {
    display: inline-flex;
    gap: 13px;
    align-items: center;
    color: var(--plum);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .1em;
    border-bottom: 1px solid #cdb9b3;
    padding-bottom: 6px;
    margin-top: 22px
}

.text-link span {
    font-size: 16px;
    color: var(--gold)
}

.scripture {
    text-align: center;
    border-top: 1px solid var(--line);
    margin-top: 85px;
    padding-top: 70px
}

.cross-line {
    font-size: 18px;
    color: var(--gold)
}

blockquote {
    font-family: var(--serif), serif;
    color: var(--green);
    font-size: clamp(27px, 3vw, 39px);
    margin: 12px 0 7px;
    font-style: italic
}

cite {
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--muted)
}

.section-tinted {
    background: var(--cream)
}

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

.heading-note {
    width: 290px;
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 7px
}

.service-card {
    background: var(--green);
    color: #fff;
    padding: 0 55px;
    position: relative
}

.service-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, .19);
    gap: 38px
}

.service-tab {
    font: 600 11px var(--sans);
    letter-spacing: .12em;
    text-transform: uppercase;
    background: none;
    color: #a9b1a9;
    border: 0;
    border-bottom: 2px solid transparent;
    padding: 22px 0 18px;
    cursor: pointer
}

.service-tab.active {
    color: var(--gold);
    border-color: var(--gold)
}

.service-details {
    padding: 31px 0 40px
}

.service-day {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #b7c1b7
}

.service-day span {
    color: var(--gold);
    padding: 0 8px
}

.service-times {
    display: grid;
    grid-template-columns:100px 42px 1fr;
    align-items: baseline;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 17px 0
}

.service-times:last-child {
    border: 0
}

.service-times strong {
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -.06em
}

.service-times span {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: .1em
}

.service-times i {
    font-family: var(--serif), serif;
    font-size: 20px;
    font-style: italic;
    color: #e4e5de
}

.service-link {
    position: absolute;
    right: 55px;
    bottom: 28px;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase
}

.service-link span {
    font-size: 17px;
    padding-left: 8px
}

.ministries {
    background: var(--paper)
}

.ministry-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 12px
}

.ministry-card {
    aspect-ratio: .84;
    position: relative;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform .3s
}

.ministry-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(24, 48, 38, .2), rgba(20, 24, 21, .8))
}

.ministry-card > * {
    position: relative
}

.ministry-card:hover {
    transform: translateY(-7px)
}

.card-one {
    background-image: url("https://images.unsplash.com/photo-1489493585363-d69421e0edd3?auto=format&fit=crop&w=700&q=80")
}

.card-two {
    background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=700&q=80")
}

.card-three {
    background-image: url("https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=700&q=80")
}

.card-four {
    background-image: url("https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&w=700&q=80")
}

.card-number {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: .12em
}

.ministry-card h3 {
    font-size: 25px;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -.04em;
    margin: 0
}

.card-arrow {
    align-self: flex-end;
    color: var(--gold);
    font-size: 22px
}

.feature {
    padding: 0;
    display: grid;
    grid-template-columns:1.1fr .9fr;
    background: var(--cream)
}

.feature-image {
    min-height: 560px;
    background: url("https://images.unsplash.com/photo-1519491050282-cf00c82424b4?auto=format&fit=crop&w=1200&q=85") center/cover
}

.feature-content {
    align-self: center;
    padding: 70px 12%;
    max-width: 560px
}

.feature-content > p:not(.eyebrow) {
    color: var(--muted);
    margin: 24px 0 27px
}

.button-dark {
    background: var(--green);
    color: #fff
}

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

.events {
    background: var(--paper)
}

.event-list {
    border-top: 1px solid var(--line)
}

.event {
    display: grid;
    grid-template-columns:115px 1fr 25px;
    align-items: center;
    gap: 30px;
    padding: 24px 15px;
    border-bottom: 1px solid var(--line);
    transition: background .2s
}

.event:hover {
    background: var(--cream)
}

.event time {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--plum)
}

.event time strong {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -.08em;
    line-height: 1
}

.event time span {
    font-size: 9px;
    line-height: 1.3;
    letter-spacing: .12em
}

.event-type {
    font-size: 9px;
    color: var(--plum);
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0
}

.event h3 {
    font-family: var(--serif), serif;
    font-size: 24px;
    font-weight: 500;
    margin: 3px 0 2px
}

.event-meta {
    font-size: 11px;
    color: var(--muted);
    margin: 0
}

.event-meta span {
    color: var(--gold);
    padding: 0 7px
}

.event-arrow {
    font-size: 20px;
    color: var(--gold)
}

.visit {
    background: var(--green);
    color: #fff
}

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

.visit h2 {
    font-size: clamp(45px, 5vw, 67px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: 1.01;
    margin: 0
}

.visit-grid > div:last-child {
    max-width: 410px
}

.visit-grid > div:last-child p {
    color: #ccd2c8;
    margin: 0 0 26px
}

.footer {
    background: #1c2c26;
    color: #c9d0c7;
    padding: 74px 0 25px
}

.footer-top {
    display: grid;
    grid-template-columns:2fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 68px
}

.footer .brand {
    color: #fff
}

.footer-brand > p {
    font-size: 12px;
    color: #8f9e92;
    margin: 23px 0 0
}

.footer-label {
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 4px 0 18px
}

.footer-column p:not(.footer-label) {
    font-size: 12px;
    color: #afb9af;
    line-height: 1.8;
    margin: 0
}

.footer-column > a {
    font-size: 12px;
    color: #fff;
    display: block;
    margin-top: 12px
}

.socials {
    display: flex;
    gap: 8px
}

.socials a {
    border: 1px solid #718176;
    color: #e5e9df;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 10px;
    display: grid;
    place-items: center;
    text-transform: uppercase
}

.footer-bottom {
    border-top: 1px solid #35473d;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    color: #748378;
    font-size: 10px
}

.footer-bottom span span {
    color: var(--gold);
    padding-left: 4px
}

@media (max-width: 800px) {
    .container {
        width: min(100% - 40px, 600px)
    }

    .announcement {
        gap: 10px;
        padding: 7px 15px;
        font-size: 9px
    }

    .nav {
        height: 74px
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px
    }

    .menu-toggle span:not(.sr-only) {
        display: block;
        width: 21px;
        height: 1px;
        background: var(--green)
    }

    .nav-links {
        position: absolute;
        display: none;
        top: 110px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--paper);
        box-shadow: 0 12px 30px #20241f18;
        padding: 10px
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        padding: 12px 10px
    }

    .hero {
        min-height: 600px
    }

    .hero-content {
        padding: 75px 0
    }

    .hero h1 {
        font-size: clamp(48px, 13vw, 72px)
    }

    .hero-scroll {
        display: none
    }

    .section {
        padding: 78px 0
    }

    .welcome-grid, .visit-grid {
        grid-template-columns:1fr;
        gap: 27px
    }

    .welcome-copy {
        padding: 0
    }

    .scripture {
        margin-top: 65px;
        padding-top: 50px
    }

    .section-heading {
        display: block;
        margin-bottom: 32px
    }

    .heading-note {
        margin-top: 23px;
        width: auto
    }

    .service-card {
        padding: 0 23px
    }

    .service-tabs {
        gap: 20px
    }

    .service-tab {
        font-size: 9px
    }

    .service-link {
        position: static;
        display: block;
        padding-bottom: 25px
    }

    .service-times {
        grid-template-columns:80px 37px 1fr
    }

    .service-times strong {
        font-size: 34px
    }

    .service-times i {
        font-size: 17px
    }

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

    .ministry-card {
        padding: 17px;
        aspect-ratio: .88
    }

    .ministry-card h3 {
        font-size: 21px
    }

    .desktop-link {
        display: none
    }

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

    .feature-image {
        min-height: 330px
    }

    .feature-content {
        padding: 65px 20px
    }

    .event {
        grid-template-columns:70px 1fr 20px;
        gap: 15px;
        padding: 20px 0
    }

    .event time strong {
        font-size: 34px
    }

    .event h3 {
        font-size: 20px
    }

    .footer-top {
        grid-template-columns:1fr 1fr;
        gap: 38px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-top: 5px
    }
}

@media (max-width: 400px) {
    .brand-name {
        font-size: 15px
    }

    .brand-name small {
        font-size: 8px
    }

    .brand-mark {
        width: 34px;
        height: 34px
    }

    .announcement a {
        display: none
    }

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

    .hero-copy {
        font-size: 14px
    }

    .service-times {
        grid-template-columns:70px 31px 1fr
    }

    .service-times i {
        font-size: 15px
    }

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

.page-hero {
    min-height: 390px;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.page-hero:after {
    content: "✦";
    position: absolute;
    right: 9%;
    bottom: -58px;
    color: rgba(201, 168, 120, .2);
    font-size: 330px;
    line-height: 1
}

.page-hero .container {
    position: relative;
    z-index: 1
}

.page-hero h1 {
    font-size: clamp(47px, 6vw, 76px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: 1.02;
    margin: 0
}

.page-hero h1 em {
    font-family: var(--serif), serif;
    color: var(--gold);
    font-weight: 500
}

.page-hero p:last-child {
    color: #c6d0c7;
    max-width: 390px;
    margin: 24px 0 0;
    font-size: 16px
}

.page-hero-worship {
    background: linear-gradient(90deg, rgba(27, 52, 42, .92), rgba(27, 52, 42, .6)), url("https://images.unsplash.com/photo-1519491050282-cf00c82424b4?auto=format&fit=crop&w=1600&q=80") center/cover
}

.page-hero-ministries {
    background: linear-gradient(90deg, rgba(27, 52, 42, .92), rgba(27, 52, 42, .55)), url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1600&q=80") center/cover
}

.page-hero-events {
    background: linear-gradient(90deg, rgba(27, 52, 42, .92), rgba(27, 52, 42, .55)), url("https://images.unsplash.com/photo-1504150558240-0b4fd8946624?auto=format&fit=crop&w=1600&q=80") center/cover
}

.page-hero-sermons {
    background: linear-gradient(90deg, rgba(27, 52, 42, .92), rgba(27, 52, 42, .55)), url("https://images.unsplash.com/photo-1507692049790-de58290a4334?auto=format&fit=crop&w=1600&q=80") center/cover
}

.page-hero-give {
    background: linear-gradient(90deg, rgba(27, 52, 42, .92), rgba(27, 52, 42, .55)), url("https://images.unsplash.com/photo-1504052434569-70ad5836ab65?auto=format&fit=crop&w=1600&q=80") center/cover
}

.split-content {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 100px
}

.split-content h2 {
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1.04;
    margin: 0
}

.split-content h2 em {
    font-family: var(--serif), serif;
    color: var(--plum);
    font-weight: 500
}

.prose {
    max-width: 480px;
    color: var(--muted);
    font-size: 16px;
    padding-top: 5px
}

.prose p {
    margin: 0 0 20px
}

.values-grid {
    display: grid;
    grid-template-columns:1.2fr repeat(3, 1fr);
    gap: 35px
}

.values-grid h2 {
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1.02;
    margin: 0
}

.values-grid h2 em {
    font-family: var(--serif), serif;
    color: var(--plum);
    font-weight: 500
}

.value {
    border-left: 1px solid var(--line);
    padding-left: 24px
}

.value span, .ministry-details span, .giving-card > span {
    font-size: 10px;
    color: var(--plum);
    letter-spacing: .15em;
    font-weight: 700
}

.value h3, .ministry-details h3, .giving-card h3 {
    font-family: var(--serif), serif;
    font-size: 25px;
    font-weight: 500;
    margin: 23px 0 7px
}

.value p, .ministry-details p, .giving-card p {
    color: var(--muted);
    font-size: 13px;
    margin: 0
}

.worship-card {
    max-width: 960px
}

.ministry-details {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 25px
}

.ministry-details > div {
    border-top: 1px solid var(--line);
    padding-top: 19px
}

.ministry-details h3 {
    margin-top: 18px
}

.sermon-list {
    border-top: 1px solid var(--line)
}

.sermon {
    display: grid;
    grid-template-columns:54px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 25px 12px;
    border-bottom: 1px solid var(--line)
}

.sermon-play {
    height: 43px;
    width: 43px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--plum);
    font-size: 13px;
    padding-left: 2px
}

.sermon h3 {
    font-family: var(--serif), serif;
    font-size: 25px;
    font-weight: 500;
    margin: 4px 0
}

.sermon p:last-child {
    color: var(--muted);
    font-size: 11px;
    margin: 0
}

.sermon p span {
    color: var(--gold);
    padding: 0 6px
}

.sermon .text-link {
    margin: 0
}

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

.giving-card {
    background: var(--paper);
    padding: 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.giving-card h3 {
    font-size: 28px;
    margin: 25px 0 7px
}

.giving-card p {
    max-width: 250px
}

.giving-card .button, .giving-card .text-link {
    margin-top: auto
}

@media (max-width: 800px) {
    .page-hero {
        min-height: 350px
    }

    .page-hero:after {
        font-size: 220px;
        right: -3%;
        bottom: -40px
    }

    .split-content {
        grid-template-columns:1fr;
        gap: 28px
    }

    .values-grid {
        grid-template-columns:1fr 1fr;
        gap: 34px
    }

    .values-grid > div:first-child {
        grid-column: 1/-1
    }

    .ministry-details {
        grid-template-columns:1fr 1fr
    }

    .sermon {
        grid-template-columns:45px 1fr
    }

    .sermon .text-link {
        grid-column: 2;
        justify-self: start
    }

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

    .giving-card {
        min-height: 235px
    }
}

@media (max-width: 400px) {
    .values-grid, .ministry-details {
        grid-template-columns:1fr
    }

    .values-grid > div:first-child {
        grid-column: auto
    }

    .value {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 20px 0 0
    }
}

.standalone-page {
    background: var(--cream)
}

.standalone-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 24px 0
}

.tool-page, .legal-page {
    padding: 92px 0 120px
}

.tool-intro {
    max-width: 650px;
    margin-bottom: 55px
}

.tool-intro h1, .legal-heading h1 {
    font-size: clamp(50px, 7vw, 84px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .98;
    margin: 0
}

.tool-intro h1 em, .legal-heading h1 em {
    font-family: var(--serif), serif;
    font-weight: 500;
    color: var(--plum)
}

.tool-intro > p:last-child {
    color: var(--muted);
    font-size: 17px;
    max-width: 510px;
    margin: 27px 0 0
}

.tool-card {
    background: var(--green);
    color: #fff;
    max-width: 740px;
    padding: 45px 50px;
    position: relative
}

.tool-card-number {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em
}

.tool-card h2 {
    font-family: var(--serif), serif;
    font-size: 34px;
    font-weight: 500;
    margin: 24px 0 10px
}

.tool-card p {
    color: #d4ddd4;
    max-width: 580px;
    margin: 0
}

.tool-card .tool-note {
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin-top: 27px;
    padding-top: 20px;
    font-size: 13px;
    color: #b7c3b8
}

.standalone-link {
    margin-top: 25px;
    color: var(--gold) !important;
    border-color: rgba(201, 168, 120, .55)
}

.legal-heading {
    margin-bottom: 48px
}

.legal-heading > p:last-child {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 22px 0 0
}

.legal-card {
    background: var(--paper);
    max-width: 840px;
    padding: 55px 65px;
    box-shadow: 0 12px 40px rgba(39, 61, 54, .06)
}

.legal-card p, .legal-card li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8
}

.legal-card p:first-child {
    color: var(--ink)
}

.legal-card h2 {
    font-size: 23px;
    color: var(--green);
    font-family: var(--serif), serif;
    font-weight: 500;
    margin: 38px 0 8px
}

.legal-card ul {
    padding-left: 23px
}

.legal-card code {
    font-size: 12px;
    background: var(--cream);
    padding: 3px 5px;
    overflow-wrap: anywhere
}

.legal-card a {
    color: var(--plum);
    border-bottom: 1px solid #cdb9b3
}

.legal-card .standalone-link {
    color: var(--plum) !important
}

@media (max-width: 800px) {
    .standalone-header {
        padding: 20px 0
    }

    .tool-page, .legal-page {
        padding: 65px 0 80px
    }

    .tool-card, .legal-card {
        padding: 32px 25px
    }

    .legal-card p, .legal-card li {
        font-size: 14px
    }
}

.coming-soon-page {
    background: var(--green);
    color: #fff;
    min-height: 100vh
}

.coming-soon {
    min-height: 100vh;
    padding: 40px 0 70px;
    background: radial-gradient(circle at 80% 15%, rgba(201, 168, 120, .12), transparent 28%), var(--green)
}

.coming-soon .brand {
    color: #fff
}

.coming-soon-content {
    max-width: 680px;
    padding: clamp(90px, 14vh, 170px) 0 40px
}

.coming-soon-content h1 {
    font-size: clamp(54px, 8vw, 96px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .96;
    margin: 0
}

.coming-soon-content h1 em {
    font-family: var(--serif), serif;
    font-weight: 500;
    color: var(--gold)
}

.coming-soon-content > p:not(.eyebrow):not(.coming-soon-note) {
    color: #d1d9d1;
    font-size: 17px;
    max-width: 500px;
    margin: 28px 0 0
}

.coming-soon-rule {
    border-top: 1px solid rgba(255, 255, 255, .2);
    max-width: 500px;
    margin-top: 52px;
    padding-top: 20px;
    color: var(--gold)
}

.coming-soon-note {
    color: #99aa9c;
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin: 0
}

.coming-soon .eyebrow {
    color: var(--gold)
}

@media (max-width: 800px) {
    .coming-soon {
        padding-top: 25px
    }

    .coming-soon-content {
        padding-top: 110px
    }

    .coming-soon-content > p:not(.eyebrow):not(.coming-soon-note) {
        font-size: 15px
    }
}
