* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg: #0b0b0d;
    --bg-soft: #131316;
    --accent: #d4b896;          /* шампань — теплее золота rlogs.ru */
    --accent-soft: #b89976;
    --accent-deep: #2d5f5a;     /* глубокий бирюзово-зелёный для секонд-акцента */
    --text: rgba(255,255,255,0.92);
    --text-soft: rgba(255,255,255,0.65);
    --text-dim: rgba(255,255,255,0.4);
    --line: rgba(255,255,255,0.08);
    --line-strong: rgba(255,255,255,0.16);
}
html { scroll-behavior: smooth; }
/* якоря не должны уезжать под фиксированную шапку */
section[id], header[id] { scroll-margin-top: 96px; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,184,150,0.045), transparent),
        radial-gradient(ellipse 60% 50% at 0% 70%, rgba(45,95,90,0.05), transparent),
        radial-gradient(ellipse 60% 50% at 100% 90%, rgba(212,184,150,0.03), transparent);
    pointer-events: none;
    z-index: 0;
}
a { color: inherit; }
.ic {
    width: 1em; height: 1em;
    fill: currentColor;
    display: inline-block;
    vertical-align: -0.125em;
    flex-shrink: 0;
}
img { max-width: 100%; display: block; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }

/* ═══════════════════════════════════════════════════════
   PRELOADER — Pixar-style letter intro
   ═══════════════════════════════════════════════════════ */
.preloader {
    position: fixed; inset: 0;
    background: #060608;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.45s cubic-bezier(.7,0,.3,1), visibility 0.45s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }

.preloader__name {
    display: flex; gap: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(54px, 11vw, 130px);
    font-weight: 300;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
}
.preloader__letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) scale(0.7);
    filter: blur(8px);
    animation: letterIn 0.55s cubic-bezier(.2,.8,.2,1) forwards;
}
.preloader__letter:nth-child(1) { animation-delay: 0.00s; }
.preloader__letter:nth-child(2) { animation-delay: 0.04s; }
.preloader__letter:nth-child(3) { animation-delay: 0.08s; }
.preloader__letter:nth-child(4) { animation-delay: 0.12s; }
.preloader__letter:nth-child(5) { animation-delay: 0.16s; }
.preloader__letter:nth-child(6) { animation-delay: 0.20s; }
.preloader__letter:nth-child(7) { animation-delay: 0.24s; }
.preloader__letter:nth-child(8) { animation-delay: 0.28s; }

@keyframes letterIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.preloader__divider {
    width: 40px; height: 1px;
    background: var(--accent);
    margin: 26px 0 18px;
    opacity: 0;
    transform: scaleX(0);
    animation: dividerIn 0.4s ease 0.42s forwards;
}
@keyframes dividerIn {
    to { opacity: 0.5; transform: scaleX(1); }
}

.preloader__loading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(212,184,150,0.7);
    opacity: 0;
    animation: fadeInUp 0.4s ease 0.5s forwards;
    font-weight: 500;
}
.preloader__loading::after {
    content: '';
    animation: dots 1.4s steps(4, end) infinite 0.7s;
}
@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Контент виден сразу — прелоадер лежит поверх и быстро уходит.
   Так LCP не ждёт JS и не упирается в таймер. */
.content { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 20px 40px;
    display: flex; align-items: center; justify-content: space-between;
    z-index: 100;
    background: rgba(11,11,13,0.72);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}
.nav__logo {
    font-family: 'Fraunces', serif;
    font-size: 19px; color: #fff; text-decoration: none;
    font-weight: 400; letter-spacing: -0.015em;
}
.nav__logo em { font-style: italic; color: var(--accent); font-weight: 300; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__link {
    font-size: 12.5px; color: var(--text-soft);
    text-decoration: none; transition: color 0.3s;
    letter-spacing: 0.02em;
}
.nav__link:hover { color: var(--accent); }
.nav__cta {
    padding: 10px 22px;
    border: 1px solid var(--accent);
    color: var(--accent); font-size: 12px;
    font-weight: 600; letter-spacing: 0.16em;
    text-decoration: none; text-transform: uppercase;
    transition: all 0.3s;
}
.nav__cta:hover { background: var(--accent); color: var(--bg); }
@media (max-width: 900px) {
    .nav { padding: 14px 20px; }
    .nav__links .nav__link { display: none; }
    .nav__logo { font-size: 17px; }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    padding: 150px 40px 100px;
    max-width: 1340px;
    margin: 0 auto;
    z-index: 1;
}
@media (max-width: 720px) {
    .hero { padding: 110px 22px 60px; }
}

.hero__topline {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 22px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--line);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.hero__topline em {
    font-family: 'Fraunces', serif;
    font-size: 13.5px;
    font-style: italic;
    color: var(--accent);
    text-transform: none;
    letter-spacing: 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: center;
}
@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; gap: 50px; }
}

