@font-face {
    font-family: "Inter";
    src: url("/v2-assets/fonts/inter-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif 4";
    src: url("/v2-assets/fonts/source-serif-4-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif 4";
    src: url("/v2-assets/fonts/source-serif-4-italic.woff2") format("woff2");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif 4";
    src: url("/v2-assets/fonts/source-serif-4-semibold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Source Serif 4";
    src: url("/v2-assets/fonts/source-serif-4-bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --v2-ink: #18130f;
    --v2-ink-soft: #322820;
    --v2-cream: #f3ecdf;
    --v2-cream-light: #fbf7ef;
    --v2-paper: #e9decb;
    --v2-gold: #895d18;
    --v2-gold-light: #d1ad67;
    --v2-burgundy: #6f2734;
    --v2-line: rgba(24, 19, 15, .18);
    --v2-line-light: rgba(255, 250, 240, .2);
    --v2-serif: "Source Serif 4", Georgia, serif;
    --v2-sans: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --v2-shell: min(1180px, calc(100% - 48px));
    --v2-shadow: 0 28px 70px rgba(39, 27, 15, .13);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--v2-cream-light);
    color: var(--v2-ink);
    font-family: var(--v2-sans);
    font-size: 16px;
    font-optical-sizing: auto;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image: radial-gradient(rgba(84, 58, 27, .065) .7px, transparent .7px);
    background-size: 7px 7px;
    content: "";
    pointer-events: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--v2-gold);
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

.v2-no-js [data-v2-deck-loading],
.v2-no-js [data-v2-result-loading],
.v2-no-js [data-v2-account-loading] {
    display: none !important;
}

.v2-shell {
    width: var(--v2-shell);
    margin-inline: auto;
}

.v2-narrow {
    max-width: 850px;
}

.v2-visually-hidden {
    position: absolute !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    margin: -1px !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.v2-state-card {
    max-width: 760px;
    padding: clamp(1.4rem, 4vw, 3.5rem);
    border: 1px solid var(--v2-line);
    margin-inline: auto;
    background: rgba(255, 253, 248, .9);
    box-shadow: var(--v2-shadow);
    text-align: center;
}

.v2-state-card--error {
    border-color: rgba(111, 39, 52, .5);
}

.v2-state-card h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.v2-state-card p:last-child {
    margin-bottom: 0;
}

.v2-loader {
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    border: 2px solid rgba(137, 93, 24, .22);
    border-top-color: var(--v2-gold);
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    animation: v2-spin .9s linear infinite;
}

@keyframes v2-spin {
    to { transform: rotate(360deg); }
}

.v2-field {
    display: grid;
    gap: .55rem;
}

.v2-field label {
    color: var(--v2-ink-soft);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.v2-field label small {
    color: var(--v2-gold);
    font-weight: 500;
}

.v2-field input,
.v2-field textarea,
.v2-field select {
    width: 100%;
    min-height: 3.25rem;
    padding: .8rem 1rem;
    border: 1px solid rgba(24, 19, 15, .28);
    border-radius: 0;
    background: #fffdf8;
    color: var(--v2-ink);
}

.v2-field textarea {
    line-height: 1.6;
    resize: vertical;
}

.v2-field input:focus,
.v2-field textarea:focus,
.v2-field select:focus {
    border-color: var(--v2-gold);
    outline: 2px solid rgba(137, 93, 24, .2);
}

.v2-skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 11px 17px;
    background: var(--v2-ink);
    color: white;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.v2-skip-link:focus {
    transform: translateY(0);
}

.v2-announcement {
    display: flex;
    min-height: 26px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 4px 24px;
    background: var(--v2-ink);
    color: #f4e8d2;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}

.v2-announcement span {
    color: var(--v2-gold-light);
    font-size: .65rem;
}

.v2-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(251, 247, 239, .94);
    backdrop-filter: blur(18px);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.v2-header.is-scrolled {
    border-color: var(--v2-line);
    box-shadow: 0 8px 35px rgba(36, 24, 12, .07);
}

.v2-header-inner {
    display: grid;
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.v2-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: inherit;
    line-height: 1;
    text-decoration: none;
}

.v2-brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border: 1px solid var(--v2-ink);
    background:
        linear-gradient(45deg, transparent 47%, var(--v2-gold) 48%, var(--v2-gold) 52%, transparent 53%) center / 11px 11px no-repeat,
        var(--v2-ink);
    box-shadow: inset 0 0 0 3px var(--v2-cream-light);
    color: var(--v2-gold-light);
    font-family: var(--v2-serif);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.v2-brand-copy {
    display: grid;
    gap: 6px;
}

.v2-brand-copy strong {
    font-family: var(--v2-serif);
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: .025em;
}

.v2-brand-copy small {
    color: #76695c;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.v2-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.3vw, 38px);
}

.v2-navigation a {
    position: relative;
    padding: 10px 0;
    color: #554a40;
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.v2-navigation a::after {
    position: absolute;
    right: 50%;
    bottom: 3px;
    left: 50%;
    height: 1px;
    background: var(--v2-gold);
    content: "";
    transition: right .2s ease, left .2s ease;
}

.v2-navigation a:hover,
.v2-navigation a.is-current {
    color: var(--v2-ink);
}

.v2-navigation a:hover::after,
.v2-navigation a.is-current::after {
    right: 0;
    left: 0;
}

.v2-header-cta {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 19px;
    border: 1px solid var(--v2-ink);
    background: var(--v2-ink);
    color: var(--v2-cream-light);
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.v2-header-cta:hover {
    background: transparent;
    color: var(--v2-ink);
    transform: translateY(-1px);
}

.v2-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--v2-ink);
    cursor: pointer;
}

.v2-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(169, 121, 37, .12) 50%, transparent calc(50% + 1px)),
        var(--v2-cream-light);
}

.v2-hero::before,
.v2-hero::after {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(169, 121, 37, .17);
    content: "";
    transform: rotate(45deg);
}

.v2-hero::before {
    top: -190px;
    left: -100px;
}

.v2-hero::after {
    right: -190px;
    bottom: -100px;
}

.v2-hero-grid {
    display: grid;
    min-height: 560px;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: clamp(40px, 8vw, 120px);
    padding-block: 38px;
}

.v2-hero-copy {
    position: relative;
    z-index: 2;
    padding-left: clamp(0px, 2vw, 25px);
}

.v2-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 15px;
    color: var(--v2-gold);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .22em;
    line-height: 1.35;
    text-transform: uppercase;
}

.v2-kicker > span {
    display: block;
    width: 30px;
    height: 1px;
    background: currentColor;
}

.v2-kicker--light {
    color: var(--v2-gold-light);
}

.v2-kicker--center {
    justify-content: center;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

.v2-hero h1,
.v2-page-hero h1 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(3.45rem, 5.7vw, 5.65rem);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .89;
}

.v2-hero h1 em,
.v2-page-hero h1 em,
.v2-section h2 em {
    color: var(--v2-gold);
    font-weight: 400;
}

.v2-lead {
    max-width: 650px;
    margin: 18px 0 0;
    color: #5d5147;
    font-family: var(--v2-serif);
    font-size: clamp(1.1rem, 1.55vw, 1.32rem);
    line-height: 1.55;
}

.v2-actions {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-top: 22px;
}

.v2-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 13px 24px;
    border: 1px solid var(--v2-ink);
    color: var(--v2-ink);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .075em;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.v2-button:hover {
    transform: translateY(-2px);
}

.v2-button--primary {
    background: var(--v2-ink);
    color: var(--v2-cream-light);
    box-shadow: 7px 7px 0 rgba(169, 121, 37, .22);
}

.v2-button--primary:hover {
    box-shadow: 3px 3px 0 rgba(169, 121, 37, .3);
}

.v2-button--outline {
    background: transparent;
}

.v2-button--outline:hover {
    background: var(--v2-ink);
    color: var(--v2-cream-light);
}

.v2-button--light {
    border-color: var(--v2-gold-light);
    background: var(--v2-cream-light);
    color: var(--v2-ink);
    box-shadow: 7px 7px 0 rgba(209, 173, 103, .2);
}

.v2-button--light:hover {
    background: var(--v2-gold-light);
    box-shadow: 3px 3px 0 rgba(209, 173, 103, .27);
}

.v2-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(24, 19, 15, .4);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
    transition: gap .2s ease, border-color .2s ease;
}

.v2-text-link:hover {
    gap: 14px;
    border-color: var(--v2-gold);
}

.v2-text-link--light {
    border-color: rgba(255, 255, 255, .45);
    color: var(--v2-cream-light);
}

.v2-hero-facts {
    display: flex;
    gap: 0;
    margin: 28px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--v2-line);
}

.v2-hero-facts div {
    min-width: 120px;
    padding-right: 27px;
}

.v2-hero-facts div + div {
    padding-left: 27px;
    border-left: 1px solid var(--v2-line);
}

.v2-hero-facts dt {
    font-family: var(--v2-serif);
    font-size: 1.4rem;
    line-height: 1;
}

.v2-hero-facts dd {
    margin: 7px 0 0;
    color: #796d62;
    font-size: .62rem;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.v2-hero-art {
    position: relative;
    min-height: 540px;
}

.v2-sunburst {
    position: absolute;
    top: 45px;
    left: 50%;
    display: grid;
    width: 430px;
    height: 430px;
    place-items: center;
    border: 1px solid rgba(169, 121, 37, .25);
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg, rgba(169, 121, 37, .17) 0deg .8deg, transparent .8deg 10deg);
    transform: translateX(-50%);
}

.v2-sunburst::before,
.v2-sunburst::after {
    position: absolute;
    border: 1px solid rgba(169, 121, 37, .18);
    border-radius: 50%;
    content: "";
}

.v2-sunburst::before {
    inset: 42px;
}

.v2-sunburst::after {
    inset: 85px;
}

.v2-sunburst > span {
    color: var(--v2-gold);
    font-size: 2rem;
}

.v2-card-stack {
    position: absolute;
    z-index: 2;
    top: 40px;
    left: 50%;
    width: 330px;
    height: 500px;
    transform: translateX(-50%);
}

.v2-tarot-card {
    position: absolute;
    display: flex;
    width: 255px;
    height: 435px;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--v2-ink);
    background: var(--v2-paper);
    box-shadow: var(--v2-shadow);
}

.v2-tarot-card--back {
    top: 42px;
    left: -6px;
    border: 8px double var(--v2-gold-light);
    background:
        repeating-linear-gradient(45deg, transparent 0 12px, rgba(209, 173, 103, .14) 12px 13px),
        var(--v2-ink);
    transform: rotate(-9deg);
}

.v2-card-diamond {
    position: absolute;
    inset: 92px 30px;
    border: 1px solid var(--v2-gold-light);
    transform: rotate(45deg);
}

.v2-card-diamond::before,
.v2-card-diamond::after {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(209, 173, 103, .55);
    content: "";
}

.v2-card-diamond::after {
    inset: 48px;
    background: var(--v2-gold-light);
}

.v2-tarot-card--face {
    top: 0;
    right: -4px;
    overflow: hidden;
    padding: 25px;
    background:
        linear-gradient(135deg, transparent 48%, rgba(169, 121, 37, .12) 49%, rgba(169, 121, 37, .12) 51%, transparent 52%),
        var(--v2-cream-light);
    transform: rotate(6deg);
}

.v2-tarot-card--face::before {
    position: absolute;
    inset: 9px;
    border: 1px solid var(--v2-gold);
    content: "";
}

.v2-card-number {
    z-index: 1;
    color: var(--v2-gold);
    font-family: var(--v2-serif);
    font-size: .73rem;
    letter-spacing: .15em;
}

.v2-card-star {
    z-index: 1;
    margin-top: 64px;
    color: var(--v2-gold);
    font-size: 4.5rem;
    line-height: 1;
    text-shadow: 0 0 0 var(--v2-gold);
}

.v2-card-orbit {
    position: absolute;
    top: 104px;
    width: 170px;
    height: 170px;
    border: 1px solid var(--v2-gold);
    border-radius: 50%;
}

.v2-card-orbit::before,
.v2-card-orbit::after {
    position: absolute;
    border: 1px solid rgba(169, 121, 37, .55);
    border-radius: 50%;
    content: "";
}

.v2-card-orbit::before {
    inset: 19px;
}

.v2-card-orbit::after {
    inset: 43px;
}

.v2-card-horizon {
    position: absolute;
    bottom: 63px;
    width: 260px;
    height: 80px;
    border-radius: 50% 50% 0 0;
    background: var(--v2-burgundy);
    clip-path: polygon(0 100%, 20% 46%, 34% 72%, 50% 15%, 66% 70%, 82% 42%, 100% 100%);
}

.v2-tarot-card--face strong {
    position: absolute;
    z-index: 2;
    bottom: 25px;
    font-family: var(--v2-serif);
    font-size: .7rem;
    letter-spacing: .24em;
}

.v2-art-caption {
    position: absolute;
    z-index: 3;
    right: -10px;
    bottom: 4px;
    margin: 0;
    padding-left: 45px;
    color: #73665a;
    font-family: var(--v2-serif);
    font-size: .8rem;
    font-style: italic;
    line-height: 1.55;
}

.v2-art-caption::before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 32px;
    height: 1px;
    background: var(--v2-gold);
    content: "";
}

.v2-art-caption span {
    position: absolute;
    top: -16px;
    left: 0;
    color: var(--v2-gold);
    font-family: var(--v2-sans);
    font-size: .53rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .1em;
}

.v2-marquee {
    overflow: hidden;
    border-block: 1px solid var(--v2-ink);
    background: var(--v2-paper);
    white-space: nowrap;
}

.v2-marquee div {
    width: max-content;
    padding: 13px 2vw;
    color: var(--v2-ink);
    font-family: var(--v2-serif);
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .33em;
    word-spacing: 2.5em;
}

.v2-marquee span {
    color: var(--v2-gold);
}

.v2-section {
    position: relative;
    padding-block: clamp(56px, 6vw, 88px);
}

.v2-section--compact {
    padding-block: clamp(44px, 5vw, 68px);
}

.v2-section--ink {
    overflow: hidden;
    background: var(--v2-ink);
    color: var(--v2-cream-light);
}

.v2-section--ink::before {
    position: absolute;
    top: -220px;
    right: -180px;
    width: 550px;
    height: 550px;
    border: 1px solid rgba(209, 173, 103, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(209, 173, 103, .03), 0 0 0 140px rgba(209, 173, 103, .025);
    content: "";
}

.v2-section--paper {
    background: var(--v2-paper);
}

.v2-section-heading {
    margin-bottom: 40px;
}

.v2-section-heading--split {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 410px);
    align-items: end;
    gap: 70px;
}

.v2-section-heading h2,
.v2-method-intro h2,
.v2-manifesto h2,
.v2-process-sticky h2,
.v2-ai-grid > div > h2,
.v2-transparency-note h2,
.v2-boundaries-grid > div > h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .98;
}

.v2-prose {
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
    font-size: 1.05rem;
    line-height: 1.8;
}

.v2-prose h2 {
    margin: 2.8rem 0 .8rem;
    color: var(--v2-ink);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.v2-prose h2:first-child {
    margin-top: 0;
}

.v2-prose p {
    margin: 0;
}

.v2-prose a {
    color: var(--v2-burgundy);
    text-underline-offset: 4px;
}

.v2-section-heading > p,
.v2-method-intro > p,
.v2-process-sticky > p,
.v2-transparency-note > p {
    margin: 0;
    color: #675b50;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    line-height: 1.75;
}

.v2-reading-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--v2-line);
    border-left: 1px solid var(--v2-line);
}

.v2-reading-card {
    position: relative;
    min-height: 410px;
    padding: 39px 34px 35px;
    border-right: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
    background: rgba(251, 247, 239, .68);
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.v2-reading-card:hover {
    z-index: 1;
    background: var(--v2-cream-light);
    box-shadow: var(--v2-shadow);
    transform: translateY(-7px);
}

.v2-reading-card--featured {
    background: var(--v2-paper);
}

.v2-reading-index,
.v2-layer-index {
    color: #897b6f;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.v2-reading-symbol {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 45px 0 33px;
    place-items: center;
    border: 1px solid var(--v2-gold);
    border-radius: 50%;
    color: var(--v2-gold);
    font-family: var(--v2-serif);
    font-size: 1.7rem;
}

.v2-overline {
    margin: 0 0 11px;
    color: var(--v2-gold);
    font-size: .59rem;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.5;
    text-transform: uppercase;
}

.v2-reading-card h3,
.v2-catalogue-card h3,
.v2-layers h3 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(1.7rem, 2.2vw, 2.25rem);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.08;
}

.v2-reading-card > p:not(.v2-overline),
.v2-catalogue-card > p:not(.v2-overline),
.v2-layers article > p {
    margin: 19px 0 0;
    color: #675b50;
    font-family: var(--v2-serif);
    line-height: 1.7;
}

.v2-reading-meta {
    position: absolute;
    right: 34px;
    bottom: 32px;
    left: 34px;
    padding-top: 15px;
    border-top: 1px solid var(--v2-line);
    color: #786b60;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
}

.v2-reading-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v2-reading-meta:hover {
    color: var(--v2-gold);
}

.v2-centered-action {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.v2-method-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(60px, 10vw, 145px);
}

.v2-method-intro {
    align-self: center;
}

.v2-method-intro > p {
    margin: 29px 0 34px;
    color: #c9bbaa;
}

.v2-method-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--v2-line-light);
    list-style: none;
}

.v2-method-list li {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--v2-line-light);
}

.v2-method-list li > span {
    padding-top: 4px;
    color: var(--v2-gold-light);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .17em;
}

.v2-method-list h3 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 1.45rem;
    font-weight: 400;
}

.v2-method-list p {
    margin: 7px 0 0;
    color: #bdafa0;
    font-family: var(--v2-serif);
    line-height: 1.65;
}

.v2-manifesto {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 70px clamp(28px, 7vw, 90px);
    border: 1px solid var(--v2-line);
    text-align: center;
}

.v2-manifesto::before,
.v2-manifesto::after {
    position: absolute;
    width: 45px;
    height: 45px;
    border-color: var(--v2-gold);
    content: "";
}

.v2-manifesto::before {
    top: 10px;
    left: 10px;
    border-top: 1px solid;
    border-left: 1px solid;
}

.v2-manifesto::after {
    right: 10px;
    bottom: 10px;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

.v2-manifesto-mark {
    display: block;
    margin-bottom: 30px;
    color: var(--v2-gold);
    font-size: 1.4rem;
}

.v2-manifesto .v2-kicker {
    justify-content: center;
}

.v2-manifesto > p:not(.v2-kicker) {
    max-width: 630px;
    margin: 27px auto 34px;
    color: #675b50;
    font-family: var(--v2-serif);
    font-size: 1.1rem;
}

.v2-page-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(44px, 4.5vw, 68px) clamp(36px, 4vw, 56px);
    border-bottom: 1px solid var(--v2-line);
    background: var(--v2-cream-light);
}

.v2-page-hero::after {
    position: absolute;
    top: 50%;
    right: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(169, 121, 37, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(169, 121, 37, .035), 0 0 0 110px rgba(169, 121, 37, .025);
    content: "";
    transform: translateY(-50%);
}

.v2-page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
    gap: clamp(35px, 7vw, 90px);
}

.v2-page-hero-grid > * {
    min-width: 0;
}

.v2-page-hero h1 {
    font-size: clamp(3rem, 4.8vw, 4.95rem);
    line-height: .94;
}

.v2-page-intro {
    padding-bottom: 5px;
}

.v2-page-intro > p:first-child {
    margin: 0;
    color: #5e5146;
    font-family: var(--v2-serif);
    font-size: 1.15rem;
    line-height: 1.6;
}

.v2-small-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0 0;
    padding-top: 13px;
    border-top: 1px solid var(--v2-line);
    color: #786b60;
    font-size: .73rem;
}

.v2-small-note span {
    color: var(--v2-gold);
}

.v2-page-hero--centered {
    text-align: center;
}

