:root {
    --linen: #f7f0e4;
    --linen-2: #efe5d5;
    --sage: #9aaa87;
    --sage-dark: #667456;
    --bark: #3a2a1f;
    --bark-soft: #5b4535;
    --clay: #b98263;
    --clay-dark: #8f6049;
    --sun: #e9c985;
    --glass: rgba(255, 248, 236, .64);
    --shadow: 0 18px 50px rgba(58, 42, 31, .13);
    --soft-shadow: 0 12px 32px rgba(58, 42, 31, .10);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(233, 201, 133, .30), transparent 32%),
        linear-gradient(180deg, #faf4e9 0%, #f2e6d5 42%, #e7d7c3 100%);
    color: var(--bark);
    overflow-x: hidden;
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .075;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
    z-index: 20;
}

a {
    color: var(--bark);
    text-decoration: none;
    transition:
        color .24s ease,
        opacity .24s ease;
}

a:hover {
    color: var(--clay-dark);
}

p a,
li a,
.form-check a {
    color: var(--sage-dark);
    font-weight: 600;
    text-decoration: none;
}

p a:hover,
p a:focus,
li a:hover,
li a:focus,
.form-check a:hover,
.form-check a:focus {
    color: var(--bark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-check {
    opacity: 1;
}

.form-check span {
    opacity: 1;
}

/* --------------------------------------------------------------------------
 * Flash messages
 * -------------------------------------------------------------------------- */

.utility-flash {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0 0 1.25rem;
}

.flash-message {
    margin: 0;
    padding: 1rem 1.4rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.6;
}

.flash-success {
    color: #36533c;
    background: #edf6ee;
    border-color: #c9ddcb;
}

.flash-danger {
    color: #6c4633;
    background: #fbf1e8;
    border-color: #e6c8ad;
}

.article-card a:not(.btn),
.ui-card a:not(.btn),
.inner-intro a:not(.btn),
.lead a:not(.btn) {
    color: #8f6049;
    font-weight: 500;
    position: relative;
}

.article-card a:not(.btn):after,
.ui-card a:not(.btn):after,
.inner-intro a:not(.btn):after,
.lead a:not(.btn):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: .32;
    transition: opacity .24s ease;
}

.article-card a:not(.btn):hover:after,
.ui-card a:not(.btn):hover:after,
.inner-intro a:not(.btn):hover:after,
.lead a:not(.btn):hover:after {
    opacity: .72;
}

.btn,
.btn:visited {
    color: #fff7ea;
}

.btn:hover {
    color: #fff7ea;
}

.btn:after {
    content: none !important;
}

.shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: block;
    background: url("../img/self-discovery-icon3.png") center center / contain no-repeat;
    box-shadow: 0 8px 22px rgba(58, 42, 31, .10);
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.brand-mark:before,
.brand-mark:after {
    content: none;
}

.brand-name {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    letter-spacing: .15em;
    /* text-transform: capitalize; */
    color: var(--bark);
    line-height: 1;
}

.topline {
    text-align: center;
    font-size: 11px;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: rgba(143, 96, 73, .86);
    margin: 2px 0 16px;
    font-weight: 600;
}

.nav {
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    background: rgba(255, 248, 236, .42);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(58, 42, 31, .08);
}

.nav-center,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-center a {
    margin-right: 18px;
}

.nav-center a {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    transition:
        color .24s ease,
        background .24s ease,
        box-shadow .24s ease,
        transform .24s ease;
}

.nav-center a:hover,
.nav-center a:focus {
    background: rgba(255, 248, 236, .42);
    box-shadow:
        inset 0 0 0 1px rgba(233, 201, 133, .75),
        0 0 18px rgba(233, 201, 133, .28);
}

.language-menu {
    position: relative;
    flex: 0 0 auto;
}

.language-menu-toggle {
    display: flex;
    align-items: center;
    gap: 5px;

    min-height: 42px;
    padding: 8px 12px;

    border: 1px solid rgba(58, 42, 31, .12);
    border-radius: 999px;

    background: rgba(255, 248, 236, .48);
    color: var(--bark);

    font-size: 18px;
    cursor: pointer;
}

.language-menu-arrow {
    font-size: 10px;
    opacity: .55;
}

.language-menu-dropdown {
    display: none;

    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1100;

    min-width: 150px;
    padding: 6px;

    border: 1px solid rgba(58, 42, 31, .10);
    border-radius: 14px;

    background: rgba(255, 248, 236, .97);
    box-shadow: 0 14px 30px rgba(58, 42, 31, .14);
    backdrop-filter: blur(16px);
}

.language-menu.menu-open .language-menu-dropdown {
    display: block;
}

.language-menu-dropdown a {
    display: block;
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 13px;
}

.language-menu-dropdown a:hover {
    background: rgba(233, 201, 133, .18);
}

.language-menu-dropdown a.is-active {
    font-weight: 650;
    color: var(--clay-dark);
}

.mobile-menu-actions {
    display: none;
}

.mobile-language-switcher {
    display: none;
}

.nav-link {
    position: relative;
    isolation: isolate;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 650;
    color: rgba(58, 42, 31, .82);
    transition: color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.nav-link:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    background:
        linear-gradient(145deg, rgba(111, 82, 60, .92), rgba(92, 72, 51, .88) 52%, rgba(105, 118, 91, .86)),
        radial-gradient(circle at 15% 12%, rgba(255, 255, 255, .20), transparent 28%);
    box-shadow: 0 10px 22px rgba(58, 42, 31, .13), inset 0 1px 0 rgba(255, 255, 255, .18);
    transition: opacity .25s ease, box-shadow .25s ease;
    overflow: hidden;
}

.nav-link:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='96' height='96' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
    transition: opacity .25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff8ec;
    transform: translateY(-1px);
}

