:root {
    --bg: #f7f3eb;
    --bg-soft: #f0e9dc;
    --surface: #fffdf9;
    --text: #1f1a14;
    --muted: #6f6558;
    --primary: #c87828;
    --primary-dark: #9f5d18;
    --primary-soft: rgba(232, 168, 73, 0.16);
    --accent: #e8a849;
    --border: rgba(31, 26, 20, 0.08);
    --radius: 1.1rem;
    --shadow: 0 18px 50px rgba(31, 26, 20, 0.08);
    --font-main: "Montserrat", system-ui, sans-serif;
    --container: 68rem;
    --narrow: 42rem;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body.site-body {
    margin: 0;
    min-height: 100dvh;
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

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

.solstice-glow {
    pointer-events: none;
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 85% -10%, rgba(232, 168, 73, 0.22), transparent 42%),
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.55), transparent 35%);
    z-index: -2;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 110;
    backdrop-filter: blur(14px);
    background: rgba(247, 243, 235, 0.82);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4.5rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
}

.site-brand__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 24px rgba(200, 120, 40, 0.18);
}

.hero__avatar-frame .hero__avatar,
.hero__avatar--placeholder {
    border: none;
    box-shadow: 0 18px 50px rgba(200, 120, 40, 0.22);
}

.site-brand__avatar--placeholder,
.hero__avatar--placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #f6d7a8, #e8a849);
    color: #5c3b12;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.2rem;
    overflow: visible;
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-brand__text strong {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 500;
}

.site-brand__text small {
    color: var(--muted);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    gap: 0.35rem;
}