.v2-page-hero--centered::after {
    right: 50%;
    transform: translate(50%, -50%);
}

.v2-page-hero--centered .v2-lead {
    margin-inline: auto;
}

.v2-section--catalogue {
    padding-top: 36px;
}

.v2-catalogue-daily {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
    padding: 24px 26px;
    border: 1px solid rgba(182, 138, 58, .48);
    background: #fdfbf7;
    box-shadow: 10px 10px 0 rgba(182, 138, 58, .13);
}

.v2-catalogue-daily > span {
    color: #9a6a11;
    font-family: var(--v2-serif);
    font-size: 2.2rem;
    text-align: center;
}

.v2-catalogue-daily p,
.v2-catalogue-daily h2 {
    margin: 0;
}

.v2-catalogue-daily div > p:first-child {
    margin-bottom: 5px;
    color: #6b2332;
    font-size: .66rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-catalogue-daily h2 {
    font-family: var(--v2-serif);
    font-size: 1.65rem;
    font-weight: 400;
}

.v2-catalogue-daily div > p:last-child {
    margin-top: 5px;
    color: #6e6258;
}

.v2-catalogue-toolbar {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--v2-line);
}

.v2-filter-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.v2-filter-group button {
    padding: 9px 14px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #776b60;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.v2-filter-group button:hover,
.v2-filter-group button.is-active {
    border-color: var(--v2-gold);
    color: var(--v2-ink);
}

.v2-catalogue-toolbar > p {
    margin: 0;
    color: #776b60;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.v2-catalogue-toolbar strong {
    color: var(--v2-ink);
    font-family: var(--v2-serif);
    font-size: 1.15rem;
}

.v2-catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.v2-catalogue-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 420px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--v2-line);
    background: rgba(251, 247, 239, .72);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.v2-catalogue-card h3,
.v2-catalogue-card > p,
.v2-catalogue-meta dd {
    overflow-wrap: anywhere;
}

.v2-catalogue-card::before {
    position: absolute;
    inset: 8px;
    border: 1px solid transparent;
    content: "";
    pointer-events: none;
}

.v2-catalogue-card:hover {
    border-color: rgba(169, 121, 37, .7);
    box-shadow: var(--v2-shadow);
    transform: translateY(-5px);
}

.v2-catalogue-card.is-highlighted {
    background: var(--v2-paper);
}

.v2-catalogue-card.is-highlighted::before {
    border-color: rgba(169, 121, 37, .42);
}

.v2-catalogue-card-top {
    display: flex;
    min-height: 78px;
    align-items: flex-start;
    justify-content: space-between;
}

.v2-catalogue-symbol {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--v2-gold);
    border-radius: 50%;
    color: var(--v2-gold);
    font-family: var(--v2-serif);
    font-size: 1.4rem;
}

.v2-pill {
    padding: 7px 10px;
    background: var(--v2-ink);
    color: var(--v2-cream-light);
    font-size: .54rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.v2-catalogue-meta {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    margin: auto 0 0;
    padding-top: 26px;
    border-top: 1px solid var(--v2-line);
}

.v2-catalogue-meta div + div {
    padding-left: 20px;
    border-left: 1px solid var(--v2-line);
}

.v2-catalogue-meta > div {
    min-width: 0;
}

.v2-catalogue-meta dt {
    color: #807368;
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.v2-catalogue-meta dd {
    margin: 4px 0 0;
    font-family: var(--v2-serif);
    font-size: 1.05rem;
}

.v2-catalogue-action {
    margin-top: 25px;
}

.v2-catalogue-action .v2-button {
    width: 100%;
}

.v2-availability {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px dashed rgba(24, 19, 15, .25);
    color: #786b60;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.v2-availability i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--v2-gold);
}

.v2-catalogue-guidance {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    align-items: center;
    gap: 32px;
    margin-top: 42px;
    padding: 34px 40px;
    border-block: 1px solid var(--v2-line);
}

.v2-empty-catalogue {
    padding: clamp(45px, 8vw, 85px) 30px;
    border: 1px solid var(--v2-line);
    text-align: center;
}

.v2-empty-catalogue > span {
    color: var(--v2-gold);
    font-size: 1.7rem;
}

.v2-empty-catalogue h3 {
    margin: 17px 0 0;
    font-family: var(--v2-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
}

.v2-empty-catalogue p {
    margin: 10px 0 0;
    color: #675b50;
    font-family: var(--v2-serif);
}

.v2-filter-empty {
    margin-bottom: 30px;
}

.v2-guidance-number {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--v2-gold);
    border-radius: 50%;
    color: var(--v2-gold);
    font-family: var(--v2-serif);
    font-size: 1.45rem;
}

.v2-catalogue-guidance h2 {
    font-size: 1.6rem;
}

.v2-catalogue-guidance p {
    margin: 7px 0 0;
    color: #675b50;
    font-family: var(--v2-serif);
    line-height: 1.65;
}

.v2-editorial-quote {
    position: relative;
    max-width: 850px;
    margin: 0 auto 110px;
    padding: 40px 60px;
    border-inline: 1px solid var(--v2-gold);
    text-align: center;
}

.v2-editorial-quote > span {
    position: absolute;
    top: -43px;
    left: 50%;
    color: var(--v2-gold);
    font-family: var(--v2-serif);
    font-size: 5rem;
    line-height: 1;
    transform: translateX(-50%);
}

.v2-editorial-quote p {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-style: italic;
    line-height: 1.45;
}

.v2-principles {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--v2-line);
    list-style: none;
}

.v2-principles li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 38px;
    padding: 42px 25px;
    border-bottom: 1px solid var(--v2-line);
}

.v2-principles li:nth-child(even) {
    margin-left: 12%;
}

.v2-principle-number {
    color: var(--v2-gold);
    font-family: var(--v2-serif);
    font-size: 2.7rem;
    line-height: 1;
}

.v2-principles h3 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
}

.v2-principles p {
    max-width: 700px;
    margin: 10px 0 0;
    color: #675b50;
    font-family: var(--v2-serif);
    font-size: 1.02rem;
}

.v2-boundaries-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: clamp(60px, 10vw, 150px);
}

.v2-boundary-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--v2-line-light);
    list-style: none;
}

.v2-boundary-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 18px;
    padding: 23px 0;
    border-bottom: 1px solid var(--v2-line-light);
    color: #d6c9b9;
    font-family: var(--v2-serif);
    font-size: 1.05rem;
}

.v2-boundary-list span {
    color: var(--v2-gold-light);
    font-family: var(--v2-sans);
}

.v2-closing-statement {
    text-align: center;
}

.v2-closing-statement > span {
    color: var(--v2-gold);
    font-size: 1.4rem;
}

.v2-closing-statement p {
    margin: 18px auto 32px;
    font-family: var(--v2-serif);
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-style: italic;
    line-height: 1.15;
}

.v2-layers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--v2-line);
    border-left: 1px solid var(--v2-line);
}

.v2-layers article {
    position: relative;
    min-height: 410px;
    padding: 34px 34px 72px;
    border-right: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
}

.v2-layer-icon {
    margin: 45px 0 32px;
    color: var(--v2-gold);
    font-family: var(--v2-serif);
    font-size: 2.4rem;
}

.v2-layer-label {
    position: absolute;
    right: 34px;
    bottom: 30px;
    left: 34px;
    padding-top: 14px;
    border-top: 1px solid var(--v2-line);
    color: var(--v2-gold);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.v2-process-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: start;
    gap: clamp(70px, 11vw, 160px);
}

.v2-process-sticky {
    position: sticky;
    top: 140px;
}

.v2-process-sticky > p {
    margin-top: 27px;
}

.v2-process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
}

.v2-process-list li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 26px;
    padding: 31px 0;
    border-bottom: 1px solid rgba(24, 19, 15, .2);
}

.v2-process-list li:first-child {
    border-top: 1px solid rgba(24, 19, 15, .2);
}

.v2-process-list > li > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--v2-gold);
    border-radius: 50%;
    color: var(--v2-gold);
    font-family: var(--v2-serif);
}

.v2-process-list h3 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 1.45rem;
    font-weight: 400;
}

.v2-process-list p {
    margin: 7px 0 0;
    color: #675b50;
    font-family: var(--v2-serif);
}

.v2-ai-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    align-items: center;
    gap: clamp(60px, 10vw, 150px);
}

.v2-ai-seal {
    position: relative;
    display: grid;
    width: min(320px, 100%);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--v2-gold-light);
    border-radius: 50%;
    background: repeating-conic-gradient(rgba(209, 173, 103, .17) 0deg .7deg, transparent .7deg 15deg);
}

.v2-ai-seal::before,
.v2-ai-seal::after {
    position: absolute;
    border: 1px solid rgba(209, 173, 103, .45);
    border-radius: 50%;
    content: "";
}

.v2-ai-seal::before {
    inset: 35px;
}

.v2-ai-seal::after {
    inset: 78px;
    background: var(--v2-ink);
}

.v2-ai-seal span {
    z-index: 1;
    color: var(--v2-gold-light);
    font-family: var(--v2-serif);
    font-size: 2.7rem;
}

.v2-ai-grid .v2-lead {
    margin-top: 28px;
    color: #cabdac;
}

.v2-ai-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid var(--v2-line-light);
}

.v2-ai-columns h3 {
    margin: 0 0 14px;
    color: var(--v2-gold-light);
    font-family: var(--v2-serif);
    font-size: 1.3rem;
    font-weight: 400;
}

.v2-ai-columns ul {
    margin: 0;
    padding: 0;
    color: #c9bdaf;
    font-family: var(--v2-serif);
    list-style: none;
}

.v2-ai-columns li {
    position: relative;
    padding: 6px 0 6px 19px;
}

.v2-ai-columns li::before {
    position: absolute;
    top: 14px;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--v2-gold-light);
    content: "";
    transform: rotate(45deg);
}

.v2-method-disclosure {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .9fr 1.05fr .85fr;
    align-items: end;
    gap: clamp(35px, 6vw, 85px);
}

.v2-method-disclosure > .v2-kicker {
    align-self: start;
}

.v2-method-disclosure h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1;
}

.v2-method-disclosure h2 em {
    color: var(--v2-gold-light);
    font-weight: 400;
}

.v2-method-disclosure > div > p {
    margin: 0 0 22px;
    color: #c9bbaa;
    font-family: var(--v2-serif);
    line-height: 1.7;
}

.v2-transparency-note {
    max-width: 880px;
    margin: 0 auto;
    padding: 55px clamp(30px, 7vw, 80px);
    border-inline: 1px solid var(--v2-gold);
    text-align: center;
}

.v2-transparency-note h2 {
    font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.v2-transparency-note > p:not(.v2-overline) {
    margin: 22px auto 28px;
}

.v2-footer {
    padding: 70px 0 25px;
    background: #100d0a;
    color: var(--v2-cream-light);
}

.v2-footer-ornament {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
    color: var(--v2-gold-light);
}

.v2-footer-ornament::before,
.v2-footer-ornament::after {
    height: 1px;
    flex: 1;
    background: var(--v2-line-light);
    content: "";
}

.v2-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .65fr 1fr;
    gap: clamp(40px, 8vw, 105px);
    padding-bottom: 55px;
}

.v2-brand--footer {
    align-items: flex-start;
}

.v2-brand--footer .v2-brand-mark {
    border-color: var(--v2-gold-light);
    box-shadow: inset 0 0 0 3px #100d0a;
}

.v2-brand--footer .v2-brand-copy strong {
    font-size: 1.35rem;
}

.v2-brand--footer .v2-brand-copy small {
    max-width: 250px;
    color: #97897a;
    line-height: 1.55;
}

.v2-footer-heading {
    margin: 0 0 19px;
    color: var(--v2-gold-light);
    font-size: .61rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.v2-footer-links a,
.v2-footer-legal a {
    display: block;
    width: fit-content;
    margin: 8px 0;
    color: #cfc3b5;
    font-family: var(--v2-serif);
    text-decoration-color: transparent;
    text-underline-offset: 4px;
}

.v2-footer-links a:hover,
.v2-footer-legal a:hover {
    color: white;
    text-decoration-color: var(--v2-gold-light);
}

.v2-catalogue-card > .v2-catalogue-deliverable {
    margin-top: 20px;
    color: #7a612f;
    font-family: inherit;
    font-size: .65rem;
    font-weight: 800;
    line-height: 1.45;
    text-transform: uppercase;
}

/* Journal */
.v2-journal-hero {
    overflow-x: clip;
    border-bottom: 1px solid var(--v2-line);
    background: var(--v2-paper);
    padding-block: 44px 40px;
}

.v2-journal-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    align-items: end;
    gap: 64px;
}

.v2-journal-hero h1,
.v2-journal-article-hero h1 {
    max-width: 14ch;
    margin: 22px 0 0;
    font-family: var(--v2-serif);
    font-size: 3.65rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: .98;
}

.v2-journal-hero h1 em {
    color: var(--v2-burgundy);
    font-weight: 400;
}

.v2-journal-hero-grid > p {
    max-width: 31rem;
    margin: 0;
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
    font-size: 1.35rem;
    line-height: 1.5;
}

.v2-journal-index {
    overflow-x: clip;
    padding-block: 72px 104px;
    background: #fdfbf7;
}

.v2-journal-index-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--v2-line);
}

.v2-journal-index-heading > div {
    display: grid;
    gap: 12px;
}

.v2-journal-index-heading > p {
    max-width: 31rem;
    margin: 0;
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
    font-size: 1.15rem;
    line-height: 1.5;
}

.v2-journal-index-heading h2 {
    max-width: 16ch;
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 2.7rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.02;
}

.v2-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--v2-line);
}

.v2-journal-grid--essential {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    margin-bottom: 0;
}

.v2-journal-essentials {
    margin-bottom: 64px;
}

.v2-journal-card--lead {
    grid-row: 1 / span 2;
}

.v2-journal-card--compact .v2-journal-card-link {
    grid-template-columns: 170px minmax(0, 1fr);
    grid-template-rows: 1fr;
}

.v2-journal-card--compact figure {
    min-height: 210px;
    border-right: 1px solid var(--v2-line);
    border-bottom: 0;
}

.v2-journal-card--compact .v2-journal-card-editorial img {
    height: 100%;
}

.v2-journal-card--compact .v2-journal-card-link > div {
    padding: 22px;
}

.v2-journal-card--compact h2 {
    margin-block: 12px 16px;
    font-size: 1.3rem;
}

.v2-journal-card--compact .v2-journal-card-link > div > p:not(.v2-overline) {
    display: none;
}

.v2-journal-card {
    min-width: 0;
    border-right: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
}

.v2-journal-card-link {
    display: grid;
    height: 100%;
    grid-template-rows: 255px 1fr;
    color: inherit;
    text-decoration: none;
}

.v2-journal-card-link--text-only {
    grid-template-rows: 1fr;
}

.v2-journal-card-link--text-only > div {
    min-height: 255px;
}

.v2-journal-library-heading {
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
    align-items: end;
    gap: 48px;
    padding: 0 0 28px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--v2-line);
}

.v2-journal-library-heading > div:first-child {
    display: grid;
    gap: 10px;
}

.v2-journal-library-heading h2 {
    max-width: 17ch;
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 2.7rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.02;
}

.v2-journal-library-heading > div:first-child > p:last-child {
    margin: 0;
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
    line-height: 1.5;
}

.v2-journal-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.v2-journal-tools {
    display: grid;
    gap: 14px;
}

.v2-journal-search {
    display: block;
}

.v2-journal-search input {
    width: 100%;
    min-height: 52px;
    padding: 13px 16px;
    border: 1px solid var(--v2-line);
    border-radius: 0;
    outline: 0;
    background: #fffdfa;
    color: var(--v2-ink);
    font: inherit;
    letter-spacing: 0;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.v2-journal-search input:focus {
    border-color: var(--v2-burgundy);
    box-shadow: inset 3px 0 0 var(--v2-burgundy);
}

.v2-journal-search input::placeholder {
    color: #8b8176;
}

.v2-journal-filters button {
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--v2-line);
    border-radius: 0;
    background: transparent;
    color: var(--v2-ink-soft);
    cursor: pointer;
    font: inherit;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.v2-journal-filters button:hover,
.v2-journal-filters button:focus-visible,
.v2-journal-filters button.is-active {
    border-color: var(--v2-burgundy);
    background: var(--v2-burgundy);
    color: #fffaf2;
}

.v2-no-js .v2-journal-filters {
    display: none;
}

.v2-journal-inline-cta {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 48px;
    padding: 34px 38px;
    border-right: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
    background: var(--v2-burgundy);
    color: #fffaf2;
    margin-top: 72px;
}

.v2-journal-section {
    margin-top: 72px;
}

.v2-journal-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 31rem);
    align-items: end;
    gap: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--v2-line);
}

.v2-journal-section-heading > div {
    display: grid;
    gap: 10px;
}

.v2-journal-section-heading h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 2.45rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.04;
}

.v2-journal-section-heading > p,
.v2-journal-section-heading > a {
    margin: 0;
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
    line-height: 1.5;
}

.v2-journal-section-heading > a {
    justify-self: end;
    color: var(--v2-burgundy);
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.v2-journal-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-journal-row {
    min-width: 0;
    border-bottom: 1px solid var(--v2-line);
}

.v2-journal-row:nth-child(odd) {
    border-right: 1px solid var(--v2-line);
}

.v2-journal-row a {
    display: grid;
    min-height: 190px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 28px 30px;
    color: inherit;
    text-decoration: none;
    transition: background 160ms ease;
}

.v2-journal-row a:hover,
.v2-journal-row a:focus-visible {
    background: #f4ecdf;
}

.v2-journal-row h3 {
    margin: 11px 0 10px;
    font-family: var(--v2-serif);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1;
}

.v2-journal-row p:not(.v2-overline) {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.v2-journal-row a > span,
.v2-journal-arcana-item a > span {
    color: var(--v2-gold);
    font-size: 1.15rem;
}

.v2-journal-deck-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-left: 1px solid var(--v2-line);
}

.v2-journal-deck-item {
    min-width: 0;
    border-right: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
}

.v2-journal-deck-item a {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 20px;
    color: inherit;
    text-decoration: none;
}

.v2-journal-deck-item figure {
    display: grid;
    margin: 0 0 18px;
    aspect-ratio: 4 / 5;
    place-items: center;
    overflow: hidden;
    background: #f3ede3;
}

.v2-journal-deck-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 200ms ease;
}

.v2-journal-deck-item a:hover img,
.v2-journal-deck-item a:focus-visible img {
    transform: scale(1.025);
}

.v2-journal-deck-item p {
    margin: 0 0 18px;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.2;
}

.v2-journal-deck-item span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    color: var(--v2-burgundy);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-journal-deck-item b {
    color: var(--v2-gold);
}

.v2-journal-arcana-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--v2-line);
}

.v2-journal-arcana-item {
    min-width: 0;
    border-right: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
}

.v2-journal-arcana-item a {
    display: grid;
    min-height: 144px;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
    color: inherit;
    text-decoration: none;
    transition: background 160ms ease;
}

.v2-journal-arcana-item a:hover,
.v2-journal-arcana-item a:focus-visible {
    background: #f4ecdf;
}

.v2-journal-arcana-item img {
    width: 60px;
    height: 90px;
    object-fit: contain;
}

.v2-journal-arcana-item h3 {
    margin: 0 0 7px;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.15;
}

.v2-journal-arcana-item p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
    font-size: .82rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.v2-journal-inline-cta > div {
    display: grid;
    gap: 10px;
}

.v2-journal-inline-cta .v2-overline {
    color: var(--v2-gold-light, #d4b483);
}

.v2-journal-inline-cta h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.05;
}

.v2-journal-inline-cta p:not(.v2-overline) {
    max-width: 48rem;
    margin: 0;
    color: rgba(255, 250, 242, .82);
    font-family: var(--v2-serif);
}

.v2-journal-inline-cta .v2-editorial-button {
    white-space: nowrap;
}