.nav-link:hover:before,
.nav-link:hover:after,
.nav-link.is-active:before,
.nav-link.is-active:after {
    opacity: 1;
}

.nav-actions .register,
.nav-link.register {
    background: rgba(255, 248, 236, .5);
    box-shadow: inset 0 0 0 1px rgba(58, 42, 31, .12);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background:
        linear-gradient(145deg, rgba(111, 82, 60, .96), rgba(92, 72, 51, .94) 52%, rgba(105, 118, 91, .92)),
        radial-gradient(circle at 15% 12%, rgba(255, 255, 255, .22), transparent 28%);
    box-shadow: 0 12px 24px rgba(58, 42, 31, .16), inset 0 1px 0 rgba(255, 255, 255, .20);
    position: relative;
    flex: 0 0 auto;
}

.menu-toggle span,
.menu-toggle:before,
.menu-toggle:after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 2px;
    border-radius: 999px;
    background: #fff8ec;
}

.menu-toggle:before {
    top: 13px;
}

.menu-toggle span {
    top: 20px;
}

.menu-toggle:after {
    top: 27px;
}

.inner-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(420px, 100%);
    margin: 24px 0 22px;
}

.inner-divider-line {
    height: 1px;
    flex: 1 1 auto;
    background: linear-gradient(90deg, rgba(233, 201, 133, .10), rgba(233, 201, 133, .86));
}

.inner-divider-line:last-child {
    background: linear-gradient(90deg, rgba(233, 201, 133, .86), rgba(233, 201, 133, .10));
}

.inner-divider-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    background: url("../img/self-discovery-icon3.png") center center / contain no-repeat;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .22));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    min-height: 42px;
    padding: 11px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .01em;
    cursor: pointer;
    color: #fff8ec;
    background:
        linear-gradient(145deg, rgba(111, 82, 60, .96), rgba(92, 72, 51, .94) 52%, rgba(105, 118, 91, .92)),
        radial-gradient(circle at 15% 12%, rgba(255, 255, 255, .22), transparent 28%);
    box-shadow: 0 12px 24px rgba(58, 42, 31, .16), inset 0 1px 0 rgba(255, 255, 255, .20);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .12;
    mix-blend-mode: screen;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='96' height='96' filter='url(%23n)' opacity='.48'/%3E%3C/svg%3E");
}

.btn span,
.btn {
    white-space: nowrap;
    width: fit-content;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 32px rgba(58, 42, 31, .18), inset 0 1px 0 rgba(255, 255, 255, .24);
    filter: saturate(1.02);
}

main {
    position: relative;
    background: linear-gradient(180deg, #f7f0e4 0%, #efe1cf 100%);
}

section {
    padding: 78px 0;
}

.section-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -.022em;
    font-size: clamp(34px, 4vw, 54px);
    line-height: .98;
    margin: 0 0 26px;
    color: var(--bark);
}

