:root {
    --bg-0: #030101;
    --bg-1: #090303;
    --bg-2: #180607;
    --surface-0: rgba(12, 7, 7, 0.9);
    --surface-1: rgba(21, 12, 12, 0.94);
    --surface-2: rgba(34, 20, 20, 0.96);
    --surface-soft: rgba(15, 9, 9, 0.78);
    --line: rgba(224, 205, 205, 0.11);
    --line-strong: rgba(158, 28, 38, 0.38);
    --text: #f2e7e4;
    --text-soft: #c2adab;
    --text-dim: #8b7574;
    --brass: #d5c9c4;
    --brass-deep: #5d4e4c;
    --blood: #9f1c28;
    --blood-deep: #3a0508;
    --iron: #272223;
    --font-display: Georgia, "Times New Roman", Times, serif;
    --font-body: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --radius: 22px;
    --radius-sm: 14px;
    --shadow-lg: 0 34px 110px rgba(0, 0, 0, 0.56);
    --shadow-md: 0 18px 54px rgba(0, 0, 0, 0.38);
    --transition: 180ms ease;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-0);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    background:
        radial-gradient(ellipse at 8% 0%, rgba(122, 18, 26, 0.54), transparent 38%),
        radial-gradient(ellipse at 94% 2%, rgba(22, 76, 76, 0.32), transparent 42%),
        radial-gradient(ellipse at 50% 100%, rgba(91, 12, 18, 0.26), transparent 44%),
        linear-gradient(135deg, #1b0306 0%, #050202 44%, #061011 100%),
        var(--bg-0);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background:
        linear-gradient(rgba(120, 18, 26, 0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 18, 26, 0.01) 1px, transparent 1px),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 22px);
    background-size: 132px 132px, 132px 132px, 100% 100%;
    -webkit-mask-image: radial-gradient(ellipse at center, black 0 42%, transparent 82%);
    mask-image: radial-gradient(ellipse at center, black 0 42%, transparent 82%);
    opacity: 0.22;
}

body::after {
    background:
        radial-gradient(ellipse at center, transparent 34%, rgba(0, 0, 0, 0.42) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 22%, transparent 72%, rgba(0, 0, 0, 0.36));
}

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

p,
ul,
ol {
    margin: 0;
}

.atmosphere,
.atmosphere-grid,
.atmosphere-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.atmosphere {
    opacity: 0.72;
    filter: blur(52px);
}

.atmosphere-a {
    background:
        linear-gradient(110deg, transparent 0 18%, rgba(145, 18, 24, 0.26) 42%, transparent 68%),
        radial-gradient(ellipse at 15% 86%, rgba(140, 18, 28, 0.16), transparent 44%);
    animation: drift 34s ease-in-out infinite;
}

.atmosphere-b {
    background:
        linear-gradient(250deg, transparent 0 24%, rgba(92, 12, 16, 0.18) 48%, transparent 72%),
        radial-gradient(ellipse at 92% 8%, rgba(140, 18, 28, 0.08), transparent 42%);
    animation: drift 40s ease-in-out infinite reverse;
}

.atmosphere-c {
    background:
        repeating-linear-gradient(90deg, transparent 0 78px, rgba(120, 18, 26, 0.012) 78px 79px),
        linear-gradient(180deg, transparent, rgba(120, 18, 26, 0.055), transparent);
    filter: none;
    opacity: 0.5;
}

.atmosphere-grid {
    background:
        linear-gradient(90deg, transparent, rgba(120, 18, 26, 0.03), transparent),
        repeating-linear-gradient(0deg, transparent 0 95px, rgba(210, 205, 206, 0.012) 95px 96px);
    -webkit-mask-image: linear-gradient(180deg, transparent, black 16%, black 74%, transparent);
    mask-image: linear-gradient(180deg, transparent, black 16%, black 74%, transparent);
    opacity: 0.18;
}

.atmosphere-vignette {
    background: radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.38) 100%);
}

.site-shell {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(122, 18, 26, 0.1), transparent 34%),
        rgba(3, 2, 2, 0.94);
    overflow: hidden;
}

.site-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(120, 18, 26, 0.016), transparent 32%),
        repeating-linear-gradient(90deg, transparent 0 260px, rgba(120, 18, 26, 0.014) 260px 261px);
}

.wrapper {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.narrow {
    width: min(920px, calc(100% - 2rem));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(230, 214, 188, 0.08);
    background:
        linear-gradient(180deg, rgba(5, 3, 3, 0.88), rgba(5, 3, 3, 0.64)),
        rgba(5, 3, 3, 0.72);
    backdrop-filter: blur(22px);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 147, 91, 0.46), transparent);
}

.page-home .site-header {
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent);
    backdrop-filter: none;
}

.page-home .site-header::after {
    content: none;
}

.page-shop .site-header {
    position: absolute;
    left: 0;
    right: 0;
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
    backdrop-filter: none;
}

.page-shop .site-header::after {
    content: none;
}

.page-home .site-main {
    padding-bottom: 0;
}

.page-subscription .site-main,
.page-shop .site-main,
.page-contacts .site-main,
.page-documents .site-main,
.page-feedback .site-main {
    min-height: calc(100vh - 78px);
    padding-bottom: 3.5rem;
}

.page-subscription .site-main::before,
.page-shop .site-main::before,
.page-contacts .site-main::before,
.page-documents .site-main::before,
.page-feedback .site-main::before,
.page-subscription .site-main::after,
.page-shop .site-main::after,
.page-contacts .site-main::after,
.page-documents .site-main::after,
.page-feedback .site-main::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.page-subscription .site-main::before,
.page-shop .site-main::before,
.page-contacts .site-main::before,
.page-documents .site-main::before,
.page-feedback .site-main::before {
    z-index: -2;
    background-image: url("../img/heartfall-fon.edb7d178c73f.png");
    background-size: cover;
    background-position: center center;
    filter: saturate(0.9) brightness(0.52);
    transform: scale(1.02);
}

.page-subscription .site-main::after,
.page-shop .site-main::after,
.page-contacts .site-main::after,
.page-documents .site-main::after,
.page-feedback .site-main::after {
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 34%, rgba(4, 2, 2, 0.12), rgba(0, 0, 0, 0.76) 72%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.82));
}

.header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.3rem;
    align-items: center;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-mark {
    position: relative;
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 auto;
    overflow: hidden;
    padding: 0.18rem;
    border: 1px solid rgba(213, 201, 196, 0.12);
    border-radius: 50%;
    background:
        radial-gradient(circle at 52% 38%, rgba(213, 201, 196, 0.08), transparent 38%),
        radial-gradient(circle at 50% 58%, rgba(122, 18, 26, 0.2), transparent 58%),
        rgba(9, 5, 5, 0.86);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.018),
        0 14px 34px rgba(0, 0, 0, 0.38);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 50% 46%, transparent 46%, rgba(0, 0, 0, 0.38) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%);
    pointer-events: none;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: none;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 14px rgba(122, 18, 26, 0.16));
}

.brand-copy {
    display: grid;
    align-content: center;
    gap: 0.05rem;
    min-height: 2.65rem;
    min-width: 0;
    transform: translateY(0.05rem);
}

.brand-copy__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1;
    text-transform: uppercase;
}

.brand-copy__sub {
    color: var(--text-dim);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.1rem;
    min-width: 0;
}

.site-nav__link {
    position: relative;
    padding: 0.45rem 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    white-space: nowrap;
    transition: color var(--transition);
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08rem;
    height: 1px;
    background: var(--brass);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity var(--transition), transform var(--transition);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--text);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    opacity: 0.8;
    transform: scaleX(1);
}

.header-access {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    min-width: 0;
}

.server-copy {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 13.2rem;
    min-height: 46px;
    max-width: 250px;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(180, 147, 91, 0.24);
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
        rgba(20, 15, 13, 0.86);
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.server-copy:hover,
.server-copy.is-copied {
    border-color: rgba(180, 147, 91, 0.54);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), transparent),
        rgba(28, 20, 17, 0.92);
}

.server-copy__caption,
.server-copy__status {
    color: var(--text-dim);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.server-copy strong {
    min-width: 0;
    overflow: hidden;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.server-copy__status {
    position: absolute;
    left: 50%;
    top: calc(100% + 0.32rem);
    z-index: 4;
    padding: 0.16rem 0.48rem;
    border: 1px solid rgba(180, 147, 91, 0.18);
    border-radius: 999px;
    color: var(--brass);
    background: rgba(8, 5, 5, 0.92);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -0.2rem);
    transition: opacity var(--transition), transform var(--transition);
    white-space: nowrap;
}

.server-copy.is-copied .server-copy__status {
    opacity: 1;
    transform: translate(-50%, 0);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(130, 27, 36, 0.56);
    border-radius: var(--radius-sm);
    color: #fff4ea;
    font-size: 0.9rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%),
        linear-gradient(135deg, rgba(130, 27, 36, 0.98), rgba(59, 11, 16, 0.98));
    box-shadow: 0 16px 42px rgba(59, 11, 16, 0.32);
}