.hero__kicker {
    font-family: 'Fraunces', serif;
    font-size: 18px; font-style: italic;
    color: var(--accent);
    margin-bottom: 22px;
    font-weight: 400;
}
.hero__name {
    font-family: 'Fraunces', serif;
    font-size: clamp(58px, 8vw, 110px);
    font-weight: 300; color: #fff;
    line-height: 0.95; margin-bottom: 30px;
    letter-spacing: -0.035em;
}
.hero__name em {
    font-style: italic; color: var(--accent);
    font-weight: 300;
}
.hero__lead {
    font-family: 'Fraunces', serif;
    font-size: 22px; line-height: 1.5;
    color: var(--text-soft);
    margin-bottom: 36px; max-width: 540px;
    font-weight: 300;
    letter-spacing: -0.005em;
}
.hero__lead strong { color: #fff; font-weight: 500; }

.hero__meta {
    display: flex; gap: 36px; flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.hero__meta div { display: flex; flex-direction: column; gap: 6px; }
.hero__meta-label {
    font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--text-dim); font-weight: 500;
}
.hero__meta-value {
    font-family: 'Fraunces', serif;
    font-size: 16px; color: var(--text);
    font-weight: 400;
}
.hero__meta-value a {
    color: var(--accent); text-decoration: none;
    border-bottom: 1px solid rgba(212,184,150,0.35);
    transition: border-color 0.3s;
}
.hero__meta-value a:hover { border-bottom-color: var(--accent); }

.hero__photo {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.hero__photo img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top;
}
.hero__photo::after {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(212,184,150,0.15);
    border-radius: 4px;
    pointer-events: none;
}
.hero__photo-caption {
    position: absolute; bottom: 18px; left: 22px; right: 22px;
    font-family: 'Fraunces', serif;
    font-style: italic; font-size: 12.5px;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════
   STORY
   ═══════════════════════════════════════════════════════ */
.story {
    position: relative;
    padding: 110px 40px;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    z-index: 1;
}
.story__inner { max-width: 760px; margin: 0 auto; }
@media (max-width: 720px) {
    .story { padding: 70px 22px; }
}
.story__label {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px; letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--accent); font-weight: 600;
    margin-bottom: 18px; display: inline-block;
}
.story__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300; color: #fff;
    line-height: 1.05; margin-bottom: 44px;
    letter-spacing: -0.025em;
}
.story__title em { font-style: italic; color: var(--accent); font-weight: 300; }

.story__text p {
    font-family: 'Fraunces', serif;
    font-size: 19.5px; line-height: 1.65;
    color: var(--text-soft);
    font-weight: 300; margin-bottom: 22px;
    letter-spacing: -0.003em;
}
.story__text p:first-of-type::first-letter {
    font-size: 76px; font-weight: 400;
    float: left; line-height: 0.85;
    margin: 6px 14px 0 0;
    color: var(--accent);
    font-family: 'Fraunces', serif;
}
.story__text strong { color: #fff; font-weight: 500; }
.story__text a {
    color: var(--accent); text-decoration: none;
    border-bottom: 1px solid rgba(212,184,150,0.35);
}

.story__pull {
    margin: 44px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(212,184,150,0.25);
    border-bottom: 1px solid rgba(212,184,150,0.25);
    font-family: 'Fraunces', serif;
    font-size: 26px; line-height: 1.4;
    font-style: italic;
    color: #fff; text-align: center;
    font-weight: 300;
    letter-spacing: -0.01em;
}
@media (max-width: 720px) {
    .story__pull { font-size: 21px; padding: 18px 0; }
    .story__text p { font-size: 17.5px; }
}

.story__stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 30px; margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}
@media (max-width: 480px) {
    .story__stats { grid-template-columns: 1fr; gap: 22px; }
}
.stat { text-align: center; }
.stat__num {
    font-family: 'Fraunces', serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 300; color: var(--accent);
    line-height: 1; margin-bottom: 10px;
    letter-spacing: -0.03em;
}
.stat__label {
    font-size: 10px; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--text-dim);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════ */