.site-nav__link {
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-nav__link:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.site-nav__link:focus-visible {
    outline: 2px solid rgba(200, 120, 40, 0.45);
    outline-offset: 3px;
}

.mobile-nav__link:focus-visible {
    outline: 2px solid rgba(200, 120, 40, 0.45);
    outline-offset: 2px;
}

.site-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 4px 18px rgba(31, 26, 20, 0.08);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-nav-toggle__icon,
.site-nav-toggle__icon::before,
.site-nav-toggle__icon::after {
    display: block;
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.site-nav-toggle__icon {
    position: relative;
}

.site-nav-toggle__icon::before,
.site-nav-toggle__icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.site-nav-toggle__icon::before {
    top: -0.35rem;
}

.site-nav-toggle__icon::after {
    top: 0.35rem;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon {
    background: transparent;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.site-nav-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.96);
    position: relative;
    z-index: 110;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 100;
    visibility: hidden;
    pointer-events: none;
}

.mobile-nav.is-open {
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(31, 26, 20, 0.58);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.mobile-nav.is-open .mobile-nav__backdrop {
    opacity: 1;
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100%, 20.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding:
        calc(5rem + env(safe-area-inset-top, 0px))
        1.35rem
        calc(1.5rem + env(safe-area-inset-bottom, 0px));
    background: var(--surface);
    box-shadow: -12px 0 48px rgba(31, 26, 20, 0.18);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open .mobile-nav__panel {
    transform: translateX(0);
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    min-height: 3.1rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.85rem;
    color: var(--text);
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: background 0.15s ease, color 0.15s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
    background: var(--primary-soft);
    color: var(--primary-dark);
    outline: none;
}

.mobile-nav__cta {
    width: 100%;
    margin-top: auto;
    min-height: 3.1rem;
    font-size: 1rem;
}

.site-body--nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

.site-body--nav-open .site-fab {
    opacity: 0;
    pointer-events: none;
}

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

[id] {
    scroll-margin-top: calc(4.75rem + env(safe-area-inset-top, 0px));
}

.site-main {
    padding-bottom: 5rem;
}

.site-alert {
    padding: 0.9rem 1rem;
    border-radius: calc(var(--radius) - 0.2rem);
    background: var(--surface);
    border: 1px solid var(--border);
}

.site-alert--success {
    border-color: rgba(200, 120, 40, 0.25);
    background: #fff8ef;
}

.site-alert--error {
    border-color: rgba(180, 40, 40, 0.2);
    background: #fff5f5;
}

.site-alert--prominent {
    padding: 1.1rem 1.25rem;
    font-size: 1.02rem;
    animation: feedback-in 0.35s ease;
}

@keyframes feedback-in {
    from {
        opacity: 0;
        transform: translateY(-0.35rem);
    }

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

.hero {
    position: relative;
    padding: 4.5rem 0 1.5rem;
    overflow: visible;
    margin-bottom: 1.35rem;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.hero__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-main);
    font-size: clamp(2.4rem, 5vw, 3rem);
    line-height: 1.05;
    font-weight: 500;
}

.hero__subtitle {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--primary);
    font-weight: 500;
}

.hero__lead {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text);
    max-width: 36rem;
}

.hero__actions {
    position: relative;
    z-index: 3;
    transform: translateY(25%);
}

.hero__actions .container {
    display: flex;
}

.hero + .section {
    padding-top: calc(4rem + 1.35rem);
}

.hero__text {
    margin: 0 0 1.5rem;
    color: var(--muted);
    max-width: 36rem;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(1rem, 3vw, 1.75rem);
}

.hero__avatar-frame {
    position: relative;
    width: min(18rem, 70vw);
    height: min(18rem, 70vw);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__avatar-frame .hero__avatar {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
}

.hero__avatar {
    position: relative;
}

.hero__avatar--placeholder span {
    position: relative;
    z-index: 1;
    font-size: 4rem;
}

.hero__sun-ring {
    position: absolute;
    inset: -8%;
    border-radius: 999px;
    border: 1px solid rgba(232, 168, 73, 0.35);
    animation: pulse-ring 6s ease-in-out infinite;
    pointer-events: none;
}

.hero__arc {
    position: absolute;
    left: 50%;
    bottom: -6rem;
    width: 100%;
    max-width: 100%;
    height: 12rem;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center top, rgba(232, 168, 73, 0.18), transparent 70%);
    pointer-events: none;
}

.section {
    padding: 4rem 0;
}

.section--soft {
    background: rgba(255, 255, 255, 0.45);
}

.section--warm {
    background: var(--bg-soft);
}

.section--accent {
    background: linear-gradient(165deg, #4a4034 0%, #352d24 100%);
    color: #f7f3eb;
    border-block: 1px solid rgba(31, 26, 20, 0.2);
}

.section--form {
    padding-bottom: 6rem;
    scroll-margin-top: 5rem;
}

.form-feedback {
    display: grid;
    gap: 0.75rem;
    scroll-margin-top: 5rem;
    scroll-margin-bottom: 2.5rem;
}

.form-feedback:not(:empty) {
    margin-top: 1.25rem;
}

.form-feedback:focus {
    outline: none;
}

.inquiry-form .form-feedback:not(:has(.site-alert)) {
    display: none;
}

.section__head {
    margin-bottom: 2rem;
}

.section__head.text-center .section__subtitle {
    text-align: center;
}

.section__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-main);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.section__title:has(+ .cards--catalog) {
    margin-bottom: 1.35rem;
}

.section__subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.section--accent .section__title--light {
    color: #fff9f0;
}

.section--accent .section__text--light {
    color: rgba(247, 243, 235, 0.88);
    font-size: 1.08rem;
    line-height: 1.65;
}

.section__text {
    margin: 0;
    color: var(--muted);
    font-size: 1.2rem;
}

.section__text--brand {
    margin-top: 1.25rem;
    color: var(--primary);
    font-size: clamp(1.12rem, 2.2vw, 1.28rem);
    line-height: 1.55;
}

.text--color-brand {
    color: var(--primary);
}

.checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.checklist__item {
    position: relative;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    isolation: isolate;
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.checklist__sheen {
    position: absolute;
    inset: -20% -40%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 42%,
        rgba(255, 255, 255, 0.04) 46%,
        rgba(255, 255, 255, 0.72) 50%,
        rgba(255, 252, 248, 0.48) 52%,
        rgba(255, 255, 255, 0.04) 56%,
        transparent 60%
    );
    transform: translateX(-115%) skewX(-12deg);
    opacity: 0;
}

.checklist__item::before,
.checklist__item::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Хаос — рассыпанные кристаллические фрагменты */
.checklist__item::before {
    top: -0.25rem;
    right: 3.25rem;
    width: 5.75rem;
    height: 5.75rem;
    opacity: 0.14;
    transition: opacity 0.28s ease;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* Порядок — решётка, гексагоны, симметрия */
.checklist__item::after {
    right: 0.45rem;
    bottom: 0.35rem;
    width: 5rem;
    height: 5rem;
    opacity: 0.18;
    transition: opacity 0.28s ease;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.checklist__mark,
.checklist__text {
    position: relative;
    z-index: 2;
}

@keyframes checklist-sun-sweep {
    from {
        transform: translateX(-115%) skewX(-12deg);
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    to {
        transform: translateX(115%) skewX(-12deg);
        opacity: 0;
    }
}

/* 1: осколки семени → Цветок жизни */
.checklist__item:nth-child(8n+1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.1'%3E%3Ccircle cx='16' cy='24' r='7' opacity='.45'/%3E%3Ccircle cx='28' cy='32' r='6' opacity='.35'/%3E%3Cpath d='M8 42a9 9 0 0 1 14 2' opacity='.4'/%3E%3Cpath d='M32 14a7 7 0 0 1 2 10' opacity='.35'/%3E%3C/g%3E%3C/svg%3E");
}

.checklist__item:nth-child(8n+1)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1'%3E%3Ccircle cx='64' cy='64' r='7'/%3E%3Ccircle cx='71' cy='64' r='7'/%3E%3Ccircle cx='67.5' cy='70.062' r='7'/%3E%3Ccircle cx='60.5' cy='70.062' r='7'/%3E%3Ccircle cx='57' cy='64' r='7'/%3E%3Ccircle cx='60.5' cy='57.938' r='7'/%3E%3Ccircle cx='67.5' cy='57.938' r='7'/%3E%3C/g%3E%3C/svg%3E");
}

/* 2: рваная везика → Везica piscis */
.checklist__item:nth-child(8n+2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.1'%3E%3Cpath d='M10 28a10 10 0 0 1 16 0' opacity='.5'/%3E%3Cpath d='M28 16a8 8 0 0 1 0 14' opacity='.4'/%3E%3Ccircle cx='14' cy='38' r='5' opacity='.35'/%3E%3C/g%3E%3C/svg%3E");
}

.checklist__item:nth-child(8n+2)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.05'%3E%3Ccircle cx='58' cy='64' r='9'/%3E%3Ccircle cx='70' cy='64' r='9'/%3E%3Cpath d='M64 55.2V72.8' opacity='.55'/%3E%3C/g%3E%3C/svg%3E");
}

/* 3: разрозненное семя → Семя жизни */
.checklist__item:nth-child(8n+3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.1'%3E%3Ccircle cx='14' cy='20' r='5' opacity='.5'/%3E%3Ccircle cx='26' cy='28' r='4' opacity='.4'/%3E%3Ccircle cx='10' cy='36' r='3.5' opacity='.35'/%3E%3Ccircle cx='32' cy='14' r='3' opacity='.3'/%3E%3C/g%3E%3C/svg%3E");
}

.checklist__item:nth-child(8n+3)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1'%3E%3Ccircle cx='64' cy='64' r='6'/%3E%3Ccircle cx='70' cy='64' r='6'/%3E%3Ccircle cx='67' cy='69.196' r='6'/%3E%3Ccircle cx='61' cy='69.196' r='6'/%3E%3Ccircle cx='58' cy='64' r='6'/%3E%3Ccircle cx='61' cy='58.804' r='6'/%3E%3Ccircle cx='67' cy='58.804' r='6'/%3E%3C/g%3E%3C/svg%3E");
}

/* 4: осколки → Шри-янтра (вложенные треугольники) */
.checklist__item:nth-child(8n+4)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.1'%3E%3Cpath d='M18 16L28 34L8 34Z' transform='rotate(-12 18 25)' opacity='.5'/%3E%3Cpath d='M36 10L44 26L28 24Z' transform='rotate(18 36 18)' opacity='.4'/%3E%3Cpath d='M12 48L20 62L4 58Z' opacity='.35'/%3E%3C/g%3E%3C/svg%3E");
}

.checklist__item:nth-child(8n+4)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1'%3E%3Cpolygon points='64,50 76,70 52,70'/%3E%3Cpolygon points='64,74 52,54 76,54' opacity='.75'/%3E%3Cpolygon points='64,54 70,66 58,66' opacity='.55'/%3E%3Cpolygon points='64,70 58,58 70,58' opacity='.55'/%3E%3C/g%3E%3C/svg%3E");
}