.flash-stack {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
}

.page-flash-stack {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1rem;
}

.flash {
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(18, 13, 12, 0.92);
    color: var(--text);
    box-shadow: var(--shadow-md);
}

.flash-success {
    border-color: rgba(88, 176, 112, 0.42);
    color: #eaffee;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(88, 176, 112, 0.22), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 55%),
        rgba(10, 34, 22, 0.72);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        0 18px 54px rgba(0, 0, 0, 0.34),
        0 0 32px rgba(88, 176, 112, 0.1);
}

.site-main {
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
    padding-bottom: 3.5rem;
}

.section {
    padding-top: 4.8rem;
}

.section-kicker,
.caption {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.75rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-kicker {
    color: var(--brass);
}

.section-kicker::before {
    content: "";
    width: 1.8rem;
    height: 1px;
    background: linear-gradient(90deg, var(--brass), transparent);
}

.caption {
    color: var(--text-dim);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 0.98;
}

.muted-text {
    color: var(--text-soft);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    max-width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: center;
    overflow-wrap: anywhere;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff6ee;
    border-color: rgba(180, 147, 91, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(135deg, rgba(130, 27, 36, 0.98), rgba(59, 11, 16, 0.98) 72%);
    box-shadow: 0 18px 54px rgba(59, 11, 16, 0.42);
}

.button-primary:hover {
    box-shadow: 0 22px 70px rgba(59, 11, 16, 0.54);
}

.button-secondary,
.button-ghost {
    color: var(--text);
    border-color: var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 44%),
        rgba(18, 13, 12, 0.72);
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.button-wide {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    color: var(--brass);
    font-size: 0.95rem;
}

.text-link::after {
    content: "";
    width: 1.4rem;
    height: 1px;
    background: currentColor;
}

.hero {
    min-height: 100vh;
    display: grid;
    align-items: stretch;
    padding: 0;
}

.hero-sanctum {
    position: relative;
    padding: 1px;
    border: 1px solid rgba(230, 214, 188, 0.08);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(180, 147, 91, 0.18), transparent 24%, rgba(130, 27, 36, 0.14) 72%, transparent),
        rgba(8, 5, 4, 0.78);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-sanctum--cover {
    width: 100%;
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    background: #020202;
    box-shadow: none;
}

.page-home .hero > .wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
}

.page-home .hero-sanctum {
    padding: 0;
}

.page-home .hero-sanctum::before,
.page-home .hero-sanctum::after {
    content: none;
}

.hero-cover__image,
.hero-cover__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-cover__image {
    object-fit: cover;
    object-position: center center;
    transform: scale(1.015);
}

.hero-cover__shade {
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 46%, rgba(122, 18, 26, 0.08), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0.68) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.18) 36%, rgba(0, 0, 0, 0.72) 74%, rgba(0, 0, 0, 0.98) 100%);
}

.hero-cover__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-cover__content > div {
    max-width: 74rem;
}

.hero-cover__stack {
    display: grid;
    justify-items: center;
}

.hero-title {
    margin-top: 1.2rem;
    color: #fff8f4;
    font-family: Impact, "Arial Black", var(--font-body);
    font-size: 9.5rem;
    font-weight: 900;
    line-height: 0.86;
    text-transform: uppercase;
    text-shadow:
        0 8px 38px rgba(0, 0, 0, 0.62),
        0 0 34px rgba(122, 18, 26, 0.32);
}

.hero-sanctum::before {
    content: "";
    position: absolute;
    inset: 1.1rem;
    border: 1px solid rgba(230, 214, 188, 0.04);
    border-radius: calc(var(--radius) - 8px);
    box-shadow:
        inset 0 0 0 1px rgba(138, 24, 32, 0.03),
        inset 0 0 90px rgba(138, 24, 32, 0.03);
    pointer-events: none;
}

.hero-sanctum::after {
    content: "";
    position: absolute;
    inset: 1px;
    pointer-events: none;
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, transparent 0 11%, rgba(180, 147, 91, 0.08) 11% 11.15%, transparent 11.15% 88.85%, rgba(180, 147, 91, 0.08) 88.85% 89%, transparent 89%),
        repeating-linear-gradient(0deg, transparent 0 56px, rgba(230, 214, 188, 0.024) 56px 57px);
    opacity: 0.75;
}

.hero-sanctum__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.64fr);
    gap: 2.75rem;
    align-items: stretch;
    padding: 1.1rem;
    background:
        radial-gradient(ellipse at 82% 28%, rgba(130, 27, 36, 0.2), transparent 36%),
        radial-gradient(ellipse at 10% 10%, rgba(180, 147, 91, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(15, 10, 9, 0.98), rgba(8, 5, 4, 0.98));
}

.hero-sanctum--cover .hero-sanctum__layout {
    display: block;
    min-height: 34rem;
    padding: 0;
    background: transparent;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 27rem;
    min-width: 0;
    padding: 3rem 2rem 2rem;
}

.hero-copy h1 {
    margin-top: 1.1rem;
    font-size: 5.35rem;
    line-height: 0.82;
    text-transform: uppercase;
    overflow-wrap: normal;
    white-space: nowrap;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.hero-copy__text {
    max-width: 34rem;
    margin-top: 1.35rem;
    color: var(--text-soft);
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero-cover__content .hero-copy__text {
    max-width: 47rem;
    margin-inline: auto;
    margin-top: 1.55rem;
    color: rgba(238, 232, 229, 0.86);
    font-size: 1.34rem;
    line-height: 1.45;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

.hero-cover__content .section-kicker {
    justify-content: center;
}

.hero-main-cta {
    min-width: 15rem;
    min-height: 4.15rem;
    margin-top: 2.15rem;
    border-radius: 999px;
    color: #130605;
    border-color: rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 48%),
        #eadfc6;
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.48),
        0 0 44px rgba(122, 18, 26, 0.34);
}

.hero-main-cta:hover {
    box-shadow:
        0 24px 68px rgba(0, 0, 0, 0.58),
        0 0 58px rgba(122, 18, 26, 0.42);
}

.hero-status-bar {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(120px, auto) minmax(0, 1fr) auto;
    gap: 1.4rem;
    align-items: center;
    min-height: 5.7rem;
    padding: 1rem clamp(1.1rem, 4vw, 4rem);
    color: #fff8f2;
    background:
        linear-gradient(135deg, rgba(132, 20, 30, 0.98), rgba(62, 8, 13, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 -24px 70px rgba(0, 0, 0, 0.48);
}

.hero-status-bar__mark {
    display: grid;
    gap: 0.1rem;
    text-transform: uppercase;
}

.hero-status-bar__mark strong {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 0.9;
}

.hero-status-bar__mark span,
.hero-status-bar__copy span {
    color: rgba(255, 248, 242, 0.72);
    font-size: 0.78rem;
}

.hero-status-bar__copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.hero-status-bar__copy strong {
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.1;
}

.hero-status-bar__button {
    min-width: 12rem;
    color: #f9eee8;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 45%),
        rgba(3, 2, 2, 0.9);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.45rem;
}

.hero-facts span {
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(180, 147, 91, 0.18);
    border-radius: var(--radius-sm);
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.024);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero-visual {
    display: grid;
    gap: 1rem;
    align-content: stretch;
    padding: 1rem 1rem 1rem 0;
}

.hero-window,
.page-window {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(180, 147, 91, 0.16);
    border-radius: var(--radius);
    background:
        radial-gradient(ellipse at 50% 36%, rgba(130, 27, 36, 0.2), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
        rgba(12, 9, 8, 0.86);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.028), var(--shadow-md);
}

.hero-window {
    min-height: 27rem;
}

.page-window {
    min-height: 21rem;
}

.hero-window::before,
.page-window::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(230, 214, 188, 0.06);
    border-radius: var(--radius-sm);
    pointer-events: none;
}

.hero-window::after,
.page-window::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 147, 91, 0.42), transparent);
}

.seal-field {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.seal-field span {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid rgba(180, 147, 91, 0.1);
    border-radius: 50%;
}

.seal-field span:nth-child(2) {
    width: 56%;
    transform: rotate(45deg);
    border-radius: var(--radius);
}

.seal-field span:nth-child(3) {
    width: 40%;
    border-color: rgba(130, 27, 36, 0.22);
}

.relic-seal {
    position: relative;
    z-index: 1;
    width: min(100%, 290px);
    height: auto;
    filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.48));
}

.relic-seal--page {
    width: min(100%, 250px);
}

.relic-seal--offer {
    width: min(100%, 158px);
}

.hero-visual__note {
    max-width: 22rem;
    margin-left: auto;
    color: var(--text-dim);
    font-size: 0.9rem;
    text-align: right;
}

.hero-ledger {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(210px, auto) minmax(0, 0.9fr);
    gap: 1px;
    border-top: 1px solid rgba(230, 214, 188, 0.07);
    background: rgba(230, 214, 188, 0.08);
}

.hero-ledger > * {
    min-width: 0;
    padding: 1.25rem 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 48%),
        rgba(10, 7, 6, 0.94);
}