.section {
    position: relative;
    max-width: 1200px; margin: 0 auto;
    padding: 110px 40px;
    z-index: 1;
}
@media (max-width: 720px) { .section { padding: 70px 22px; } }

.section__head { margin-bottom: 60px; max-width: 760px; }
.section__label {
    font-size: 10.5px; letter-spacing: 0.36em;
    text-transform: uppercase; color: var(--accent);
    font-weight: 600; margin-bottom: 18px; display: inline-block;
}
.section__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 300; color: #fff;
    line-height: 1.05; letter-spacing: -0.025em;
    margin-bottom: 18px;
}
.section__title em { font-style: italic; color: var(--accent); font-weight: 300; }
.section__sub {
    font-family: 'Fraunces', serif;
    font-size: 18px; color: var(--text-soft);
    line-height: 1.55; font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   PROJECTS — без номеров, минимальная сетка
   ═══════════════════════════════════════════════════════ */
.projects {
    display: flex; flex-direction: column;
    gap: 10px;
}
.project {
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: all 0.4s;
    overflow: hidden;
}
.project:hover { border-color: rgba(255,255,255,0.14); }
.project[open] {
    background: rgba(255,255,255,0.02);
    border-color: rgba(212,184,150,0.25);
}
.project[open] .project__head { padding-bottom: 14px; }
.project__head {
    display: flex; align-items: center; gap: 22px;
    padding: 22px 28px;
    cursor: pointer; list-style: none;
}
.project__head::-webkit-details-marker { display: none; }
@media (max-width: 720px) {
    .project__head { padding: 18px 20px; gap: 14px; }
}

.project__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 16px;
    flex-shrink: 0;
    transition: all 0.4s;
}
.project[open] .project__icon {
    background: var(--accent); color: var(--bg);
    border-color: var(--accent);
}
.project__head-text { flex: 1; min-width: 0; }
.project__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(19px, 2.4vw, 26px);
    color: #fff;
    font-weight: 400; line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 4px;
}
.project__sub {
    font-family: 'Fraunces', serif;
    font-size: 14px; color: var(--text-dim);
    font-style: italic;
    letter-spacing: 0.005em;
}
.project__tag {
    font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 600;
    padding: 5px 12px; border-radius: 99px;
    white-space: nowrap;
    border: 1px solid;
}
.project__tag--now { color: var(--accent); border-color: rgba(212,184,150,0.35); background: rgba(212,184,150,0.05); }
.project__tag--past { color: var(--text-dim); border-color: var(--line-strong); }
@media (max-width: 720px) {
    .project__tag {
        font-size: 8.5px;
        padding: 3px 9px;
        letter-spacing: 0.18em;
    }
}
@media (max-width: 480px) {
    .project__head { flex-wrap: wrap; }
    .project__head-text { flex: 1 1 calc(100% - 80px); order: 2; }
    .project__icon { order: 1; }
    .project__tag { order: 3; margin-left: auto; }
    .project__chevron { order: 4; }
}
.project__chevron {
    color: var(--accent); font-size: 13px;
    transition: transform 0.4s;
}
.project[open] .project__chevron { transform: rotate(180deg); }

.project__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 4px 28px 32px;
}
.project__body--text-only { grid-template-columns: 1fr; max-width: 720px; }
@media (max-width: 720px) {
    .project__body { grid-template-columns: 1fr; gap: 22px; padding: 4px 20px 26px; }
}
.project__photo {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}
.project__photo img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 30%;
    transition: transform 0.4s;
}

/* ════════════════════════════════════════════════════
   ИНДИВИДУАЛЬНЫЕ НАСТРОЙКИ ФОТОК В ПРОЕКТАХ
   ────────────────────────────────────────────────────
   Формат:
     object-position: X% Y%
       X — гориз. сдвиг (0% слева, 50% центр, 100% справа)
       Y — вертик. сдвиг (0% вверх, 50% центр, 100% вниз)
     transform: scale(N)
       1   = норма
       1.2 = приблизить +20%
       0.9 = отдалить -10%
   ──────────────────────────────────────────────────── */