/* 5: осколки → Метатрон (куб сотворения) */
.checklist__item:nth-child(8n+5)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.1' stroke-linecap='round'%3E%3Cpath d='M12 28L22 22L32 28M22 22V38M12 28L22 44' opacity='.55'/%3E%3Cpath d='M30 12L38 20L34 30M38 20L26 24' opacity='.4'/%3E%3C/g%3E%3C/svg%3E");
}

.checklist__item:nth-child(8n+5)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1'%3E%3Ccircle cx='64' cy='64' r='5'/%3E%3Ccircle cx='73' cy='64' r='5'/%3E%3Ccircle cx='68.5' cy='73.5' r='5'/%3E%3Ccircle cx='59.5' cy='73.5' r='5'/%3E%3Ccircle cx='55' cy='64' r='5'/%3E%3Ccircle cx='59.5' cy='54.5' r='5'/%3E%3Ccircle cx='68.5' cy='54.5' r='5'/%3E%3Cpath d='M64 64L73 64M64 64L68.5 73.5M64 64L59.5 73.5M64 64L55 64M64 64L59.5 54.5M64 64L68.5 54.5M55 64L59.5 54.5M73 64L68.5 54.5M59.5 73.5L73 64M68.5 73.5L55 64' opacity='.45'/%3E%3C/g%3E%3C/svg%3E");
}