.hero-ledger__ip,
.hero-ledger__offer {
    display: grid;
    gap: 0.32rem;
    align-content: center;
}

.hero-ledger__ip strong,
.hero-ledger__offer strong,
.footer-ip-block strong,
.stone-note strong,
.price-monolith strong,
.receipt-item strong {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    font-family: var(--font-display);
    line-height: 1;
}

.hero-ledger__ip strong {
    font-size: 2.35rem;
}

.hero-ledger__offer strong {
    font-size: 2.15rem;
}

.hero-ledger__ip span:last-child,
.hero-ledger__offer span:last-child {
    color: var(--text-soft);
}

.hero-ledger__action {
    display: grid;
    gap: 0.45rem;
    align-content: center;
}

.copy-feedback {
    min-height: 1.1rem;
    color: var(--brass);
    font-size: 0.86rem;
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.72fr);
    gap: 2rem;
    align-items: end;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
}

.section-split h2,
.section-head h2 {
    margin-top: 0.95rem;
    max-width: 16ch;
    font-size: 4rem;
}

.section-split p {
    color: var(--text-soft);
}

.pillar-field {
    border-bottom: 1px solid var(--line);
}

.pillar-row {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 1.35rem;
    padding: 1.75rem 0;
    border-top: 1px solid var(--line);
}

.pillar-row__index {
    color: rgba(180, 147, 91, 0.72);
    font-family: var(--font-display);
    font-size: 2.55rem;
    line-height: 1;
}

.pillar-row__copy {
    display: grid;
    gap: 0.55rem;
}

.pillar-row__copy h3 {
    font-size: 2.35rem;
}

.pillar-row__copy p {
    max-width: 42rem;
    color: var(--text-soft);
}

.season-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(230, 214, 188, 0.08);
    box-shadow: var(--shadow-md);
}

.season-panel__copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 360px;
    padding: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 44%),
        rgba(12, 9, 8, 0.92);
}

.season-panel__copy--accent {
    background:
        radial-gradient(ellipse at 90% 10%, rgba(130, 27, 36, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 48%),
        rgba(17, 12, 10, 0.96);
}

.season-panel h2,
.stone-slab h2,
.strip-link h2,
.page-altar__copy h1,
.pathway-step__body h2,
.reliquary h2,
.contact-band h2 {
    font-size: 2.65rem;
}

.ritual-list,
.support-list,
.edict-list,
.stone-list {
    list-style: none;
    padding: 0;
}

.ritual-list {
    display: grid;
    gap: 0.85rem;
    counter-reset: ritual;
}

.ritual-list li {
    position: relative;
    padding-left: 2.1rem;
    color: var(--text-soft);
}

.ritual-list li::before {
    content: counter(ritual, decimal-leading-zero);
    counter-increment: ritual;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brass);
    font-size: 0.8rem;
}

.support-list,
.edict-list {
    display: grid;
    gap: 0.95rem;
}

.support-list li,
.edict-list li {
    padding-top: 0.95rem;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
}

.minimal-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(ellipse at 90% 10%, rgba(130, 27, 36, 0.14), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%),
        rgba(13, 10, 9, 0.9);
    box-shadow: var(--shadow-md);
}

.minimal-cta h2 {
    margin-top: 0.75rem;
    font-size: 2.35rem;
}

.minimal-cta p {
    color: var(--text-soft);
}

.stone-slab,
.stone-note,
.reliquary {
    position: relative;
    padding: 1.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 46%),
        radial-gradient(ellipse at 100% 0%, rgba(180, 147, 91, 0.08), transparent 32%),
        var(--surface-0);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.stone-slab::before,
.stone-note::before,
.reliquary::before,
.price-monolith::before,
.contact-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(135deg, transparent 0 28px, rgba(230, 214, 188, 0.02) 28px 29px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%);
}

.page-subscription .price-monolith::before,
.page-subscription .reliquary::before,
.page-contacts .stone-note::before,
.page-contacts .contact-tile::before {
    content: none;
}

.stone-slab > *,
.stone-note > *,
.reliquary > *,
.price-monolith > *,
.contact-tile > * {
    position: relative;
    z-index: 1;
}

.stone-slab {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stone-slab__lead,
.reliquary__note,
.field-help {
    color: var(--text-soft);
}

.contact-band {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line-strong);
}

.contact-band h2 {
    margin-top: 0.9rem;
    max-width: 18ch;
}

.contact-band__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.8rem 1.2rem;
}

.contact-band__links a:not(.text-link) {
    color: var(--text-soft);
    transition: color var(--transition);
}

.contact-band__links a:not(.text-link):hover {
    color: var(--text);
}

.page-altar {
    padding-top: 5.4rem;
}

.page-subscription .page-altar,
.page-contacts .page-altar,
.page-documents .page-altar {
    padding-top: clamp(4.8rem, 7vw, 6.8rem);
}

.page-subscription .narrow {
    width: min(1080px, calc(100% - 2rem));
}

.page-altar__frame {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
    gap: 1.4rem;
    align-items: stretch;
    padding: 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(ellipse at 82% 18%, rgba(130, 27, 36, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 44%),
        rgba(10, 7, 6, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.page-altar__frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(230, 214, 188, 0.04);
    border-radius: var(--radius-sm);
    pointer-events: none;
}

.page-altar__frame--contacts {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
    gap: 1rem;
    padding: 1rem;
    border-color: rgba(242, 231, 228, 0.12);
    border-radius: 32px;
    background:
        radial-gradient(ellipse at 18% 0%, rgba(242, 231, 228, 0.055), transparent 34%),
        radial-gradient(ellipse at 88% 8%, rgba(122, 18, 26, 0.12), transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.036), transparent 50%),
        rgba(5, 4, 4, 0.42);
    -webkit-backdrop-filter: blur(26px) saturate(1.08);
    backdrop-filter: blur(26px) saturate(1.08);
    box-shadow:
        0 38px 130px rgba(0, 0, 0, 0.66),
        inset 0 1px 0 rgba(255, 255, 255, 0.052);
}

.page-altar__frame--contacts .contact-grid {
    grid-column: 1 / -1;
    position: relative;
    z-index: 1;
}

.page-contacts .page-altar__copy {
    min-height: 16.5rem;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border: 1px solid rgba(242, 231, 228, 0.08);
    border-radius: 24px;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(242, 231, 228, 0.045), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 56%),
        rgba(8, 7, 7, 0.34);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.18),
        0 18px 54px rgba(0, 0, 0, 0.24);
}

.page-contacts .page-altar__copy h1 {
    max-width: 16ch;
    font-size: clamp(2.45rem, 4.2vw, 3.45rem);
    line-height: 0.94;
}

.page-contacts .page-altar__copy p {
    max-width: 34rem;
    font-size: 1rem;
}

.contacts-layout {
    display: grid;
    gap: clamp(1.6rem, 3vw, 2.4rem);
    padding-bottom: 4.2rem;
}

.contacts-hero {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.contacts-hero .section-kicker {
    justify-content: center;
}

.contacts-hero h1 {
    max-width: 15ch;
    color: #fff8f4;
    font-family: var(--font-body);
    font-size: clamp(2.6rem, 5.2vw, 5rem);
    font-weight: 800;
    line-height: 0.94;
    text-shadow:
        0 18px 54px rgba(0, 0, 0, 0.72),
        0 0 34px rgba(122, 18, 26, 0.24);
}

.contacts-hero p {
    max-width: 43rem;
    color: rgba(242, 231, 228, 0.76);
    font-size: 1.02rem;
    line-height: 1.55;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.68);
}

.contacts-board {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: 0.82rem;
    border: 1px solid rgba(242, 231, 228, 0.11);
    border-radius: 30px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(242, 231, 228, 0.04), transparent 44%),
        rgba(5, 4, 4, 0.34);
    box-shadow:
        0 38px 130px rgba(0, 0, 0, 0.66),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(26px) saturate(1.08);
    backdrop-filter: blur(26px) saturate(1.08);
}

.contact-card {
    --social: #d8c6b8;
    --social-glow: rgba(122, 18, 26, 0.18);
    position: relative;
    display: grid;
    align-content: end;
    gap: 0.48rem;
    min-height: 10rem;
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(242, 231, 228, 0.08);
    border-radius: 22px;
    color: var(--text);
    background:
        radial-gradient(ellipse at 100% 0%, var(--social-glow), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 52%),
        rgba(8, 7, 7, 0.3);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.016),
        0 14px 42px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

a.contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(213, 201, 196, 0.24);
    background:
        radial-gradient(ellipse at 100% 0%, var(--social-glow), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 52%),
        rgba(8, 7, 7, 0.42);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.022),
        0 22px 64px rgba(0, 0, 0, 0.34);
}

.contact-card__icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(242, 231, 228, 0.12);
    border-radius: 999px;
    color: #fff7f1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 58%),
        var(--social);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 0 22px var(--social-glow);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.contact-card__icon svg {
    display: block;
    width: 1.08rem;
    height: 1.08rem;
    fill: currentColor;
}