#ph-rlogs           { aspect-ratio: 1/1; }
#ph-rlogs img      { object-fit: cover; transform: scale(1.4); transform-origin: center 55%; }
#ph-ved             { aspect-ratio: 5/4; }
#ph-ved img        { object-fit: cover; transform: scale(1) translateY(15%); transform-origin: center center; }
#ph-studio img     { object-position: center 55%; transform: scale(1); }
#ph-yt-podcast      { aspect-ratio: 16/9; }
#ph-yt-podcast img { object-position: center 50%; transform: scale(1); }
#ph-yt-china        { aspect-ratio: 16/9; }
#ph-yt-china img   { object-position: center 50%; transform: scale(1.05); }
#ph-coffee          { aspect-ratio: 4/3; }
#ph-coffee img     { object-fit: contain; object-position: center center; transform: scale(0.95); background: transparent; }
.project__photo::after {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(212,184,150,0.12);
    border-radius: 4px;
    pointer-events: none;
}
.project__content {
    display: flex; flex-direction: column; justify-content: center;
}
.project__text {
    font-family: 'Fraunces', serif;
    font-size: 17px; line-height: 1.6;
    color: var(--text-soft);
    font-weight: 300; margin-bottom: 16px;
}
.project__text:last-of-type { margin-bottom: 0; }
.project__text strong { color: #fff; font-weight: 500; }
.project__text a {
    color: var(--accent); text-decoration: none;
    border-bottom: 1px solid rgba(212,184,150,0.35);
}
.project__link {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 22px;
    padding: 11px 22px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    transition: all 0.3s;
    align-self: flex-start;
}
.project__link:hover {
    background: var(--accent); color: var(--bg);
    gap: 14px;
}

/* ═══════════════════════════════════════════════════════
   SPEAKING
   ═══════════════════════════════════════════════════════ */
.speaking {
    position: relative;
    background: linear-gradient(135deg, var(--accent-deep), #1a3835);
    padding: 100px 40px;
    z-index: 1;
}
.speaking__inner {
    max-width: 1240px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .speaking__inner { grid-template-columns: 1fr; gap: 40px; }
    .speaking { padding: 70px 22px; }
}
.speaking__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.speaking__photos > div {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
}
.speaking__photos img { width: 100%; height: 100%; object-fit: cover; }
.speaking__label {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px; letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--accent); font-weight: 600;
    margin-bottom: 18px; display: inline-block;
}
.speaking__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 300; color: #fff;
    line-height: 1.05; letter-spacing: -0.025em;
    margin-bottom: 18px;
}
.speaking__title em { font-style: italic; color: var(--accent); font-weight: 300; }
.speaking__sub {
    font-family: 'Fraunces', serif;
    font-size: 18px; color: rgba(255,255,255,0.78);
    margin-bottom: 32px; line-height: 1.55;
    font-weight: 300;
}
.speaking__topics {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 480px) { .speaking__topics { grid-template-columns: 1fr; } }
.topic {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(212,184,150,0.18);
    border-radius: 4px;
}
.topic .ic { color: var(--accent); font-size: 13px; }
.topic span {
    font-family: 'Fraunces', serif;
    font-size: 16px; color: #fff;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   COMMUNITIES
   ═══════════════════════════════════════════════════════ */
.communities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.community {
    display: block;
    text-decoration: none;
    transition: all 0.4s;
}
.community:hover .community__photo img { transform: scale(1.05); filter: brightness(1); }
.community:hover .community__name { color: var(--accent); }
.community__photo {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 4px;
    background: var(--bg-soft);
}
.community__photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.85);
}
.community__type {
    font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--accent); font-weight: 600;
    margin-bottom: 10px;
}
.community__name {
    font-family: 'Fraunces', serif;
    font-size: 22px; color: #fff;
    font-weight: 400; margin-bottom: 8px;
    line-height: 1.25;
    transition: color 0.3s;
}
.community__desc {
    font-family: 'Fraunces', serif;
    font-size: 15px; color: var(--text-dim);
    line-height: 1.5; font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   PUBLICATIONS — компактные строки с иконками
   ═══════════════════════════════════════════════════════ */
.pubs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 12px;
    width: 100%;
}
.pub {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 0;
}
@media (max-width: 720px) {
    .pubs { grid-template-columns: 1fr; }
}
.pub:hover {
    border-color: var(--accent);
    background: rgba(212,184,150,0.05);
    transform: translateY(-2px);
}
.pub__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212,184,150,0.35);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.pub__body { flex: 1; min-width: 0; }
.pub__name {
    font-family: 'Fraunces', serif;
    font-size: 17px; color: #fff;
    font-weight: 500; line-height: 1.2;
    margin-bottom: 3px;
}
.pub__desc {
    font-family: 'Fraunces', serif;
    font-size: 13px; color: var(--text-dim);
    font-style: italic;
}
.pub__arrow {
    color: var(--text-dim); font-size: 12px;
    transition: color 0.3s;
}
.pub:hover .pub__arrow { color: var(--accent); }