.tag {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(154, 170, 135, .22);
    color: var(--sage-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cards-grid {
    display: grid;
    gap: 22px;
}

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

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

.ui-card {
    background: linear-gradient(145deg, rgba(255, 249, 239, .84), rgba(235, 222, 203, .62));
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 10px;
    padding: 27px;
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    min-height: 230px;
    display: flex;
    flex-direction: column;
}

.ui-card:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .16;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.ui-card>* {
    position: relative;
}

.ui-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -.022em;
    font-size: 34px;
    line-height: 1;
    margin: 0 0 14px;
    color: var(--bark);
}

.ui-card--path h3 {
    font-size: 31px;
}

.ui-card--glass h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -.022em;
    font-size: 28px;
    line-height: 1;
    margin: 0 0 10px;
    color: var(--bark);
}

.ui-card--glass p {
    font-size: 14px;
    line-height: 1.62;
}

.ui-card p {
    color: rgba(58, 42, 31, .72);
    line-height: 1.7;
    font-size: 15px;
    margin: 0 0 18px;
}

.ui-card__actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.ui-card .btn {
    margin-top: auto;
    align-self: flex-end;
}

.ui-card--glass {
    background: linear-gradient(145deg, rgba(255, 249, 239, .70), rgba(239, 228, 210, .48));
    backdrop-filter: blur(20px);
}

.article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.article-actions .btn {
    flex: 0 0 auto;
}

.article-actions .btn:only-child {
    margin-left: auto;
}

@media (max-width: 960px) {
    .cards-grid--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cards-grid--two {
        grid-template-columns: 1fr;
    }
}

footer {
    padding: 56px 0 34px;
    background: #37291f;
    color: #f8efe0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    min-width: 0;
    max-width: 100%;
}