.contact-card__icon--discord svg {
    transform: translateX(-0.075rem);
}

.contact-card--vk {
    --social: #4d6f96;
    --social-glow: rgba(77, 111, 150, 0.2);
}

.contact-card--telegram {
    --social: #2b89b8;
    --social-glow: rgba(43, 137, 184, 0.2);
}

.contact-card--youtube {
    --social: #9f1c28;
    --social-glow: rgba(159, 28, 40, 0.24);
}

.contact-card--discord {
    --social: #636d9f;
    --social-glow: rgba(99, 109, 159, 0.2);
}

.contact-card--tiktok {
    --social: #151112;
    --social-glow: rgba(242, 231, 228, 0.15);
}

.contact-card strong {
    min-width: 0;
    overflow-wrap: anywhere;
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 760;
    line-height: 1.05;
}

.contact-card > span:not(.caption):not(.contact-card__icon):not(.copy-feedback) {
    color: rgba(242, 231, 228, 0.58);
    font-size: 0.82rem;
}

.contact-card .caption {
    color: rgba(242, 231, 228, 0.48);
}

.contact-card.is-disabled {
    color: rgba(240, 229, 211, 0.56);
}

.page-altar__copy {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 1rem;
    min-height: 24rem;
    padding: 2.4rem 2rem;
}

.page-altar__copy h1 {
    max-width: 13ch;
    font-size: 4.55rem;
}

.page-altar__copy p {
    max-width: 40rem;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.page-altar__seal {
    position: relative;
    z-index: 1;
    display: grid;
}

.guide-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.5rem;
    align-items: start;
}

.pathway {
    position: relative;
    padding-left: 1.7rem;
}

.pathway::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    bottom: 0.7rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(180, 147, 91, 0.5), rgba(230, 214, 188, 0.05));
}

.pathway-step {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1.3rem;
    padding: 1.6rem 0;
    border-top: 1px solid var(--line);
}

.pathway-step:first-child {
    border-top: 0;
}

.pathway-step__index {
    color: rgba(180, 147, 91, 0.82);
    font-family: var(--font-display);
    font-size: 2.45rem;
    line-height: 1;
}

.pathway-step__body {
    display: grid;
    gap: 0.6rem;
}

.pathway-step__body p {
    max-width: 42rem;
    color: var(--text-soft);
}

.guide-sidebar {
    position: sticky;
    top: 6.4rem;
    display: grid;
    gap: 1rem;
}

.stone-note {
    display: grid;
    gap: 0.85rem;
}

.stone-note--ip {
    border-color: rgba(180, 147, 91, 0.22);
}

.stone-note strong {
    font-size: 1.75rem;
}

.stone-note p {
    color: var(--text-soft);
}

.stone-list {
    display: grid;
    gap: 0.78rem;
}

.stone-list li {
    position: relative;
    padding-left: 1.05rem;
    color: var(--text-soft);
}

.stone-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.33rem;
    height: 0.33rem;
    background: var(--brass);
    transform: rotate(45deg);
}

.page-altar__frame--offer {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.premium-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(242, 231, 228, 0.12);
    border-radius: 34px;
    background:
        radial-gradient(ellipse at 22% 0%, rgba(242, 231, 228, 0.05), transparent 34%),
        radial-gradient(ellipse at 78% 0%, rgba(122, 18, 26, 0.13), transparent 42%),
        rgba(5, 4, 4, 0.38);
    box-shadow:
        0 40px 140px rgba(0, 0, 0, 0.68),
        inset 0 1px 0 rgba(255, 255, 255, 0.052);
    -webkit-backdrop-filter: blur(26px) saturate(1.08);
    backdrop-filter: blur(26px) saturate(1.08);
    overflow: hidden;
}

.price-monolith {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 0.82rem;
    padding: 1.65rem;
    border: 1px solid rgba(180, 147, 91, 0.22);
    border-radius: var(--radius);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(130, 27, 36, 0.2), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 44%),
        rgba(16, 12, 10, 0.96);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.price-monolith__seal {
    display: flex;
    justify-content: center;
    padding-bottom: 0.3rem;
}

.price-monolith--premium {
    border: 1px solid rgba(242, 231, 228, 0.08);
    border-radius: 26px;
    min-height: 380px;
    padding: clamp(1.45rem, 3vw, 2.2rem);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(130, 27, 36, 0.14), transparent 44%),
        radial-gradient(ellipse at 0% 100%, rgba(180, 147, 91, 0.05), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 50%),
        rgba(8, 7, 7, 0.3);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.2),
        0 18px 56px rgba(0, 0, 0, 0.26);
}

.price-monolith--premium .price-monolith__seal {
    justify-content: flex-start;
}

.premium-logo {
    width: min(100%, 190px);
    height: auto;
    filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.48)) drop-shadow(0 0 26px rgba(122, 18, 26, 0.2));
}

.price-monolith strong {
    font-size: 3.75rem;
}

.price-monolith__price {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.38rem 0.62rem;
}

.price-monolith__price del {
    color: rgba(230, 214, 188, 0.5);
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    font-weight: 740;
    line-height: 1;
    text-decoration-color: rgba(231, 72, 75, 0.9);
    text-decoration-thickness: 2px;
}

.price-monolith__price small {
    display: inline-flex;
    align-items: center;
    min-height: 1.4rem;
    padding: 0.22rem 0.48rem;
    border: 1px solid rgba(227, 62, 64, 0.34);
    border-radius: 999px;
    color: #ffc0b7;
    background: rgba(95, 12, 18, 0.54);
    font-size: 0.72rem;
    font-weight: 780;
    line-height: 1;
}

.price-monolith p,
.price-monolith span:last-child {
    color: var(--text-soft);
}

.offer-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 1.5rem;
    align-items: start;
}

.stone-slab--offer {
    min-height: 100%;
}

.reliquary {
    display: grid;
    gap: 1rem;
}

.reliquary--premium {
    border: 1px solid rgba(242, 231, 228, 0.08);
    border-radius: 26px;
    align-content: center;
    padding: clamp(1.45rem, 3vw, 2.35rem);
    background:
        radial-gradient(ellipse at 100% 0%, rgba(180, 147, 91, 0.055), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 50%),
        rgba(8, 7, 7, 0.32);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.2),
        0 18px 56px rgba(0, 0, 0, 0.24);
}

.purchase-form {
    display: grid;
    gap: 1.1rem;
    margin-top: 0.4rem;
}

.form-field {
    display: grid;
    gap: 0.55rem;
}

.form-field label {
    color: var(--text);
}

.form-label {
    color: var(--text);
}

.form-field input {
    width: 100%;
    min-height: 3.35rem;
    padding: 0.88rem 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 48%),
        rgba(0, 0, 0, 0.24);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field input:focus {
    border-color: rgba(180, 147, 91, 0.48);
    box-shadow: 0 0 0 4px rgba(180, 147, 91, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.052), transparent 46%),
        rgba(255, 255, 255, 0.034);
}

.form-field textarea {
    width: 100%;
    min-height: 8.5rem;
    resize: vertical;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 48%),
        rgba(0, 0, 0, 0.24);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field textarea:focus {
    border-color: rgba(180, 147, 91, 0.48);
    box-shadow: 0 0 0 4px rgba(180, 147, 91, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.052), transparent 46%),
        rgba(255, 255, 255, 0.034);
}

.form-field select {
    width: 100%;
    min-height: 3.35rem;
    padding: 0.88rem 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 48%),
        rgba(0, 0, 0, 0.42);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-field select:focus {
    border-color: rgba(180, 147, 91, 0.48);
    box-shadow: 0 0 0 4px rgba(180, 147, 91, 0.08);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.54;
    transform: none;
    box-shadow: none;
}

.package-picker {
    display: grid;
    gap: 0.55rem;
}

.package-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.package-option input {
    position: absolute;
    inset: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.package-option__box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    min-height: 3.45rem;
    padding: 0.78rem 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(230, 214, 188, 0.13);
    border-radius: 8px;
    color: var(--text-soft);
    background:
        radial-gradient(ellipse at 0% 50%, rgba(130, 27, 36, 0.12), transparent 64%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 50%),
        rgba(4, 3, 3, 0.44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        inset 0 -1px 0 rgba(0, 0, 0, 0.42);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
}

.package-option__box::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(180, 147, 91, 0.18), transparent 16%, transparent 84%, rgba(180, 147, 91, 0.14)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%);
    opacity: 0.3;
}

.package-option__box > * {
    position: relative;
    z-index: 1;
}

.package-option:hover .package-option__box,
.package-option input:focus-visible + .package-option__box {
    border-color: rgba(180, 147, 91, 0.44);
    color: var(--text);
    background:
        radial-gradient(ellipse at 0% 50%, rgba(130, 27, 36, 0.18), transparent 64%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 46%),
        rgba(255, 255, 255, 0.035);
}