/* 6: обрывки → Тор (гекс в Цветке жизни) */
.checklist__item:nth-child(8n+6)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.1' stroke-linecap='round'%3E%3Cpath d='M10 22a6 6 0 0 1 10 0M28 12a5 5 0 0 1 0 8M8 40a7 7 0 0 1 12 0' opacity='.5'/%3E%3C/g%3E%3C/svg%3E");
}

.checklist__item:nth-child(8n+6)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1'%3E%3Ccircle cx='58' cy='60' r='5.5'/%3E%3Ccircle cx='64' cy='60' r='5.5'/%3E%3Ccircle cx='70' cy='60' r='5.5'/%3E%3Ccircle cx='61' cy='69.4' r='5.5'/%3E%3Ccircle cx='67' cy='69.4' r='5.5'/%3E%3Ccircle cx='73' cy='69.4' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* 7: концентрические круги — оставляем */
.checklist__item:nth-child(8n+7)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.1'%3E%3Ccircle cx='22' cy='28' r='10' opacity='.55'/%3E%3Ccircle cx='36' cy='38' r='8' opacity='.45'/%3E%3Ccircle cx='14' cy='44' r='7' opacity='.4'/%3E%3Ccircle cx='32' cy='18' r='6' opacity='.35'/%3E%3Ccircle cx='44' cy='30' r='5' opacity='.3'/%3E%3C/g%3E%3C/svg%3E");
}

.checklist__item:nth-child(8n+7)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.05'%3E%3Ccircle cx='66' cy='66' r='6'/%3E%3Ccircle cx='66' cy='66' r='11' opacity='.78'/%3E%3Ccircle cx='66' cy='66' r='16' opacity='.58'/%3E%3Ccircle cx='66' cy='66' r='21' opacity='.38'/%3E%3C/g%3E%3C/svg%3E");
}

/* 8: как первый пункт — осколки семени → Цветок жизни */
.checklist__item:nth-child(8n+8)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.1'%3E%3Ccircle cx='16' cy='24' r='7' opacity='.45'/%3E%3Ccircle cx='28' cy='32' r='6' opacity='.35'/%3E%3Cpath d='M8 42a9 9 0 0 1 14 2' opacity='.4'/%3E%3Cpath d='M32 14a7 7 0 0 1 2 10' opacity='.35'/%3E%3C/g%3E%3C/svg%3E");
}