.footer-brand .brand-name {
    color: #f8efe0;
    font-size: 20px;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.footer-brand .brand-mark {
    background: url("../img/self-discovery-icon3.png") center center / contain no-repeat;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.footer-brand .brand-mark:before,
.footer-brand .brand-mark:after {
    content: none;
}

.footer-copy {
    max-width: 420px;
    color: rgba(248, 239, 224, .72);
    line-height: 1.75;
    margin: 18px 0 22px;
}

.footer-grid {
    grid-template-columns: 1.4fr auto;
    align-items: center;
}

.footer-links {
    justify-self: end;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 22px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-links {
        justify-self: start;
        justify-content: flex-start;
    }
}

.payment {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(248, 239, 224, .85);
    font-size: 13px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    justify-items: start;
}

.footer-links a {
    color: rgba(248, 239, 224, .8);
    font-size: 14px;
}

.footer-bottom {
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(248, 239, 224, .12);
    display: flex;
    justify-content: space-between;
    color: rgba(248, 239, 224, .48);
    font-size: 12px;
}

.hero,
.shell,
.nav {
    overflow: visible;
}

.mobile-menu.menu-open {
    z-index: 1001;
}

@media (max-width: 960px) {
    .shell {
        width: min(100% - 28px, 740px);
    }

    .nav-center:not(.menu-open) {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-actions {
        gap: 6px;
    }

    section {
        padding: 68px 0;
    }

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

@media (max-width: 768px) {
    .nav {
        position: relative;
        padding-right: 24px;
    }

    .menu-toggle {
        margin-left: auto;
        margin-right: 0;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.menu-open {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 50;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255, 248, 236, .96);
        box-shadow: 0 18px 40px rgba(58, 42, 31, .16);
        backdrop-filter: blur(18px);
    }

    .mobile-menu.menu-open a {
        display: block;
        width: 100%;
        margin-right: 0;
        text-align: left;
    }

    .mobile-menu.menu-open .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
        padding-top: 10px;
        border-top: 1px solid rgba(58, 42, 31, .10);
    }

    .mobile-menu.menu-open .mobile-menu-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .mobile-menu .nav-link {
        display: block;
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 620px) {
    .topline {
        display: none;
        font-size: 9px;
        letter-spacing: .24em;
        margin-bottom: 11px;
    }

    .nav {
        padding: 8px 18px 8px 10px;
        border-radius: 22px;
    }

    .brand-mark {
        /* width: 32px;
        height: 32px; */
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: block;
        background: url("../img/self-discovery-icon3.png") center center / contain no-repeat;
        box-shadow: 0 8px 22px rgba(58, 42, 31, .10);
        position: relative;
        overflow: hidden;
        flex: 0 0 auto;
    }

    .brand-mark:before,
    .brand-mark:after {
        content: none;
    }

    .brand-name {
        font-size: 12px;
        letter-spacing: .10em;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .nav-actions {
        display: none;
    }

    .nav-link {
        font-size: 12px;
        padding: 9px 12px;
    }

    .language-menu {
        display: none;
    }

    .mobile-menu.menu-open .mobile-language-switcher {
        display: flex;
        flex-direction: column;

        margin-top: 6px;
        padding-top: 8px;

        border-top: 1px solid rgba(58, 42, 31, .10);
    }

    .mobile-menu.menu-open .mobile-language-switcher a {
        padding: 6px 10px;
        font-size: 12px;
    }

    .mobile-menu.menu-open .mobile-language-switcher a.is-active {
        color: var(--clay-dark);
        font-weight: 600;
    }

    .btn {
        min-height: 40px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .section-title {
        font-size: 38px;
        margin-bottom: 22px;
    }

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

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
        line-height: 1.6;
    }
}

/* INNER PAGE SHARED LAYOUT */

body.inner-page {
    background:
        radial-gradient(circle at 12% 8%, rgba(233, 201, 133, .22), transparent 32%),
        linear-gradient(180deg, #f7f0e4 0%, #efe1cf 54%, #e7d7c3 100%);
}

body:not(.inner-page) {
    background:
        radial-gradient(circle at 12% 8%, rgba(233, 201, 133, .20), transparent 32%),
        linear-gradient(180deg, #f7f0e4 0%, #efe1cf 54%, #e7d7c3 100%);
}

.inner-hero {
    min-height: 93svh;
    position: relative;
    overflow: visible;
    padding: 16px 0 0;
    isolation: isolate;
    background: #dce9dc;
}

.inner-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -5;
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    filter: saturate(1.02) contrast(.98) brightness(1.02);
}

.inner-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        linear-gradient(90deg,
            rgba(25, 36, 27, .54) 0%,
            rgba(49, 68, 44, .32) 24%,
            rgba(233, 242, 232, .05) 54%,
            rgba(42, 63, 47, .06) 100%),
        linear-gradient(180deg,
            rgba(255, 255, 255, .04) 0%,
            rgba(255, 255, 255, .00) 42%,
            rgba(32, 50, 34, .18) 100%);
}

.inner-hero .topline {
    color: rgba(143, 96, 73, .86);
    text-shadow: none;
}

.inner-hero .nav {
    background: rgba(255, 248, 236, .88);
    border-color: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 35px rgba(58, 42, 31, .10);
}

.inner-hero .brand-name,
.inner-hero .nav-center a {
    color: #463528;
}

.inner-hero .brand-mark {
    background: url("../img/self-discovery-icon3.png") center center / contain no-repeat;
}

.inner-hero .brand-mark:before,
.inner-hero .brand-mark:after {
    content: none;
}

.inner-hero-content {
    min-height: calc(93svh - 116px);
    display: grid;
    align-items: end;
    padding: 82px 0 54px;
}

.inner-copy {
    max-width: 620px;
}

.inner-kicker {
    display: inline-flex;
    color: rgba(255, 248, 236, .82);
    font-size: 12px;
    letter-spacing: .32em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.inner-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(50px, 6.4vw, 96px);
    line-height: .88;
    letter-spacing: -.045em;
    color: #fff7ea;
    margin: 0;
    max-width: 600px;
    text-wrap: balance;
    text-shadow: 0 18px 50px rgba(0, 0, 0, .34);
}

.inner-rule {
    width: 68px;
    height: 1px;
    background: rgba(233, 201, 133, .86);
    margin: 24px 0 22px;
}

.inner-intro {
    max-width: 520px;
    color: rgba(255, 248, 236, .93);
    font-size: 17px;
    line-height: 1.72;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .34);
}

.article-section {
    padding: 78px 0 86px;
}

.article-simple {
    display: grid;
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
}

.article-card {
    background: linear-gradient(145deg, rgba(255, 249, 239, .86), rgba(235, 222, 203, .66));
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    padding: 36px;
}

.article-card:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.article-card>* {
    position: relative;
}

.article-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -.022em;
    color: var(--bark);
    font-size: clamp(34px, 4vw, 52px);
    line-height: .98;
    margin: 0 0 24px;
}

.article-card p {
    color: rgba(58, 42, 31, .76);
    font-size: 16px;
    line-height: 1.86;
    margin: 0 0 20px;
}

.article-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 960px) {
    .inner-hero {
        min-height: 72svh;
    }

    .inner-hero-content {
        min-height: calc(72svh - 110px);
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    .tarot-card-grid {
        grid-template-columns: 1fr;
    }

    .inner-hero:before {
        background-size: auto 100%;
        background-position: 62% top;
    }

    .inner-hero:after {
        background:
            linear-gradient(90deg,
                rgba(25, 36, 27, .68) 0%,
                rgba(49, 68, 44, .42) 45%,
                rgba(233, 242, 232, .04) 100%),
            linear-gradient(180deg,
                rgba(255, 255, 255, .02) 0%,
                rgba(255, 255, 255, .00) 42%,
                rgba(32, 50, 34, .25) 100%);
    }
}

@media (max-width: 620px) {
    .inner-hero {
        min-height: 104svh;
        padding: 14px 0 34px;
    }

    .inner-hero:before {
        background-size: auto 112%;
        background-position: 63% top;
    }

    .inner-hero-content {
        min-height: calc(104svh - 96px);
        display: grid;
        align-items: end;
        padding: 92px 0 54px;
    }

    .inner-kicker {
        font-size: 10px;
        letter-spacing: .24em;
        margin-bottom: 16px;
    }

    .inner-title {
        font-size: clamp(38px, 12vw, 56px);
        line-height: .92;
        max-width: 320px;
    }

    .inner-rule,
    .inner-divider {
        margin: 20px 0 18px;
    }

    .inner-divider {
        width: min(300px, 100%);
        gap: 10px;
    }

    .inner-divider-mark {
        width: 28px;
        height: 28px;
    }

    .inner-intro {
        max-width: 330px;
        font-size: 14px;
        line-height: 1.68;
    }

    .article-section {
        padding: 58px 0 66px;
    }

    .article-card {
        padding: 24px;
    }

    .article-card h2 {
        font-size: 34px;
    }

    .article-card p {
        font-size: 14px;
        line-height: 1.62;
        margin-bottom: 16px;
    }
}

/* --- MVP nav/footer refinements --- */

.mobile-only-link {
    display: none;
}

.footer-brand {
    min-width: 0;
    max-width: 100%;
    align-items: center;
}

.footer-brand-name {
    line-height: 1.24;
}

.footer-brand-name--mobile {
    display: none;
}

.footer-brand-name--desktop {
    display: inline;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

@media (max-width: 768px) {
    .mobile-menu.menu-open a {
        display: block;
        width: 100%;
        margin-right: 0;
        text-align: left;
    }

    .mobile-menu.menu-open .mobile-only-link {
        display: block;
        padding-top: 6px;
    }

    .nav-actions {
        display: none;
    }

    .footer-brand-name--desktop {
        display: none;
    }

    .footer-brand-name--mobile {
        display: inline;
        white-space: normal;
    }
}

@media (max-width: 620px) {
    .nav {
        gap: 8px;
        padding: 8px 10px;
    }

    .nav .brand {
        min-width: 0;
        flex: 1 1 auto;
        gap: 6px;
    }

    .nav .brand-mark {
        width: 38px;
        height: 38px;
    }

    .nav .brand-name {
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        font-size: clamp(12.5px, 3.5vw, 14px);
        letter-spacing: .025em;
        line-height: 1;
    }

    .mobile-menu.menu-open {
        gap: 0;
        padding: 7px 12px;
    }

    .mobile-menu.menu-open a,
    .mobile-menu.menu-open .nav-link {
        display: block;

        width: auto;
        min-height: 0;
        margin: 0;
        padding: 6px 10px;

        border: 0;
        border-radius: 0;
        outline: 0;
        background: transparent;
        box-shadow: none;

        font-size: 12px;
        font-weight: 500;
        line-height: 1.35;
        letter-spacing: .01em;
        text-align: left;

        transform: none;
    }

    .mobile-menu.menu-open a::before,
    .mobile-menu.menu-open a::after,
    .mobile-menu.menu-open .nav-link::before,
    .mobile-menu.menu-open .nav-link::after {
        content: none;
    }

    .mobile-menu.menu-open a:hover,
    .mobile-menu.menu-open a:focus,
    .mobile-menu.menu-open a:focus-visible,
    .mobile-menu.menu-open a.is-active,
    .mobile-menu.menu-open .nav-link:hover,
    .mobile-menu.menu-open .nav-link:focus,
    .mobile-menu.menu-open .nav-link:focus-visible,
    .mobile-menu.menu-open .nav-link.is-active {
        border: 0;
        border-radius: 0;
        outline: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .mobile-menu.menu-open a.is-active,
    .mobile-menu.menu-open .nav-link.is-active {
        padding-left: 15px;
        color: var(--clay-dark);
        font-weight: 600;
    }

    .mobile-menu.menu-open a.is-active::before,
    .mobile-menu.menu-open .nav-link.is-active::before {
        content: "";
        display: block;
        position: absolute;
        inset: 5px auto 5px 3px;
        width: 2px;
        border-radius: 999px;
        background: var(--sun);
        opacity: .9;
    }

    .mobile-menu.menu-open .mobile-menu-actions {
        gap: 0;
        margin: 0;
        padding: 0;
        border: 0;
    }

    .menu-toggle {
        flex: 0 0 auto;
    }

    .footer-brand .brand-name {
        font-size: 20px;
        letter-spacing: .12em;
    }
}

/* --- Captcha --- */

.captcha-row {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
}

.captcha-input {
    flex: 1 1 auto;
    min-width: 0;

    letter-spacing: 0.35rem;
    text-align: center;
    text-transform: uppercase;
}

.captcha-image {
    flex: 0 0 auto;
    width: auto;
    min-width: 140px;
    max-width: 180px;
    height: auto;
    min-height: 48px;

    object-fit: contain;

    border: 1px solid rgba(109, 121, 47, 0.25);
    border-radius: 10px;
}

.captcha-help {
    display: block;
    margin-top: 0.45rem;

    color: rgba(67, 52, 42, 0.7);
    font-size: 0.82rem;
    font-style: italic;
    line-height: 1.4;
}

@media (max-width: 520px) {
    .captcha-row {
        align-items: stretch;
    }

    .captcha-input,
    .captcha-image {
        width: 50%;
        min-width: 0;
    }
}

/* --- Order summary details --- */

.order-summary {
    margin: 1.5rem 0;
    overflow: hidden;

    border: 1px solid rgba(95, 75, 55, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.28);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    padding: 0.9rem 1rem;

    border-bottom: 1px solid rgba(95, 75, 55, 0.12);
}

.order-summary-row:last-child {
    border-bottom: 0;
}

.order-summary-description {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.order-summary-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    width: 2.5rem;
    height: 2.5rem;

    color: #6d792f;
    background: rgba(109, 121, 47, 0.11);
    border-radius: 50%;
}

.order-summary-icon svg {
    width: 1.35rem;
    height: 1.35rem;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.order-summary-price {
    white-space: nowrap;
    font-weight: 600;
}

.order-summary-total {
    font-size: 1.1rem;
    font-weight: 700;
    background: rgba(109, 121, 47, 0.07);
}

.order-summary-total .order-summary-price {
    color: #596521;
}

/* --- Home orientation section --- */

.home-orientation {
    padding: 74px 0 82px;
    background:
        radial-gradient(circle at 14% 0%, rgba(233, 201, 133, .22), transparent 34%),
        linear-gradient(180deg, #f7f0e4 0%, #efe1cf 100%);
}

.home-orientation-grid {
    display: grid;
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    gap: 30px;
}

.home-orientation-copy {
    background: linear-gradient(145deg, rgba(255, 249, 239, .86), rgba(235, 222, 203, .66));
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    padding: 34px;
}

.home-orientation-copy:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.home-orientation-copy>* {
    position: relative;
}

.home-orientation-copy p {
    color: rgba(58, 42, 31, .76);
    font-size: 16px;
    line-height: 1.86;
    margin: 0 0 18px;
}

.home-orientation-copy p:last-child {
    margin-bottom: 0;
}

.home-cards {
    padding-top: 8px;
}

.home-cards .cards-grid {
    align-items: stretch;
}

.home-cards .ui-card {
    min-height: 260px;
}

.home-cards .ui-card h3 {
    font-size: 30px;
}

@media (max-width: 960px) {
    .home-orientation {
        padding: 64px 0 72px;
    }

    .home-cards .cards-grid--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .home-orientation {
        padding: 54px 0 62px;
    }

    .home-orientation-grid {
        gap: 22px;
    }

    .home-orientation-copy {
        padding: 24px;
    }

    .home-orientation-copy p {
        font-size: 15px;
        line-height: 1.78;
    }

    .home-cards .ui-card {
        min-height: 230px;
    }

    .home-cards .ui-card h3 {
        font-size: 28px;
    }
}