.package-option input:checked + .package-option__box {
    border-color: rgba(213, 190, 154, 0.72);
    color: #fff7f1;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(130, 27, 36, 0.36), transparent 62%),
        radial-gradient(ellipse at 100% 0%, rgba(180, 147, 91, 0.1), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), transparent 46%),
        rgba(24, 12, 12, 0.82);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.038),
        inset 0 0 22px rgba(180, 147, 91, 0.06),
        0 14px 38px rgba(0, 0, 0, 0.32),
        0 0 26px rgba(130, 27, 36, 0.18);
}

.package-option__copy {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.package-option__title {
    min-width: 0;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.2;
    text-overflow: ellipsis;
}

.package-option__discount {
    width: fit-content;
    padding: 0.18rem 0.46rem;
    border: 1px solid rgba(213, 190, 154, 0.34);
    border-radius: 999px;
    color: #ffe8c8;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 52%),
        linear-gradient(135deg, rgba(130, 27, 36, 0.76), rgba(76, 12, 17, 0.76));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
    font-size: 0.72rem;
    line-height: 1;
}

.package-option__price {
    display: grid;
    justify-items: end;
    gap: 0.18rem;
    flex: 0 0 auto;
    min-width: max-content;
}

.package-option__price del {
    color: rgba(230, 214, 188, 0.48);
    font-size: 0.8rem;
    font-weight: 720;
    line-height: 1;
    text-decoration-color: rgba(231, 72, 75, 0.9);
    text-decoration-thickness: 2px;
}

.package-option__price strong {
    flex: 0 0 auto;
    color: var(--text);
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
}

.shop-page {
    display: grid;
    align-content: center;
    gap: clamp(1rem, 3vh, 1.7rem);
    min-height: 100vh;
    padding-top: clamp(7.8rem, 14vh, 9.4rem);
    padding-bottom: clamp(3rem, 8vh, 5rem);
}

.shop-head {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    text-align: center;
}

.shop-head p {
    max-width: 33rem;
    color: rgba(238, 232, 229, 0.78);
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

.shop-head .section-kicker {
    justify-content: center;
}

.shop-checkout-lock {
    justify-self: center;
    width: min(100%, 32rem);
    padding: 0.82rem 1rem;
    border: 1px solid rgba(230, 214, 188, 0.14);
    border-radius: 8px;
    color: rgba(240, 221, 210, 0.86);
    background:
        radial-gradient(ellipse at 0% 50%, rgba(130, 27, 36, 0.16), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 48%),
        rgba(7, 5, 5, 0.76);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 16px 44px rgba(0, 0, 0, 0.28);
    font-size: 0.9rem;
    line-height: 1.42;
    text-align: center;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 26rem));
    justify-content: center;
    gap: clamp(1rem, 2.4vw, 1.45rem);
}

.shop-card {
    position: relative;
    display: grid;
    min-height: 28rem;
    overflow: hidden;
    border: 1px solid rgba(230, 214, 188, 0.16);
    border-radius: 8px;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(130, 27, 36, 0.32), transparent 44%),
        radial-gradient(ellipse at 0% 0%, rgba(230, 214, 188, 0.06), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), transparent 34%),
        rgba(8, 6, 6, 0.78);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.026),
        inset 0 -36px 90px rgba(130, 27, 36, 0.12),
        0 30px 100px rgba(0, 0, 0, 0.54),
        0 0 42px rgba(130, 27, 36, 0.1);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.shop-card::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 1px;
    z-index: 2;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(230, 214, 188, 0.62), transparent);
    opacity: 0.72;
}

.shop-card::after {
    content: "";
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: -1.8rem;
    height: 5.2rem;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(168, 24, 35, 0.4), transparent 66%);
    filter: blur(14px);
}

.shop-card:hover {
    border-color: rgba(213, 201, 196, 0.24);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.038),
        inset 0 -42px 100px rgba(130, 27, 36, 0.16),
        0 36px 120px rgba(0, 0, 0, 0.62),
        0 0 54px rgba(122, 18, 26, 0.18);
    transform: translateY(-3px);
}

.shop-card__media {
    position: relative;
    height: 11.5rem;
    overflow: hidden;
    background: #060303;
    border-bottom: 1px solid rgba(230, 214, 188, 0.08);
}

.shop-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 40%, transparent 0 22%, rgba(0, 0, 0, 0.22) 62%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(10, 7, 7, 0.86) 92%);
}

.shop-card__media > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.04) contrast(1.05);
    transform: scale(1.015);
}

.shop-card--premium .shop-card__media > img:first-child {
    object-position: center 44%;
}

.shop-card--dust .shop-card__media > img:first-child {
    object-position: center 54%;
    filter: saturate(0.98) brightness(0.88) contrast(1.06);
}

.shop-card__body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    min-width: 0;
    padding: 0.86rem 1.05rem 1.05rem;
}

.shop-card h2 {
    margin-top: 0.34rem;
    color: #fff7f1;
    font-family: var(--font-body);
    font-size: clamp(1.42rem, 2.3vw, 1.88rem);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: none;
    text-shadow:
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 0 22px rgba(122, 18, 26, 0.18);
}

.shop-card p {
    max-width: 24rem;
    margin-top: 0.7rem;
    color: rgba(226, 211, 207, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.shop-card .premium-term-note,
.premium-term-note {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin-top: 0.62rem;
    padding: 0.42rem 0.55rem;
    border: 1px solid rgba(227, 62, 64, 0.34);
    border-radius: 6px;
    color: #ffb5aa;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 55%),
        rgba(88, 10, 15, 0.42);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.018),
        0 10px 28px rgba(88, 10, 15, 0.18);
    font-size: 0.78rem;
    font-weight: 720;
    line-height: 1.32;
}

.shop-card__split-text {
    display: grid;
    gap: 0.12rem;
}

.shop-card__footer {
    display: grid;
    gap: 0.78rem;
    min-width: 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(230, 214, 188, 0.09);
}

.shop-card__price {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
}

.shop-card__price-label {
    color: rgba(230, 214, 188, 0.58);
    font-size: 0.72rem;
    line-height: 1;
    text-transform: uppercase;
}

.shop-card__price-values {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.34rem 0.48rem;
    min-width: 0;
    text-align: right;
}

.shop-card__price-values del {
    color: rgba(230, 214, 188, 0.52);
    font-size: clamp(1.02rem, 1.8vw, 1.28rem);
    font-weight: 740;
    line-height: 1;
    text-decoration-color: rgba(231, 72, 75, 0.86);
    text-decoration-thickness: 2px;
}

.shop-card__price-values small {
    display: inline-flex;
    align-items: center;
    min-height: 1.26rem;
    padding: 0.18rem 0.42rem;
    border: 1px solid rgba(227, 62, 64, 0.34);
    border-radius: 999px;
    color: #ffc0b7;
    background: rgba(95, 12, 18, 0.54);
    font-size: 0.68rem;
    font-weight: 780;
    line-height: 1;
}

.shop-card__price-values strong,
.shop-card__footer > strong {
    color: #fff7f1;
    font-size: clamp(1.9rem, 3.2vw, 2.65rem);
    font-weight: 780;
    line-height: 1;
    white-space: nowrap;
    text-shadow:
        0 10px 30px rgba(0, 0, 0, 0.54),
        0 0 22px rgba(130, 27, 36, 0.18);
}

.shop-card__footer .button {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.78rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 48%),
        linear-gradient(135deg, rgba(138, 24, 34, 0.98), rgba(42, 8, 12, 0.98));
    box-shadow:
        0 16px 42px rgba(59, 11, 16, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.shop-modal[hidden] {
    display: none;
}

.shop-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100dvh;
    padding: 1rem;
    overflow: hidden;
}

.shop-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(190, 38, 48, 0.18), transparent 34%),
        radial-gradient(ellipse at 15% 12%, rgba(230, 214, 188, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(3, 2, 2, 0.72), rgba(0, 0, 0, 0.86)),
        rgba(0, 0, 0, 0.78);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    backdrop-filter: blur(18px) saturate(1.08);
}

.shop-modal__panel {
    position: relative;
    isolation: isolate;
    z-index: 1;
    display: grid;
    gap: 0.9rem;
    width: min(100%, 32.5rem);
    max-height: calc(100dvh - 2rem);
    padding: clamp(1rem, 2.8vw, 1.18rem);
    overflow: auto;
    border: 1px solid rgba(230, 214, 188, 0.18);
    border-radius: 8px;
    background:
        radial-gradient(ellipse at 72% 0%, rgba(230, 214, 188, 0.12), transparent 26%),
        radial-gradient(ellipse at 18% 0%, rgba(168, 24, 35, 0.28), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 38%),
        rgba(7, 6, 7, 0.86);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.55),
        inset 0 0 74px rgba(180, 147, 91, 0.028),
        0 46px 150px rgba(0, 0, 0, 0.76),
        0 0 72px rgba(130, 27, 36, 0.18);
    -webkit-backdrop-filter: blur(26px) saturate(1.1);
    backdrop-filter: blur(26px) saturate(1.1);
}

.shop-modal__panel::before {
    content: "";
    position: absolute;
    inset: 0.48rem;
    z-index: -1;
    pointer-events: none;
    border: 1px solid rgba(230, 214, 188, 0.07);
    border-radius: 6px;
    box-shadow:
        inset 0 0 0 1px rgba(130, 27, 36, 0.08),
        inset 0 0 74px rgba(0, 0, 0, 0.28);
}