/* — крупная карточка главной публикации — */
.pub-feature {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    padding: 34px 36px;
    margin-bottom: 14px;
    background:
        linear-gradient(135deg, rgba(212,184,150,0.07), rgba(45,95,90,0.05) 60%, transparent);
    border: 1px solid rgba(212,184,150,0.28);
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.4s, transform 0.4s, background 0.4s;
}
.pub-feature:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
@media (max-width: 720px) {
    .pub-feature { grid-template-columns: 1fr; gap: 24px; padding: 26px 22px; align-items: start; }
}
.pub-feature__meta {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px; flex-wrap: wrap;
}
.pub-feature__source {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    font-weight: 600; color: var(--bg);
    background: var(--accent);
    padding: 5px 11px; border-radius: 2px;
}
.pub-feature__date {
    font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--text-dim); font-weight: 500;
}
.pub-feature__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(23px, 3vw, 33px);
    font-weight: 300; color: #fff;
    line-height: 1.2; letter-spacing: -0.02em;
    margin-bottom: 16px;
    max-width: 760px;
}
.pub-feature__excerpt {
    font-family: 'Fraunces', serif;
    font-size: 16px; font-weight: 300;
    color: var(--text-soft); line-height: 1.6;
    max-width: 660px;
}
.pub-feature__excerpt strong { color: var(--accent); font-weight: 400; }
.pub-feature__go {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 600; color: var(--accent);
    white-space: nowrap;
    transition: gap 0.3s;
}
.pub-feature:hover .pub-feature__go { gap: 15px; }

/* ═══════════════════════════════════════════════════════
   STATS — полоса цифр под hero
   ═══════════════════════════════════════════════════════ */
.stats {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
    background: var(--bg);
    padding: 40px 30px;
    text-align: center;
}
@media (max-width: 720px) { .stat { padding: 28px 16px; } }
.stat__num {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 300; color: var(--accent);
    line-height: 1; letter-spacing: -0.035em;
    margin-bottom: 12px;
}
.stat__label {
    font-size: 10.5px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-dim);
    font-weight: 500; line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   CREDS — регалии строкой
   ═══════════════════════════════════════════════════════ */
.creds {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 40px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}
.cred {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 9px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-size: 12.5px; color: var(--text-soft);
    letter-spacing: 0.01em;
    transition: border-color 0.3s, color 0.3s;
}
.cred:hover { border-color: rgba(212,184,150,0.4); color: var(--text); }
.cred .ic { color: var(--accent); font-size: 11px; }

/* ═══════════════════════════════════════════════════════
   ECOSYSTEM — связанные сайты
   ═══════════════════════════════════════════════════════ */