.checklist__item:nth-child(8n+8)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1'%3E%3Ccircle cx='64' cy='64' r='7'/%3E%3Ccircle cx='71' cy='64' r='7'/%3E%3Ccircle cx='67.5' cy='70.062' r='7'/%3E%3Ccircle cx='60.5' cy='70.062' r='7'/%3E%3Ccircle cx='57' cy='64' r='7'/%3E%3Ccircle cx='60.5' cy='57.938' r='7'/%3E%3Ccircle cx='67.5' cy='57.938' r='7'/%3E%3C/g%3E%3C/svg%3E");
}

@media (hover: hover) {
    .checklist__item:hover {
        border-color: rgba(232, 168, 73, 0.28);
        box-shadow: 0 16px 40px rgba(200, 120, 40, 0.12);
        transform: translateY(-1px);
    }

    .checklist__item:hover .checklist__sheen {
        animation: checklist-sun-sweep 0.85s ease;
    }

    .card--catalog:hover {
        border-color: rgba(232, 168, 73, 0.24);
        box-shadow: 0 12px 32px rgba(200, 120, 40, 0.1);
        transform: translateY(-2px);
    }

    .card--catalog:hover .card__title {
        color: var(--primary);
    }

    .checklist__item:hover::before,
    .checklist__item:hover::after,
    .steps__item:hover::after {
        opacity: 0.33;
    }
}

@media (prefers-reduced-motion: reduce) {
    .checklist__sheen {
        display: none;
    }

    .checklist__item,
    .card--catalog {
        transition: border-color 0.28s ease, box-shadow 0.28s ease;
    }

    .checklist__item:hover,
    .card--catalog:hover {
        transform: none;
    }
}

.checklist__mark {
    width: 0.75rem;
    height: 0.75rem;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: var(--accent);
    flex-shrink: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
}

.cards--tiles {
    grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
    align-items: stretch;
}

.card--tile,
.card--compact-tile {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 5.75rem;
}

.card__text--solo {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.55;
}

.cards--compact {
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.card {
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card--compact {
    box-shadow: none;
}

.cards--catalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.card--catalog {
    flex: 1 1 14.5rem;
    max-width: 18rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 8rem;
    padding: 1.4rem 1.15rem;
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
}

.card--catalog .card__title {
    margin: 0 0 0.55rem;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    transition: color 0.28s ease;
}

.card--catalog .card__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--muted);
}

.pricing-accordion {
    display: grid;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 0.15rem);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pricing-accordion__item {
    border-top: 1px solid var(--border);
    transition: background 0.25s ease;
}

.pricing-accordion__item:first-child {
    border-top: none;
}

.pricing-accordion__item[open] {
    background: linear-gradient(90deg, var(--primary-soft), rgba(255, 253, 249, 0.35));
}

.pricing-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.pricing-accordion__summary::-webkit-details-marker {
    display: none;
}

.pricing-accordion__summary::marker {
    content: "";
}

.pricing-accordion__label {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

.pricing-accordion__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.pricing-accordion__rate {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    white-space: nowrap;
}

.pricing-accordion__icon {
    width: 0.65rem;
    height: 0.65rem;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    margin-top: -0.2rem;
    transition: transform 0.2s ease;
}

.pricing-accordion__item[open] .pricing-accordion__icon {
    transform: rotate(225deg);
    margin-top: 0.15rem;
}

.pricing-accordion__body {
    padding: 0 1.35rem 1.15rem;
}

.pricing-accordion__text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--muted);
}

.pricing-accordion__note {
    margin: 1.15rem 0 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--muted);
}

.card__cover {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: calc(var(--radius) - 0.35rem);
    margin-bottom: 0.85rem;
}

.card__title {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
}

.card__text {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.steps__item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    isolation: isolate;
}

.steps__item::before,
.steps__item::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: opacity 0.28s ease;
}

.steps__item::before {
    content: none;
    display: none;
}