.v2-journal-empty {
    margin: 0;
    padding: 42px;
    border: 1px solid var(--v2-line);
    border-top: 0;
    color: var(--v2-ink-soft);
    text-align: center;
}

.v2-journal-card figure,
.v2-home-journal-grid figure {
    position: relative;
    display: grid;
    min-width: 0;
    margin: 0;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--v2-line);
    background: #efe7d9;
}

.v2-journal-card figure::before,
.v2-home-journal-grid figure::before {
    position: absolute;
    width: 165px;
    height: 238px;
    border: 1px solid rgba(139, 101, 8, .4);
    content: "";
    transform: rotate(6deg);
}

.v2-journal-card img,
.v2-home-journal-grid img {
    position: relative;
    z-index: 1;
    width: 158px;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    filter: drop-shadow(0 18px 15px rgba(23, 19, 15, .2));
    transition: transform 220ms ease;
}

.v2-journal-card-link:hover img,
.v2-journal-card-link:focus-visible img,
.v2-home-journal-grid a:hover img,
.v2-home-journal-grid a:focus-visible img {
    transform: translateY(-8px) rotate(-2deg);
}

.v2-journal-card figure.v2-journal-card-editorial {
    display: block;
    background: #e9dfd0;
}

.v2-journal-card figure.v2-journal-card-editorial::before {
    content: none;
}

.v2-journal-card figure.v2-journal-card-editorial img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    filter: none;
}

.v2-journal-card figure.v2-journal-card-editorial--contain,
.v2-journal-hero-image--contain {
    background: #f5eee3;
}

.v2-journal-card figure.v2-journal-card-editorial--contain img {
    object-fit: contain;
    padding: 18px;
}

.v2-journal-card-link:hover .v2-journal-card-editorial img,
.v2-journal-card-link:focus-visible .v2-journal-card-editorial img {
    transform: scale(1.025);
}

.v2-journal-card-link > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
}

.v2-journal-card h2 {
    margin: 14px 0 16px;
    font-family: var(--v2-serif);
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.08;
}

.v2-journal-card h2,
.v2-journal-card p,
.v2-home-journal-grid h3 {
    overflow-wrap: anywhere;
}

.v2-journal-card-link > div > p:not(.v2-overline) {
    margin: 0 0 24px;
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
    line-height: 1.55;
}

.v2-journal-card-link > div > span,
.v2-home-journal-grid a > div > span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    color: var(--v2-burgundy);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-journal-card-link b,
.v2-home-journal-grid b {
    color: var(--v2-gold);
}

.v2-journal-article {
    background: #fdfbf7;
}

.v2-journal-article-hero {
    border-bottom: 1px solid var(--v2-line);
    padding-block: 64px;
    background: var(--v2-paper);
}

.v2-journal-article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: center;
    gap: 80px;
}

.v2-journal-article-hero-grid--editorial {
    grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
    gap: 64px;
}

.v2-journal-article-hero h1 {
    max-width: 16ch;
    font-size: 3.8rem;
}

.v2-journal-back {
    display: inline-block;
    margin-bottom: 36px;
    color: var(--v2-ink-soft);
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.v2-journal-deck {
    margin: 24px 0 0;
    color: var(--v2-ink-soft);
    font-size: .88rem;
}

.v2-journal-deck a {
    color: var(--v2-burgundy);
    font-weight: 800;
}

.v2-journal-hero-card {
    position: relative;
    margin: 0;
    padding: 26px;
    border: 1px solid rgba(139, 101, 8, .38);
    background: #efe7d9;
    text-align: center;
}

.v2-journal-hero-card img {
    width: 190px;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    filter: drop-shadow(0 18px 16px rgba(23, 19, 15, .22));
    transition: transform 220ms ease;
}

.v2-journal-hero-card:hover img {
    transform: translateY(-7px) rotate(1.5deg);
}

.v2-journal-hero-card figcaption {
    margin-top: 14px;
    color: var(--v2-gold);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-journal-hero-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(139, 101, 8, .38);
    background: #e9dfd0;
}

.v2-journal-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 260ms ease;
}

.v2-journal-hero-image--contain img {
    object-fit: contain;
    padding: 24px;
}

.v2-journal-related-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
    border-bottom: 1px solid currentColor;
    color: var(--v2-burgundy);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-journal-related-link:hover,
.v2-journal-related-link:focus-visible {
    color: var(--v2-gold);
}

.v2-journal-hero-image:hover img {
    transform: scale(1.018);
}

.v2-journal-body-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 760px);
    justify-content: center;
    gap: 72px;
    padding-block: 80px 104px;
}

.v2-journal-aside {
    align-self: start;
    padding-top: 18px;
    border-top: 3px solid var(--v2-gold);
}

.v2-journal-aside span {
    color: var(--v2-gold);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-journal-aside p {
    margin: 12px 0 0;
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    line-height: 1.45;
}

.v2-journal-copy {
    min-width: 0;
}

.v2-journal-introduction {
    margin: 0 0 54px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--v2-line);
    color: var(--v2-burgundy);
    font-family: var(--v2-serif);
    font-size: 1.75rem;
    line-height: 1.35;
}

.v2-journal-copy section + section {
    margin-top: 48px;
}

.v2-journal-copy section h2 {
    margin: 0 0 18px;
    font-family: var(--v2-serif);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.08;
}

.v2-journal-copy section p {
    margin: 0;
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
    font-size: 1.05rem;
    line-height: 1.75;
}

.v2-journal-copy section p + p {
    margin-top: 14px;
}

.v2-journal-author-note {
    margin-top: 64px;
    padding: 34px;
    border-top: 3px solid var(--v2-gold);
    background: #efe7d9;
}

.v2-journal-author-note h2 {
    margin: 8px 0 10px;
    font-family: var(--v2-serif);
    font-size: 2.2rem;
    font-weight: 500;
}

.v2-journal-author-note > p:not(.v2-overline) {
    margin: 0;
    color: var(--v2-ink-soft);
    font-family: var(--v2-serif);
}

.v2-journal-author-note a {
    display: inline-block;
    margin-top: 20px;
    color: var(--v2-burgundy);
    font-weight: 800;
}

.v2-journal-author-note > span {
    display: block;
    margin-top: 24px;
    font-family: var(--v2-serif);
}

.v2-journal-cta {
    padding-block: 46px;
    background: var(--v2-ink);
    color: #fdfbf7;
}

.v2-journal-cta .v2-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.v2-journal-cta h2 {
    margin: 8px 0 0;
    font-family: var(--v2-serif);
    font-size: 2.35rem;
    font-weight: 400;
    letter-spacing: 0;
}

.v2-journal-cta .v2-editorial-button {
    border-color: var(--v2-gold);
    background: #fdfbf7;
    color: var(--v2-ink);
}

.v2-journal-inline-cta .v2-editorial-button:hover {
    border-color: var(--v2-gold-light);
    background: var(--v2-gold-light);
    color: var(--v2-ink);
}

.v2-journal-cta .v2-editorial-button:hover {
    border-color: var(--v2-gold-light);
    background: var(--v2-gold-light);
    color: var(--v2-ink);
}

.v2-home-journal {
    border-top: 1px solid var(--v2-sales-line);
    background: #fdfbf7;
}

.v2-home-journal-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 36px;
}

.v2-home-journal-heading .v2-sales-eyebrow {
    grid-column: 1 / -1;
}

.v2-home-journal-heading h2 {
    max-width: 16ch;
    margin: 0;
}

.v2-home-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--v2-line);
    border-left: 1px solid var(--v2-line);
}

.v2-home-journal-grid article {
    min-width: 0;
    border-right: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
}

.v2-home-journal-grid a {
    display: grid;
    height: 100%;
    grid-template-columns: 150px minmax(0, 1fr);
    color: inherit;
    text-decoration: none;
}

.v2-home-journal-grid figure {
    border-right: 1px solid var(--v2-line);
    border-bottom: 0;
}

.v2-home-journal-grid figure::before {
    width: 92px;
    height: 138px;
}

.v2-home-journal-grid img {
    width: 88px;
}

.v2-home-journal-grid figure.v2-home-journal-editorial {
    display: block;
    overflow: hidden;
    background: #e9dfd0;
}

.v2-home-journal-grid figure.v2-home-journal-editorial::before {
    content: none;
}

.v2-home-journal-grid figure.v2-home-journal-editorial img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    filter: none;
}

.v2-home-journal-grid a:hover .v2-home-journal-editorial img,
.v2-home-journal-grid a:focus-visible .v2-home-journal-editorial img {
    transform: scale(1.025);
}

.v2-home-journal-grid a > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.v2-home-journal-grid h3 {
    margin: 12px 0 20px;
    font-family: var(--v2-serif);
    font-size: 1.35rem;
    letter-spacing: 0;
    line-height: 1.12;
}

.v2-founder-signature {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--v2-sales-line);
}

.v2-founder-signature > strong,
.v2-founder-signature > span {
    display: block;
}

.v2-founder-signature > strong {
    font-family: var(--v2-serif);
    font-size: 1.6rem;
}

.v2-founder-signature > span {
    margin-top: 2px;
    color: var(--v2-gold);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-founder-signature p {
    margin: 14px 0 0;
    color: var(--v2-ink-soft);
}

.v2-founder-signature a {
    color: var(--v2-burgundy);
    font-weight: 800;
}

.v2-founder-contact-signature {
    margin-top: 24px !important;
    font-family: var(--v2-serif);
}

@media (max-width: 980px) {
    .v2-journal-hero-grid,
    .v2-journal-article-hero-grid {
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 40px;
    }

    .v2-journal-article-hero-grid--editorial {
        grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr);
    }

    .v2-journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-journal-library-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .v2-journal-filters {
        justify-content: flex-start;
    }

    .v2-journal-section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .v2-journal-section-heading > a {
        justify-self: start;
    }

    .v2-journal-deck-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .v2-journal-arcana-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-home-journal-grid {
        grid-template-columns: 1fr;
    }

    .v2-home-journal-grid a {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .v2-journal-body-grid {
        grid-template-columns: 180px minmax(0, 680px);
        gap: 44px;
    }
}

@media (max-width: 720px) {
    .v2-journal-hero,
    .v2-journal-article-hero {
        padding-block: 36px;
    }

    .v2-journal-hero-grid,
    .v2-journal-article-hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .v2-journal-hero h1,
    .v2-journal-article-hero h1 {
        max-width: 100%;
        font-size: 2.7rem;
        overflow-wrap: anywhere;
    }

    .v2-journal-hero-grid > p {
        font-size: 1.15rem;
    }

    .v2-journal-index {
        padding-block: 42px 64px;
    }

    .v2-journal-index-heading,
    .v2-journal-library-heading,
    .v2-home-journal-heading,
    .v2-journal-cta .v2-shell {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .v2-journal-grid {
        grid-template-columns: 1fr;
    }

    .v2-journal-grid--essential {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        margin-bottom: 0;
    }

    .v2-journal-essentials {
        margin-bottom: 48px;
    }

    .v2-journal-card--lead {
        grid-row: auto;
    }

    .v2-journal-library-heading {
        gap: 24px;
        margin-bottom: 38px;
    }

    .v2-journal-tools {
        width: 100%;
    }

    .v2-journal-library-heading h2 {
        font-size: 2.2rem;
    }

    .v2-journal-filters {
        width: 100%;
        max-width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 4px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .v2-journal-filters button {
        flex: 0 0 auto;
    }

    .v2-journal-inline-cta {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 30px 24px;
        margin-top: 48px;
    }

    .v2-journal-inline-cta .v2-editorial-button {
        width: 100%;
        white-space: normal;
    }

    .v2-journal-card-link {
        grid-template-columns: 140px minmax(0, 1fr);
        grid-template-rows: auto;
    }

    .v2-journal-card-link--editorial {
        grid-template-columns: 140px minmax(0, 1fr);
        grid-template-rows: auto;
    }

    .v2-journal-card-link--text-only {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .v2-journal-card-link--text-only > div {
        min-height: 0;
    }

    .v2-journal-card-link--editorial .v2-journal-card-editorial {
        min-height: 230px;
        border-right: 1px solid var(--v2-line);
        border-bottom: 0;
    }

    .v2-journal-card--compact .v2-journal-card-link {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .v2-journal-card--compact figure {
        min-height: 230px;
    }

    .v2-journal-card-link > div {
        padding: 22px;
    }

    .v2-journal-card figure {
        min-height: 280px;
        border-right: 1px solid var(--v2-line);
        border-bottom: 0;
    }

    .v2-journal-card figure::before {
        width: 104px;
        height: 160px;
    }

    .v2-journal-card img {
        width: 100px;
    }

    .v2-journal-section {
        margin-top: 52px;
    }

    .v2-journal-section-heading h2 {
        font-size: 2rem;
    }

    .v2-journal-list {
        grid-template-columns: 1fr;
    }

    .v2-journal-row:nth-child(odd) {
        border-right: 0;
    }

    .v2-journal-row a {
        min-height: 0;
        padding: 24px 4px;
    }

    .v2-journal-deck-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-journal-deck-item a {
        padding: 14px;
    }

    .v2-journal-arcana-grid {
        grid-template-columns: 1fr;
    }

    .v2-journal-hero-card {
        width: min(250px, 100%);
    }

    .v2-journal-body-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-block: 54px 72px;
    }

    .v2-journal-aside {
        max-width: 340px;
    }

    .v2-journal-introduction {
        font-size: 1.45rem;
    }

    .v2-journal-copy section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .v2-journal-hero h1 {
        font-size: 2.3rem;
    }

    .v2-journal-article-hero h1 {
        font-size: 2rem;
        line-height: 1;
    }

    .v2-journal-card-link,
    .v2-home-journal-grid a {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .v2-journal-card-link--editorial {
        grid-template-columns: 112px minmax(0, 1fr);
        grid-template-rows: auto;
    }

    .v2-journal-card-link--editorial .v2-journal-card-editorial {
        min-height: 230px;
    }

    .v2-journal-card--compact .v2-journal-card-link {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .v2-journal-card figure,
    .v2-home-journal-grid figure {
        min-height: 230px;
    }

    .v2-journal-card figure::before,
    .v2-home-journal-grid figure::before {
        width: 80px;
        height: 122px;
    }

    .v2-journal-card img,
    .v2-home-journal-grid img {
        width: 78px;
    }

    .v2-journal-card-link > div,
    .v2-home-journal-grid a > div {
        padding: 18px;
    }

    .v2-journal-card h2,
    .v2-home-journal-grid h3 {
        font-size: 1.2rem;
    }

    .v2-journal-card-link > div > p:not(.v2-overline) {
        display: none;
    }

    .v2-journal-author-note {
        padding: 26px 22px;
    }
}

.v2-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--v2-line-light);
    color: #aaa094;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Accueil : le jeu et l’expérience avant le discours de réassurance. */
.v2-home-hero,
.v2-home-hero .v2-hero-grid {
    min-height: 535px;
}

.v2-home-hero .v2-hero-grid {
    grid-template-columns: .98fr 1.02fr;
    gap: clamp(26px, 5vw, 70px);
    padding-block: 30px;
}

.v2-home-hero .v2-hero-copy {
    max-width: 650px;
}

.v2-home-hero h1 {
    font-size: clamp(3.2rem, 5.2vw, 5.15rem);
}

.v2-hero-deck {
    position: relative;
    z-index: 1;
    min-height: 470px;
}

.v2-hero-deck-orbit {
    position: absolute;
    top: 18px;
    left: 54%;
    display: grid;
    width: 390px;
    height: 390px;
    place-items: center;
    border: 1px solid rgba(137, 93, 24, .24);
    border-radius: 50%;
    background: repeating-conic-gradient(from -8deg, rgba(137, 93, 24, .12) 0deg .75deg, transparent .75deg 12deg);
    color: var(--v2-gold);
    font-size: 1.4rem;
    transform: translateX(-50%);
}

.v2-hero-deck-orbit::before,
.v2-hero-deck-orbit::after {
    position: absolute;
    border: 1px solid rgba(137, 93, 24, .2);
    border-radius: 50%;
    content: "";
}

.v2-hero-deck-orbit::before { inset: 42px; }
.v2-hero-deck-orbit::after { inset: 92px; }

.v2-hero-deck-card {
    position: absolute;
    width: clamp(165px, 15.7vw, 210px);
    margin: 0;
    transition: transform .35s ease, filter .35s ease;
}

.v2-hero-deck-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border: 7px solid #f3e7d5;
    background: var(--v2-paper);
    box-shadow: 0 24px 48px rgba(28, 18, 9, .23);
    object-fit: cover;
}

.v2-hero-deck-card figcaption {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.v2-hero-deck-card--back {
    z-index: 1;
    top: 76px;
    left: 2%;
    transform: rotate(-13deg);
}

.v2-hero-deck-card--0 {
    z-index: 2;
    top: 52px;
    left: 17%;
    transform: rotate(-7deg);
}

.v2-hero-deck-card--1 {
    z-index: 4;
    top: 19px;
    left: 39%;
    transform: rotate(1.5deg);
}

.v2-hero-deck-card--2 {
    z-index: 3;
    top: 60px;
    left: 61%;
    transform: rotate(9deg);
}

.v2-hero-deck-card--face:hover {
    z-index: 8;
    filter: saturate(1.08);
    transform: translateY(-10px) rotate(0deg);
}

.v2-hero-deck-caption {
    position: absolute;
    z-index: 9;
    right: 0;
    bottom: 0;
    max-width: 250px;
    margin: 0;
    padding: 10px 0 0 35px;
    border-top: 1px solid var(--v2-gold);
    color: #74665a;
    font-family: var(--v2-serif);
    font-size: .77rem;
    line-height: 1.45;
}

.v2-hero-deck-caption span {
    display: block;
    margin-bottom: 2px;
    color: var(--v2-gold);
    font-family: var(--v2-sans);
    font-size: .54rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.v2-section-heading-copy > p {
    margin: 0 0 18px;
    color: #675b50;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    line-height: 1.75;
}

.v2-home-tarot {
    overflow: hidden;
    background: var(--v2-paper);
}

.v2-home-card-gallery {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
    gap: clamp(10px, 1.4vw, 19px);
}

.v2-home-card {
    min-width: 0;
    margin: 0;
}

.v2-home-card:nth-child(even) {
    margin-top: 24px;
}

.v2-home-card > div {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 19, 15, .34);
    background: #e6d7c1;
    box-shadow: 0 18px 33px rgba(39, 27, 15, .12);
}

.v2-home-card > div::after {
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 248, 233, .46);
    content: "";
    pointer-events: none;
}

.v2-home-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: filter .35s ease, transform .45s ease;
}

.v2-home-card:hover img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.025);
}

.v2-home-card figcaption {
    display: grid;
    gap: 3px;
    padding-top: 12px;
}

.v2-home-card figcaption span {
    color: var(--v2-gold);
    font-size: .52rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.v2-home-card figcaption strong {
    font-family: var(--v2-serif);
    font-size: clamp(.8rem, 1.05vw, .98rem);
    font-weight: 500;
    line-height: 1.2;
}

.v2-home-offerings .v2-reading-grid {
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.v2-home-offerings .v2-reading-card {
    min-height: 385px;
    padding: 30px 27px 31px;
}

.v2-home-offerings .v2-reading-symbol {
    width: 58px;
    height: 58px;
    margin: 30px 0 24px;
    font-size: 1.35rem;
}

.v2-home-offerings .v2-reading-meta {
    right: 27px;
    left: 27px;
}

.v2-home-ritual-heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 430px);
    align-items: end;
    gap: clamp(45px, 8vw, 110px);
}

.v2-home-ritual-heading h2,
.v2-home-signature h2,
.v2-tarot-invitation h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .98;
}

.v2-home-ritual-heading h2 em,
.v2-home-signature h2 em,
.v2-tarot-invitation h2 em {
    color: var(--v2-gold-light);
    font-weight: 400;
}

.v2-home-ritual-heading > p {
    margin: 0;
    color: #c9bbaa;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    line-height: 1.75;
}