.shop-modal__panel::after {
    content: "";
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    top: 0;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(213, 190, 154, 0.72), transparent);
    box-shadow: 0 0 22px rgba(180, 147, 91, 0.24);
}

.shop-modal__head {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 0.34rem;
    padding: 0.55rem 2.2rem 0.82rem;
    text-align: center;
}

.shop-modal__head::after {
    content: "";
    width: min(100%, 17rem);
    height: 1px;
    margin-top: 0.35rem;
    background: linear-gradient(90deg, transparent, rgba(213, 190, 154, 0.56), transparent);
}

.shop-modal__steps {
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    margin-bottom: 0.55rem;
}

.shop-modal__steps span {
    width: 1.35rem;
    height: 0.18rem;
    border-radius: 999px;
    background: rgba(230, 214, 188, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.shop-modal__steps .is-active {
    width: 1.9rem;
    background: #f0ddd2;
    box-shadow:
        0 0 18px rgba(230, 214, 188, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.shop-modal__crest {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    margin-bottom: 0.15rem;
    border: 1px solid rgba(230, 214, 188, 0.18);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(130, 27, 36, 0.32), transparent 64%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 54%),
        rgba(4, 3, 3, 0.64);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        0 14px 38px rgba(0, 0, 0, 0.38),
        0 0 34px rgba(130, 27, 36, 0.18);
}

.shop-modal__crest img {
    width: 2.22rem;
    height: 2.22rem;
    object-fit: contain;
    filter:
        drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42))
        drop-shadow(0 0 18px rgba(130, 27, 36, 0.2));
}

.shop-modal__panel h2 {
    color: #fff7f1;
    font-family: var(--font-body);
    font-size: clamp(1.65rem, 4.2vw, 2.25rem);
    font-weight: 850;
    line-height: 1.02;
    text-shadow:
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 26px rgba(130, 27, 36, 0.22);
}

.shop-modal__head p {
    max-width: 20rem;
    color: rgba(226, 211, 207, 0.64);
    font-size: 0.9rem;
    line-height: 1.32;
}

.shop-modal__price {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.38rem 0.55rem;
}

.shop-modal__price del {
    color: rgba(230, 214, 188, 0.5);
    font-size: clamp(1.02rem, 2.6vw, 1.3rem);
    font-weight: 740;
    line-height: 1;
    text-decoration-color: rgba(231, 72, 75, 0.9);
    text-decoration-thickness: 2px;
}

.shop-modal__price strong {
    color: #fff7f1;
    font-size: clamp(1.75rem, 4.2vw, 2.35rem);
    font-weight: 850;
    line-height: 1;
    text-shadow:
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 26px rgba(130, 27, 36, 0.22);
}

.shop-modal__price small {
    display: inline-flex;
    align-items: center;
    min-height: 1.35rem;
    padding: 0.22rem 0.48rem;
    border: 1px solid rgba(227, 62, 64, 0.34);
    border-radius: 999px;
    color: #ffc0b7;
    background: rgba(95, 12, 18, 0.54);
    font-size: 0.72rem;
    font-weight: 780;
    line-height: 1;
}

.premium-term-note--modal {
    justify-content: center;
    margin-top: 0.25rem;
}

.shop-modal__close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(230, 214, 188, 0.18);
    border-radius: 999px;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 48%),
        rgba(0, 0, 0, 0.34);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
}

.shop-modal .form-field input {
    border-radius: 8px;
    border-color: rgba(230, 214, 188, 0.16);
    background:
        radial-gradient(ellipse at 0% 50%, rgba(130, 27, 36, 0.09), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.046), transparent 48%),
        rgba(0, 0, 0, 0.46);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        inset 0 -1px 0 rgba(0, 0, 0, 0.38),
        0 10px 28px rgba(0, 0, 0, 0.16);
}

.shop-modal .form-field label,
.shop-modal .form-label {
    color: rgba(230, 214, 188, 0.82);
    font-size: 0.78rem;
    line-height: 1;
    text-transform: uppercase;
}

.shop-modal .button-wide {
    min-height: 3.35rem;
    border-radius: 8px;
    border-color: rgba(230, 214, 188, 0.24);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 48%),
        linear-gradient(135deg, rgba(150, 24, 36, 0.98), rgba(50, 8, 13, 0.98));
    box-shadow:
        0 18px 54px rgba(59, 11, 16, 0.46),
        0 0 38px rgba(150, 24, 36, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.purchase-agreement {
    margin-top: -0.16rem;
    color: rgba(226, 211, 207, 0.52);
    font-size: 0.74rem;
    line-height: 1.35;
    text-align: center;
}

.purchase-agreement a {
    color: rgba(240, 221, 210, 0.9);
    border-bottom: 1px solid rgba(230, 214, 188, 0.28);
    transition: color var(--transition), border-color var(--transition);
}

.purchase-agreement a:hover {
    color: #fff7f1;
    border-color: rgba(230, 214, 188, 0.66);
}

body.has-open-modal {
    overflow: hidden;
}

body.has-open-modal .site-header,
body.has-open-modal .site-footer {
    visibility: hidden;
}

body.has-open-modal .site-shell {
    pointer-events: none;
}

.form-field.has-error input {
    border-color: rgba(240, 110, 92, 0.72);
    box-shadow:
        0 0 0 4px rgba(130, 27, 36, 0.16),
        0 14px 34px rgba(0, 0, 0, 0.24);
}

.form-errors,
.field-error {
    display: grid;
    gap: 0.4rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid rgba(240, 110, 92, 0.34);
    border-radius: 16px;
    color: #f0b9aa;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(130, 27, 36, 0.22), transparent 42%),
        rgba(14, 7, 7, 0.72);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.018),
        0 14px 34px rgba(0, 0, 0, 0.24);
    font-size: 0.9rem;
    line-height: 1.35;
}

.field-error--client {
    animation: error-pop 180ms ease;
}

.page-feedback .narrow {
    width: min(980px, calc(100% - 2rem));
}

.feedback-layout {
    display: grid;
    gap: 1.25rem;
    padding-bottom: 4.5rem;
}

.feedback-hero {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    text-align: center;
}

.feedback-hero .section-kicker {
    justify-content: center;
}

.feedback-hero h1,
.feedback-result h1 {
    max-width: 16ch;
    color: #fff8f4;
    font-family: var(--font-body);
    font-size: clamp(2.35rem, 5vw, 4.4rem);
    font-weight: 820;
    line-height: 0.95;
    text-shadow: 0 20px 64px rgba(0, 0, 0, 0.72);
}

.feedback-hero p,
.feedback-result p {
    max-width: 46rem;
    color: rgba(242, 231, 228, 0.76);
    line-height: 1.6;
}

.feedback-panel {
    border-color: rgba(242, 231, 228, 0.1);
    border-radius: 28px;
    background:
        radial-gradient(ellipse at 12% 0%, rgba(180, 147, 91, 0.07), transparent 34%),
        radial-gradient(ellipse at 88% 0%, rgba(122, 18, 26, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 52%),
        rgba(7, 5, 5, 0.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.08);
    backdrop-filter: blur(24px) saturate(1.08);
}

.page-feedback .feedback-panel::before {
    content: none;
}

.feedback-form {
    gap: 1.25rem;
}

.rating-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 0.45rem;
}

.rating-pill {
    display: grid;
    cursor: pointer;
}

.rating-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rating-pill span {
    display: grid;
    place-items: center;
    min-height: 3rem;
    border: 1px solid rgba(242, 231, 228, 0.11);
    border-radius: 16px;
    color: var(--text-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 50%),
        rgba(0, 0, 0, 0.22);
    transition: border-color var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
}

.rating-pill input:checked + span {
    border-color: rgba(180, 147, 91, 0.58);
    color: #fff6ee;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(135deg, rgba(130, 27, 36, 0.92), rgba(59, 11, 16, 0.92));
    box-shadow: 0 12px 36px rgba(59, 11, 16, 0.32);
}

.feedback-socials {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(242, 231, 228, 0.08);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.18);
}

.feedback-checkbox {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text);
}

.feedback-checkbox input {
    width: 1rem;
    height: 1rem;
    accent-color: #821b24;
}

.feedback-socials__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
}

.feedback-socials__links a {
    color: var(--brass);
}

.feedback-result {
    justify-items: start;
    padding: clamp(1.5rem, 4vw, 2.4rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.contact-grid--compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0;
}

.contact-tile {
    position: relative;
    display: grid;
    gap: 0.7rem;
    min-height: 220px;
    min-width: 0;
    align-content: end;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background:
        radial-gradient(ellipse at top right, rgba(180, 147, 91, 0.12), transparent 42%),
        rgba(13, 10, 9, 0.86);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-tile--compact {
    min-height: 6.75rem;
    align-content: end;
    gap: 0.45rem;
    padding: 1rem;
    border-radius: 22px;
    border-color: rgba(242, 231, 228, 0.08);
    background:
        radial-gradient(ellipse at 100% 0%, rgba(122, 18, 26, 0.09), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 50%),
        rgba(8, 7, 7, 0.3);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.018),
        0 14px 42px rgba(0, 0, 0, 0.24);
}

a.contact-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(180, 147, 91, 0.4);
    box-shadow: var(--shadow-lg);
}