.steps__item::after {
    top: 0.45rem;
    right: 0.65rem;
    bottom: auto;
    width: 5.1rem;
    height: 5.1rem;
    opacity: 0.14;
}

.steps__num,
.steps__body {
    position: relative;
    z-index: 1;
}

/* 1 · Контакт: Vesica piscis */
.steps__item:nth-child(4n+1)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.05'%3E%3Ccircle cx='58' cy='64' r='9'/%3E%3Ccircle cx='70' cy='64' r='9'/%3E%3Cpath d='M64 55.2V72.8' opacity='.55'/%3E%3C/g%3E%3C/svg%3E");
}

/* 2 · Возможности: Метатрон (куб сотворения) */
.steps__item:nth-child(4n+2)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.05'%3E%3Ccircle cx='64' cy='64' r='5.5'/%3E%3Ccircle cx='73.5' cy='64' r='5.5'/%3E%3Ccircle cx='68.75' cy='73.5' r='5.5'/%3E%3Ccircle cx='59.25' cy='73.5' r='5.5'/%3E%3Ccircle cx='54.5' cy='64' r='5.5'/%3E%3Ccircle cx='59.25' cy='54.5' r='5.5'/%3E%3Ccircle cx='68.75' cy='54.5' r='5.5'/%3E%3Cpath d='M64 64L73.5 64M64 64L68.75 73.5M64 64L59.25 73.5M64 64L54.5 64M64 64L59.25 54.5M64 64L68.75 54.5M54.5 64L59.25 54.5M73.5 64L68.75 54.5M59.25 73.5L73.5 64M68.75 73.5L54.5 64' opacity='.42'/%3E%3C/g%3E%3C/svg%3E");
}

/* 3 · Реализация: Цветок жизни */
.steps__item:nth-child(4n+3)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.05'%3E%3Ccircle cx='64' cy='64' r='7'/%3E%3Ccircle cx='71' cy='64' r='7'/%3E%3Ccircle cx='67.5' cy='70.062' r='7'/%3E%3Ccircle cx='60.5' cy='70.062' r='7'/%3E%3Ccircle cx='57' cy='64' r='7'/%3E%3Ccircle cx='60.5' cy='57.938' r='7'/%3E%3Ccircle cx='67.5' cy='57.938' r='7'/%3E%3C/g%3E%3C/svg%3E");
}

/* 4 · Поддержка: концентрические круги */
.steps__item:nth-child(4n+4)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88' fill='none'%3E%3Cg stroke='%23c87828' stroke-width='1.05'%3E%3Ccircle cx='66' cy='66' r='7' opacity='.85'/%3E%3Ccircle cx='66' cy='66' r='12' opacity='.62'/%3E%3Ccircle cx='66' cy='66' r='17' opacity='.42'/%3E%3Ccircle cx='66' cy='66' r='22' opacity='.26'/%3E%3C/g%3E%3C/svg%3E");
}

.steps__num {
    width: 2.2rem;
    height: 2.2rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-weight: 600;
}

.steps__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.steps__text {
    margin: 0;
    color: var(--muted);
}

.form-card,
.payment-card {
    position: relative;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 0.1rem);
    box-shadow: var(--shadow);
}

.form-card.is-loading .inquiry-form {
    pointer-events: none;
    opacity: 0.58;
}

.form-card__loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: inherit;
    background: rgba(255, 253, 249, 0.78);
    backdrop-filter: blur(2px);
}

.form-card__loader[hidden] {
    display: none;
}

.form-card__loader-spinner {
    width: 1.35rem;
    height: 1.35rem;
    border: 2px solid rgba(200, 120, 40, 0.18);
    border-top-color: var(--primary);
    border-radius: 999px;
    animation: form-spin 0.75s linear infinite;
}

.form-card__loader-text {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}

@keyframes form-spin {
    to {
        transform: rotate(360deg);
    }
}

.form-control.is-invalid {
    border-color: rgba(180, 40, 40, 0.45);
}

.form-control.is-invalid:focus {
    outline-color: rgba(180, 40, 40, 0.25);
    border-color: rgba(180, 40, 40, 0.55);
}