.v2-home-ritual-steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 48px 0 0;
    padding: 0;
    border-top: 1px solid var(--v2-line-light);
    border-left: 1px solid var(--v2-line-light);
    list-style: none;
}

.v2-home-ritual-steps li {
    min-height: 230px;
    padding: 27px 24px;
    border-right: 1px solid var(--v2-line-light);
    border-bottom: 1px solid var(--v2-line-light);
}

.v2-home-ritual-steps li > span {
    color: var(--v2-gold-light);
    font-size: .57rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.v2-home-ritual-steps strong {
    display: block;
    margin-top: 38px;
    font-family: var(--v2-serif);
    font-size: 1.4rem;
    font-weight: 400;
}

.v2-home-ritual-steps p {
    margin: 10px 0 0;
    color: #bcae9e;
    font-family: var(--v2-serif);
    line-height: 1.6;
}

.v2-home-ritual-action {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 34px;
}

.v2-home-signature {
    max-width: 900px;
    margin-inline: auto;
    padding: 50px clamp(25px, 7vw, 75px);
    border-inline: 1px solid var(--v2-gold);
    text-align: center;
}

.v2-home-signature h2 {
    font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.v2-home-signature h2 em {
    color: var(--v2-gold);
}

.v2-home-signature > p:not(.v2-overline) {
    max-width: 680px;
    margin: 24px auto;
    color: #675b50;
    font-family: var(--v2-serif);
    font-size: 1.06rem;
    line-height: 1.75;
}

/* La collection complète. */
.v2-tarot-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--v2-line);
    background: var(--v2-cream-light);
}

.v2-tarot-hero::before {
    position: absolute;
    top: -260px;
    right: -160px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(137, 93, 24, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 75px rgba(137, 93, 24, .025), 0 0 0 150px rgba(137, 93, 24, .02);
    content: "";
}

.v2-tarot-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 620px;
    grid-template-columns: .87fr 1.13fr;
    align-items: center;
    gap: clamp(45px, 7vw, 100px);
    padding-block: 42px;
}

.v2-tarot-hero-copy h1 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(3.4rem, 5.5vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .91;
}

.v2-tarot-hero-copy h1 em {
    color: var(--v2-gold);
    font-weight: 400;
}

.v2-tarot-hero-lead {
    margin: 22px 0 0;
    color: #5d5147;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    line-height: 1.7;
}

.v2-tarot-identity {
    margin-top: 26px;
    padding: 18px 0 0 20px;
    border-top: 1px solid var(--v2-line);
    border-left: 1px solid var(--v2-gold);
}

.v2-tarot-identity h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 1.5rem;
    font-weight: 500;
}

.v2-tarot-identity > p:last-child {
    margin: 7px 0 0;
    color: #6b5e53;
    font-family: var(--v2-serif);
    font-size: .93rem;
    line-height: 1.55;
}

.v2-tarot-hero-gallery {
    position: relative;
    min-height: 520px;
}

.v2-tarot-hero-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(235px, 21vw, 300px);
    margin: 0;
    transform-origin: 50% 90%;
}

.v2-tarot-hero-card:nth-child(1) {
    z-index: 1;
    transform: translate(-105%, -47%) rotate(-11deg);
}

.v2-tarot-hero-card:nth-child(2) {
    z-index: 3;
    transform: translate(-50%, -52%) rotate(0deg);
}

.v2-tarot-hero-card:nth-child(3) {
    z-index: 2;
    transform: translate(5%, -47%) rotate(11deg);
}

.v2-tarot-hero-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border: 8px solid #f2e4d0;
    background: var(--v2-paper);
    box-shadow: 0 28px 55px rgba(28, 18, 9, .23);
    object-fit: cover;
}

.v2-tarot-hero-card figcaption {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.v2-tarot-grammar {
    background: var(--v2-paper);
}

.v2-tarot-family-intros {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--v2-line);
    border-left: 1px solid var(--v2-line);
}

.v2-tarot-family-intro {
    min-width: 0;
    padding: 28px 23px 25px;
    border-right: 1px solid var(--v2-line);
    border-bottom: 1px solid var(--v2-line);
}

.v2-tarot-family-intro h3 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 400;
    line-height: 1.05;
}

.v2-tarot-family-intro > strong {
    display: block;
    margin-top: 17px;
    color: var(--v2-gold);
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.v2-tarot-family-intro > p:not(.v2-overline) {
    min-height: 145px;
    margin: 9px 0 20px;
    color: #675b50;
    font-family: var(--v2-serif);
    font-size: .9rem;
    line-height: 1.6;
}

.v2-tarot-family-intro > a {
    color: var(--v2-ink);
    font-size: .57rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-decoration-color: var(--v2-gold);
    text-underline-offset: 5px;
    text-transform: uppercase;
}

.v2-tarot-cards {
    overflow: hidden;
}

.v2-tarot-family-collection {
    display: grid;
    gap: 75px;
}

.v2-tarot-family {
    scroll-margin-top: 105px;
}

.v2-tarot-family-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--v2-ink);
}

.v2-tarot-family-header h3 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1;
}

.v2-tarot-family-header > p {
    margin: 0;
    color: #796b5f;
    font-size: .59rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.v2-tarot-card-gallery {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 22px 13px;
}

.v2-tarot-gallery-card {
    min-width: 0;
    margin: 0;
}

.v2-tarot-gallery-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 19, 15, .3);
    background: var(--v2-paper);
    box-shadow: 0 14px 25px rgba(39, 27, 15, .09);
}

.v2-tarot-gallery-image::after {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255, 248, 233, .38);
    content: "";
    pointer-events: none;
}

.v2-tarot-gallery-image img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: filter .3s ease, transform .4s ease;
}

.v2-tarot-gallery-card:hover img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.035);
}

.v2-tarot-gallery-card figcaption {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px;
    padding-top: 8px;
    font-family: var(--v2-serif);
    font-size: .72rem;
    line-height: 1.25;
}

.v2-tarot-gallery-card figcaption span {
    color: var(--v2-gold);
    font-size: .55rem;
    font-weight: 800;
    line-height: 1.7;
}

.v2-tarot-gallery-card figcaption strong {
    min-width: 0;
    font-weight: 500;
}

.v2-tarot-invitation-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr minmax(300px, 430px);
    align-items: end;
    gap: clamp(50px, 8vw, 120px);
}

.v2-tarot-invitation-grid > div:last-child > p {
    margin: 0 0 27px;
    color: #c9bbaa;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    line-height: 1.75;
}

.v2-tarot-unavailable .v2-button {
    margin-top: 22px;
}