.eco {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}
@media (max-width: 860px) { .eco { grid-template-columns: 1fr; } }
.eco__item {
    display: flex; flex-direction: column;
    padding: 30px 28px;
    background: rgba(255,255,255,0.022);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.35s;
}
.eco__item:hover {
    border-color: var(--accent);
    background: rgba(212,184,150,0.045);
    transform: translateY(-3px);
}
.eco__role {
    font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.eco__name {
    font-family: 'Fraunces', serif;
    font-size: 25px; color: #fff; font-weight: 400;
    letter-spacing: -0.02em; margin-bottom: 10px;
}
.eco__desc {
    font-family: 'Fraunces', serif;
    font-size: 14.5px; font-weight: 300;
    color: var(--text-soft); line-height: 1.55;
    margin-bottom: 22px;
}
.eco__url {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 12px; color: var(--text-dim);
    letter-spacing: 0.04em;
    transition: color 0.3s, gap 0.3s;
}
.eco__item:hover .eco__url { color: var(--accent); gap: 13px; }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.faq__item {
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s;
}
.faq__item[open] { border-color: rgba(212,184,150,0.35); }
.faq__q {
    display: flex; align-items: center; gap: 16px;
    padding: 22px 26px;
    cursor: pointer; list-style: none;
    font-family: 'Fraunces', serif;
    font-size: 19px; color: #fff; font-weight: 400;
    line-height: 1.3; letter-spacing: -0.01em;
}
@media (max-width: 720px) { .faq__q { padding: 18px 20px; font-size: 17px; } }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--accent); }
.faq__q span { flex: 1; }
.faq__q .ic {
    color: var(--accent); font-size: 13px;
    transition: transform 0.35s; flex-shrink: 0;
}
.faq__item[open] .faq__q .ic { transform: rotate(180deg); }
.faq__a {
    padding: 0 26px 26px;
    font-family: 'Fraunces', serif;
    font-size: 16px; font-weight: 300;
    color: var(--text-soft); line-height: 1.65;
    max-width: 780px;
}
@media (max-width: 720px) { .faq__a { padding: 0 20px 20px; font-size: 15px; } }
.faq__a strong { color: var(--text); font-weight: 500; }
.faq__a a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(212,184,150,0.35); }

/* ═══════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════ */
.cta-final {
    position: relative;
    padding: 110px 40px;
    border-top: 1px solid var(--line);
    text-align: center;
    background: var(--bg-soft);
    z-index: 1;
}
.cta-final__inner { max-width: 1100px; margin: 0 auto; }
@media (max-width: 720px) { .cta-final { padding: 70px 22px; } }
.cta-final__label {
    font-size: 10.5px; letter-spacing: 0.36em; text-transform: uppercase;
    color: var(--accent); font-weight: 600; margin-bottom: 18px;
    display: inline-block;
}
.cta-final__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300; color: #fff;
    line-height: 1.05; letter-spacing: -0.025em;
    margin-bottom: 18px;
}
.cta-final__title em { font-style: italic; color: var(--accent); font-weight: 300; }
.cta-final__sub {
    font-family: 'Fraunces', serif;
    font-size: 19px; color: var(--text-soft);
    max-width: 580px; margin: 0 auto 50px;
    line-height: 1.55; font-weight: 300;
}
.cta-final__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
    margin-bottom: 50px;
}
@media (max-width: 720px) { .cta-final__grid { grid-template-columns: 1fr; } }
.cta-box {
    display: flex; flex-direction: column;
    padding: 36px 30px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}
.cta-box:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
}
.cta-box:hover * { color: var(--bg) !important; }
.cta-box__icon {
    width: 48px; height: 48px;
    border: 1px solid var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 17px;
    margin-bottom: 26px;
    border-radius: 50%;
    transition: all 0.3s;
}
.cta-box:hover .cta-box__icon { border-color: var(--bg); color: var(--bg); }
.cta-box__title {
    font-family: 'Fraunces', serif;
    font-size: 22px; color: #fff;
    margin-bottom: 10px; font-weight: 500;
    line-height: 1.25;
}
.cta-box__desc {
    font-family: 'Fraunces', serif;
    font-size: 15px; color: var(--text-soft);
    line-height: 1.55; margin-bottom: 26px;
    font-weight: 300;
}
.cta-box__action {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 10.5px; color: var(--accent);
    font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    transition: gap 0.3s;
}
.cta-box:hover .cta-box__action { gap: 14px; }

/* ═══════════════════════════════════════════════════════
   SOCIAL ROW
   ═══════════════════════════════════════════════════════ */