.contact-tile.is-disabled {
    color: rgba(240, 229, 211, 0.58);
}

.contact-tile__mark {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    color: rgba(240, 229, 211, 0.08);
    font-family: var(--font-display);
    font-size: 5.2rem;
    line-height: 1;
}

.contact-tile--compact .contact-tile__mark {
    top: 0.62rem;
    right: 0.78rem;
    color: rgba(213, 201, 196, 0.075);
    font-size: 3.2rem;
}

.contact-tile strong {
    min-width: 0;
    overflow-wrap: anywhere;
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
}

.contact-tile--compact strong {
    font-size: 1.28rem;
}

.contact-tile span:last-child {
    color: var(--text-soft);
}

.contact-tile--vk,
.contact-tile--telegram,
.contact-tile--discord,
.contact-tile--tiktok,
.contact-tile--youtube,
.contact-tile--mail {
    background:
        radial-gradient(ellipse at 100% 0%, rgba(122, 18, 26, 0.09), transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 50%),
        rgba(8, 7, 7, 0.3);
}

.strip-list {
    display: grid;
    gap: 1rem;
}

.strip-link {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1.35rem 1.45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    box-shadow: var(--shadow-md);
}

.strip-link__copy {
    display: grid;
    gap: 0.35rem;
}

.strip-link__copy p {
    color: var(--text-soft);
}

.strip-link__arrow {
    color: var(--brass);
    font-size: 1.25rem;
}

.stone-slab--receipt {
    gap: 1.45rem;
}

.receipt-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
}

.receipt-grid--payment {
    padding-top: 0.2rem;
}

.receipt-item {
    display: grid;
    gap: 0.38rem;
    min-width: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.receipt-item strong {
    font-size: 1.45rem;
}

.page-order .site-main {
    min-height: calc(100vh - 78px);
}

.page-order .site-main::before,
.page-order .site-main::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.page-order .site-main::before {
    z-index: -2;
    background-image: url("../img/heartfall-fon.edb7d178c73f.png");
    background-size: cover;
    background-position: center center;
    filter: saturate(0.9) brightness(0.46);
    transform: scale(1.02);
}

.page-order .site-main::after {
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 28%, rgba(88, 176, 112, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.4) 44%, rgba(0, 0, 0, 0.86));
}

.order-result {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 78px);
    padding-top: clamp(5.8rem, 10vh, 7rem);
    padding-bottom: 4rem;
}

.order-result__panel {
    display: grid;
    justify-items: center;
    gap: 1.15rem;
    width: min(100%, 34rem);
    padding: clamp(1.25rem, 3vw, 1.65rem);
    border: 1px solid rgba(230, 214, 188, 0.16);
    border-radius: 8px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(88, 176, 112, 0.12), transparent 34%),
        radial-gradient(ellipse at 0% 0%, rgba(130, 27, 36, 0.16), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.052), transparent 44%),
        rgba(8, 6, 6, 0.86);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.024),
        0 42px 130px rgba(0, 0, 0, 0.68);
    -webkit-backdrop-filter: blur(22px) saturate(1.08);
    backdrop-filter: blur(22px) saturate(1.08);
}

.order-result__status {
    display: grid;
    justify-items: center;
    gap: 0.48rem;
    text-align: center;
}

.order-result__status .section-kicker {
    justify-content: center;
}

.order-result__status h1 {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 850;
    line-height: 1;
}

.order-result__status p,
.order-receipt__note {
    color: rgba(226, 211, 207, 0.72);
    font-size: 0.95rem;
    line-height: 1.45;
}

.order-result__check {
    display: inline-grid;
    place-items: center;
    width: 4.1rem;
    height: 4.1rem;
    border: 1px solid rgba(126, 220, 146, 0.48);
    border-radius: 50%;
    color: #eaffee;
    background:
        radial-gradient(circle, rgba(88, 176, 112, 0.55), rgba(18, 74, 40, 0.82));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 18px 48px rgba(0, 0, 0, 0.4),
        0 0 42px rgba(88, 176, 112, 0.26);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.order-receipt {
    display: grid;
    gap: 0.8rem;
    width: min(100%, 28rem);
    padding: 0.95rem;
    border: 1px solid rgba(230, 214, 188, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%),
        rgba(0, 0, 0, 0.28);
}

.order-receipt__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.68rem;
    border-bottom: 1px solid rgba(230, 214, 188, 0.08);
}

.order-receipt__head strong {
    color: #fff7f1;
    font-size: 1.7rem;
    line-height: 1;
}

.order-receipt__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem 0.85rem;
}

.order-receipt__item {
    min-width: 0;
}

.order-receipt__item strong {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.18;
}

.order-receipt__note {
    padding-top: 0.7rem;
    border-top: 1px solid rgba(230, 214, 188, 0.08);
}

.order-result__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.order-result__actions .button {
    min-height: 2.8rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
}

.site-footer {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding: 1rem 0 3.4rem;
    border-top: 1px solid rgba(230, 214, 188, 0.08);
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180, 147, 91, 0.42), transparent);
}

.footer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px minmax(0, 0.9fr);
    gap: 2rem;
    padding-top: 2rem;
}

.footer-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 2rem;
}

.footer-column {
    display: grid;
    gap: 0.8rem;
    align-content: start;
}

.footer-column h2 {
    font-size: 2.25rem;
}

.footer-copy {
    max-width: 28rem;
    color: var(--text-soft);
}

.footer-ip-block {
    display: grid;
    gap: 0.35rem;
}

.footer-ip-block strong {
    font-size: 1.75rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
}

.footer-links a {
    color: var(--text-soft);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-legal {
    display: grid;
    gap: 0.42rem;
    padding-top: 1rem;
    color: rgba(226, 211, 207, 0.44);
    font-size: 0.72rem;
    line-height: 1.45;
}

.footer-legal__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem 0.85rem;
}

.footer-legal a {
    color: rgba(230, 214, 188, 0.62);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--text);
}

.footer-legal p {
    max-width: 62rem;
}

.documents-page {
    justify-items: center;
}

.documents-paper {
    width: min(100%, 58rem);
    padding: clamp(1.35rem, 3.5vw, 2.8rem);
    border: 1px solid rgba(230, 214, 188, 0.12);
    border-radius: 8px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(130, 27, 36, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016)),
        rgba(8, 6, 6, 0.76);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 70px rgba(0, 0, 0, 0.38);
}

.documents-paper__header {
    display: grid;
    gap: 0.72rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(230, 214, 188, 0.12);
}

.documents-paper h1 {
    max-width: 44rem;
    color: #fff7f1;
    font-size: clamp(2rem, 4.4vw, 3.35rem);
    line-height: 1;
    text-shadow:
        0 16px 42px rgba(0, 0, 0, 0.48),
        0 0 28px rgba(130, 27, 36, 0.18);
}

.documents-paper section {
    padding-top: 1.35rem;
}

.documents-paper h2 {
    margin-bottom: 0.58rem;
    color: #fff7f1;
    font-size: clamp(1.18rem, 2.2vw, 1.58rem);
    line-height: 1.15;
}

.documents-paper p {
    color: rgba(226, 211, 207, 0.8);
    font-size: 0.98rem;
    line-height: 1.72;
}

.documents-paper p + p {
    margin-top: 0.74rem;
}

.documents-paper a {
    color: rgba(230, 214, 188, 0.86);
    text-decoration-color: rgba(130, 27, 36, 0.7);
    overflow-wrap: anywhere;
}

.has-motion .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.has-motion .reveal.is-visible {
    opacity: 1;
    transform: none;
}

.has-motion .delay-1 {
    transition-delay: 80ms;
}

.has-motion .delay-2 {
    transition-delay: 150ms;
}

.has-motion .page-documents .reveal {
    opacity: 1;
    transform: none;
}

@keyframes drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(1rem, -0.7rem, 0);
    }
}