@media (max-width: 1080px) {
    .v2-header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }

    .v2-header-cta {
        display: none;
    }

    .v2-navigation {
        justify-content: flex-end;
    }

    .v2-hero-grid {
        gap: 35px;
    }

    .v2-card-stack {
        transform: translateX(-50%) scale(.9);
    }

    .v2-sunburst {
        width: 380px;
        height: 380px;
    }

    .v2-catalogue-card {
        padding: 25px;
    }

    .v2-hero-deck-card {
        width: 180px;
    }

    .v2-tarot-family-intros {
        grid-template-columns: repeat(3, 1fr);
    }

    .v2-tarot-family-intro > p:not(.v2-overline) {
        min-height: 0;
    }

    .v2-tarot-card-gallery {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    :root {
        --v2-shell: min(100% - 34px, 680px);
    }

    .v2-header-inner {
        position: relative;
        min-height: 64px;
        grid-template-columns: 1fr auto;
    }

    .v2-menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0 10px 15px;
    }

    .v2-menu-toggle-label {
        font-size: .62rem;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .v2-menu-toggle-icon {
        position: relative;
        width: 25px;
        height: 18px;
    }

    .v2-menu-toggle-icon i {
        position: absolute;
        right: 0;
        width: 25px;
        height: 1px;
        background: currentColor;
        transition: top .2s ease, transform .2s ease;
    }

    .v2-menu-toggle-icon i:first-child { top: 5px; }
    .v2-menu-toggle-icon i:last-child { top: 13px; width: 17px; }

    .v2-menu-toggle[aria-expanded="true"] i:first-child { top: 9px; transform: rotate(45deg); }
    .v2-menu-toggle[aria-expanded="true"] i:last-child { top: 9px; width: 25px; transform: rotate(-45deg); }

    .v2-no-js .v2-menu-toggle {
        display: none;
    }

    .v2-navigation {
        grid-column: 1 / -1;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px 25px;
        padding: 8px 0 19px;
    }

    .v2-js .v2-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: grid;
        overflow: hidden;
        max-height: calc(100dvh - 108px);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 0 17px;
        border-bottom: 1px solid var(--v2-line);
        background: var(--v2-cream-light);
        box-shadow: 0 24px 35px rgba(24, 19, 15, .12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .v2-js .v2-navigation.is-open {
        padding-block: 17px 24px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .v2-js .v2-navigation a {
        padding: 12px 0;
        border-bottom: 1px solid var(--v2-line);
    }

    .v2-hero,
    .v2-hero-grid {
        min-height: auto;
    }

    .v2-hero {
        background: var(--v2-cream-light);
    }

    .v2-hero-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-block: 48px 38px;
    }

    .v2-hero-copy {
        padding-left: 0;
    }

    .v2-hero h1,
    .v2-page-hero h1 {
        font-size: clamp(2.75rem, 8vw, 4.5rem);
    }

    .v2-hero-art {
        min-height: 460px;
        margin-top: 12px;
    }

    .v2-home-hero .v2-hero-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-block: 42px 28px;
    }

    .v2-hero-deck {
        width: min(620px, 100%);
        min-height: 450px;
        margin-inline: auto;
    }

    .v2-hero-deck-card {
        width: 190px;
    }

    .v2-hero-deck-orbit {
        width: 360px;
        height: 360px;
    }

    .v2-card-stack {
        transform: translateX(-50%) scale(.78);
        transform-origin: top center;
    }

    .v2-sunburst {
        width: 330px;
        height: 330px;
    }

    .v2-reading-grid,
    .v2-layers {
        grid-template-columns: 1fr;
    }

    .v2-home-offerings .v2-reading-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-reading-card {
        min-height: 350px;
    }

    .v2-section-heading--split,
    .v2-method-grid,
    .v2-boundaries-grid,
    .v2-process-grid,
    .v2-ai-grid,
    .v2-method-disclosure,
    .v2-home-ritual-heading,
    .v2-tarot-invitation-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .v2-home-card-gallery {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 30px;
    }

    .v2-home-card {
        margin-top: 0;
    }

    .v2-home-ritual-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-home-ritual-steps li {
        min-height: 210px;
    }

    .v2-tarot-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 15px;
        padding-block: 48px 26px;
    }

    .v2-tarot-hero-copy {
        max-width: 680px;
    }

    .v2-tarot-hero-gallery {
        width: min(650px, 100%);
        min-height: 520px;
        margin-inline: auto;
    }

    .v2-tarot-family-intros {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-tarot-card-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .v2-section-heading--split {
        align-items: start;
    }

    .v2-method-intro {
        max-width: 620px;
    }

    .v2-page-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .v2-page-intro {
        max-width: 600px;
    }

    .v2-catalogue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-catalogue-card {
        min-height: 390px;
    }

    .v2-catalogue-guidance {
        grid-template-columns: 60px 1fr;
    }

    .v2-catalogue-guidance .v2-text-link {
        grid-column: 2;
        justify-self: start;
    }

    .v2-principles li:nth-child(even) {
        margin-left: 0;
    }

    .v2-process-sticky {
        position: static;
    }

    .v2-ai-seal {
        width: 250px;
        margin-inline: auto;
    }

    .v2-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .v2-footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    :root {
        --v2-shell: calc(100% - 28px);
    }

    body {
        font-size: 15px;
    }

    .v2-announcement {
        display: none;
    }

    .v2-brand-copy strong {
        font-size: 1rem;
    }

    .v2-brand-copy small {
        display: none;
    }

    .v2-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 19px;
    }

    .v2-actions .v2-button {
        width: 100%;
    }

    .v2-actions .v2-text-link {
        align-self: flex-start;
    }

    .v2-hero-facts {
        justify-content: space-between;
    }

    .v2-hero-facts div {
        min-width: 0;
        flex: 1;
        padding-right: 13px;
    }

    .v2-hero-facts div + div {
        padding-left: 13px;
    }

    .v2-hero-facts dt {
        font-size: 1.15rem;
    }

    .v2-hero-facts dd {
        font-size: .75rem;
        letter-spacing: .06em;
    }

    .v2-hero-art {
        min-height: 390px;
        margin-inline: -10px;
    }

    .v2-home-hero .v2-hero-grid {
        padding-block: 34px 20px;
    }

    .v2-home-hero h1 {
        font-size: clamp(2.65rem, 13vw, 3.6rem);
    }

    .v2-home-hero .v2-lead {
        font-size: 1.02rem;
    }

    .v2-hero-deck {
        min-height: 365px;
        margin-inline: -14px;
    }

    .v2-hero-deck-orbit {
        top: 15px;
        width: 290px;
        height: 290px;
    }

    .v2-hero-deck-card {
        width: 143px;
    }

    .v2-hero-deck-card img {
        border-width: 5px;
    }

    .v2-hero-deck-card--back { top: 72px; left: 0; }
    .v2-hero-deck-card--0 { top: 52px; left: 13%; }
    .v2-hero-deck-card--1 { top: 26px; left: 34%; }
    .v2-hero-deck-card--2 { top: 59px; left: 57%; }

    .v2-hero-deck-card figcaption {
        font-size: .6rem;
    }

    .v2-hero-deck-caption {
        right: 12px;
        bottom: 3px;
        max-width: 195px;
        padding-left: 24px;
        font-size: .69rem;
    }

    .v2-card-stack {
        top: 5px;
        transform: translateX(-50%) scale(.65);
        transform-origin: top center;
    }

    .v2-sunburst {
        top: 25px;
        width: 270px;
        height: 270px;
    }

    .v2-art-caption {
        right: 10px;
        bottom: 20px;
    }

    .v2-section {
        padding-block: 48px;
    }

    .v2-section-heading-copy > p {
        font-size: 1rem;
    }

    .v2-home-card-gallery {
        display: grid;
        grid-auto-columns: minmax(152px, 46vw);
        grid-auto-flow: column;
        grid-template-columns: none;
        overflow-x: auto;
        margin-inline: -14px;
        padding: 2px 14px 18px;
        scroll-snap-type: x proximity;
        scrollbar-color: var(--v2-gold) transparent;
    }

    .v2-home-card {
        scroll-snap-align: start;
    }

    .v2-home-card:nth-child(even) {
        margin-top: 0;
    }

    .v2-home-offerings .v2-reading-grid,
    .v2-home-ritual-steps {
        grid-template-columns: 1fr;
    }

    .v2-home-offerings .v2-reading-card {
        min-height: 350px;
    }

    .v2-home-ritual-steps li {
        min-height: 0;
    }

    .v2-home-ritual-steps strong {
        margin-top: 24px;
    }

    .v2-home-ritual-action {
        align-items: stretch;
        flex-direction: column;
        gap: 19px;
    }

    .v2-home-ritual-action .v2-text-link {
        align-self: flex-start;
    }

    .v2-home-signature {
        padding: 38px 19px;
    }

    .v2-tarot-hero-grid {
        padding-block: 37px 16px;
    }

    .v2-tarot-hero-copy h1 {
        font-size: clamp(2.7rem, 13vw, 3.75rem);
    }

    .v2-tarot-hero-gallery {
        min-height: 385px;
        margin-inline: -14px;
    }

    .v2-tarot-hero-card {
        width: 154px;
    }

    .v2-tarot-hero-card img {
        border-width: 5px;
    }

    .v2-tarot-family-intros {
        grid-template-columns: 1fr;
    }

    .v2-tarot-family-intro {
        padding: 25px 22px;
    }

    .v2-tarot-family-collection {
        gap: 58px;
    }

    .v2-tarot-card-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px 8px;
    }

    .v2-tarot-gallery-card figcaption {
        grid-template-columns: 1fr;
        gap: 0;
        font-size: .63rem;
    }

    .v2-tarot-invitation-grid {
        gap: 28px;
    }

    .v2-section-heading h2,
    .v2-method-intro h2,
    .v2-manifesto h2,
    .v2-process-sticky h2,
    .v2-ai-grid > div > h2,
    .v2-transparency-note h2,
    .v2-boundaries-grid > div > h2 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .v2-section-heading {
        margin-bottom: 38px;
    }

    .v2-reading-card {
        min-height: 370px;
        padding: 28px 24px;
    }

    .v2-reading-meta {
        right: 24px;
        left: 24px;
    }

    .v2-manifesto {
        padding-block: 55px;
    }

    .v2-page-hero {
        padding-block: 42px 36px;
    }

    .v2-page-hero h1 {
        font-size: clamp(2.6rem, 12vw, 3.7rem);
    }

    .v2-catalogue-hero {
        padding-block: 26px 24px;
    }

    .v2-catalogue-hero .v2-page-hero-grid {
        gap: 13px;
    }

    .v2-catalogue-hero h1 {
        font-size: clamp(2.25rem, 9.5vw, 2.55rem);
        line-height: .98;
    }

    .v2-catalogue-hero .v2-page-intro > p:first-child {
        font-size: 1rem;
        line-height: 1.5;
    }

    .v2-catalogue-hero .v2-small-note {
        display: none;
    }

    .v2-section--catalogue {
        padding-top: 22px;
    }

    .v2-catalogue-daily {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
        padding: 18px 16px;
    }

    .v2-catalogue-daily > span {
        font-size: 1.6rem;
    }

    .v2-catalogue-daily .v2-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .v2-catalogue-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
        margin-bottom: 16px;
        padding-bottom: 11px;
    }

    .v2-filter-group {
        display: flex;
        width: 100%;
        justify-content: space-between;
        gap: 0;
    }

    .v2-filter-group button {
        min-width: 0;
        padding: 8px 5px;
        font-size: .67rem;
        letter-spacing: .04em;
        text-align: center;
    }

    .v2-catalogue-toolbar > p {
        align-self: flex-end;
    }

    .v2-catalogue-action .v2-button {
        max-width: 100%;
        padding-inline: 16px;
        white-space: normal;
    }

    .v2-catalogue-card {
        min-height: auto;
    }

    .v2-catalogue-grid {
        grid-template-columns: 1fr;
    }

    .v2-catalogue-guidance {
        grid-template-columns: 1fr;
        padding-inline: 10px;
    }

    .v2-catalogue-guidance .v2-text-link {
        grid-column: 1;
    }

    .v2-editorial-quote {
        margin-bottom: 75px;
        padding: 38px 25px;
    }

    .v2-principles li {
        grid-template-columns: 50px 1fr;
        gap: 20px;
        padding-inline: 0;
    }

    .v2-principle-number {
        font-size: 1.9rem;
    }

    .v2-ai-columns {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .v2-process-list li {
        grid-template-columns: 49px 1fr;
        gap: 17px;
    }

    .v2-footer-grid {
        grid-template-columns: 1fr;
    }

    .v2-footer-grid > div:first-child {
        grid-column: auto;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (forced-colors: active) {
    .v2-brand-mark,
    .v2-header-cta,
    .v2-button--primary,
    .v2-pill {
        border: 1px solid ButtonText;
    }

    .v2-card-horizon,
    .v2-availability i,
    .v2-ai-columns li::before {
        background: CanvasText;
    }
}

/* Mobile conversion pass: compact navigation and earlier access to useful content. */
.v2-brand-mobile-name,
.v2-formula-jump,
.v2-founder-mobile-proof {
    display: none;
}

.v2-journal-more {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: min(100%, 360px);
    margin: 54px auto 0;
    padding: 12px 18px;
    border: 1px solid var(--v2-ink);
    background: transparent;
    color: var(--v2-ink);
    cursor: pointer;
    font: inherit;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.v2-journal-more:hover,
.v2-journal-more:focus-visible {
    background: var(--v2-ink);
    color: var(--v2-cream-light);
}

.v2-journal-more[hidden] {
    display: none;
}

@media (max-width: 620px) {
    .v2-header-inner--editorial {
        gap: 10px;
    }

    .v2-header-inner--editorial .v2-brand-copy {
        display: none;
    }

    .v2-brand-mobile-name {
        display: block;
        max-width: 72px;
        overflow: hidden;
        color: var(--v2-ink);
        font-family: var(--v2-serif);
        font-size: .86rem;
        font-weight: 600;
        line-height: 1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .v2-formula-jump {
        position: sticky;
        z-index: 20;
        top: 68px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0 0 22px;
        border: 1px solid var(--v2-sales-line);
        background: rgba(253, 251, 247, .96);
        box-shadow: 0 10px 24px rgba(24, 19, 15, .08);
        backdrop-filter: blur(12px);
    }

    .v2-formula-jump a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 9px 8px;
        color: var(--v2-ink);
        font-size: .66rem;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
    }

    .v2-formula-jump a + a {
        border-left: 1px solid var(--v2-sales-line);
    }

    .v2-formula-jump a:focus-visible,
    .v2-formula-jump a:hover {
        background: var(--accent-burgundy);
        color: var(--bg-ivory);
    }

    .v2-formula-group {
        scroll-margin-top: 126px;
    }

    .v2-founder-hero {
        padding-block: 42px 50px;
    }

    .v2-founder-hero-grid {
        gap: 22px;
    }

    .v2-founder-hero h1 {
        margin-top: 16px;
        font-size: 2.8rem;
    }

    .v2-founder-mobile-proof {
        display: block;
        margin: 18px 0 0;
        color: #6e5a3b;
        font-size: .68rem;
        font-weight: 800;
        line-height: 1.5;
        text-transform: uppercase;
    }

    .v2-founder-portrait {
        width: min(84%, 330px);
        margin-inline: auto;
    }

    .v2-founder-portrait img {
        max-height: 350px;
        aspect-ratio: 4 / 4.35;
        object-position: 50% 27%;
    }

    .v2-founder-portrait figcaption {
        font-size: .68rem;
        text-align: center;
    }

    .v2-journal-hero {
        padding-block: 24px 26px;
    }

    .v2-journal-hero-grid {
        gap: 18px;
    }

    .v2-journal-hero h1 {
        margin-top: 14px;
        font-size: 2.2rem;
        line-height: 1;
    }

    .v2-journal-hero-grid > p {
        font-size: 1rem;
        line-height: 1.45;
    }

    .v2-journal-index {
        padding-block: 30px 58px;
    }

    .v2-journal-library-heading {
        gap: 18px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .v2-journal-library-heading h2 {
        font-size: 1.8rem;
    }

    .v2-journal-library-heading > div:first-child {
        gap: 6px;
    }

    .v2-journal-tools {
        gap: 10px;
    }

    .v2-journal-search input {
        min-height: 46px;
    }

    .v2-journal-filters {
        display: flex;
        width: calc(100% + 14px);
        max-width: none;
        grid-template-columns: none;
        flex-wrap: nowrap;
        gap: 7px;
        padding: 0 14px 5px 0;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .v2-journal-filters button,
    .v2-journal-filters button:last-child:nth-child(odd) {
        width: auto;
        min-width: max-content;
        min-height: 40px;
        grid-column: auto;
        padding: 9px 12px;
        white-space: nowrap;
    }

    .v2-journal-essentials {
        margin-bottom: 38px;
    }

    .v2-journal-index-heading {
        gap: 14px;
        padding-bottom: 20px;
    }

    .v2-journal-index-heading h2 {
        font-size: 2rem;
    }

    .v2-journal-more {
        margin-top: 38px;
    }
}

/* Consentement aux traceurs facultatifs. Les deux choix ont le même poids visuel. */
.v2-cookie-banner {
    position: fixed;
    z-index: 1200;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    width: min(1040px, calc(100% - 48px));
    margin-inline: auto;
    padding: 24px;
    border: 1px solid rgba(209, 173, 103, .55);
    background: #17130f;
    color: #f7f0e5;
    box-shadow: 0 22px 65px rgba(0, 0, 0, .34);
}

.v2-cookie-banner-copy h2 {
    margin: 0 0 7px;
    color: #fffaf2;
    font-family: var(--v2-serif);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.2;
}

.v2-cookie-banner-copy p {
    max-width: 720px;
    margin: 0 0 7px;
    color: #ded4c7;
    font-size: .86rem;
    line-height: 1.55;
}

.v2-cookie-banner-copy a {
    color: var(--v2-gold-light);
    font-size: .78rem;
    text-underline-offset: 4px;
}

.v2-cookie-banner-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(112px, 1fr));
    gap: 10px;
}

.v2-cookie-banner-actions button {
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--v2-gold-light);
    border-radius: 0;
    background: transparent;
    color: #fffaf2;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}

.v2-cookie-banner-actions button:hover {
    background: var(--v2-gold-light);
    color: var(--v2-ink);
}

.v2-footer-cookie-button {
    display: block;
    width: fit-content;
    margin: 8px 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #cfc3b5;
    text-align: left;
    font-family: var(--v2-serif);
    font-size: inherit;
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    cursor: pointer;
}

.v2-footer-cookie-button:hover {
    color: white;
    text-decoration-color: var(--v2-gold-light);
}

.v2-inline-cookie-button {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--v2-burgundy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

@media (max-width: 720px) {
    .v2-cookie-banner {
        right: 14px;
        bottom: 14px;
        left: 14px;
        grid-template-columns: 1fr;
        gap: 18px;
        width: calc(100% - 28px);
        max-height: calc(100vh - 28px);
        padding: 20px;
        overflow-y: auto;
    }

    .v2-cookie-banner-actions {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 380px) {
    .v2-cookie-banner-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .v2-brand-mobile-name {
        max-width: 54px;
        font-size: .76rem;
    }
}

/* Mobile hardening: preserve the editorial layout without clipped controls or headings. */
@media (max-width: 620px) {
    .v2-shell,
    .v2-header-inner,
    .v2-page-hero-grid,
    .v2-journal-hero-grid,
    .v2-journal-library-heading,
    .v2-tarot-hero-grid,
    .v2-tarot-invitation-grid {
        min-width: 0;
        max-width: 100%;
    }

    .v2-header-menu-panel {
        position: fixed;
        top: 70px;
        right: 14px;
        left: 14px;
        width: auto;
        max-height: calc(100dvh - 84px);
        overflow-y: auto;
    }

    .v2-journal-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding-bottom: 0;
        overflow: visible;
    }

    .v2-journal-filters button {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .v2-journal-filters button:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .v2-tarot-hero,
    .v2-tarot-invitation,
    .v2-page-hero {
        overflow-x: clip;
    }

    .v2-tarot-hero-copy h1,
    .v2-tarot-invitation h2,
    .v2-page-hero h1,
    .v2-state-card h2,
    .v2-state-card p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .v2-tarot-hero-gallery {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        overflow: clip;
    }

    .v2-state-card {
        width: 100%;
        min-width: 0;
        padding-inline: 20px;
    }

    .v2-state-card .v2-button,
    .v2-state-card .v2-text-link {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
}

/* Adèle & la méthode */
.v2-founder-page {
    background: #fdfbf7;
}

.v2-founder-hero {
    padding-block: 68px 72px;
    border-bottom: 1px solid var(--v2-line);
    background: #f6f0e7;
}

.v2-founder-hero-grid {
    display: grid;
    grid-template-areas:
        "title portrait"
        "intro portrait";
    grid-template-columns: minmax(0, 1.14fr) minmax(360px, .72fr);
    align-items: start;
    column-gap: clamp(58px, 7vw, 118px);
    row-gap: 34px;
}

.v2-founder-hero-title {
    grid-area: title;
    align-self: end;
    max-width: 760px;
}

.v2-founder-hero h1 {
    margin: 24px 0 0;
    font-family: var(--v2-serif);
    font-size: clamp(4.1rem, 5.25vw, 5.75rem);
    font-weight: 400;
    line-height: .92;
}

.v2-founder-portrait {
    grid-area: portrait;
    justify-self: end;
    width: min(100%, 470px);
    margin: 0;
    background: transparent;
}

.v2-founder-portrait img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(139, 101, 8, .28);
    object-fit: cover;
    object-position: center;
}

.v2-founder-portrait figcaption {
    padding: 12px 0 0;
    color: #6d625a;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: 0;
}

.v2-founder-hero h1 em,
.v2-founder-origin h2 em,
.v2-founder-method h2 em {
    color: var(--v2-burgundy);
    font-weight: 400;
}

.v2-founder-hero-intro {
    grid-area: intro;
    max-width: 760px;
}

.v2-founder-hero-intro p {
    margin: 0;
    color: #554c45;
    font-family: var(--v2-serif);
    font-size: 1.2rem;
    line-height: 1.58;
}

.v2-founder-hero-intro p + p {
    margin-top: 19px;
    color: var(--v2-burgundy);
    font-style: italic;
}

.v2-founder-hero-intro .v2-founder-hero-story {
    max-width: 680px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--v2-line);
    color: #625951;
    font-family: var(--v2-sans);
    font-size: .94rem;
    font-style: normal;
    line-height: 1.62;
}

.v2-founder-credentials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 24px 0 26px;
    padding: 0;
    list-style: none;
}

.v2-founder-credentials li {
    position: relative;
    padding: 15px 8px 0 20px;
    border-top: 1px solid var(--v2-line);
    color: #3f3934;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0;
    text-transform: uppercase;
}

.v2-founder-credentials li + li {
    border-top: 1px solid var(--v2-line);
}

.v2-founder-credentials li::before {
    position: absolute;
    top: 20px;
    left: 1px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--v2-gold);
    content: "";
    transform: rotate(45deg);
}

.v2-founder-hero-intro .v2-founder-credentials + p {
    max-width: 590px;
    padding-left: 20px;
    border-left: 1px solid var(--v2-gold);
    color: var(--v2-burgundy);
    font-style: italic;
}

.v2-founder-hero-cta {
    display: inline-flex;
    width: min(100%, 330px);
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
    padding: 0 22px;
    border: 1px solid #161514;
    background: #161514;
    color: #fdfbf7;
    font-size: .76rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.v2-founder-hero-cta:hover,
.v2-founder-hero-cta:focus-visible {
    border-color: var(--v2-burgundy);
    background: var(--v2-burgundy);
    color: #fdfbf7;
}

.v2-founder-film {
    padding-block: 72px;
    border-bottom: 1px solid rgba(212, 180, 131, .26);
    background: #161514;
    color: #fdfbf7;
}

.v2-founder-film-grid {
    display: grid;
    grid-template-columns: minmax(360px, .62fr) minmax(0, 1.38fr);
    align-items: center;
    gap: clamp(52px, 6vw, 96px);
}

.v2-founder-film-copy h2 {
    margin: 22px 0 0;
    font-family: var(--v2-serif);
    font-size: clamp(3rem, 3.8vw, 4.1rem);
    font-weight: 400;
    line-height: .98;
}

.v2-founder-film-copy h2 em {
    display: inline-block;
    color: var(--v2-gold-light);
    font-weight: 400;
    white-space: nowrap;
}

.v2-founder-film-copy > p:last-child {
    max-width: 440px;
    margin: 28px 0 0;
    color: #d7cdc2;
    font-family: var(--v2-serif);
    font-size: 1.04rem;
    line-height: 1.68;
}

.v2-founder-film-media {
    position: relative;
    min-width: 0;
    margin: 0;
}

.v2-founder-film-media video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(212, 180, 131, .4);
    background: #0d0c0b;
    object-fit: cover;
}

.v2-founder-film-sound {
    position: absolute;
    right: 14px;
    bottom: 42px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(212, 180, 131, .7);
    background: rgba(22, 21, 20, .9);
    color: #fdfbf7;
    font: 700 .72rem/1 var(--v2-sans);
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.v2-founder-film-sound:hover,
.v2-founder-film-sound:focus-visible,
.v2-founder-film-sound[aria-pressed="true"] {
    border-color: var(--v2-gold-light);
    background: #fdfbf7;
    color: #161514;
}

.v2-founder-film-media figcaption {
    margin-top: 12px;
    color: #b9ada1;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.45;
}

.v2-founder-approach {
    padding-block: 86px;
    border-bottom: 1px solid var(--v2-line);
}

.v2-founder-approach-grid {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.18fr);
    align-items: start;
    gap: 100px;
}

.v2-founder-approach h2 {
    margin: 22px 0 0;
    font-family: var(--v2-serif);
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1;
}

.v2-founder-approach h2 em {
    color: var(--v2-burgundy);
    font-weight: 400;
}

.v2-founder-approach-copy {
    max-width: 650px;
}

.v2-founder-approach-copy p {
    margin: 0;
    color: #554c45;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    line-height: 1.72;
}

.v2-founder-approach-copy p + p {
    margin-top: 18px;
    padding-left: 24px;
    border-left: 1px solid var(--v2-gold);
    color: var(--v2-burgundy);
}

.v2-founder-origin {
    padding-block: 96px;
}

.v2-founder-origin-grid {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(420px, 1.18fr);
    align-items: start;
    gap: 100px;
}

.v2-founder-origin h2,
.v2-founder-perspective h2,
.v2-founder-method h2,
.v2-founder-promises h2,
.v2-founder-contact h2 {
    margin: 22px 0 0;
    font-family: var(--v2-serif);
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1;
}

.v2-founder-origin-copy {
    max-width: 650px;
}

.v2-founder-origin-copy > p {
    margin: 0;
    color: #5e554d;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    line-height: 1.78;
}

.v2-founder-origin-copy > p + p {
    margin-top: 18px;
}

.v2-founder-origin blockquote {
    margin: 34px 0 0;
    padding: 20px 0 20px 28px;
    border-left: 2px solid var(--v2-gold);
    color: var(--v2-burgundy);
    font-family: var(--v2-serif);
    font-size: 1.65rem;
    font-style: italic;
    line-height: 1.35;
}

.v2-founder-perspective {
    padding-block: 92px 84px;
    background: #161514;
    color: #fdfbf7;
}

.v2-founder-perspective-heading {
    display: grid;
    grid-template-columns: minmax(220px, .65fr) minmax(480px, 1.35fr);
    align-items: end;
    gap: 70px;
}

.v2-founder-perspective-heading .v2-kicker {
    margin-bottom: 7px;
}

.v2-founder-perspective h2 {
    margin: 0;
}

.v2-founder-perspective h2 em {
    color: var(--v2-gold-light);
    font-weight: 400;
}

.v2-founder-perspective-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 54px;
    border-block: 1px solid rgba(253, 251, 247, .24);
}

.v2-founder-perspective-grid > div {
    padding: 42px 52px 42px 0;
}

.v2-founder-perspective-grid > div + div {
    padding-right: 0;
    padding-left: 52px;
    border-left: 1px solid rgba(253, 251, 247, .24);
}

.v2-founder-perspective-grid span {
    color: var(--v2-gold-light);
    font-size: .66rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-founder-perspective-grid h3 {
    margin: 16px 0 0;
    font-family: var(--v2-serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.08;
}

.v2-founder-perspective-grid p {
    max-width: 530px;
    margin: 18px 0 0;
    color: #cfc3b6;
    font-family: var(--v2-serif);
    line-height: 1.72;
}

.v2-founder-perspective-conclusion {
    margin: 28px 0 0;
    color: var(--v2-gold-light);
    font-family: var(--v2-serif);
    font-size: 1.28rem;
    font-style: italic;
    text-align: right;
}

.v2-founder-method {
    padding-block: 78px;
    background: #fdfbf7;
}

.v2-founder-method-heading {
    display: grid;
    grid-template-columns: minmax(380px, 1fr) minmax(320px, .7fr);
    align-items: end;
    gap: 80px;
}

.v2-founder-method-heading .v2-kicker {
    margin-bottom: 7px;
}

.v2-founder-method-heading h2 {
    margin-top: 20px;
}

.v2-founder-method-heading > p:last-child {
    margin: 0;
    color: #625951;
    font-family: var(--v2-serif);
    line-height: 1.65;
}

.v2-founder-method-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 32px 0 0;
    padding: 0;
    border-block: 1px solid var(--v2-line);
    list-style: none;
}

.v2-founder-method-steps li {
    min-width: 0;
    padding: 26px 30px 28px 0;
}

.v2-founder-method-steps li + li {
    padding-left: 30px;
    border-left: 1px solid var(--v2-line);
}

.v2-founder-method-steps > li > span,
.v2-founder-promises li span {
    color: var(--v2-gold);
    font-size: .65rem;
    font-weight: 800;
}

.v2-founder-method-steps h3 {
    margin: 18px 0 0;
    font-family: var(--v2-serif);
    font-size: 1.8rem;
    font-weight: 400;
}

.v2-founder-method-steps p {
    margin: 12px 0 0;
    color: #625951;
    font-family: var(--v2-serif);
    line-height: 1.58;
}

.v2-founder-jung {
    padding-block: 78px;
    border-block: 1px solid var(--v2-line);
    background: #f1e8d8;
}

.v2-founder-jung-grid {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(480px, 1.28fr);
    align-items: center;
    gap: 88px;
}

.v2-founder-jung-portrait {
    margin: 0;
}

.v2-founder-jung-portrait img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(139, 101, 8, .45);
    object-fit: cover;
}

.v2-founder-jung-portrait figcaption {
    margin-top: 10px;
    color: #786d62;
    font-size: .63rem;
    font-weight: 700;
    text-transform: uppercase;
}

.v2-founder-jung-copy h2 {
    margin: 22px 0 0;
    font-family: var(--v2-serif);
    font-size: 3.7rem;
    font-weight: 400;
    line-height: 1;
}

.v2-founder-jung-copy h2 em {
    color: var(--v2-burgundy);
    font-weight: 400;
}

.v2-founder-jung-copy > p:not(.v2-kicker) {
    max-width: 690px;
    margin: 24px 0 0;
    color: #4f4740;
    font-family: var(--v2-serif);
    font-size: 1.03rem;
    line-height: 1.68;
}

.v2-founder-jung-copy > p:not(.v2-kicker) + p {
    margin-top: 17px;
}

.v2-founder-jung-copy .v2-text-link {
    margin-top: 26px;
}

.v2-founder-context {
    padding-block: 68px;
    border-top: 1px solid var(--v2-line);
    background: #f6f0e7;
}

.v2-founder-context-heading {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(460px, 1.1fr);
    align-items: end;
    gap: 80px;
}

.v2-founder-context-grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
    align-items: start;
    gap: 100px;
}

.v2-founder-context h2 {
    margin: 22px 0 0;
    font-family: var(--v2-serif);
    font-size: 3.45rem;
    font-weight: 400;
    line-height: 1;
}

.v2-founder-context h2 em {
    color: var(--v2-burgundy);
    font-weight: 400;
}

.v2-founder-context-copy > p {
    max-width: 690px;
    margin: 0;
    color: #554c45;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    line-height: 1.72;
}

.v2-founder-context-copy > p + p {
    margin-top: 16px;
    color: #746a62;
    font-size: .93rem;
}

.v2-founder-context-heading > div:last-child > p {
    max-width: 650px;
    margin: 0;
    color: #554c45;
    font-family: var(--v2-serif);
    font-size: 1.08rem;
    line-height: 1.65;
}

.v2-founder-context-heading > div:last-child > small {
    display: block;
    max-width: 650px;
    margin-top: 13px;
    color: #766c63;
    font-size: .72rem;
    line-height: 1.55;
}

.v2-founder-context-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 38px 0 0;
    padding: 0;
    border-top: 1px solid var(--v2-line);
    list-style: none;
}

.v2-founder-context-links li {
    min-width: 0;
    border-bottom: 1px solid var(--v2-line);
}

.v2-founder-context-links li + li {
    border-left: 1px solid var(--v2-line);
}

.v2-founder-context-links a {
    position: relative;
    display: flex;
    min-height: 170px;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 26px 30px;
    color: inherit;
    text-decoration: none;
    transition: background-color .2s ease, padding-inline .2s ease;
}