.social-row {
    display: flex; justify-content: center; gap: 12px;
    flex-wrap: wrap;
}
.social {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-soft);
    text-decoration: none; font-size: 15px;
    transition: all 0.3s;
}
.social:hover {
    border-color: var(--accent); color: var(--accent);
    background: rgba(212,184,150,0.05);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 1;
}
.footer__name {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 400; color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}
.footer__name em { font-style: italic; color: var(--accent); font-weight: 300; }
.footer__text {
    font-size: 12px; color: var(--text-dim);
    line-height: 1.7; letter-spacing: 0.02em;
}
.footer__text a {
    color: var(--accent); text-decoration: none;
    border-bottom: 1px dashed rgba(212,184,150,0.4);
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 1s, transform 1s;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Пользователь просил меньше анимаций — отдаём статику */
@media (prefers-reduced-motion: reduce) {
    .preloader { display: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .preloader__letter { animation: none; opacity: 1; transform: none; filter: none; }
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════════════════
   ВНУТРЕННИЕ СТРАНИЦЫ
   ═══════════════════════════════════════════════════════ */
.page-hero {
    position: relative; z-index: 1;
    padding: 170px 40px 70px;
    max-width: 1200px; margin: 0 auto;
}
@media (max-width: 720px) { .page-hero { padding: 120px 22px 50px; } }
.crumbs {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 26px;
}
.crumbs a { color: var(--text-soft); text-decoration: none; border-bottom: 1px solid transparent; }
.crumbs a:hover { color: var(--accent); border-bottom-color: rgba(212,184,150,0.4); }
.page-hero__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 300; color: #fff;
    line-height: 1.02; letter-spacing: -0.03em;
    margin-bottom: 26px; max-width: 900px;
}
.page-hero__title em { font-style: italic; color: var(--accent); font-weight: 300; }
.page-hero__lead {
    font-family: 'Fraunces', serif;
    font-size: 21px; font-weight: 300; line-height: 1.55;
    color: var(--text-soft); max-width: 720px;
}
.page-hero__lead strong { color: #fff; font-weight: 500; }

.page-body {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    padding: 0 40px 100px;
}
@media (max-width: 720px) { .page-body { padding: 0 22px 70px; } }

.prose { max-width: 760px; }
.prose h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(27px, 3.4vw, 40px);
    font-weight: 300; color: #fff;
    line-height: 1.15; letter-spacing: -0.025em;
    margin: 64px 0 22px;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--accent); }
.prose h3 {
    font-family: 'Fraunces', serif;
    font-size: 21px; font-weight: 500; color: #fff;
    margin: 38px 0 12px; letter-spacing: -0.01em;
}
.prose p {
    font-family: 'Fraunces', serif;
    font-size: 17px; font-weight: 300; line-height: 1.7;
    color: var(--text-soft); margin-bottom: 20px;
}
.prose p strong { color: var(--text); font-weight: 500; }
.prose a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(212,184,150,0.35); }
.prose a:hover { border-bottom-color: var(--accent); }
.prose ul { list-style: none; margin: 0 0 24px; padding: 0; }
.prose li {
    position: relative; padding-left: 26px; margin-bottom: 13px;
    font-family: 'Fraunces', serif;
    font-size: 17px; font-weight: 300; line-height: 1.6;
    color: var(--text-soft);
}
.prose li::before {
    content: ''; position: absolute;
    left: 0; top: 12px;
    width: 12px; height: 1px; background: var(--accent);
}
.prose li strong { color: var(--text); font-weight: 500; }

.callout {
    border-left: 2px solid var(--accent);
    background: rgba(212,184,150,0.05);
    padding: 24px 28px; margin: 34px 0;
    border-radius: 0 4px 4px 0;
}
.callout p { margin: 0; font-size: 16px; color: var(--text); }

.page-cta {
    margin-top: 60px;
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.btn {
    display: inline-flex; align-items: center; gap: 11px;
    padding: 15px 28px; border-radius: 3px;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 600; text-decoration: none;
    transition: all 0.3s;
}
.btn--primary { background: var(--accent); color: var(--bg); }
.btn--primary:hover { background: #e2caa9; gap: 15px; }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--text-soft); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); gap: 15px; }

.related {
    margin-top: 80px; padding-top: 40px;
    border-top: 1px solid var(--line);
}
.related__label {
    font-size: 10.5px; letter-spacing: 0.36em; text-transform: uppercase;
    color: var(--accent); font-weight: 600; margin-bottom: 22px;
}
.related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.related__item {
    display: block; padding: 22px 24px;
    border: 1px solid var(--line-strong); border-radius: 4px;
    text-decoration: none; transition: all 0.3s;
}
.related__item:hover { border-color: var(--accent); background: rgba(212,184,150,0.04); transform: translateY(-2px); }
.related__name {
    font-family: 'Fraunces', serif;
    font-size: 18px; color: #fff; font-weight: 400; margin-bottom: 6px;
}
.related__desc { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