@keyframes error-pop {
    from {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1180px) {
    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding: 0.75rem 0;
    }

    .site-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        order: 3;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .hero-sanctum__layout,
    .premium-panel,
    .season-panel,
    .guide-stage,
    .offer-stage,
    .footer-layout,
    .page-altar__frame,
    .page-altar__frame--offer {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: auto;
    }

    .hero-visual {
        padding: 0 1rem 1rem;
    }

    .guide-sidebar {
        position: static;
    }

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

    .contacts-board {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

}

@media (max-width: 900px) {
    .hero {
        min-height: 100svh;
        padding: 0;
    }

    .hero-sanctum--cover,
    .hero-sanctum--cover .hero-sanctum__layout,
    .hero-cover__content {
        min-height: 100svh;
    }

    .hero-sanctum::before {
        font-size: 6rem;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-copy h1 {
        font-size: 5rem;
    }

    .page-altar__copy h1 {
        font-size: 3.45rem;
    }

    .section-split {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .section-split h2,
    .section-head h2 {
        font-size: 3.15rem;
    }

    .hero-ledger,
    .receipt-grid {
        grid-template-columns: 1fr;
    }

    .contact-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-band__links {
        justify-content: flex-start;
    }

    .contacts-board {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: min(100%, 720px);
    }

    .minimal-cta {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .shop-grid {
        grid-template-columns: minmax(0, 28rem);
        justify-content: center;
    }

    .footer-simple {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    body {
        padding: 0;
    }

    .site-shell {
        width: 100%;
        min-height: 100vh;
        border: 0;
        border-radius: 0;
    }

    body {
        font-size: 15px;
    }

    .wrapper,
    .narrow {
        width: min(100% - 1.25rem, 100%);
    }

    .header-inner {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        min-height: 0;
    }

    .brand {
        width: 100%;
    }

    .header-access {
        width: 100%;
        justify-content: stretch;
    }

    .server-copy {
        max-width: none;
        flex: 1 1 auto;
    }

    .header-cta {
        flex: 0 0 auto;
    }

    .site-nav {
        width: 100%;
        justify-content: center;
        gap: clamp(0.9rem, 5vw, 1.35rem);
        overflow-x: visible;
        padding-bottom: 0;
        text-align: center;
    }

    .shop-page {
        align-content: start;
        gap: 0.85rem;
        min-height: auto;
        padding-top: 11.35rem;
        padding-bottom: 2rem;
    }

    .shop-head {
        gap: 0.35rem;
    }

    .shop-head p {
        max-width: 19rem;
        font-size: 0.88rem;
        line-height: 1.38;
    }

    .shop-head .section-kicker {
        font-size: 0.66rem;
    }

    .shop-grid {
        gap: 0.85rem;
    }

    .shop-card {
        min-height: 0;
    }

    .shop-card__media,
    .shop-card__media > img:first-child {
        height: 8.25rem;
    }

    .shop-card__body {
        gap: 0.72rem;
        padding: 0.72rem 0.82rem 0.86rem;
    }

    .shop-card h2 {
        margin-top: 0.22rem;
        font-size: 1.28rem;
        line-height: 1.08;
    }

    .shop-card p {
        margin-top: 0.42rem;
        font-size: 0.86rem;
        line-height: 1.38;
    }

    .shop-card__footer {
        gap: 0.62rem;
        padding-top: 0.68rem;
    }

    .shop-card__price-values strong,
    .shop-card__footer > strong {
        font-size: 1.65rem;
    }

    .shop-card__price-values del {
        font-size: 0.94rem;
    }

    .shop-card__footer .button {
        min-height: 2.85rem;
        padding: 0.66rem 0.8rem;
        font-size: 0.88rem;
    }

    .shop-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-card__footer .button {
        width: 100%;
    }

    .shop-modal {
        place-items: center;
        align-items: center;
        justify-items: center;
        min-height: 0;
        height: 100dvh;
        padding: max(0.65rem, env(safe-area-inset-top)) 0.65rem max(0.65rem, env(safe-area-inset-bottom));
        overflow: hidden;
        overscroll-behavior: contain;
    }

    .shop-modal__panel {
        width: min(100%, 30rem);
        max-height: 100%;
        margin: 0 auto;
        gap: 0.62rem;
        padding: 0.82rem 0.74rem 0.9rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .shop-modal__panel::before {
        inset: 0.34rem;
    }

    .shop-modal__panel::after {
        left: 1rem;
        right: 1rem;
    }

    .shop-modal__head {
        gap: 0.22rem;
        padding: 0.32rem 1.95rem 0.52rem;
    }

    .shop-modal__steps {
        display: none;
    }

    .shop-modal__crest {
        width: 2.42rem;
        height: 2.42rem;
        margin-bottom: 0.05rem;
    }

    .shop-modal__crest img {
        width: 1.72rem;
        height: 1.72rem;
    }

    .shop-modal__panel h2 {
        font-size: 1.45rem;
        line-height: 1.08;
    }

    .shop-modal__head p {
        max-width: 18rem;
        font-size: 0.82rem;
        line-height: 1.25;
    }

    .shop-modal__price strong {
        font-size: 1.55rem;
    }

    .shop-modal__price del {
        font-size: 0.92rem;
    }

    .premium-term-note--modal {
        margin-top: 0.12rem;
        font-size: 0.72rem;
    }

    .shop-modal__close {
        top: 0.62rem;
        right: 0.62rem;
        width: 1.9rem;
        height: 1.9rem;
    }

    .package-picker {
        gap: 0.42rem;
    }

    .package-option__box {
        gap: 0.58rem;
        min-height: 3rem;
        padding: 0.62rem 0.68rem;
    }

    .package-option__title {
        font-size: 0.82rem;
        line-height: 1.18;
    }

    .package-option__discount {
        padding: 0.15rem 0.36rem;
        font-size: 0.65rem;
    }

    .package-option__price del {
        font-size: 0.72rem;
    }

    .package-option__price strong {
        font-size: 0.92rem;
    }

    .shop-modal .form-field {
        gap: 0.42rem;
    }

    .shop-modal .form-field input {
        min-height: 2.85rem;
        padding: 0.68rem 0.76rem;
        font-size: 0.92rem;
    }

    .shop-modal .form-field label,
    .shop-modal .form-label {
        font-size: 0.7rem;
    }

    .shop-modal .button-wide {
        min-height: 2.95rem;
        font-size: 0.9rem;
    }

    .purchase-agreement {
        font-size: 0.68rem;
        line-height: 1.3;
    }

    .order-result {
        align-items: start;
        padding-top: 8.8rem;
    }

    .order-receipt__grid {
        grid-template-columns: 1fr;
    }

    .hero-sanctum__layout,
    .page-altar__frame {
        padding: 0.7rem;
    }

    .hero-copy,
    .page-altar__copy,
    .season-panel__copy,
    .stone-slab,
    .stone-note,
    .reliquary,
    .reliquary--premium,
    .price-monolith {
        padding: 1.25rem;
    }

    .price-monolith--premium {
        min-height: 0;
    }

    .hero-copy h1 {
        font-size: 3.25rem;
    }

    .hero-cover__image {
        opacity: 1;
    }

    .hero-cover__shade {
        background:
            linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16) 50%, rgba(0, 0, 0, 0.72)),
            linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.86));
    }

    .hero-cover__content {
        align-items: center;
        min-height: 100svh;
        padding: 2rem 1.25rem 2.2rem;
    }

    .hero-copy__text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 4.4rem;
    }

    .hero-main-cta {
        width: min(100%, 19rem);
        min-height: 3.65rem;
    }

    .hero-window {
        min-height: 23rem;
    }

    .page-window {
        min-height: 17rem;
    }

    .hero-ledger__ip strong,
    .hero-ledger__offer strong,
    .price-monolith strong {
        font-size: 2.25rem;
    }

    .section {
        padding-top: 3.6rem;
    }

    .section-split h2,
    .section-head h2,
    .season-panel h2,
    .stone-slab h2,
    .minimal-cta h2,
    .strip-link h2,
    .pathway-step__body h2,
    .reliquary h2,
    .contact-band h2 {
        font-size: 2.35rem;
    }

    .page-altar__copy h1 {
        font-size: 2.8rem;
    }

    .pillar-row,
    .pathway-step,
    .strip-link {
        grid-template-columns: 1fr;
    }

    .pathway {
        padding-left: 1rem;
    }

    .pillar-row__index,
    .pathway-step__index {
        font-size: 2.1rem;
    }

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

    .contacts-layout {
        gap: 1.35rem;
    }

    .contacts-board {
        grid-template-columns: 1fr;
        padding: 0.7rem;
        border-radius: 26px;
    }

    .contact-card {
        min-height: 9.5rem;
        border-radius: 20px;
    }

    .contact-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .rating-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .contact-tile {
        min-height: 170px;
    }

    .contact-tile--compact {
        min-height: 6.4rem;
        padding: 0.85rem;
    }

    .contact-tile--compact strong {
        font-size: 1.08rem;
    }

    .hero-actions,
    .contact-band__links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-actions .button,
    .contact-band__links .text-link {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .brand-copy__name {
        font-size: 1.12rem;
    }

    .brand-copy__sub {
        display: none;
    }

    .brand-mark {
        width: 2.45rem;
        height: 2.45rem;
        padding: 0.16rem;
    }

    .hero-copy h1 {
        font-size: 2.68rem;
    }

    .hero-title {
        font-size: 3.35rem;
    }

    .page-altar__copy h1 {
        font-size: 2.35rem;
    }

    .section-split h2,
    .season-panel h2,
    .stone-slab h2,
    .minimal-cta h2,
    .pathway-step__body h2,
    .reliquary h2,
    .contact-band h2 {
        font-size: 2.05rem;
    }

    .button {
        min-height: 3.1rem;
        padding-inline: 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .has-motion .reveal {
        opacity: 1;
        transform: none;
    }
}