.v2-founder-context-links a:hover,
.v2-founder-context-links a:focus-visible {
    background: rgba(212, 180, 131, .12);
}

.v2-founder-media-logo {
    display: flex;
    width: 130px;
    height: 38px;
    align-items: center;
}

.v2-founder-media-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
}

.v2-founder-context-links strong {
    max-width: 24ch;
    font-family: var(--v2-serif);
    font-size: 1.16rem;
    font-weight: 500;
    line-height: 1.35;
}

.v2-founder-media-arrow {
    position: absolute;
    right: 26px;
    bottom: 26px;
    color: var(--v2-gold);
    font-size: 1rem;
}

.v2-founder-promises {
    padding-block: 72px;
    background: #6b2332;
    color: #fdfbf7;
}

.v2-founder-promises-grid {
    display: grid;
    grid-template-columns: minmax(300px, .75fr) minmax(480px, 1.25fr);
    align-items: start;
    gap: 100px;
}

.v2-founder-promises h2 {
    margin-bottom: 30px;
}

.v2-founder-promises .v2-kicker,
.v2-founder-promises .v2-text-link {
    color: #e3c998;
}

.v2-founder-promises ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(253, 251, 247, .3);
    list-style: none;
}

.v2-founder-promises li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 25px 24px 25px 0;
    border-bottom: 1px solid rgba(253, 251, 247, .3);
}

.v2-founder-promises li:nth-child(even) {
    padding-right: 0;
    padding-left: 24px;
    border-left: 1px solid rgba(253, 251, 247, .3);
}

.v2-founder-promises li span {
    color: #e3c998;
}

.v2-founder-promises li p {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 1.02rem;
    line-height: 1.55;
}

.v2-founder-contact-section {
    padding-block: 64px;
    background: #fdfbf7;
}

.v2-founder-consultation-section {
    padding-block: 72px;
    border-bottom: 1px solid var(--v2-line);
    background: #f3ece1;
}

.v2-result-consultation {
    margin-top: 72px;
}

.v2-private-consultation {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    align-items: center;
    gap: 72px;
    padding: 52px 58px;
    background: #161514;
    color: #fdfbf7;
}

.v2-private-consultation h2 {
    max-width: 18ch;
    margin: 12px 0 18px;
    color: #fdfbf7;
    font-family: var(--v2-serif);
    font-size: 2.65rem;
    font-weight: 400;
    line-height: 1.02;
}

.v2-private-consultation > div > p:not(.v2-overline) {
    max-width: 660px;
    margin: 0;
    color: rgba(253, 251, 247, .78);
    font-family: var(--v2-serif);
    font-size: 1.02rem;
    line-height: 1.6;
}

.v2-private-consultation .v2-overline {
    color: var(--v2-gold-light);
}

.v2-private-consultation ul {
    display: grid;
    gap: 8px;
    margin: 24px 0 0;
    padding: 0;
    color: rgba(253, 251, 247, .82);
    list-style: none;
}

.v2-private-consultation li::before {
    margin-right: 10px;
    color: var(--v2-gold-light);
    content: "◇";
}

.v2-private-consultation-action {
    padding-left: 38px;
    border-left: 1px solid rgba(212, 180, 131, .45);
}

.v2-private-consultation-action > p {
    margin: 0 0 22px;
}

.v2-private-consultation-action strong,
.v2-private-consultation-action span {
    display: block;
}

.v2-private-consultation-action strong {
    color: #fdfbf7;
    font-family: var(--v2-serif);
    font-size: 2.7rem;
    font-weight: 400;
}

.v2-private-consultation-action > p span {
    margin-top: 4px;
    color: rgba(253, 251, 247, .62);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.v2-private-consultation-action .v2-button {
    width: 100%;
}

.v2-consultation-dialog {
    width: min(680px, calc(100% - 32px));
    max-height: calc(100dvh - 32px);
    padding: 0;
    overflow: auto;
    border: 1px solid var(--v2-gold);
    border-radius: 0;
    background: #fdfbf7;
    color: var(--v2-ink);
    box-shadow: 0 28px 80px rgba(18, 14, 11, .34);
}

.v2-consultation-dialog::backdrop {
    background: rgba(22, 21, 20, .72);
}

.v2-consultation-dialog-inner {
    position: relative;
    padding: 44px;
}

.v2-consultation-dialog-close {
    position: absolute;
    top: 14px;
    right: 16px;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--v2-ink);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
    place-items: center;
}

.v2-consultation-dialog h2 {
    max-width: 16ch;
    margin: 12px 0 16px;
    font-family: var(--v2-serif);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.04;
}

.v2-consultation-dialog [data-v2-consultation-form-view] > p:not(.v2-overline),
.v2-consultation-success > p:not(.v2-overline) {
    margin: 0;
    color: var(--v2-ink-soft);
    line-height: 1.55;
}

.v2-consultation-dialog form {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.v2-consultation-dialog form > label:not(.v2-consultation-consent) {
    display: grid;
    gap: 7px;
    font-size: .75rem;
    font-weight: 800;
}

.v2-consultation-dialog label small {
    color: var(--v2-ink-soft);
    font-weight: 400;
}

.v2-consultation-dialog input[type="text"],
.v2-consultation-dialog input[type="email"],
.v2-consultation-dialog textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--v2-line);
    border-radius: 0;
    outline: 0;
    background: #fff;
    color: var(--v2-ink);
    font: inherit;
    letter-spacing: 0;
}

.v2-consultation-dialog textarea {
    resize: vertical;
}

.v2-consultation-dialog input:focus,
.v2-consultation-dialog textarea:focus {
    border-color: var(--v2-burgundy);
    box-shadow: inset 3px 0 0 var(--v2-burgundy);
}

.v2-consultation-consent {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: var(--v2-ink-soft);
    font-size: .8rem;
    line-height: 1.45;
}

.v2-consultation-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--v2-burgundy);
}

.v2-consultation-form-status {
    min-height: 1.4em;
    margin: 0;
    color: var(--v2-ink-soft);
    font-size: .78rem;
}

.v2-consultation-form-status.is-error {
    color: var(--v2-burgundy);
}

.v2-consultation-success {
    padding-block: 36px 16px;
    text-align: center;
}

.v2-consultation-success h2 {
    max-width: none;
    margin-inline: auto;
}

.v2-consultation-success .v2-button {
    margin-top: 28px;
}

.v2-founder-contact {
    max-width: 760px;
    margin: 0 auto;
    padding-inline: 60px;
    border-inline: 1px solid var(--v2-gold);
    text-align: center;
}

.v2-founder-contact h2 {
    font-size: 3.2rem;
}

.v2-founder-contact > p:not(.v2-overline, .v2-founder-contact-signature) {
    margin: 20px auto 25px;
    color: #625951;
    font-family: var(--v2-serif);
    line-height: 1.65;
}

.v2-founder-contact-signature strong,
.v2-founder-contact-signature span {
    display: block;
}

.v2-founder-contact-signature strong {
    font-size: 1.45rem;
}

.v2-founder-contact-signature span {
    margin-top: 4px;
    color: var(--v2-gold);
    font-family: var(--v2-sans);
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-founder-home-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent-burgundy);
    color: var(--accent-burgundy);
    font-size: .7rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.v2-sales-story-grid {
    min-height: 480px;
}

@media (max-width: 900px) {
    .v2-founder-hero-grid,
    .v2-founder-approach-grid,
    .v2-founder-origin-grid,
    .v2-founder-perspective-heading,
    .v2-founder-method-heading,
    .v2-founder-film-grid,
    .v2-founder-jung-grid,
    .v2-founder-context-grid,
    .v2-founder-promises-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v2-founder-context-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .v2-founder-hero-grid {
        grid-template-areas:
            "title"
            "portrait"
            "intro";
    }

    .v2-founder-hero h1 {
        font-size: 4.2rem;
    }

    .v2-founder-hero-intro {
        max-width: 650px;
    }

    .v2-founder-portrait {
        justify-self: start;
        width: min(420px, 72vw);
    }

    .v2-founder-origin-copy {
        max-width: 720px;
    }

    .v2-founder-perspective-heading .v2-kicker,
    .v2-founder-method-heading .v2-kicker {
        margin-bottom: 0;
    }

    .v2-founder-method-heading > p:last-child {
        max-width: 520px;
    }

    .v2-founder-context-copy {
        max-width: 720px;
    }

    .v2-founder-promises-grid {
        gap: 48px;
    }

    .v2-private-consultation {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .v2-private-consultation-action {
        padding-top: 30px;
        padding-left: 0;
        border-top: 1px solid rgba(212, 180, 131, .45);
        border-left: 0;
    }
}

@media (max-width: 620px) {
    .v2-founder-hero,
    .v2-founder-approach,
    .v2-founder-origin,
    .v2-founder-perspective,
    .v2-founder-method,
    .v2-founder-film,
    .v2-founder-jung,
    .v2-founder-context,
    .v2-founder-promises,
    .v2-founder-contact-section {
        padding-block: 58px;
    }

    .v2-founder-hero-grid,
    .v2-founder-approach-grid,
    .v2-founder-origin-grid,
    .v2-founder-perspective-heading,
    .v2-founder-method-heading,
    .v2-founder-film-grid,
    .v2-founder-jung-grid,
    .v2-founder-context-grid,
    .v2-founder-promises-grid {
        gap: 30px;
    }

    .v2-founder-hero h1,
    .v2-founder-approach h2,
    .v2-founder-origin h2,
    .v2-founder-perspective h2,
    .v2-founder-method h2,
    .v2-founder-jung-copy h2,
    .v2-founder-context h2,
    .v2-founder-promises h2 {
        font-size: 3rem;
    }

    .v2-founder-film-copy h2 {
        font-size: 2.85rem;
    }

    .v2-founder-film-copy h2 em {
        white-space: normal;
    }

    .v2-founder-film-copy > p:last-child {
        margin-top: 20px;
        font-size: 1rem;
    }

    .v2-founder-film-media figcaption {
        margin-top: 10px;
    }

    .v2-founder-film-sound {
        right: 10px;
        bottom: 40px;
        min-height: 42px;
        padding-inline: 14px;
    }

    .v2-founder-hero-intro {
        padding-left: 0;
    }

    .v2-founder-portrait {
        width: min(100%, 390px);
    }

    .v2-founder-credentials {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .v2-founder-hero-intro p {
        font-size: 1.05rem;
    }

    .v2-founder-origin blockquote {
        padding-left: 20px;
        font-size: 1.35rem;
    }

    .v2-founder-perspective-grid,
    .v2-founder-method-steps,
    .v2-founder-promises ul {
        grid-template-columns: 1fr;
    }

    .v2-founder-perspective-grid > div,
    .v2-founder-perspective-grid > div + div {
        padding: 30px 0;
        border-left: 0;
    }

    .v2-founder-perspective-grid > div + div {
        border-top: 1px solid rgba(253, 251, 247, .24);
    }

    .v2-founder-perspective-conclusion {
        font-size: 1.12rem;
        text-align: left;
    }

    .v2-founder-method-steps li,
    .v2-founder-method-steps li + li {
        padding: 28px 0;
        border-left: 0;
    }

    .v2-founder-method-steps li + li {
        border-top: 1px solid var(--v2-line);
    }

    .v2-founder-method-steps h3 {
        margin-top: 18px;
    }

    .v2-founder-method-note {
        padding-left: 18px;
    }

    .v2-founder-jung-portrait {
        width: min(78%, 290px);
        margin-inline: auto;
    }

    .v2-founder-jung-portrait figcaption {
        line-height: 1.45;
    }

    .v2-founder-context-links {
        grid-template-columns: 1fr;
    }

    .v2-founder-context-links li + li {
        border-left: 0;
    }

    .v2-founder-context-links a {
        min-height: 138px;
        gap: 16px;
        padding: 22px 8px;
    }

    .v2-founder-promises li,
    .v2-founder-promises li:nth-child(even) {
        padding: 22px 0;
        border-left: 0;
    }

    .v2-founder-contact {
        padding-inline: 20px;
    }

    .v2-founder-consultation-section {
        padding-block: 48px;
    }

    .v2-private-consultation {
        padding: 34px 24px;
    }

    .v2-private-consultation h2 {
        font-size: 2.15rem;
    }

    .v2-consultation-dialog-inner {
        padding: 38px 22px 26px;
    }

    .v2-consultation-dialog h2 {
        font-size: 2rem;
    }

    .v2-founder-contact h2 {
        font-size: 2.6rem;
    }
}

/* Accueil éditoriale : une hiérarchie commerciale courte, sans perdre le langage de l'Atelier. */
body::before {
    display: none;
}

body * {
    letter-spacing: 0 !important;
}

.v2-header-inner--editorial {
    grid-template-columns: auto 1fr;
    gap: 24px;
}

.v2-primary-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 26px;
}

.v2-header-secondary-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.v2-header-menu {
    position: relative;
    display: none;
}

.v2-header-menu summary {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--v2-ink);
    color: var(--v2-ink);
    cursor: pointer;
    font-size: 1.2rem;
    list-style: none;
}

.v2-header-menu summary::-webkit-details-marker {
    display: none;
}

.v2-header-menu[open] summary {
    border-color: var(--v2-gold);
    color: var(--v2-burgundy);
}

.v2-header-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(78vw, 280px);
    border: 1px solid var(--v2-line);
    background: var(--bg-ivory, #fdfbf7);
    box-shadow: 0 18px 40px rgba(36, 24, 12, .14);
}

.v2-header-menu-panel a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--v2-line);
    color: var(--v2-ink);
    font-size: .7rem;
    font-weight: 750;
    text-decoration: none;
    text-transform: uppercase;
}

.v2-header-menu-panel a:last-child {
    border-bottom: 0;
}

.v2-header-menu-panel a:hover,
.v2-header-menu-panel a.is-current {
    background: var(--v2-ink);
    color: var(--bg-ivory, #fdfbf7);
}

.v2-account-link {
    position: relative;
    padding: 10px 0;
    color: #4f4740;
    font-size: .72rem;
    font-weight: 750;
    text-decoration: none;
    text-transform: uppercase;
}

.v2-account-link::after {
    position: absolute;
    right: 50%;
    bottom: 4px;
    left: 50%;
    height: 1px;
    background: var(--v2-burgundy);
    content: "";
    transition: right .2s ease, left .2s ease;
}

.v2-account-link:hover::after,
.v2-account-link.is-current::after {
    right: 0;
    left: 0;
}

.v2-header-action,
.v2-editorial-button {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 10px 19px;
    border: 1px solid var(--v2-ink);
    border-radius: 0;
    background: var(--v2-ink);
    color: #fff;
    cursor: pointer;
    font-family: var(--v2-sans);
    font-size: .7rem;
    font-weight: 750;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.v2-header-action:hover,
.v2-editorial-button:hover {
    background: transparent;
    color: var(--v2-ink);
    transform: translateY(-2px);
}

.v2-header-action-label--compact {
    display: none;
}

.v2-sales-home {
    --bg-ivory: #fdfbf7;
    --bg-warm-section: #f6f0e7;
    --bg-dark: #161514;
    --accent-burgundy: #6b2332;
    --accent-gold: #d4b483;
    --accent-gold-ink: #8a641f;
    --accent-navy: #18264a;
    --text-main: #222;
    --v2-sales-line: rgba(34, 34, 34, .24);
    overflow: hidden;
    background: var(--bg-ivory);
    color: var(--text-main);
}

.v2-sales-hero-stage {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    background: var(--bg-dark);
    color: #fff;
}

.v2-sales-hero-intro {
    position: relative;
    width: var(--v2-shell);
    min-width: 0;
    min-height: 430px;
    padding-block: 68px 112px;
}

.v2-sales-hero-copy {
    position: relative;
    z-index: 3;
    width: 100%;
    min-width: 0;
    max-width: 760px;
}

.v2-sales-eyebrow {
    margin: 0 0 16px;
    color: var(--accent-gold);
    font-family: var(--v2-sans);
    font-size: .68rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.v2-sales-hero h1 {
    max-width: 710px;
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 4.6rem;
    font-weight: 400;
    line-height: .95;
}

.v2-mobile-title-break {
    display: none;
}

.v2-sales-hero h1 em {
    color: var(--accent-gold);
    font-weight: 400;
}

.v2-sales-hero-copy > p:last-child {
    max-width: 610px;
    margin: 27px 0 0;
    color: #d8d4ce;
    font-family: var(--v2-serif);
    font-size: 1.18rem;
    line-height: 1.65;
}

.v2-sales-hero-art {
    position: absolute;
    z-index: 1;
    top: 25px;
    right: -80px;
    width: 490px;
    height: 390px;
}

.v2-sales-hero-card {
    position: absolute;
    width: 176px;
    margin: 0;
    transform-origin: 50% 90%;
    transition: filter .35s ease, transform .42s cubic-bezier(.2, .75, .25, 1);
}

.v2-sales-hero-card img,
.v2-sales-story-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border: 6px solid #eee5d7;
    background: #e6ddd0;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
    object-fit: cover;
}

.v2-sales-hero-card--back {
    z-index: 1;
    top: 80px;
    left: 0;
    transform: rotate(-14deg);
}

.v2-sales-hero-card--0 {
    z-index: 2;
    top: 52px;
    left: 92px;
    transform: rotate(-7deg);
}

.v2-sales-hero-card--1 {
    z-index: 4;
    top: 22px;
    left: 195px;
    transform: rotate(1deg);
}

.v2-sales-hero-card--2 {
    z-index: 3;
    top: 65px;
    left: 300px;
    transform: rotate(10deg);
}

.v2-formulas,
.v2-sales-story,
.v2-sales-collection,
.v2-sales-faq {
    scroll-margin-top: 86px;
}

.v2-formulas {
    position: relative;
    z-index: 5;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 78px;
}

.v2-daily-entry {
    position: relative;
    z-index: 6;
    margin-top: -74px;
}

.v2-daily-entry > a {
    display: grid;
    min-height: 116px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 18px 26px;
    border: 1px solid rgba(212, 180, 131, .75);
    background: var(--bg-ivory);
    color: var(--text-main);
    box-shadow: 0 24px 52px rgba(24, 19, 15, .15);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.v2-daily-entry > a:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 60px rgba(24, 19, 15, .2);
}

.v2-daily-entry-mark {
    color: var(--accent-gold-ink);
    font-family: var(--v2-serif);
    font-size: 2.05rem;
    text-align: center;
}

.v2-daily-entry-copy {
    display: grid;
    gap: 5px;
}

.v2-daily-entry-copy small {
    color: var(--accent-burgundy);
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-daily-entry-copy strong {
    font-family: var(--v2-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.15;
}

.v2-daily-entry-copy > span {
    color: #655d55;
    font-family: var(--v2-serif);
    font-size: .94rem;
    line-height: 1.45;
}

.v2-daily-entry-action {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 18px;
    padding: 0 22px;
    background: var(--bg-dark);
    color: var(--bg-ivory);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.v2-formula-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--v2-sales-line);
    border-left: 1px solid var(--v2-sales-line);
    background: var(--bg-ivory);
    box-shadow: 0 26px 58px rgba(24, 19, 15, .16);
}

.v2-formula-group + .v2-formula-group {
    margin-top: 30px;
}

.v2-formula-group > header {
    margin-bottom: 12px;
}

.v2-formula-group > header h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.15;
}

.v2-formula-grid--intuitive {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-formula-grid--calculated {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-formula-grid--intuitive > article,
.v2-formula-grid--calculated > article {
    min-height: 220px;
}

.v2-formula-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 272px;
    flex-direction: column;
    padding: 22px 23px 21px;
    border-right: 1px solid var(--v2-sales-line);
    border-bottom: 1px solid var(--v2-sales-line);
    background: var(--bg-ivory);
    cursor: pointer;
    transition: filter .25s ease, transform .3s cubic-bezier(.2, .75, .25, 1);
}

.v2-formula-card--question {
    background: var(--accent-burgundy);
    color: var(--bg-ivory);
}

.v2-formula-card--calculated {
    border-top: 3px solid var(--accent-burgundy);
    background: #f4ead9;
}

.v2-formula-price {
    align-self: flex-end;
    margin: 0 0 18px;
    color: var(--accent-burgundy);
    font-size: .95rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.v2-formula-card--question .v2-formula-price {
    color: var(--accent-gold);
}

.v2-formula-card--calculated .v2-formula-price {
    font-size: 1.02rem;
}

.v2-formula-card h3 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 1.62rem;
    font-weight: 400;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.v2-formula-description {
    margin: 12px 0 0;
    color: #5f5750;
    font-family: var(--v2-serif);
    font-size: .9rem;
    line-height: 1.55;
}

.v2-formula-card--question .v2-formula-description {
    color: rgba(253, 251, 247, .86);
}

.v2-formula-card > a {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--v2-sales-line);
    color: var(--text-main);
    cursor: pointer;
    font-size: .7rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.v2-formula-card:focus-within {
    z-index: 3;
    outline: 3px solid var(--accent-navy);
    outline-offset: 4px;
}

.v2-formula-card > a:focus-visible {
    outline: none;
}

.v2-formula-card--question > a {
    border-color: rgba(253, 251, 247, .38);
    color: var(--bg-ivory);
}

.v2-formula-card > a span,
.v2-sales-centered-action .v2-editorial-button span,
.v2-sales-closing .v2-editorial-button span {
    color: var(--accent-gold-ink);
}

.v2-formula-card--question > a span {
    color: var(--accent-gold);
}

.v2-formula-card > a::after {
    position: absolute;
    inset: 0;
    content: "";
}

.v2-sales-proof {
    background: var(--accent-burgundy);
    color: #fff;
}

.v2-sales-proof .v2-shell {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left: 1px solid rgba(255, 255, 255, .25);
}

.v2-sales-proof p {
    min-width: 0;
    margin: 0;
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, .25);
    color: #e9dce0;
    font-family: var(--v2-serif);
    font-size: .91rem;
    line-height: 1.4;
}

.v2-sales-proof strong {
    display: block;
    color: #fff;
    font-family: var(--v2-sans);
    font-size: .66rem;
    text-transform: uppercase;
}

.v2-sales-section {
    padding-block: 96px;
}

.v2-sales-experience {
    background: var(--bg-ivory);
    padding-block: 82px;
}

.v2-sales-heading {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(300px, 1.15fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 46px;
}

.v2-sales-heading .v2-sales-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -48px;
    color: var(--accent-burgundy);
}

.v2-sales-heading h2,
.v2-sales-story h2,
.v2-sales-faq h2,
.v2-sales-closing h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 3.8rem;
    font-weight: 400;
    line-height: .98;
}

.v2-sales-heading h2 em,
.v2-sales-story h2 em,
.v2-sales-faq h2 em,
.v2-sales-closing h2 em {
    color: var(--accent-burgundy);
    font-weight: 400;
}

.v2-sales-heading > p:last-child,
.v2-sales-story-copy > p:not(.v2-sales-eyebrow),
.v2-sales-faq-heading > p:last-child {
    margin: 0;
    color: #5e5751;
    font-family: var(--v2-serif);
    font-size: 1.05rem;
    line-height: 1.75;
}

.v2-experience-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(440px, 1.18fr);
    align-items: center;
    gap: 32px clamp(48px, 6vw, 82px);
}

.v2-experience-grid--without-preview {
    grid-template-columns: minmax(0, 720px);
}

.v2-experience-flow {
    min-width: 0;
}

.v2-sales-experience .v2-sales-heading {
    display: block;
    margin: 0 0 24px;
}

.v2-sales-experience .v2-sales-heading .v2-sales-eyebrow {
    margin: 0 0 12px;
}

.v2-sales-experience .v2-sales-heading h2 {
    font-size: 3.35rem;
}

.v2-sales-experience .v2-sales-heading > p:last-child {
    max-width: 460px;
    margin-top: 18px;
}

.v2-sales-steps {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--v2-sales-line);
    list-style: none;
}