.form-field__client-errors {
    margin-top: 0.35rem;
    color: #b42828;
    font-size: 0.85rem;
    line-height: 1.45;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.92rem;
    font-weight: 500;
}

.form-field__head {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.form-field__label {
    font-size: 0.92rem;
    font-weight: 500;
}

.form-field__optional {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 400;
}

.form-field__hint {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.form-field__hint[hidden] {
    display: none;
}

.file-upload {
    position: relative;
}

.file-upload__dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 7.5rem;
    padding: 1.25rem 1rem;
    border: 1.5px dashed rgba(200, 120, 40, 0.35);
    border-radius: calc(var(--radius) - 0.15rem);
    background: rgba(255, 255, 255, 0.65);
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.file-upload__dropzone:hover,
.file-upload__dropzone:focus-visible {
    border-color: rgba(200, 120, 40, 0.55);
    background: rgba(232, 168, 73, 0.08);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 168, 73, 0.15);
}

.file-upload__dropzone.is-dragover {
    border-color: var(--primary);
    background: var(--primary-soft);
    box-shadow: 0 0 0 3px rgba(232, 168, 73, 0.2);
}

.file-upload__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: var(--primary-soft);
    position: relative;
}

.file-upload__icon::before,
.file-upload__icon::after {
    content: "";
    position: absolute;
    background: var(--primary-dark);
    border-radius: 1px;
}