.v2-sales-steps li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-areas:
        "number title"
        "number copy";
    column-gap: 18px;
    min-height: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--v2-sales-line);
}

.v2-sales-steps span {
    grid-area: number;
    display: block;
    color: var(--accent-burgundy);
    font-family: var(--v2-serif);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
}

.v2-sales-steps h3 {
    grid-area: title;
    margin: 2px 0 5px;
    font-family: var(--v2-serif);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.12;
}

.v2-sales-steps p {
    grid-area: copy;
    margin: 0;
    color: #645c55;
    font-family: var(--v2-serif);
    line-height: 1.6;
}

.v2-reading-preview {
    min-width: 0;
    margin: 0;
    border: 1px solid var(--v2-sales-line);
    background: var(--bg-ivory);
    box-shadow: 0 26px 60px rgba(34, 23, 22, .16);
}

.v2-reading-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--v2-sales-line);
    background: var(--accent-burgundy);
    color: #fff;
}

.v2-reading-preview-header span {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.v2-reading-preview-header strong {
    font-family: var(--v2-serif);
    font-size: .88rem;
    font-weight: 400;
}

.v2-reading-preview-body {
    display: grid;
    min-height: 390px;
    grid-template-columns: minmax(190px, .82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 32px;
    padding: 30px;
}

.v2-reading-preview-cards {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.v2-reading-preview-card {
    position: absolute;
    width: 64%;
    max-width: 142px;
    margin: 0;
    transform-origin: 50% 90%;
    transition: filter .3s ease, transform .4s cubic-bezier(.2, .75, .25, 1);
}

.v2-reading-preview-card img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    border: 4px solid #eee5d7;
    background: #e6ddd0;
    box-shadow: 0 18px 34px rgba(28, 19, 18, .28);
    object-fit: cover;
}

.v2-reading-preview-card--0 {
    z-index: 1;
    top: 60px;
    left: 0;
    transform: rotate(-8deg);
}

.v2-reading-preview-card--1 {
    z-index: 3;
    top: 18px;
    left: 18%;
    transform: rotate(-1deg);
}

.v2-reading-preview-card--2 {
    z-index: 2;
    top: 56px;
    left: 36%;
    transform: rotate(7deg);
}

.v2-reading-preview-copy .v2-sales-eyebrow {
    margin: 0 0 14px;
    color: var(--accent-burgundy);
}

.v2-reading-preview-copy h3 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.05;
}

.v2-reading-preview-lead {
    margin: 12px 0 0;
    color: var(--accent-burgundy);
    font-family: var(--v2-serif);
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.45;
}

.v2-reading-preview-excerpt {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--v2-line);
}

.v2-reading-preview-excerpt span {
    color: var(--accent-burgundy);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.v2-reading-preview-excerpt p {
    margin: 10px 0 0;
    color: #5e5751;
    font-family: var(--v2-serif);
    font-size: .95rem;
    line-height: 1.65;
}

.v2-reading-preview-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--v2-sales-line);
}

.v2-reading-preview-meta span {
    min-width: 0;
    padding: 15px 20px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.v2-reading-preview-meta span + span {
    border-left: 1px solid var(--v2-sales-line);
}

.v2-sales-transparency {
    max-width: 780px;
    margin: 28px 0 0 auto;
    color: #756e68;
    font-family: var(--v2-serif);
    font-size: .86rem;
    line-height: 1.65;
}

.v2-experience-grid > .v2-sales-transparency {
    grid-column: 1 / -1;
    max-width: none;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--v2-line);
}

.v2-sales-story {
    background: var(--bg-warm-section);
}

.v2-sales-story-grid {
    display: grid;
    min-height: 540px;
    grid-template-columns: minmax(300px, .9fr) minmax(460px, 1.1fr);
    align-items: center;
    gap: 80px;
}

.v2-sales-story-copy .v2-sales-eyebrow {
    color: var(--accent-burgundy);
}

.v2-sales-story h2 {
    margin-bottom: 28px;
}

.v2-sales-story-copy > p:not(.v2-sales-eyebrow) + p {
    margin-top: 16px;
}

.v2-atelier-commitments {
    display: grid;
    margin: 28px 0 0;
    padding: 0;
    border-top: 1px solid var(--v2-sales-line);
    counter-reset: v2-atelier;
    list-style: none;
}

.v2-atelier-commitments li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--v2-sales-line);
    counter-increment: v2-atelier;
}

.v2-atelier-commitments li::before {
    grid-row: 1 / 3;
    color: var(--accent-burgundy);
    content: "0" counter(v2-atelier);
    font-size: .64rem;
    font-weight: 800;
    line-height: 1.8;
}

.v2-atelier-commitments strong {
    font-family: var(--v2-serif);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.v2-atelier-commitments span {
    color: #5e5751;
    font-family: var(--v2-serif);
    font-size: .87rem;
    line-height: 1.5;
}

.v2-sales-story-cards {
    position: relative;
    min-height: 470px;
}

.v2-sales-story-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 225px;
    margin: 0;
    transform-origin: 50% 90%;
    transition: filter .35s ease, transform .42s cubic-bezier(.2, .75, .25, 1);
}

.v2-sales-story-card--0 {
    z-index: 1;
    transform: translate(-105%, -48%) rotate(-10deg);
}

.v2-sales-story-card--1 {
    z-index: 3;
    transform: translate(-50%, -52%) rotate(0);
}

.v2-sales-story-card--2 {
    z-index: 2;
    transform: translate(5%, -48%) rotate(10deg);
}

.v2-sales-story-card figcaption {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.v2-sales-collection {
    background: var(--bg-ivory);
}

.v2-sales-heading--collection {
    margin-bottom: 52px;
}

.v2-collection-preview {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
    gap: 30px 14px;
}

.v2-collection-card,
.v2-gallery-dialog-card {
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: zoom-in;
    text-align: left;
    transition: filter .3s ease, transform .42s cubic-bezier(.2, .75, .25, 1);
}

.v2-collection-card:nth-child(even) {
    margin-top: 22px;
}

.v2-collection-card-image,
.v2-gallery-dialog-card > span {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(21, 19, 17, .38);
    background: #e6e2da;
    box-shadow: 0 15px 28px rgba(24, 19, 15, .11);
}

.v2-collection-card-image::after,
.v2-gallery-dialog-card > span::after {
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(255, 255, 255, .46);
    content: "";
    pointer-events: none;
}

.v2-collection-card img,
.v2-gallery-dialog-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: filter .35s ease, transform .48s cubic-bezier(.2, .75, .25, 1);
}

.v2-collection-card-caption {
    display: grid;
    gap: 4px;
    padding-top: 11px;
}

.v2-collection-card small,
.v2-gallery-dialog-card small,
.v2-card-dialog figcaption span {
    color: var(--accent-burgundy);
    font-family: var(--v2-sans);
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-collection-card strong,
.v2-gallery-dialog-card strong {
    font-family: var(--v2-serif);
    font-size: .88rem;
    font-weight: 400;
    line-height: 1.25;
}

.v2-sales-centered-action {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

.v2-gallery-dialog,
.v2-card-dialog {
    width: min(1180px, calc(100% - 32px));
    max-width: none;
    max-height: calc(100dvh - 32px);
    padding: 0;
    border: 1px solid #171513;
    border-radius: 0;
    background: #f7f7f3;
    color: var(--v2-ink);
}

.v2-gallery-dialog::backdrop,
.v2-card-dialog::backdrop {
    background: rgba(10, 9, 8, .82);
}

.v2-gallery-dialog-shell > header {
    position: sticky;
    z-index: 5;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 26px;
    border-bottom: 1px solid var(--v2-ink);
    background: #f7f7f3;
}

.v2-gallery-dialog header .v2-sales-eyebrow {
    margin-bottom: 4px;
    color: var(--v2-burgundy);
}

.v2-gallery-dialog h2 {
    margin: 0;
    font-family: var(--v2-serif);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.v2-dialog-close {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 1.65rem;
    line-height: 1;
}

.v2-gallery-dialog-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px 14px;
    padding: 28px;
}

.v2-gallery-dialog-card {
    display: grid;
    gap: 5px;
}

.v2-card-dialog {
    width: min(470px, calc(100% - 28px));
    overflow: visible;
    padding: 10px 10px 14px;
    border: 1px solid rgba(216, 185, 120, .72);
    background: var(--accent-navy);
    color: #fff;
}

.v2-card-dialog > .v2-dialog-close {
    position: absolute;
    z-index: 2;
    top: 0;
    right: -58px;
}

.v2-card-dialog figure {
    margin: 0;
}

.v2-card-dialog img {
    width: 100%;
    max-height: calc(100dvh - 120px);
    aspect-ratio: 2 / 3;
    border: 8px solid #f1e9dc;
    background: #e4ddd3;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .5);
    object-fit: contain;
}

.v2-card-dialog figcaption {
    display: grid;
    gap: 3px;
    padding-top: 13px;
    text-align: center;
}

.v2-card-dialog figcaption span {
    color: var(--accent-gold);
}

.v2-card-dialog figcaption strong {
    font-family: var(--v2-serif);
    font-size: 1.35rem;
    font-weight: 400;
}

.v2-sales-faq {
    border-top: 1px solid var(--v2-sales-line);
    background: var(--bg-warm-section);
}

.v2-sales-faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(430px, 1.22fr);
    align-items: start;
    gap: 90px;
}

.v2-sales-faq-heading {
    position: sticky;
    top: 120px;
}

.v2-sales-faq-heading .v2-sales-eyebrow {
    color: var(--accent-burgundy);
}

.v2-sales-faq-heading > p:last-child {
    margin-top: 25px;
}

.v2-faq-list {
    border-top: 1px solid var(--v2-sales-line);
}

.v2-faq-item {
    border-bottom: 1px solid var(--v2-sales-line);
}

.v2-faq-item summary {
    position: relative;
    display: flex;
    min-height: 67px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 17px 52px 17px 0;
    cursor: pointer;
    font-family: var(--v2-serif);
    font-size: 1.18rem;
    list-style: none;
}

.v2-faq-item summary::-webkit-details-marker {
    display: none;
}

.v2-faq-item summary::after {
    position: absolute;
    right: 4px;
    color: var(--accent-gold-ink);
    content: "+";
    font-family: var(--v2-sans);
    font-size: 1.3rem;
}

.v2-faq-item[open] summary::after {
    content: "−";
}

.v2-faq-item p {
    max-width: 680px;
    margin: 0;
    padding: 0 52px 23px 0;
    color: #5e5751;
    font-family: var(--v2-serif);
    line-height: 1.7;
}

.v2-faq-item a {
    color: var(--accent-burgundy);
    text-underline-offset: 4px;
}

.v2-faq-more {
    display: contents;
}

.v2-js .v2-faq-more:not(.is-open) {
    display: none;
}

.v2-faq-toggle {
    display: flex;
    width: 100%;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 17px 4px 17px 0;
    border: 0;
    border-bottom: 1px solid var(--v2-sales-line);
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font: 800 .68rem/1.35 var(--v2-sans);
    text-align: left;
    text-transform: uppercase;
}

.v2-faq-toggle[hidden] {
    display: none;
}

.v2-faq-toggle span:last-child {
    color: var(--accent-gold-ink);
    font-size: 1.1rem;
    transition: transform .2s ease;
}

.v2-faq-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(180deg);
}

.v2-faq-toggle:focus-visible {
    outline: 2px solid var(--accent-navy);
    outline-offset: 4px;
}

.v2-sales-closing {
    padding-block: 86px;
    background: var(--bg-dark);
    color: #fff;
    text-align: center;
}

.v2-sales-closing .v2-sales-eyebrow {
    color: var(--accent-gold);
}

.v2-sales-closing h2 {
    max-width: 950px;
    margin-inline: auto;
}

.v2-sales-closing h2 em {
    color: var(--accent-gold);
}

.v2-editorial-button--light {
    margin-top: 34px;
    border-color: #fff;
    background: #fff;
    color: var(--v2-ink);
}

.v2-editorial-button--light:hover {
    background: transparent;
    color: #fff;
}

.v2-editorial-button--light:hover span {
    color: var(--accent-gold);
}

@media (hover: hover) and (pointer: fine) {
    .v2-sales-hero-card--back:hover {
        z-index: 8;
        filter: saturate(1.08);
        transform: translateY(-7px) rotate(-10deg);
    }

    .v2-sales-hero-card--0:hover {
        z-index: 8;
        filter: saturate(1.08);
        transform: translateY(-9px) rotate(-3deg);
    }

    .v2-sales-hero-card--1:hover {
        z-index: 8;
        filter: saturate(1.08);
        transform: translateY(-11px) rotate(0);
    }

    .v2-sales-hero-card--2:hover {
        z-index: 8;
        filter: saturate(1.08);
        transform: translateY(-9px) rotate(4deg);
    }

    .v2-formula-card:hover {
        z-index: 2;
        filter: saturate(1.03);
        transform: translateY(-7px);
    }

    .v2-sales-story-card--0:hover {
        z-index: 2;
        filter: saturate(1.08);
        transform: translate(-105%, -52%) rotate(-6deg);
    }

    .v2-sales-story-card--1:hover {
        z-index: 8;
        filter: saturate(1.08);
        transform: translate(-50%, -57%) rotate(0);
    }

    .v2-sales-story-card--2:hover {
        z-index: 2;
        filter: saturate(1.08);
        transform: translate(5%, -52%) rotate(6deg);
    }

    .v2-reading-preview-card--0:hover {
        z-index: 2;
        filter: saturate(1.08);
        transform: translateY(-8px) rotate(-4deg);
    }

    .v2-reading-preview-card--1:hover {
        z-index: 8;
        filter: saturate(1.08);
        transform: translateY(-10px) rotate(0);
    }

    .v2-reading-preview-card--2:hover {
        z-index: 2;
        filter: saturate(1.08);
        transform: translateY(-8px) rotate(4deg);
    }

    .v2-collection-card:hover,
    .v2-collection-card:focus-visible,
    .v2-gallery-dialog-card:hover,
    .v2-gallery-dialog-card:focus-visible,
    .v2-home-card:hover,
    .v2-tarot-gallery-card:hover {
        z-index: 2;
        filter: saturate(1.06);
        transform: translateY(-8px) rotate(-.6deg);
    }

    .v2-collection-card:nth-child(even):hover,
    .v2-gallery-dialog-card:nth-child(even):hover,
    .v2-home-card:nth-child(even):hover,
    .v2-tarot-gallery-card:nth-child(even):hover {
        transform: translateY(-8px) rotate(.6deg);
    }

    .v2-collection-card:hover img,
    .v2-gallery-dialog-card:hover img {
        filter: contrast(1.02) saturate(1.05);
        transform: scale(1.025);
    }

    .v2-tarot-hero-card:nth-child(1):hover {
        z-index: 8;
        transform: translate(-105%, -51%) rotate(-7deg);
    }

    .v2-tarot-hero-card:nth-child(2):hover {
        z-index: 8;
        transform: translate(-50%, -57%) rotate(0);
    }

    .v2-tarot-hero-card:nth-child(3):hover {
        z-index: 8;
        transform: translate(5%, -51%) rotate(7deg);
    }
}

@media (max-width: 1080px) {
    .v2-sales-hero h1 {
        max-width: 650px;
        font-size: 3.95rem;
    }

    .v2-sales-hero-copy {
        max-width: 660px;
    }

    .v2-sales-hero-art {
        right: -145px;
    }

    .v2-formula-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-formula-grid--intuitive,
    .v2-formula-grid--calculated {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v2-formula-card {
        min-height: 260px;
    }

    .v2-experience-grid {
        grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
        gap: 40px;
    }

    .v2-reading-preview-body {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 24px;
        padding: 24px;
    }

    .v2-collection-preview,
    .v2-gallery-dialog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .v2-sales-story-grid {
        grid-template-columns: .85fr 1.15fr;
        gap: 45px;
    }

    .v2-sales-story-card {
        width: 195px;
    }
}

@media (max-width: 820px) {
    .v2-header-inner--editorial {
        min-height: 66px;
    }

    .v2-primary-actions {
        gap: 16px;
    }

    .v2-header-secondary-links,
    .v2-primary-actions > .v2-account-link {
        display: none;
    }

    .v2-header-menu {
        display: block;
    }

    .v2-sales-hero-stage,
    .v2-sales-hero-intro {
        min-height: 0;
    }

    .v2-sales-hero-intro {
        display: grid;
        padding-block: 48px 98px;
    }

    .v2-sales-hero-copy {
        max-width: 590px;
    }

    .v2-sales-hero h1 {
        max-width: 590px;
        font-size: 3.55rem;
    }

    .v2-sales-hero-art {
        position: relative;
        top: auto;
        right: auto;
        width: min(620px, 100%);
        height: 155px;
        margin-top: 18px;
        transform: none;
    }

    .v2-sales-hero-card {
        width: 104px;
    }

    .v2-sales-hero-card img { border-width: 4px; }
    .v2-sales-hero-card--back { top: 31px; left: 2%; }
    .v2-sales-hero-card--0 { top: 20px; left: 23%; }
    .v2-sales-hero-card--1 { top: 5px; left: 45%; }
    .v2-sales-hero-card--2 { top: 25px; left: 67%; }

    .v2-daily-entry > a {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .v2-daily-entry-action {
        grid-column: 2;
        width: fit-content;
    }

    .v2-sales-proof .v2-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .v2-sales-proof p {
        border-bottom: 1px solid rgba(255, 255, 255, .25);
    }

    .v2-sales-section {
        padding-block: 72px;
    }

    .v2-sales-heading,
    .v2-sales-story-grid,
    .v2-sales-faq-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .v2-sales-heading .v2-sales-eyebrow {
        margin-bottom: -24px;
    }

    .v2-sales-heading h2,
    .v2-sales-story h2,
    .v2-sales-faq h2,
    .v2-sales-closing h2 {
        font-size: 3.2rem;
    }

    .v2-experience-grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 38px;
    }

    .v2-sales-experience .v2-sales-heading h2 {
        font-size: 3rem;
    }

    .v2-reading-preview {
        width: 100%;
        max-width: 650px;
    }

    .v2-sales-story-grid {
        min-height: 0;
    }

    .v2-sales-story-copy {
        max-width: 650px;
    }

    .v2-sales-story-cards {
        width: min(620px, 100%);
        min-height: 430px;
        margin-inline: auto;
    }

    .v2-sales-faq-heading {
        position: static;
        max-width: 620px;
    }

    .v2-gallery-dialog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .v2-header-inner--editorial {
        gap: 12px;
    }

    .v2-primary-actions {
        gap: 11px;
    }

    .v2-account-link,
    .v2-header-action {
        font-size: .64rem;
    }

    .v2-header-action-label {
        display: none;
    }

    .v2-header-action-label--compact {
        display: inline;
    }

    .v2-header-action {
        min-height: 44px;
        padding-inline: 12px;
    }

    .v2-sales-hero-intro { padding-block: 38px 93px; }

    .v2-sales-hero h1 {
        max-width: none;
        font-size: 2.65rem;
    }

    .v2-mobile-title-break {
        display: inline;
    }

    .v2-sales-hero-copy > p:last-child {
        max-width: 520px;
        margin-top: 20px;
        font-size: 1rem;
        line-height: 1.55;
    }

    .v2-sales-hero-art {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 128px;
        margin-top: 16px;
        transform: none;
    }

    .v2-sales-hero-card {
        width: 88px;
    }

    .v2-sales-hero-card img {
        border-width: 3px;
    }

    .v2-sales-hero-card--back { top: 25px; left: 2%; }
    .v2-sales-hero-card--0 { top: 16px; left: 23%; }
    .v2-sales-hero-card--1 { top: 4px; left: 45%; }
    .v2-sales-hero-card--2 { top: 20px; left: 67%; }

    .v2-formulas {
        margin-top: 0;
        padding-top: 28px;
        padding-bottom: 58px;
    }

    .v2-daily-entry {
        margin-top: -65px;
    }

    .v2-formula-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .v2-formula-group + .v2-formula-group {
        margin-top: 24px;
    }

    .v2-formula-group > header {
        margin-bottom: 10px;
    }

    .v2-formula-group > header h2 {
        font-size: 1.08rem;
    }

    .v2-formula-grid--intuitive,
    .v2-formula-grid--calculated {
        grid-template-columns: minmax(0, 1fr);
    }

    .v2-formula-grid--intuitive > article,
    .v2-formula-grid--calculated > article {
        min-height: 190px;
    }

    .v2-daily-entry > a {
        min-height: 0;
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
        padding: 18px 16px;
    }

    .v2-daily-entry-mark {
        font-size: 1.7rem;
    }

    .v2-daily-entry-copy strong {
        font-size: 1.22rem;
    }

    .v2-daily-entry-copy > span {
        font-size: .82rem;
    }

    .v2-daily-entry-action {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: space-between;
    }

    .v2-formula-card {
        min-height: 170px;
        padding: 16px 14px;
    }

    .v2-formula-price {
        margin-bottom: 12px;
        font-size: .88rem;
    }

    .v2-formula-card h3 {
        font-size: 1.3rem;
        line-height: 1.05;
    }

    .v2-formula-description {
        margin-top: 9px;
        font-size: .84rem;
        line-height: 1.42;
    }

    .v2-formula-card > a {
        gap: 8px;
        margin-top: auto;
        padding-top: 10px;
        font-size: .68rem;
        line-height: 1.25;
    }

    .v2-formula-card > a::after {
        inset: 0;
    }

    .v2-sales-proof p {
        padding: 17px 14px;
        font-size: .78rem;
    }

    .v2-sales-section {
        padding-block: 58px;
    }

    .v2-sales-experience {
        padding-block: 52px;
    }

    .v2-sales-heading,
    .v2-sales-heading--collection {
        margin-bottom: 34px;
    }

    .v2-sales-heading h2,
    .v2-sales-story h2,
    .v2-sales-faq h2,
    .v2-sales-closing h2 {
        font-size: 2.55rem;
    }

    .v2-sales-heading > p:last-child,
    .v2-sales-story-copy > p:not(.v2-sales-eyebrow),
    .v2-sales-faq-heading > p:last-child {
        font-size: .98rem;
        line-height: 1.65;
    }

    .v2-sales-experience .v2-sales-heading h2 {
        font-size: 2.55rem;
    }

    .v2-sales-experience .v2-sales-steps li {
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 14px;
        padding: 18px 0;
    }

    .v2-sales-steps span {
        font-size: 2.5rem;
    }

    .v2-reading-preview-header {
        gap: 12px;
        padding: 13px 16px;
    }

    .v2-reading-preview-body {
        min-height: 0;
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 18px;
        padding: 22px 18px;
    }

    .v2-reading-preview-cards {
        min-height: 190px;
    }

    .v2-reading-preview-card {
        width: 72%;
    }

    .v2-reading-preview-card--0 { top: 42px; }
    .v2-reading-preview-card--1 { top: 10px; }
    .v2-reading-preview-card--2 { top: 39px; }

    .v2-reading-preview-copy h3 {
        font-size: 1.5rem;
    }

    .v2-reading-preview-lead {
        font-size: .95rem;
    }

    .v2-reading-preview-excerpt {
        margin-top: 20px;
        padding-top: 16px;
    }

    .v2-reading-preview-excerpt p {
        font-size: .9rem;
    }

    .v2-reading-preview-meta span {
        padding: 13px 16px;
        font-size: .62rem;
    }

    .v2-sales-story-cards {
        min-height: 320px;
    }

    .v2-sales-story-card {
        width: 150px;
    }

    .v2-sales-story-card img {
        border-width: 4px;
    }

    .v2-collection-preview {
        display: grid;
        grid-auto-columns: minmax(145px, 44vw);
        grid-auto-flow: column;
        grid-template-columns: none;
        overflow-x: auto;
        margin-inline: -14px;
        padding: 3px 14px 22px;
        scroll-snap-type: x proximity;
        scrollbar-color: var(--v2-burgundy) transparent;
    }

    .v2-collection-card {
        margin-top: 0 !important;
        scroll-snap-align: start;
    }

    .v2-gallery-dialog {
        width: calc(100% - 16px);
        max-height: calc(100dvh - 16px);
    }

    .v2-gallery-dialog-shell > header {
        padding: 16px;
    }

    .v2-gallery-dialog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 10px;
        padding: 16px;
    }

    .v2-dialog-close {
        width: 42px;
        height: 42px;
    }

    .v2-card-dialog > .v2-dialog-close {
        top: 7px;
        right: 7px;
    }

    .v2-card-dialog .v2-dialog-close {
        background: rgba(20, 18, 16, .78);
    }

    .v2-card-dialog img {
        max-height: calc(100dvh - 90px);
        border-width: 5px;
    }

    .v2-faq-item summary {
        min-height: 61px;
        padding-right: 39px;
        font-size: 1.04rem;
    }

    .v2-faq-item p {
        padding-right: 10px;
        font-size: .94rem;
    }

    .v2-sales-closing {
        padding-block: 64px;
    }
}

@media (max-width: 480px) {
    .v2-header-inner--editorial .v2-brand-copy {
        display: none;
    }

    .v2-sales-hero h1 {
        font-size: 2.35rem;
    }

    .v2-sales-hero-card {
        width: 80px;
    }

    .v2-formula-card {
        min-height: 166px;
        padding-inline: 12px;
    }

    .v2-formula-card h3 {
        font-size: 1.22rem;
    }

    .v2-formula-card > a {
        font-size: .64rem;
    }

    .v2-reading-preview-header strong {
        display: none;
    }

    .v2-reading-preview-body {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
        padding: 18px 14px;
    }

    .v2-reading-preview-cards {
        min-height: 168px;
    }

    .v2-reading-preview-copy h3 {
        font-size: 1.35rem;
    }

    .v2-reading-preview-copy .v2-sales-eyebrow {
        margin-bottom: 10px;
    }

    .v2-reading-preview-meta span {
        padding-inline: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v2-collection-card:hover,
    .v2-collection-card:focus-visible,
    .v2-gallery-dialog-card:hover,
    .v2-gallery-dialog-card:focus-visible,
    .v2-home-card:hover,
    .v2-tarot-gallery-card:hover,
    .v2-formula-card:hover {
        transform: none;
    }

    .v2-sales-hero-card--back:hover { transform: rotate(-14deg); }
    .v2-sales-hero-card--0:hover { transform: rotate(-7deg); }
    .v2-sales-hero-card--1:hover { transform: rotate(1deg); }
    .v2-sales-hero-card--2:hover { transform: rotate(10deg); }
    .v2-sales-story-card--0:hover { transform: translate(-105%, -48%) rotate(-10deg); }
    .v2-sales-story-card--1:hover { transform: translate(-50%, -52%) rotate(0); }
    .v2-sales-story-card--2:hover { transform: translate(5%, -48%) rotate(10deg); }
    .v2-reading-preview-card--0:hover { transform: rotate(-8deg); }
    .v2-reading-preview-card--1:hover { transform: rotate(-1deg); }
    .v2-reading-preview-card--2:hover { transform: rotate(7deg); }
}

@media (forced-colors: active) {
    .v2-header-action,
    .v2-editorial-button,
    .v2-formula-card,
    .v2-collection-card-image,
    .v2-gallery-dialog-card > span {
        border: 1px solid ButtonText;
    }
}

/* Final mobile width guard: later editorial rules must not recreate horizontal overflow. */
@media (max-width: 620px) {
    html,
    body {
        max-width: 100%;
        overflow-x: clip;
    }

    .v2-shell,
    .v2-sales-home .v2-formulas {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
        min-width: 0;
    }

    .v2-sales-hero-intro,
    .v2-sales-hero-copy,
    .v2-founder-hero-grid,
    .v2-founder-hero-title,
    .v2-journal-hero-grid,
    .v2-journal-hero-grid > div,
    .v2-journal-library-heading,
    .v2-journal-tools,
    .v2-formula-groups,
    .v2-formula-group,
    .v2-formula-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .v2-sales-hero h1,
    .v2-sales-hero-copy > p:last-child,
    .v2-founder-hero h1,
    .v2-founder-mobile-proof,
    .v2-journal-hero h1,
    .v2-journal-hero-grid > p {
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .v2-sales-hero h1 em,
    .v2-founder-hero h1 em,
    .v2-journal-hero h1 em {
        display: block;
        white-space: normal;
    }

    .v2-sales-hero h1 {
        font-size: 2.35rem;
        line-height: 0.98;
    }

    .v2-founder-hero h1 {
        font-size: 2.55rem;
        line-height: 0.96;
    }

    .v2-journal-hero h1 {
        font-size: 2.15rem;
        line-height: 1;
    }

    .v2-founder-mobile-proof {
        font-size: 0.63rem;
        line-height: 1.45;
    }

    .v2-formula-jump {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .v2-formula-jump a {
        width: 100%;
        min-width: 0;
        padding-inline: 0.65rem;
        font-size: 0.61rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .v2-journal-filters {
        display: flex;
        grid-template-columns: none;
        flex-wrap: nowrap;
        gap: 0.45rem;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .v2-journal-filters::-webkit-scrollbar {
        display: none;
    }

    .v2-journal-filters button,
    .v2-journal-filters button:last-child {
        flex: 0 0 auto;
        grid-column: auto;
        width: auto;
        min-width: max-content;
        white-space: nowrap;
    }
}

/* Contact : un point d'entrée unique raccordé au suivi des demandes. */
.v2-contact-page {
    --contact-paper: #fffdf9;
    background: var(--bg-warm-section, #f6f0e7);
}

.v2-contact-hero {
    padding: clamp(72px, 10vw, 128px) 0 clamp(62px, 8vw, 104px);
    background: var(--bg-ivory, #fdfbf7);
    text-align: center;
}

.v2-contact-hero h1 {
    margin: 18px 0 24px;
    font-family: var(--v2-serif);
    font-size: clamp(3rem, 7vw, 5.7rem);
    font-weight: 400;
    line-height: .96;
}

.v2-contact-hero h1 em {
    color: var(--accent-burgundy, var(--v2-burgundy));
    font-weight: 400;
}

.v2-contact-hero > div > p:last-child {
    max-width: 680px;
    margin: 0 auto;
    color: #625951;
    font-family: var(--v2-serif);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.65;
}

.v2-contact-section {
    padding: clamp(64px, 9vw, 118px) 0;
}

.v2-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
    align-items: stretch;
    gap: clamp(22px, 4vw, 48px);
}

.v2-contact-form-panel {
    min-width: 0;
    padding: clamp(30px, 5vw, 64px);
    border: 1px solid var(--v2-line);
    background: var(--contact-paper);
    box-shadow: var(--v2-shadow);
}

.v2-contact-form-panel h2,
.v2-contact-aside h2,
.v2-contact-success h2 {
    margin: 12px 0 0;
    font-family: var(--v2-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.05;
}

.v2-contact-form-panel form {
    position: relative;
    display: grid;
    gap: 23px;
    margin-top: 38px;
}

.v2-contact-honeypot {
    position: absolute !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.v2-contact-field {
    display: grid;
    gap: 8px;
}

.v2-contact-field > label {
    color: var(--v2-ink);
    font-size: .77rem;
    font-weight: 800;
    text-transform: uppercase;
}

.v2-contact-field input,
.v2-contact-field textarea {
    width: 100%;
    border: 1px solid rgba(24, 19, 15, .28);
    border-radius: 0;
    outline: 0;
    background: #fff;
    color: var(--v2-ink);
    font: inherit;
}

.v2-contact-field input {
    min-height: 54px;
    padding: 12px 15px;
}

.v2-contact-field textarea {
    min-height: 190px;
    padding: 15px;
    resize: vertical;
    line-height: 1.55;
}

.v2-contact-field input:focus,
.v2-contact-field textarea:focus {
    border-color: var(--accent-burgundy, var(--v2-burgundy));
    box-shadow: inset 3px 0 0 var(--accent-burgundy, var(--v2-burgundy));
}

.v2-contact-field input[aria-invalid="true"],
.v2-contact-field textarea[aria-invalid="true"] {
    border-color: var(--accent-burgundy, var(--v2-burgundy));
}

.v2-contact-field-meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #70665d;
    font-size: .73rem;
    line-height: 1.45;
}

.v2-contact-field-meta small:last-child {
    flex: 0 0 auto;
}

.v2-contact-field-error {
    min-height: 1.25em;
    margin: 0;
    color: var(--accent-burgundy, var(--v2-burgundy));
    font-size: .78rem;
    font-weight: 700;
}

.v2-contact-privacy,
.v2-contact-noscript {
    margin: 0;
    color: #655c54;
    font-size: .78rem;
    line-height: 1.55;
}

.v2-contact-privacy a,
.v2-contact-noscript a {
    color: var(--accent-burgundy, var(--v2-burgundy));
}

.v2-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    width: max-content;
    min-height: 52px;
    padding: 13px 20px;
    border: 1px solid var(--accent-burgundy, var(--v2-burgundy));
    background: var(--accent-burgundy, var(--v2-burgundy));
    color: #fff;
    cursor: pointer;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease;
}

.v2-contact-submit:hover,
.v2-contact-submit:focus-visible {
    background: transparent;
    color: var(--accent-burgundy, var(--v2-burgundy));
}

.v2-contact-submit:disabled {
    cursor: wait;
    opacity: .65;
}

.v2-contact-status {
    min-height: 1.4em;
    margin: -9px 0 0;
    color: #655c54;
    font-size: .8rem;
}

.v2-contact-status.is-error {
    color: var(--accent-burgundy, var(--v2-burgundy));
    font-weight: 700;
}

.v2-contact-aside {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(30px, 4vw, 48px);
    background: var(--bg-dark, #161514);
    color: #fffaf2;
}

.v2-contact-aside .v2-overline {
    color: var(--v2-gold-light);
}

.v2-contact-aside > p:not(.v2-overline) {
    margin: 25px 0;
    color: rgba(255, 250, 242, .74);
    font-family: var(--v2-serif);
    line-height: 1.65;
}

.v2-contact-email {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid var(--v2-gold-light);
    color: #fffaf2;
    font-size: clamp(.82rem, 1.4vw, 1rem);
    overflow-wrap: anywhere;
    text-decoration: none;
}

.v2-contact-aside-note {
    margin-top: auto;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 250, 242, .2);
}

.v2-contact-aside-note strong {
    color: var(--v2-gold-light);
    font-size: .72rem;
    text-transform: uppercase;
}

.v2-contact-aside-note p {
    margin: 12px 0 0;
    color: rgba(255, 250, 242, .68);
    font-size: .8rem;
    line-height: 1.55;
}

.v2-contact-success {
    display: grid;
    place-items: center;
    min-height: 520px;
    align-content: center;
    text-align: center;
}

.v2-contact-success > span:first-child {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border: 1px solid var(--v2-gold);
    border-radius: 50%;
    place-items: center;
    color: var(--accent-burgundy, var(--v2-burgundy));
    font-size: 1.4rem;
}

.v2-contact-success > p:not(.v2-overline) {
    max-width: 520px;
    margin: 24px auto;
    color: #655c54;
}

.v2-contact-success .v2-text-link {
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 820px) {
    .v2-contact-grid {
        grid-template-columns: 1fr;
    }

    .v2-contact-aside {
        min-height: 420px;
    }
}

@media (max-width: 620px) {
    .v2-contact-hero {
        padding-top: 58px;
    }

    .v2-contact-hero h1 {
        font-size: 2.65rem;
    }

    .v2-contact-form-panel,
    .v2-contact-aside {
        padding: 28px 20px;
    }

    .v2-contact-field-meta {
        display: grid;
        gap: 5px;
    }

    .v2-contact-field-meta small:last-child {
        justify-self: end;
    }

    .v2-contact-submit {
        width: 100%;
    }

    .v2-contact-success {
        min-height: 440px;
    }
}