.file-upload__icon::before {
    width: 1.1rem;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.file-upload__icon::after {
    width: 2px;
    height: 1.1rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.file-upload__prompt {
    font-size: 0.95rem;
    color: var(--text);
}

.file-upload__accent {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(200, 120, 40, 0.35);
    text-underline-offset: 0.15em;
}

.file-upload__hint {
    font-size: 0.82rem;
    color: var(--muted);
}

.file-upload__input {
    position: absolute;
    inset: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.file-upload:not(.is-filled) .file-upload__input {
    pointer-events: auto;
}

.file-upload__native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload__preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 0.15rem);
    background: #fff;
}

.file-upload__preview[hidden] {
    display: none !important;
}

.file-upload__file {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.file-upload__file-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.75rem;
    border-radius: 0.35rem;
    background: linear-gradient(180deg, #fff 0%, #f3ece0 100%);
    border: 1px solid rgba(200, 120, 40, 0.2);
    position: relative;
}

.file-upload__file-icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0.55rem;
    height: 0.55rem;
    background: linear-gradient(135deg, transparent 50%, rgba(200, 120, 40, 0.15) 50%);
}

.file-upload__file-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.file-upload__file-name {
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-upload__file-size {
    font-size: 0.8rem;
    color: var(--muted);
}

.file-upload__remove {
    flex-shrink: 0;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.file-upload__remove:hover {
    color: var(--primary-dark);
    border-color: rgba(200, 120, 40, 0.35);
    background: var(--primary-soft);
}

.file-upload.is-filled .file-upload__dropzone {
    display: none;
}

.form-control {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    background: #fff;
    font: inherit;
    color: inherit;
}

select.form-control {
    padding-right: 2.5rem;
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236f6558' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 1rem;
    cursor: pointer;
}

select.form-control:focus {
    background-color: #fff;
}

.form-control:focus {
    outline: 2px solid rgba(232, 168, 73, 0.35);
    border-color: rgba(200, 120, 40, 0.45);
}

.form-help {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.inquiry-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.form-consent {
    margin-top: 1.1rem;
    margin-bottom: 1.25rem;
    padding-top: 0.35rem;
}

.form-consent__label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.15rem 0;
}

.form-consent__checkbox {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.form-consent__text {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.form-consent__text a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.form-consent__text a:hover {
    color: var(--primary-dark);
}

.section--legal {
    padding-top: 3rem;
}

.legal-page__eyebrow {
    margin: 0 0 0.5rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.legal-page__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.15;
}

.legal-page__updated {
    margin: 0 0 2rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.legal-section + .legal-section {
    margin-top: 1.75rem;
}

.legal-section__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-main);
    font-size: 1.08rem;
}

.legal-section__text {
    margin: 0 0 0.75rem;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.65;
}

.legal-section__text:last-child {
    margin-bottom: 0;
}

.legal-page__back {
    margin: 2.5rem 0 0;
}

.legal-page__back a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-page__back a:hover {
    color: var(--primary-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.25rem;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #dba24a, #c87828);
    color: #fff;
    box-shadow: 0 10px 24px rgba(200, 120, 40, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(200, 120, 40, 0.28);
}

.btn-block {
    width: 100%;
}

.site-footer {
    padding: 3rem 0 0;
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    padding-bottom: 2rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 2rem;
}

.site-footer__resume-link {
    margin-top: 0.15rem;
}

.site-footer__legal-meta {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--border);
}

.site-footer__legal-link {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
}

.site-footer__legal-link:hover {
    color: var(--primary);
}

.site-footer__cookie-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.site-footer__cookie-note a {
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.site-footer__cookie-note a:hover {
    color: var(--primary);
}

.site-footer__bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.site-footer__bar--sub {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.site-footer__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-main);
    font-size: 1.1rem;
}

.site-footer__text,
.site-footer__list {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.site-footer__list {
    padding-left: 1.1rem;
}

.site-footer__copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem 0.55rem;
    margin: 0;
    color: var(--primary);
    font-size: 0.88rem;
    line-height: 1.45;
}

.site-footer__copy-sep,
.site-footer__alias,
.site-footer__rights,
.site-footer__brand {
    color: var(--primary);
}

.site-footer__brand {
    font-weight: 400;
}

.site-footer__sigil {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
}

.site-footer__sigil svg {
    width: 100%;
    height: 100%;
}

.site-footer__alias {
    color: var(--primary);
}

.site-footer__rights {
    font-variant-numeric: tabular-nums;
}

.site-footer__links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.site-footer__links a {
    color: var(--primary);
}

.site-fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 30;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    background: rgba(31, 26, 20, 0.92);
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(31, 26, 20, 0.22);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.payment-card__eyebrow {
    margin: 0 0 0.35rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.82rem;
}

.payment-card__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-main);
    font-size: 2rem;
}

.payment-card__meta,
.payment-card__hint,
.payment-card__status {
    color: var(--muted);
}

.payment-card__amount {
    margin: 1rem 0 1.25rem;
    font-family: var(--font-main);
    font-size: 2.4rem;
}

.payment-card__status--paid {
    color: var(--primary-dark);
    font-weight: 600;
}

.site-body--admin-login {
    min-height: 100dvh;
    overflow-x: hidden;
}

.admin-login {
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.admin-login__form {
    width: min(100%, 26rem);
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    gap: 1.1rem;
    box-sizing: border-box;
}

.admin-login__form h1 {
    margin: 0 0 0.25rem;
    font-family: var(--font-main);
    font-size: 1.75rem;
    font-weight: 700;
}

.admin-login__intro {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-login__form label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.92rem;
    font-weight: 500;
}

.admin-login__form input {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    font: inherit;
    box-sizing: border-box;
    background: #fff;
}

.admin-login__form input:focus {
    outline: 2px solid rgba(232, 168, 73, 0.35);
    border-color: rgba(200, 120, 40, 0.45);
}

.admin-login__back {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.88rem;
    text-decoration: none;
    text-align: center;
}

.admin-login__back:hover {
    color: var(--primary-dark);
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.04); opacity: 1; }
}

@media (max-width: 768px) {
    .site-nav--desktop {
        display: none;
    }

    .site-nav-toggle {
        display: inline-flex;
    }

    .mobile-nav__panel {
        width: 100%;
        padding-top: calc(4.75rem + env(safe-area-inset-top, 0px));
    }

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

    .hero__visual {
        order: -1;
    }

    .hero__avatar {
        width: 10rem;
        height: 10rem;
    }

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

    .file-upload__preview {
        flex-direction: column;
        align-items: stretch;
    }

    .file-upload__remove {
        align-self: flex-start;
    }
}

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

    .hero__sun-ring,
    .form-card__loader-spinner {
        animation: none !important;
    }
}

.text-center {
    text-align: center;
}
