/* =============================================
   Групповая терапия с Ксенией Кот
   Palette: warm milk, dusty rose, burgundy, taupe
   ============================================= */

:root {
    /* Premium palette: milk, cream, chocolate + deep wine accent (10-15%) */
    --c-primary:       #6f3542;
    --c-primary-dark:  #5a2a36;
    --c-primary-light: #e8d6d7;
    --c-burgundy:      #4a2e33;
    --c-accent:        #9a626c;
    --c-accent-light:  #e8d6d7;
    --c-text:          #3E2C27;
    --c-text-mid:      #7c685c;
    --c-text-soft:     #ab9a8c;
    --c-white:         #fdfaf6;
    --c-bg:            #F7F2EC;
    --c-bg-alt:        #efe6d9;
    --c-bg-dark:       #3a2b24;
    --c-border:        #e4d8c9;

    /* Elegant serif display (Cyrillic ✓); Manrope carries Cyrillic for body */
    --font-h: 'Cormorant Garamond', Georgia, serif;
    --font-i: 'Cormorant Garamond', Georgia, serif;
    --font-b: 'DM Sans', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-hand: 'Marck Script', 'Snell Roundhand', cursive;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --sh-sm: 0 1px 4px rgba(44,31,34,0.06);
    --sh-md: 0 4px 24px rgba(44,31,34,0.09);
    --sh-lg: 0 10px 48px rgba(44,31,34,0.13);
    --t: 0.3s ease;
}

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

html { scroll-behavior:smooth; font-size:16px; }

body {
    font-family: var(--font-b);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; transition:color var(--t); }

/* ---- Layout ---- */
.container { max-width:1120px; margin:0 auto; padding:0 24px; }

.section { padding:96px 0; }
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--c-bg-dark); }

/* ---- Typography ---- */
.section-label {
    display:inline-block;
    font-size:0.7rem;
    font-weight:600;
    letter-spacing:0.18em;
    text-transform:uppercase;
    color: var(--c-primary);
    margin-bottom:14px;
}
.section-label--light { color: rgba(255,255,255,0.55); }

.section-title {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--c-text);
    margin-bottom: 18px;
}
.section-title--light { color: var(--c-white); }
.section-title em { font-family: var(--font-i); font-style:italic; font-weight:300; color: var(--c-primary); }

.section-sub {
    font-size: 1rem;
    color: var(--c-text-mid);
    max-width: 580px;
    line-height: 1.75;
}

.section-header { text-align:center; margin-bottom:56px; }
.section-header .section-sub { margin:0 auto; }

/* ---- Buttons ---- */
.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-family: var(--font-b);
    font-size:0.875rem;
    font-weight:500;
    letter-spacing:0.02em;
    border:2px solid transparent;
    border-radius:var(--r-sm);
    padding:14px 32px;
    cursor:pointer;
    transition:all var(--t);
    white-space:nowrap;
}
.btn--primary {
    background: var(--c-primary);
    color: var(--c-white);
    border-color: var(--c-primary);
}
.btn--primary:hover {
    background: var(--c-primary-dark);
    border-color: var(--c-primary-dark);
    transform:translateY(-1px);
    box-shadow: var(--sh-md);
}
.btn--outline {
    background:transparent;
    color: var(--c-primary);
    border-color: var(--c-primary);
}
.btn--outline:hover {
    background: var(--c-primary);
    color: var(--c-white);
}
.btn--outline-white {
    background:transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--c-white);
}
.btn--lg { padding:17px 40px; font-size:0.9375rem; }
.btn--sm { padding:9px 22px; font-size:0.8125rem; }

/* ---- Header ---- */
.header {
    position:fixed; top:0; left:0; right:0; z-index:1000;
    background:rgba(250,245,237,0.94);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--c-border);
    transition:all var(--t);
}
.header--scrolled { box-shadow: var(--sh-sm); }
.header__inner {
    display:flex; align-items:center; justify-content:space-between;
    height:70px; gap:24px;
}
.header__logo {
    font-family: var(--font-h);
    font-size:1.3rem;
    font-weight:400;
    color: var(--c-text);
    letter-spacing:0.01em;
}
.header__logo span { color: var(--c-primary); }
.header__nav { display:flex; gap:28px; align-items:center; }
.header__nav a {
    font-size:0.875rem;
    font-weight:400;
    color: var(--c-text-mid);
    transition:color var(--t);
}
.header__nav a:hover { color: var(--c-primary); }
.header__cta { display:flex; align-items:center; gap:16px; }

.hamburger {
    display:none; flex-direction:column; gap:5px;
    background:none; border:none; cursor:pointer; padding:4px;
}
.hamburger span {
    display:block; width:22px; height:1.5px;
    background: var(--c-text); border-radius:2px;
    transition:all var(--t);
}
.hamburger.active span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
    display:none; position:fixed; inset:70px 0 0 0;
    background: var(--c-bg); z-index:999;
    flex-direction:column; padding:32px 24px;
    gap:24px; overflow-y:auto;
}
.mobile-nav.active { display:flex; }
.mobile-nav a {
    font-size:1.1rem; font-weight:400;
    color: var(--c-text-mid); padding:8px 0;
    border-bottom:1px solid var(--c-border);
}
.mobile-nav a:last-child { border-bottom:none; }

/* ---- Hero ---- */
.hero {
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    padding-top:70px;
    overflow:hidden;
    position:relative;
}
.hero__content {
    padding:80px 48px 80px 0;
    max-width:560px;
    margin-left:auto;
}
.hero__eyebrow {
    display:inline-block;
    font-size:0.72rem; font-weight:600;
    letter-spacing:0.18em; text-transform:uppercase;
    color: var(--c-primary);
    background: var(--c-primary-light);
    padding:6px 16px; border-radius:40px;
    margin-bottom:28px;
}
.hero__title {
    font-family: var(--font-h);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight:700;
    line-height:1.02;
    letter-spacing:-0.02em;
    color: var(--c-text);
    margin-bottom:22px;
}
.hero__title em { font-style:italic; color: var(--c-primary); }
.hero__sub {
    font-size:1.0625rem;
    color: var(--c-text-mid);
    line-height:1.75;
    margin-bottom:36px;
    max-width:480px;
}
.hero__actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:40px; }
.hero__checklist { display:flex; flex-direction:column; gap:10px; }
.hero__check {
    display:flex; align-items:center; gap:10px;
    font-size:0.875rem; color: var(--c-text-mid);
}
.hero__check::before {
    content:'';
    display:block; flex-shrink:0;
    width:18px; height:18px;
    border-radius:50%;
    background: var(--c-primary-light);
    background-image:url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%236F3542' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:center;
}
.hero__photo {
    position:relative;
    height:100vh;
    min-height:600px;
    overflow:hidden;
}
.hero__photo img {
    width:100%; height:100%;
    object-fit:cover; object-position:center center;
}
.hero__photo-placeholder--gold {
    position:relative;
    width:100%; height:100%;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(180,220,255,0.25) 0%, transparent 65%),
        linear-gradient(160deg, #3a2b24 0%, #6f3542 45%, #9a626c 75%, #5a2a36 100%);
    display:flex; align-items:center; justify-content:center;
    flex-direction:column; gap:32px;
    overflow:hidden;
}
.hero__photo-placeholder--gold::before {
    content:'';
    position:absolute; inset:0;
    background:
        radial-gradient(circle at 30% 20%, rgba(200,235,255,0.3) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(30,70,100,0.4) 0%, transparent 50%);
    pointer-events:none;
}
.hero__photo-placeholder--gold::after {
    content:'';
    position:absolute; inset:0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 14px,
            rgba(255,235,180,0.04) 14px,
            rgba(255,235,180,0.04) 15px
        );
    pointer-events:none;
}
.hero__photo-glow {
    position:absolute;
    width:340px; height:340px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(255,235,170,0.18) 0%, transparent 70%);
    filter: blur(20px);
    z-index:1;
}
.hero__photo-ornament {
    position:relative; z-index:2;
    width:160px;
}
.hero__photo-ornament svg { width:100%; height:auto; display:block; }
.hero__photo-quote {
    position:relative; z-index:2;
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    color: rgba(255,248,235,0.95);
    text-align: center;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
    padding: 0 24px;
}

/* ---- Who is it for ---- */
.for-whom__grid {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(260px, 1fr));
    gap:18px;
}
.for-card {
    background: var(--c-white);
    border:1px solid var(--c-border);
    border-radius: var(--r-md);
    padding:28px 26px;
    transition:all var(--t);
    position:relative;
}
.for-card:hover {
    border-color: var(--c-primary);
    box-shadow: var(--sh-md);
    transform:translateY(-2px);
}
.for-card__dot {
    width:8px; height:8px; border-radius:50%;
    background: var(--c-primary);
    margin-bottom:14px;
    opacity:0.6;
}
.for-card p {
    font-family: var(--font-b);
    font-size:0.975rem;
    font-weight:400;
    font-style:normal;
    letter-spacing:-0.005em;
    color: var(--c-text);
    line-height:1.6;
}

/* ---- Timeline ---- */
.timeline { display:flex; flex-direction:column; gap:0; }
.timeline-item {
    display:grid;
    grid-template-columns:auto 1fr;
    gap:0 36px;
    position:relative;
}
.timeline-left {
    display:flex;
    flex-direction:column;
    align-items:center;
    width:60px;
}
.timeline-num {
    width:52px; height:52px;
    border-radius:50%;
    background: var(--c-primary-light);
    border:2px solid var(--c-border);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
    font-family: var(--font-h);
    font-size:1.125rem;
    color: var(--c-primary);
    transition:all var(--t);
}
.timeline-item:hover .timeline-num {
    background: var(--c-primary);
    color: var(--c-white);
    border-color: var(--c-primary);
}
.timeline-line {
    width:2px;
    flex:1;
    background: var(--c-border);
    margin:6px 0;
    min-height:40px;
}
.timeline-item:last-child .timeline-line { display:none; }
.timeline-body { padding:4px 0 48px; }
.timeline-week {
    font-size:0.7rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase;
    color: var(--c-primary); margin-bottom:6px;
}
.timeline-title {
    font-family: var(--font-h);
    font-size:1.375rem; font-weight:400;
    color: var(--c-text);
    margin-bottom:12px;
}
.timeline-list {
    list-style:none; display:flex; flex-direction:column; gap:7px;
}
.timeline-list li {
    font-size:0.9375rem; color: var(--c-text-mid);
    padding-left:18px; position:relative;
}
.timeline-list li::before {
    content:'—'; position:absolute; left:0;
    color: var(--c-primary); opacity:0.6;
}

.timeline-badges {
    display:flex; flex-wrap:wrap; gap:10px;
    margin-top:32px;
}
.badge {
    display:inline-flex; align-items:center; gap:7px;
    background: var(--c-white);
    border:1px solid var(--c-border);
    border-radius:40px;
    padding:8px 18px;
    font-size:0.8125rem;
    color: var(--c-text-mid);
    white-space:nowrap;
}
.badge-dot { width:6px; height:6px; border-radius:50%; background: var(--c-primary); flex-shrink:0; }

/* ---- Features ---- */
.features-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px 64px;
    align-items:start;
}
.features-cards-col {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}
.feature-card {
    background: var(--c-white);
    border:1px solid var(--c-border);
    border-radius: var(--r-md);
    padding:22px 20px;
    transition:all var(--t);
}
.feature-card:hover {
    border-color: var(--c-primary);
    box-shadow: var(--sh-sm);
}
.feature-card__icon { font-size:1.25rem; margin-bottom:10px; line-height:1; }
.feature-card__title {
    font-size:0.9rem; font-weight:600;
    color: var(--c-text); margin-bottom:5px;
}
.feature-card__text {
    font-size:0.825rem;
    color: var(--c-text-mid); line-height:1.55;
}
.features-quote {
    margin-top:28px;
    padding:28px 28px;
    border-left:3px solid var(--c-primary);
    background: var(--c-primary-light);
    border-radius:0 var(--r-sm) var(--r-sm) 0;
}
.features-quote p {
    font-family: var(--font-i);
    font-size:1.25rem; font-style:italic; font-weight:400;
    color: var(--c-text); line-height:1.6;
}

/* ---- About ---- */
.about-grid {
    display:grid;
    grid-template-columns:400px 1fr;
    gap:72px;
    align-items:center;
}
.about-photo {
    border-radius: var(--r-lg);
    overflow:hidden;
    aspect-ratio:3/4;
    position:relative;
}
.about-photo img { width:100%; height:100%; object-fit:cover; }
.about-photo-placeholder {
    width:100%; height:100%;
    background: linear-gradient(160deg, #e8d6d7 0%, #9a626c 50%, #6f3542 100%);
    display:flex; align-items:center; justify-content:center;
}
.about-photo-placeholder span {
    font-family: var(--font-i); font-size:1.5rem; font-style:italic;
    color:rgba(255,255,255,0.7);
}
.about-name {
    font-family: var(--font-h);
    font-size:2rem; font-weight:400;
    margin-bottom:6px; color: var(--c-text);
}
.about-role {
    font-size:0.825rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
    color: var(--c-primary); margin-bottom:24px;
}
.about-text {
    font-size:1rem; color: var(--c-text-mid); line-height:1.8; margin-bottom:28px;
}
.about-stats {
    display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; margin-bottom:28px;
}
.stat { padding:18px 0; border-top:1px solid var(--c-border); }
.stat__num {
    font-family: var(--font-h); font-size:1.75rem;
    color: var(--c-primary); font-weight:400; line-height:1; margin-bottom:4px;
}
.stat__label { font-size:0.78rem; color: var(--c-text-soft); line-height:1.4; }

/* ---- Pricing ---- */
.pricing-grid {
    display:grid; grid-template-columns:1fr 1fr;
    gap:24px; max-width:760px; margin:0 auto;
}
.pricing-card {
    background: var(--c-white);
    border:1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    padding:40px 36px; position:relative;
    transition:all var(--t);
}
.pricing-card:hover { box-shadow: var(--sh-lg); transform:translateY(-4px); }
.pricing-card--featured {
    border-color: var(--c-primary);
    background: linear-gradient(160deg, #f2e7de 0%, #fdfaf6 60%);
}
.pricing-badge {
    position:absolute; top:-13px; left:50%; transform:translateX(-50%);
    background: var(--c-primary); color: var(--c-white);
    font-size:0.7rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
    padding:5px 20px; border-radius:40px; white-space:nowrap;
}
.pricing-label {
    font-size:0.72rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase;
    color: var(--c-text-soft); margin-bottom:10px;
}
.pricing-price {
    font-family: var(--font-h);
    font-size:2.8rem; font-weight:400;
    color: var(--c-text); line-height:1; margin-bottom:4px;
}
.pricing-price sup { font-size:1.2rem; vertical-align:super; }
.pricing-period { font-size:0.825rem; color: var(--c-text-soft); margin-bottom:28px; }
.pricing-features {
    list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:32px;
}
.pricing-features li {
    display:flex; align-items:flex-start; gap:10px;
    font-size:0.9rem; color: var(--c-text-mid); line-height:1.5;
}
.pricing-features li::before {
    content:'';
    display:block; flex-shrink:0; margin-top:4px;
    width:14px; height:14px; border-radius:50%;
    background: var(--c-primary-light);
    background-image:url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3 5.5L7 1' stroke='%236F3542' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:center;
}
.pricing-card .btn { width:100%; }

/* ---- FAQ ---- */
.faq-list { max-width:720px; margin:0 auto; display:flex; flex-direction:column; gap:0; }
.faq-item { border-bottom:1px solid var(--c-border); }
.faq-item:first-child { border-top:1px solid var(--c-border); }
.faq-question {
    width:100%; background:none; border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:space-between;
    padding:22px 0; gap:20px; text-align:left;
}
.faq-question span { font-size:1rem; font-weight:500; color: var(--c-text); line-height:1.5; }
.faq-icon {
    width:28px; height:28px; border-radius:50%;
    background: var(--c-primary-light);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0; transition:all var(--t); position:relative;
}
.faq-icon::before, .faq-icon::after {
    content:''; position:absolute;
    background: var(--c-primary); border-radius:2px; transition:all var(--t);
}
.faq-icon::before { width:10px; height:1.5px; }
.faq-icon::after  { width:1.5px; height:10px; }
.faq-item.open .faq-icon { background: var(--c-primary); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--c-white); }
.faq-item.open .faq-icon::after  { transform:rotate(90deg); opacity:0; }
.faq-answer { overflow:hidden; max-height:0; transition:max-height 0.35s ease; }
.faq-answer-inner {
    padding-bottom:22px;
    font-size:0.9375rem; color: var(--c-text-mid); line-height:1.75;
}

/* ---- Photo Strips ---- */
.photo-strip {
    display: flex;
    gap: 0;
    overflow: hidden;
    width: 100%;
}
.photo-strip > div {
    flex: 1;
    overflow: hidden;
}
.photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}
.photo-strip > div:hover img { transform: scale(1.03); }

.photo-strip--2 { height: 340px; }
.photo-strip--3 { height: 280px; }

.photo-strip--full { height: 260px; }
.photo-strip--full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

/* ---- Timeline duration tag ---- */
.timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--c-primary);
    background: var(--c-primary-light);
    border-radius: 40px;
    padding: 4px 13px;
    margin-bottom: 12px;
}
.timeline-type {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}
.timeline-title--deep { color: var(--c-text); }
.timeline-title--support { color: var(--c-text-mid); }

/* ---- 3 Months Grid ---- */
.months-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}
@media (max-width: 1200px) {
    .months-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
    .months-grid { grid-template-columns: repeat(2, 1fr); }
}
.month-card { padding: 22px 18px; }
.month-card__title { font-size: 1.15rem; }
.month-card__sub { font-size: 0.825rem; }
.month-card__list li { font-size: 0.825rem; }
.month-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow var(--t);
}
.month-card--active {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 2px var(--c-primary), var(--sh-md);
}
.month-card__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-primary);
}
.month-card__title {
    font-family: var(--font-h);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.3;
}
.month-card__sub {
    font-size: 0.85rem;
    color: var(--c-text-mid);
    line-height: 1.5;
    margin-bottom: 8px;
}
.month-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}
.month-card__list li {
    font-size: 0.85rem;
    color: var(--c-text-mid);
    padding-left: 16px;
    position: relative;
}
.month-card__list li::before {
    content: '·';
    position: absolute;
    left: 4px;
    color: var(--c-primary);
    font-weight: 700;
}
.months-why {
    background: var(--c-bg-alt);
    border-radius: var(--r-md);
    padding: 24px 32px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.months-why p {
    font-size: 0.95rem;
    color: var(--c-text-mid);
    line-height: 1.7;
}
.months-why strong { color: var(--c-text); }
.months-why__steps {
    list-style: none;
    counter-reset: stepCounter;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0 18px;
}
.months-why__steps li {
    counter-increment: stepCounter;
    position: relative;
    padding-left: 44px;
    font-size: 0.95rem;
    color: var(--c-text);
    line-height: 1.55;
}
.months-why__steps li::before {
    content: counter(stepCounter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-primary);
    color: #fff;
    font-family: var(--font-h);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}
.months-why__steps li strong {
    color: var(--c-text);
    font-weight: 600;
}
.months-why__note {
    font-family: var(--font-i);
    font-size: 1.05rem;
    color: var(--c-text-mid);
    font-style: italic;
    margin-top: 12px;
}

/* ---- Month Spotlight ---- */
.month-spotlight {
    margin-top: 48px;
    border: 2px solid var(--c-primary);
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, var(--c-primary-light) 0%, var(--c-white) 60%);
    overflow: hidden;
}
.month-spotlight__tag {
    background: var(--c-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.month-spotlight__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 40px;
    align-items: start;
}
.month-spotlight__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 8px;
}
.month-spotlight__title {
    font-family: var(--font-h);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--c-text);
    margin-bottom: 6px;
    line-height: 1.1;
}
.month-spotlight__sub {
    font-family: var(--font-i);
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--c-text-mid);
    margin-bottom: 20px;
}
.month-spotlight__desc {
    font-size: 0.9375rem;
    color: var(--c-text-mid);
    line-height: 1.72;
    margin-bottom: 28px;
}
.month-spotlight__topics-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text-soft);
    margin-bottom: 16px;
}
.month-spotlight__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.month-spotlight__list li {
    font-size: 0.9375rem;
    color: var(--c-text);
    line-height: 1.5;
    display: flex;
    gap: 10px;
}
.month-spotlight__list li strong {
    color: var(--c-text);
}

/* ---- Duration intro (1 vs 3 months) ---- */
.duration-intro {
    background: linear-gradient(135deg, var(--c-primary-light) 0%, var(--c-white) 60%);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 32px 32px;
    margin-bottom: 40px;
}
.duration-intro__title {
    font-family: var(--font-h);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--c-text);
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 24px;
}
.duration-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.duration-intro__card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 22px 22px;
}
.duration-intro__card--deep {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 1px var(--c-primary), var(--sh-sm);
}
.duration-intro__label {
    font-family: var(--font-h);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 10px;
}
.duration-intro__card p {
    font-size: 0.925rem;
    color: var(--c-text);
    line-height: 1.55;
}

/* ---- Pricing plans (1 month + 3 months side by side) ---- */
.pricing-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.pricing-plan {
    background: var(--c-bg-alt);
    border-radius: var(--r-md);
    padding: 16px 16px 14px;
    position: relative;
}
.pricing-plan--long {
    background: var(--c-primary-light);
    border: 1px solid var(--c-primary);
}
.pricing-plan__duration {
    font-family: var(--font-h);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-text-mid);
    margin-bottom: 6px;
}
.pricing-plan--long .pricing-plan__duration { color: var(--c-primary-dark); }
.pricing-plan__price {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-text);
    letter-spacing: -0.02em;
    line-height: 1;
}
.pricing-plan__tag {
    font-family: var(--font-i);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--c-primary-dark);
    margin-top: 8px;
    line-height: 1.3;
}

.pricing-desc--long {
    font-size: 0.85rem !important;
    color: var(--c-text-mid) !important;
    font-style: italic;
    padding-top: 10px;
    border-top: 1px dashed var(--c-border);
    margin-top: 12px;
}

/* ---- Pricing note ---- */
.pricing-note {
    max-width: 620px;
    margin: 32px auto 0;
    text-align: center;
    color: var(--c-text-soft);
    font-size: 0.85rem;
    line-height: 1.7;
    padding: 20px;
    border-top: 1px solid var(--c-border);
}

/* ---- Format note (in "how it works") ---- */
.format-note {
    max-width: 680px;
    margin: 28px auto 0;
    padding: 22px 26px;
    background: var(--c-primary-light);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
}
.format-note p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--c-text-mid);
    margin: 0;
}
.format-note strong { color: var(--c-text); font-weight: 600; }

/* ---- Pricing tier extras ---- */
.pricing-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--c-text-mid);
    margin: -14px 0 24px;
}
.pricing-subhead {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--c-text-soft);
    margin-bottom: 12px;
}
.pricing-subhead--excl { color: var(--c-text-soft); opacity: 0.85; }
.pricing-features--excl { margin-bottom: 24px; }
.pricing-features--excl li { color: var(--c-text-soft); }
.pricing-features--excl li::before {
    background: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7M7 1L1 7' stroke='%23b3a7ab' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ---- "Which format to choose" ---- */
.format-choice {
    max-width: 900px;
    margin: 64px auto 0;
    padding-top: 56px;
    border-top: 1px solid var(--c-border);
}
.format-choice__header { text-align: center; margin-bottom: 36px; }
.format-choice__title {
    font-family: var(--font-h);
    font-size: 2rem; font-weight: 400;
    color: var(--c-text); margin-top: 10px;
}
.format-choice__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.format-choice__card {
    background: var(--c-white);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 30px 28px;
}
.format-choice__card--deep {
    border-color: var(--c-primary);
    background: linear-gradient(160deg, #f2e7de 0%, #fdfaf6 60%);
}
.format-choice__tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--c-primary);
    padding: 5px 14px; margin-bottom: 16px;
    border: 1px solid var(--c-primary);
    border-radius: 40px;
}
.format-choice__card p {
    font-size: 0.95rem; line-height: 1.65;
    color: var(--c-text-mid); margin: 0;
}

/* ---- Final CTA ---- */
.cta-section {
    background: linear-gradient(140deg, #3a2b24 0%, #35211f 50%, #5a2a36 100%);
    text-align:center; padding:120px 0;
}
.cta-section .section-label { color:rgba(255,255,255,0.45); }
.cta-section .section-title { color: var(--c-white); margin-bottom:18px; }
.cta-section .section-title em { color: #d8a8b2; }
.cta-section .section-sub { color:rgba(255,255,255,0.65); margin:0 auto 40px; }
.cta-actions { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ---- Footer ---- */
.footer { background: var(--c-bg-dark); padding:48px 0 36px; }
.footer__inner {
    display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:20px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding-bottom:28px; margin-bottom:24px;
}
.footer__logo { font-family: var(--font-h); font-size:1.2rem; color:rgba(255,255,255,0.85); }
.footer__logo span { color: var(--c-primary); }
.footer__links { display:flex; gap:24px; }
.footer__links a { font-size:0.85rem; color:rgba(255,255,255,0.5); transition:color var(--t); }
.footer__links a:hover { color:rgba(255,255,255,0.85); }
.footer__bottom {
    display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:12px;
}
.footer__copy { font-size:0.8rem; color:rgba(255,255,255,0.3); }
.footer__tg { font-size:0.85rem; color:rgba(255,255,255,0.5); transition:color var(--t); }
.footer__tg:hover { color: var(--c-primary); }

/* ---- Fade-in ---- */
.fade-in { opacity:0; transform:translateY(20px); transition:opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width:960px) {
    .hero { grid-template-columns:1fr; min-height:auto; }
    .hero__photo { height:55vw; min-height:320px; order:-1; }
    .hero__content { padding:52px 0; max-width:100%; margin-left:0; }
    .features-grid { grid-template-columns:1fr; gap:32px; }
    .about-grid { grid-template-columns:1fr; gap:40px; }
    .about-photo { max-width:360px; aspect-ratio:3/4; }
}
@media (max-width:768px) {
    .section { padding:64px 0; }
    .header__nav, .header__cta .btn--outline { display:none; }
    .hamburger { display:flex; }
    .hero__title { font-size:2.2rem; }
    .pricing-grid { grid-template-columns:1fr; max-width:400px; }
    .format-choice__grid { grid-template-columns:1fr; max-width:440px; margin:0 auto; }
    .about-stats { grid-template-columns:1fr 1fr; }
    .features-cards-col { grid-template-columns:1fr; }
}
@media (max-width:540px) {
    .for-whom__grid { grid-template-columns:1fr; }
    .hero__actions { flex-direction:column; }
    .hero__actions .btn { width:100%; text-align:center; }
    .cta-actions { flex-direction:column; align-items:center; }
    .cta-actions .btn { width:100%; max-width:340px; }
}

/* ===================================================
   MOBILE — comprehensive
   =================================================== */

/* Tablet & below */
@media (max-width: 900px) {
    .container { padding: 0 20px; }

    /* HERO — stack vertically */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 70px;
    }
    .hero__content {
        padding: 36px 0 48px 0 !important;
        max-width: 100%;
    }
    .hero__photo {
        width: 100%;
        height: 50vh;
        min-height: 380px;
        position: relative;
        order: -1;
    }
    .hero__photo img {
        width: 100%; height: 100%;
        object-fit: cover;
        object-position: center top; /* keep Ksenia's face in frame on mobile */
        animation: none !important;
    }
    .hero__scroll { display: none; }

    /* SECTION */
    .section { padding: 64px 0; }

    /* ABOUT */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-photo {
        max-width: 320px;
        margin: 0 auto;
        aspect-ratio: 4/5;
    }

    /* FEATURES (Почему групповая терапия работает) */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .features-cards-col {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* MONTH SPOTLIGHT */
    .month-spotlight { margin-top: 36px; }
    .month-spotlight__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 28px 22px;
    }
    .month-spotlight__title { font-size: 1.9rem; }
    .month-spotlight__tag {
        padding: 10px 20px;
        font-size: 0.62rem;
        white-space: normal;
        line-height: 1.5;
    }

    /* MONTHS GRID */
    .months-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* PRICING */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .duration-intro { padding: 24px 20px; margin-bottom: 32px; }
    .duration-intro__title { font-size: 1.1rem; margin-bottom: 18px; }
    .duration-intro__grid { grid-template-columns: 1fr; gap: 14px; }
    .duration-intro__card { padding: 18px 18px; }
    .duration-intro__card p { font-size: 0.9rem; }
    .pricing-plan { padding: 14px 14px 12px; }
    .pricing-plan__price { font-size: 1.35rem; }
    .pricing-plan__tag { font-size: 0.8rem; }

    /* PHOTO STRIPS */
    .photo-strip--2 { height: 240px; }
    .photo-strip--3 { height: 200px; }
    .photo-strip--full { height: 200px; }
}

/* Phone */
@media (max-width: 600px) {
    .container { padding: 0 16px; }

    /* TYPOGRAPHY scale down */
    .section { padding: 56px 0; }
    .section-title { font-size: 1.7rem !important; line-height: 1.18; }
    .section-sub { font-size: 0.95rem; }
    .section-label { font-size: 0.66rem; letter-spacing: 0.14em; }

    /* HERO */
    .hero__title {
        font-size: 2.2rem !important;
        line-height: 1.1;
    }
    .hero__eyebrow {
        font-size: 0.62rem;
        padding: 8px 14px;
    }
    .hero__sub {
        font-size: 0.95rem;
    }
    .hero__sub br { display: none; }
    .hero__photo {
        height: 56vh;
        min-height: 320px;
    }
    .hero__title br { display: none; }
    .hero__title em { display: inline; }

    /* HERO checklist */
    .hero__check { font-size: 0.825rem; }

    /* HEADER */
    .header__logo { font-size: 1.1rem; }

    /* FOR WHOM cards */
    .for-whom__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .for-card { padding: 18px 18px; }
    .for-card p { font-size: 0.9rem; }

    /* FEATURES card column → 1col on small phone */
    .features-cards-col { grid-template-columns: 1fr; }
    .features-quote { padding: 22px 22px; }
    .features-quote p { font-size: 1rem; }

    /* TIMELINE */
    .timeline-item { grid-template-columns: 50px 1fr; }
    .timeline-left { width: 50px; }
    .timeline-num { width: 42px; height: 42px; font-size: 1rem; }
    .timeline-body { padding-bottom: 28px; }
    .timeline-title { font-size: 1.2rem; }
    .timeline-type { font-size: 0.72rem; }
    .timeline-list li { font-size: 0.875rem; }
    .timeline-badges { gap: 8px; }
    .badge { font-size: 0.75rem; padding: 7px 14px; }

    /* MONTH CARDS */
    .month-card { padding: 22px 20px; }
    .month-card__title { font-size: 1.15rem; }
    .months-why {
        padding: 18px 20px;
        font-size: 0.875rem;
    }

    /* MONTH SPOTLIGHT */
    .month-spotlight__title { font-size: 1.7rem; }
    .month-spotlight__sub { font-size: 0.9rem; }
    .month-spotlight__desc { font-size: 0.875rem; }
    .month-spotlight__list li {
        font-size: 0.88rem;
        gap: 8px;
    }
    .month-spotlight__list li strong { font-size: 0.92rem; }

    /* PRICING */
    .pricing-card { padding: 28px 22px; }
    .pricing-price { font-size: 2.4rem; }
    .pricing-features li { font-size: 0.875rem; }

    /* FAQ */
    .faq-question span { font-size: 0.9rem; }
    .faq-answer-inner { font-size: 0.875rem; padding: 16px 22px 22px; }

    /* ABOUT */
    .about-name { font-size: 1.6rem; }
    .about-role { font-size: 0.85rem; }
    .about-text { font-size: 0.9rem; }
    .about-stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
    .stat__num { font-size: 1.8rem; }
    .stat__label { font-size: 0.72rem; }

    /* CTA SECTION */
    .cta-section { padding: 80px 0; }
    .cta-section .section-title { font-size: 1.8rem !important; }

    /* BUTTONS */
    .btn { padding: 13px 24px; font-size: 0.9rem; }
    .btn--lg { padding: 15px 28px; font-size: 0.95rem; }
    .btn--sm { padding: 8px 16px; font-size: 0.78rem; }

    /* TICKER */
    .ticker { padding: 14px 0; }
    .ticker__item { font-size: 1rem; gap: 28px; }
    .ticker__track { gap: 28px; padding-left: 28px; }

    /* FOOTER */
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .footer__links {
        flex-wrap: wrap;
        gap: 14px;
    }

    /* PHOTO STRIPS smaller */
    .photo-strip--2 { height: 200px; }
    .photo-strip--3 { height: 160px; }
    .photo-strip--full { height: 180px; }

    /* HEADER CTA — hide outline button to save space */
    .header__cta { display: none; }

    /* ANIMATIONS reduced on mobile to feel snappier */
    .fade-in { transform: translateY(16px); transition-duration: 0.6s; }
}

@media (max-width: 380px) {
    .hero__title { font-size: 1.95rem !important; }
    .section-title { font-size: 1.5rem !important; }
    .container { padding: 0 14px; }
}

/* Prevent any horizontal overflow */
html, body { overflow-x: hidden; max-width: 100vw; }
.section, .container { max-width: 100%; }

/* ===================================================
   LIVE ANIMATIONS — make the site feel alive
   =================================================== */

/* ---- Smooth fade-in on scroll ---- */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger child animations */
.fade-in.visible .for-card,
.fade-in.visible .feature-card,
.fade-in.visible .month-card,
.fade-in.visible .pricing-card,
.fade-in.visible .timeline-item,
.fade-in.visible .stat,
.fade-in.visible .hero__check {
    animation: pop-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.fade-in.visible .for-card:nth-child(1) { animation-delay: 0.05s; }
.fade-in.visible .for-card:nth-child(2) { animation-delay: 0.10s; }
.fade-in.visible .for-card:nth-child(3) { animation-delay: 0.15s; }
.fade-in.visible .for-card:nth-child(4) { animation-delay: 0.20s; }
.fade-in.visible .for-card:nth-child(5) { animation-delay: 0.25s; }
.fade-in.visible .for-card:nth-child(6) { animation-delay: 0.30s; }
.fade-in.visible .for-card:nth-child(7) { animation-delay: 0.35s; }
.fade-in.visible .for-card:nth-child(8) { animation-delay: 0.40s; }

.fade-in.visible .feature-card:nth-child(1) { animation-delay: 0.05s; }
.fade-in.visible .feature-card:nth-child(2) { animation-delay: 0.12s; }
.fade-in.visible .feature-card:nth-child(3) { animation-delay: 0.19s; }
.fade-in.visible .feature-card:nth-child(4) { animation-delay: 0.26s; }
.fade-in.visible .feature-card:nth-child(5) { animation-delay: 0.33s; }
.fade-in.visible .feature-card:nth-child(6) { animation-delay: 0.40s; }

.fade-in.visible .timeline-item:nth-child(1) { animation-delay: 0.05s; }
.fade-in.visible .timeline-item:nth-child(2) { animation-delay: 0.20s; }
.fade-in.visible .timeline-item:nth-child(3) { animation-delay: 0.35s; }
.fade-in.visible .timeline-item:nth-child(4) { animation-delay: 0.50s; }

.fade-in.visible .month-card:nth-child(1) { animation-delay: 0.05s; }
.fade-in.visible .month-card:nth-child(2) { animation-delay: 0.20s; }
.fade-in.visible .month-card:nth-child(3) { animation-delay: 0.35s; }

.fade-in.visible .pricing-card:nth-child(1) { animation-delay: 0.10s; }
.fade-in.visible .pricing-card:nth-child(2) { animation-delay: 0.30s; }

.fade-in.visible .stat:nth-child(1) { animation-delay: 0.15s; }
.fade-in.visible .stat:nth-child(2) { animation-delay: 0.30s; }
.fade-in.visible .stat:nth-child(3) { animation-delay: 0.45s; }

.fade-in.visible .hero__check:nth-child(1) { animation-delay: 0.6s; }
.fade-in.visible .hero__check:nth-child(2) { animation-delay: 0.7s; }
.fade-in.visible .hero__check:nth-child(3) { animation-delay: 0.8s; }
.fade-in.visible .hero__check:nth-child(4) { animation-delay: 0.9s; }

@keyframes pop-in {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Hero entrance animations ---- */
.hero__eyebrow {
    animation: slide-down 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: 0.1s;
}
.hero__title {
    animation: slide-up 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: 0.25s;
}
.hero__sub {
    animation: slide-up 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: 0.45s;
}
.hero__actions {
    animation: slide-up 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: 0.6s;
}
.hero__photo {
    animation: photo-reveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: 0.2s;
}
.hero__photo img {
    animation: photo-zoom 1.4s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: 0.2s;
}
@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-down {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes photo-reveal {
    from { opacity: 0; clip-path: inset(20% 0 0 0); }
    to   { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes photo-zoom {
    from { transform: scale(1.18); }
    to   { transform: scale(1); }
}

/* Italic hero word — color shift loop */
.hero__title em {
    font-family: var(--font-i);
    font-style: italic;
    font-weight: 300;
    background: linear-gradient(90deg, var(--c-primary) 0%, #c99aa4 50%, var(--c-primary) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* ---- Card hover lift ---- */
.for-card,
.feature-card,
.month-card,
.pricing-card,
.faq-item {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease;
}
.for-card:hover,
.feature-card:hover,
.month-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(111, 53, 66, 0.18);
    border-color: var(--c-primary);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(111, 53, 66, 0.22);
}
.pricing-card--featured:hover {
    transform: translateY(-12px);
}

/* ---- Buttons: pulse + ripple ---- */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn--primary {
    box-shadow: 0 4px 16px rgba(111, 53, 66, 0.3);
}
.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(111, 53, 66, 0.5);
}
.btn--primary::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.btn--primary:hover::after {
    width: 320px; height: 320px;
}

/* Subtle pulse on the main hero CTA */
.hero__actions .btn--primary {
    animation: gentle-pulse 2.6s ease-in-out infinite;
}
@keyframes gentle-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(111, 53, 66, 0.3); }
    50%      { box-shadow: 0 6px 24px rgba(111, 53, 66, 0.55); }
}

/* ---- Header glass effect on scroll ---- */
.header {
    transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, padding 0.3s ease;
}
.header--scrolled {
    background: rgba(243, 236, 225, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(44, 31, 34, 0.06);
}

/* ---- Photo strip: smooth zoom on view ---- */
.photo-strip img {
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}
.photo-strip > div:hover img {
    transform: scale(1.08);
    filter: brightness(1.03);
}

/* Hero photo subtle floating */
.hero__photo img {
    will-change: transform;
}

/* ---- Scroll indicator on hero ---- */
.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--c-text-mid);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float-down 2.4s ease-in-out infinite;
    opacity: 0.55;
    pointer-events: none;
}
.hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, var(--c-text-mid), transparent);
}
@keyframes float-down {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
    50%      { transform: translate(-50%, 8px); opacity: 0.8; }
}

/* ---- Marquee ticker between sections ---- */
.ticker {
    background: var(--c-bg-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.ticker__track {
    display: inline-flex;
    animation: ticker-scroll 28s linear infinite;
    gap: 48px;
    padding-left: 48px;
}
.ticker__item {
    font-family: var(--font-i);
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    gap: 48px;
}
.ticker__item::after {
    content: '✦';
    color: var(--c-primary);
    font-size: 1rem;
    font-style: normal;
}
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---- Stats counter big numbers ---- */
.stat__num {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-burgundy) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s ease;
}
.stat:hover .stat__num {
    transform: scale(1.08);
}

/* ---- Section label dot pulse ---- */
.section-label::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--c-primary);
    margin-right: 8px;
    vertical-align: middle;
    animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.4; }
}

/* ---- Month-spotlight glow ---- */
.month-spotlight {
    position: relative;
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.month-spotlight:hover {
    box-shadow: 0 20px 60px rgba(111, 53, 66, 0.28);
}
.month-spotlight__tag {
    position: relative;
    overflow: hidden;
}
.month-spotlight__tag::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: tag-shine 3.5s ease-in-out infinite;
}
@keyframes tag-shine {
    0%, 100% { left: -100%; }
    50%      { left: 200%; }
}

/* ---- Timeline numbers — animated pulse ---- */
.timeline-num {
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}
.timeline-item:hover .timeline-num {
    transform: scale(1.12) rotate(-5deg);
    background: var(--c-primary);
    color: #fff;
}

/* ---- Mobile reductions ---- */
@media (max-width: 768px) {
    .ticker__item { font-size: 1.1rem; gap: 32px; }
    .hero__scroll { display: none; }
}

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================================
   HOMEPAGE ADDITIONS (kseniakot.com)
   =================================================== */

/* ---- Services / price grid ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.service-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1), border-color .3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(111,53,66,.18);
    border-color: var(--c-primary);
}
.service-card--featured {
    border-color: var(--c-primary);
    background: linear-gradient(160deg, var(--c-primary-light) 0%, #ffffff 55%);
}
.service-card__cover {
    width: 100%; height: 180px; object-fit: cover;
    border-radius: var(--r-md); margin-bottom: 22px;
}
.service-card__label {
    font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    color: var(--c-primary); margin-bottom: 10px;
}
.service-card__title {
    font-family: var(--font-h);
    font-size: 1.2rem; font-weight: 600; line-height: 1.3;
    color: var(--c-text); margin-bottom: 8px; letter-spacing: -.01em;
}
.service-card__meta { font-size: .8rem; color: var(--c-text-soft); margin-bottom: 12px; }
.service-card__price {
    font-family: var(--font-h);
    font-size: 1.9rem; font-weight: 700; letter-spacing: -.02em;
    color: var(--c-text); line-height: 1; margin-bottom: 18px;
}
.service-card__price small { font-size: .95rem; font-weight: 500; color: var(--c-text-soft); }
.service-card__desc { font-size: .9rem; color: var(--c-text-mid); line-height: 1.65; margin-bottom: 22px; }
.service-card__desc + .service-card__desc { margin-top: -12px; }
.service-card .btn { margin-top: auto; width: 100%; }

/* ---- Split feature block (group / club) ---- */
.split-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}
.split-block--rev .split-block__media { order: 2; }
.split-block__media {
    border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5;
    box-shadow: var(--sh-md);
}
.split-block__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.split-block__media:hover img { transform: scale(1.04); }
.split-block__body p { color: var(--c-text-mid); line-height: 1.75; margin-bottom: 14px; }
.split-block__body ul { list-style: none; margin: 18px 0 26px; display: flex; flex-direction: column; gap: 10px; }
.split-block__body ul li { position: relative; padding-left: 22px; color: var(--c-text-mid); line-height: 1.55; }
.split-block__body ul li::before {
    content: ''; position: absolute; left: 0; top: 9px;
    width: 8px; height: 8px; border-radius: 50%; background: var(--c-primary); opacity: .7;
}
.split-block__price {
    font-family: var(--font-h); font-size: 1.5rem; font-weight: 700;
    color: var(--c-text); margin: 6px 0 22px;
}
.split-block__price small { font-size: .95rem; font-weight: 500; color: var(--c-text-soft); }
@media (max-width: 900px) {
    .split-block { grid-template-columns: 1fr; gap: 32px; }
    .split-block--rev .split-block__media { order: -1; }
    .split-block__media { max-width: 420px; margin: 0 auto; }
}

/* ---- Simple slider (diplomas / reviews) ---- */
.pslider { position: relative; max-width: 760px; margin: 0 auto; }
.pslider__track { overflow: hidden; border-radius: var(--r-md); }
.pslider__slides { display: flex; align-items: center; transition: transform .45s cubic-bezier(.22,1,.36,1); }
.pslider__slides > * { flex: 0 0 100%; display: flex; justify-content: center; }
.pslider__slides img { max-height: 560px; width: auto; max-width: 100%; border-radius: var(--r-md); }
.pslider__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--c-border); background: var(--c-white); color: var(--c-text);
    font-size: 18px; cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--sh-sm); transition: all var(--t);
}
.pslider__nav:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.pslider__prev { left: -10px; } .pslider__next { right: -10px; }
.pslider__dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.pslider__dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--c-border); cursor: pointer; transition: all var(--t); }
.pslider__dots i.on { background: var(--c-primary); width: 22px; border-radius: 4px; }
@media (max-width: 600px) { .pslider__prev { left: 2px; } .pslider__next { right: 2px; } }

/* ---- Socials ---- */
.socials { max-width: 520px; margin: 0 auto; text-align: center; }
.socials__ava {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
    margin: 0 auto 24px; box-shadow: var(--sh-md); border: 3px solid var(--c-white);
}
.socials__btns { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.social-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 24px; border-radius: 40px; font-weight: 500; font-size: .95rem;
    color: #fff; transition: transform var(--t), box-shadow var(--t);
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.social-btn--tg { background: #229ED9; }
.social-btn--yt { background: #CC181E; }
.social-btn--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ---- Ads band ---- */
.ads-band {
    background: linear-gradient(140deg, #3a2b24 0%, #35211f 55%, #5a2a36 100%);
    color: #fff; text-align: center; border-radius: var(--r-lg);
    padding: 56px 40px; max-width: 900px; margin: 0 auto;
}
.ads-band .section-label { color: rgba(255,255,255,.55); }
.ads-band h3 { font-family: var(--font-h); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 600; color: #fff; margin-bottom: 16px; }
.ads-band p { color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 12px; line-height: 1.7; }
.ads-band .btn { margin-top: 24px; }
.ads-band .btn--outline-white { color:#fff; }

/* ---- Logo header compatibility (CLAUDE.md requires .site-logo → "/") ---- */
.header__logo.site-logo { color: var(--c-text); }
@media (max-width: 600px) { .ads-band { padding: 40px 24px; } }

/* ---- Hero: align left text with the section container gutter ---- */
@media (min-width: 901px) {
    .hero__content {
        max-width: none;
        padding-left: max(24px, calc((100vw - 1120px) / 2 + 24px));
        padding-right: 56px;
    }
    .hero__content .hero__title,
    .hero__content .hero__sub { max-width: 520px; }
}
@media (max-width: 900px) {
    .hero__content { padding-left: 20px !important; padding-right: 20px !important; }
}

/* ===================================================
   RICH SERIF RESTYLE + WORK LADDER (mockup 2026-07)
   =================================================== */

/* Cormorant needs more size/weight to hold the line */
.section-title { font-weight: 500; letter-spacing: 0; font-size: clamp(2.4rem, 4.4vw, 3.6rem); }
.hero__title { font-weight: 500; letter-spacing: .01em; line-height: 1.06; font-size: clamp(2.9rem, 5.4vw, 4.6rem); }
.hero__title em { font-weight: 400; }
.header__logo { font-family: var(--font-h); text-transform: uppercase; letter-spacing: .14em; font-size: 1.15rem; font-weight: 500; }
.header__logo span { color: var(--c-text); }
.about-name { font-weight: 500; font-size: 2.4rem; }
.timeline-title { font-weight: 500; font-size: 1.55rem; }
.service-card__title { font-weight: 500; font-size: 1.45rem; }
.month-spotlight__title, .format-choice__title { font-weight: 500; }
/* prices & numbers hold better in the sans */
.service-card__price, .pricing-price, .pricing-plan__price, .stat__num { font-family: var(--font-b); font-weight: 600; }
.timeline-num { font-family: var(--font-b); }

/* Handwritten accents */
.hand {
    font-family: var(--font-hand);
    font-size: 1.35rem;
    line-height: 1.45;
    color: var(--c-primary-dark);
    transform: rotate(-2deg);
    display: inline-block;
}
.hero .hand { margin-bottom: 34px; }

/* ---- Work ladder (Как можно работать со мной) ---- */
.ladder { position: relative; }
.ladder__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
}
/* connecting line behind the number chips */
.ladder__grid::before {
    content: '';
    position: absolute;
    top: 27px; left: 12%; right: 12%;
    height: 1px;
    background: var(--c-border);
    z-index: 0;
}
.ladder-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 26px;
    padding: 0 22px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1), border-color .3s ease;
}
.ladder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(74,54,38,.16);
    border-color: var(--c-primary);
}
.ladder-card__num {
    align-self: center;
    margin-top: 14px;
    background: var(--c-accent-light);
    color: var(--c-primary-dark);
    font-family: var(--font-b);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    border-radius: 40px;
    padding: 5px 22px;
    margin-bottom: 16px;
}
.ladder-card__title {
    font-family: var(--font-h);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--c-text);
    text-align: center;
    line-height: 1.12;
    margin-bottom: 8px;
}
.ladder-card__title .crown { font-size: 1rem; vertical-align: super; }
.ladder-card__sub {
    font-size: .875rem;
    color: var(--c-text-mid);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 14px;
    min-height: 40px;
}
.ladder-card__spark { text-align: center; color: var(--c-primary); font-size: .9rem; margin-bottom: 14px; opacity: .8; }
.ladder-card__photo {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 18px;
}
.ladder-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.ladder-card:hover .ladder-card__photo img { transform: scale(1.05); }
.ladder-card__desc { font-size: .9rem; color: var(--c-text-mid); line-height: 1.6; margin-bottom: 14px; }
.ladder-card__list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.ladder-card__list li {
    position: relative; padding-left: 22px;
    font-size: .855rem; color: var(--c-text-mid); line-height: 1.5;
}
.ladder-card__list li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    color: var(--c-primary); font-weight: 700; font-size: .8rem;
}
.ladder-card__offer {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 10px;
}
.ladder-card__offer-name { font-size: .8rem; color: var(--c-text-mid); line-height: 1.4; margin-bottom: 4px; }
.ladder-card__offer-price { font-family: var(--font-b); font-size: 1.05rem; font-weight: 700; color: var(--c-text); }
.ladder-card__offer-price small { font-size: .78rem; font-weight: 400; color: var(--c-text-soft); }
.ladder-card__price-row {
    display: flex; align-items: center; gap: 8px;
    font-size: .9rem; color: var(--c-text); margin-bottom: 8px;
}
.ladder-card__price-row b { font-family: var(--font-b); font-weight: 700; }
.ladder-card__price-row::before { content: '◷'; color: var(--c-primary); }
.ladder-card__note {
    display: flex; align-items: center; gap: 7px;
    font-size: .78rem; color: var(--c-text-soft); margin-bottom: 14px;
}
.ladder-card__foot { margin-top: auto; }
.ladder-card__pill {
    display: block; text-align: center;
    background: var(--c-accent-light);
    border-radius: 40px;
    font-family: var(--font-b); font-size: .95rem; font-weight: 700;
    color: var(--c-text);
    padding: 10px 18px; margin-bottom: 10px;
}
.ladder-card .btn { width: 100%; }
.btn--chocolate {
    background: #6f3542; color: #fdfaf6; border-color: #6f3542;
}
.btn--chocolate:hover {
    background: #5a2a36; border-color: #5a2a36;
    transform: translateY(-2px); box-shadow: var(--sh-md);
}

/* ladder quote below */
.ladder__quote { text-align: center; margin-top: 56px; }
.ladder__quote-main {
    font-family: var(--font-h);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 10px;
}
.ladder__quote-sub { color: var(--c-text-mid); font-size: 1rem; margin-bottom: 18px; }
.ladder__quote .hand { font-size: 1.6rem; }

/* trust strip */
.trust-strip {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 12px 40px;
    border: 1px solid var(--c-border);
    border-radius: 40px;
    padding: 16px 30px;
    margin-top: 44px;
    background: var(--c-white);
}
.trust-strip span { display: flex; align-items: center; gap: 9px; font-size: .875rem; color: var(--c-text-mid); }
.trust-strip span::before { content: '✦'; color: var(--c-primary); font-size: .8rem; }

@media (max-width: 1100px) {
    .ladder__grid { grid-template-columns: 1fr 1fr; }
    .ladder__grid::before { display: none; }
}
@media (max-width: 640px) {
    .ladder__grid { grid-template-columns: 1fr; }
    .ladder-card__sub { min-height: 0; }
    .trust-strip { border-radius: 24px; gap: 10px; padding: 16px 22px; flex-direction: column; align-items: flex-start; }
    .hand { font-size: 1.2rem; }
    .ladder__quote .hand { font-size: 1.35rem; }
}

/* ===================================================
   PREMIUM REWORK v4 — wine accent, new blocks
   =================================================== */

/* Warm color-grade for the cool grey photos */
.ph-warm { filter: sepia(.22) saturate(1.06) hue-rotate(-6deg) brightness(1.03) contrast(.97); }

/* Hero professional status line */
.hero__status {
    display: block;
    font-size: .8rem;
    letter-spacing: .04em;
    color: var(--c-text-soft);
    margin-top: 26px;
    line-height: 1.7;
}
.hero__status b { color: var(--c-text-mid); font-weight: 600; }

/* «Кому я помогаю» */
.help-block { max-width: 880px; margin: 0 auto; }
.help-block .section-title { text-align: center; }
.help-block__text {
    font-size: 1.02rem; color: var(--c-text-mid); line-height: 1.85;
    margin-bottom: 18px;
}
.help-block__text strong { color: var(--c-text); font-weight: 600; }
.help-list {
    columns: 2; column-gap: 48px;
    margin: 30px 0 0;
    list-style: none;
}
.help-list li {
    break-inside: avoid;
    position: relative;
    padding: 7px 0 7px 26px;
    font-size: .95rem; color: var(--c-text-mid); line-height: 1.55;
}
.help-list li::before {
    content: '—'; position: absolute; left: 0;
    color: var(--c-primary); font-weight: 600;
}
@media (max-width: 640px) { .help-list { columns: 1; } }

/* Профессиональная позиция */
.position-card {
    background: var(--c-primary-light);
    border-radius: var(--r-lg);
    padding: clamp(36px, 6vw, 64px);
    max-width: 960px; margin: 0 auto;
    text-align: center;
}
.position-card .section-label { color: var(--c-primary); }
.position-card h2 {
    font-family: var(--font-h);
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 22px;
}
.position-card p {
    font-size: 1rem; color: #6b5250; line-height: 1.85;
    max-width: 720px; margin: 0 auto 14px;
}

/* Ladder: compact price table rows (card 03) */
.ladder-card__pricelist { list-style: none; margin: 0 0 14px; }
.ladder-card__pricelist li {
    display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
    padding: 7px 0;
    border-bottom: 1px dashed var(--c-border);
    font-size: .865rem; color: var(--c-text-mid);
}
.ladder-card__pricelist li:last-child { border-bottom: 0; }
.ladder-card__pricelist b { font-family: var(--font-b); font-weight: 700; color: var(--c-text); white-space: nowrap; }
.ladder-card__group-label {
    font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--c-primary); margin: 10px 0 4px;
}
.ladder-card__tariff-price { display: flex; flex-direction: column; gap: 2px; }
.ladder-card__tariff-price small { font-size: .78rem; color: var(--c-text-soft); font-weight: 400; }

/* About: compact rework */
.about-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* Final block */
.cta-section .hand { color: #d8a8b2; }

/* ---- Socials: elegant lines (v5) ---- */
.social-lines { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; text-align: left; }
.social-line {
    display: flex; align-items: baseline; gap: 14px;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 18px 24px;
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .3s ease;
}
.social-line:hover {
    transform: translateY(-3px);
    border-color: var(--c-primary);
    box-shadow: 0 10px 28px rgba(111,53,66,.12);
}
.social-line__name {
    font-family: var(--font-h);
    font-size: 1.25rem; font-weight: 500;
    color: var(--c-text);
    min-width: 110px;
}
.social-line__desc { font-size: .875rem; color: var(--c-text-mid); flex: 1; }
.social-line__arr { color: var(--c-primary); font-size: 1.1rem; transition: transform .3s ease; }
.social-line:hover .social-line__arr { transform: translateX(5px); }
@media (max-width: 480px) {
    .social-line { flex-wrap: wrap; gap: 4px 10px; padding: 15px 18px; }
    .social-line__name { min-width: 0; }
    .social-line__desc { flex-basis: 100%; order: 3; }
    .social-line__arr { margin-left: auto; }
}

/* ===================================================
   INDIVIDUAL WORK PAGE (v6)
   =================================================== */

/* Topic cards — «С чем я работаю» */
.topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 800px) { .topic-grid { grid-template-columns: 1fr; } }
.topic-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    padding: 32px 30px;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .3s ease;
}
.topic-card:hover { transform: translateY(-4px); border-color: var(--c-primary); box-shadow: 0 14px 36px rgba(111,53,66,.1); }
.topic-card__title {
    font-family: var(--font-h);
    font-size: 1.5rem; font-weight: 500; line-height: 1.2;
    color: var(--c-text); margin-bottom: 6px;
}
.topic-card__lead {
    font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--c-primary); margin-bottom: 14px;
}
.topic-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.topic-card ul li {
    position: relative; padding-left: 22px;
    font-size: .9rem; color: var(--c-text-mid); line-height: 1.55;
}
.topic-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--c-primary); opacity: .7; }
.topic-card__after {
    font-family: var(--font-i); font-style: italic;
    font-size: 1.02rem; color: #6b5250; line-height: 1.6;
    border-top: 1px dashed var(--c-border); padding-top: 16px;
}

/* Format cards (60/90) */
.fmt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: 0 auto; }
@media (max-width: 760px) { .fmt-grid { grid-template-columns: 1fr; } }
.fmt-card {
    background: var(--c-white); border: 1.5px solid var(--c-border);
    border-radius: var(--r-lg); padding: 34px 32px;
    display: flex; flex-direction: column;
}
.fmt-card--hl { border-color: var(--c-primary); background: linear-gradient(160deg, #f6ebe6 0%, #fdfaf6 60%); }
.fmt-card__dur { font-family: var(--font-h); font-size: 2rem; font-weight: 500; color: var(--c-text); line-height: 1; margin-bottom: 4px; }
.fmt-card__for { font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c-text-soft); margin: 14px 0 10px; }
.fmt-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.fmt-card ul li { position: relative; padding-left: 20px; font-size: .89rem; color: var(--c-text-mid); line-height: 1.5; }
.fmt-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--c-primary); font-size: .78rem; font-weight: 700; }
.fmt-card__price { font-family: var(--font-b); font-size: 1.55rem; font-weight: 700; color: var(--c-text); margin-top: auto; }
.fmt-note { max-width: 640px; margin: 26px auto 0; text-align: center; font-size: .9rem; color: var(--c-text-soft); line-height: 1.7; }

/* Package cards */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.pkg-card {
    background: var(--c-white); border: 1px solid var(--c-border);
    border-radius: var(--r-lg); padding: 32px 28px;
    display: flex; flex-direction: column;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .3s ease;
}
.pkg-card:hover { transform: translateY(-5px); border-color: var(--c-primary); box-shadow: 0 16px 40px rgba(111,53,66,.12); }
.pkg-card--hl { border-color: var(--c-primary); box-shadow: 0 0 0 1px var(--c-primary); }
.pkg-card__n { font-family: var(--font-h); font-size: 2.6rem; font-weight: 500; color: var(--c-primary); line-height: 1; }
.pkg-card__label { font-size: .9rem; color: var(--c-text-mid); margin: 4px 0 16px; }
.pkg-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.pkg-card ul li { position: relative; padding-left: 20px; font-size: .875rem; color: var(--c-text-mid); line-height: 1.5; }
.pkg-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--c-primary); opacity: .7; }
.pkg-card__price { font-family: var(--font-b); font-size: 1.7rem; font-weight: 700; color: var(--c-text); margin: auto 0 18px; }
.pkg-card .btn { width: 100%; }

/* Results list — two columns */
.result-list { columns: 2; column-gap: 48px; list-style: none; max-width: 880px; margin: 0 auto; }
@media (max-width: 700px) { .result-list { columns: 1; } }
.result-list li {
    break-inside: avoid; position: relative;
    padding: 8px 0 8px 28px;
    font-size: .95rem; color: var(--c-text-mid); line-height: 1.6;
}
.result-list li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--c-primary); font-weight: 700; font-size: .85rem; }

/* Soft note block (не подойдёт / условия) */
.note-block {
    max-width: 820px; margin: 0 auto;
    background: var(--c-white); border: 1px solid var(--c-border);
    border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px);
}
.note-block p { font-size: .95rem; color: var(--c-text-mid); line-height: 1.8; margin-bottom: 14px; }
.note-block p:last-child { margin-bottom: 0; }
.note-block ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.note-block ul li { position: relative; padding-left: 24px; font-size: .93rem; color: var(--c-text-mid); line-height: 1.6; }
.note-block ul li::before { content: '·'; position: absolute; left: 6px; color: var(--c-primary); font-weight: 700; font-size: 1.3rem; line-height: 1.1; }

/* ---- Pain strip (4 mood photos) ---- */
.pain-strip { height: 300px; }
@media (max-width: 700px) {
    .pain-strip { flex-wrap: wrap; height: auto; }
    .pain-strip > div { flex: 1 1 50%; height: 180px; }
}

/* ---- Topic card photos (v8) ---- */
.topic-card__photo {
    border-radius: 14px; overflow: hidden;
    aspect-ratio: 16/10; margin: 12px 0 18px;
}
.topic-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.topic-card:hover .topic-card__photo img { transform: scale(1.05); }
.topic-card--wide { grid-column: 1 / -1; }
.topic-card--wide .topic-card__photo { aspect-ratio: 21/8; }
@media (max-width: 800px) { .topic-card--wide .topic-card__photo { aspect-ratio: 16/10; } }

/* ===================================================
   LADDER v2 — steps + dark ICON + materials (v9)
   =================================================== */

/* Deliberate stair effect on desktop (5-8%) */
@media (min-width: 1101px) {
    .ladder__grid > .ladder-card:nth-child(1) { margin-top: 48px; }
    .ladder__grid > .ladder-card:nth-child(2) { margin-top: 32px; }
    .ladder__grid > .ladder-card:nth-child(3) { margin-top: 16px; }
    .ladder__grid > .ladder-card:nth-child(4) { margin-top: 0; }
}

/* Smaller, calmer photos inside cards */
.ladder-card__photo { aspect-ratio: 16/10; margin-bottom: 16px; }

/* Mobile: vertical path with wine arrows */
@media (max-width: 640px) {
    .ladder__grid { gap: 44px; }
    .ladder-card:not(:last-child)::after {
        content: '↓';
        position: absolute;
        left: 50%; bottom: -36px;
        transform: translateX(-50%);
        color: var(--c-primary);
        font-size: 1.4rem;
        opacity: .7;
    }
}

/* ICON — premium dark wine card */
.ladder-card--icon {
    background: linear-gradient(165deg, #5a2a36 0%, #401f29 60%, #6f3542 100%);
    border-color: #5a2a36;
}
.ladder-card--icon .ladder-card__num { background: rgba(255,255,255,.14); color: #f0dfe2; }
.ladder-card--icon .ladder-card__title { color: #faf3ee; }
.ladder-card--icon .ladder-card__sub { color: rgba(250,240,235,.75); }
.ladder-card--icon .ladder-card__spark { color: #d8a8b2; }
.ladder-card--icon .ladder-card__desc { color: rgba(250,240,235,.78); }
.ladder-card--icon .ladder-card__note { color: rgba(250,240,235,.6); }
.ladder-card--icon:hover { box-shadow: 0 20px 50px rgba(64,31,41,.45); border-color: #9a626c; }
.ladder-card__flag {
    align-self: center;
    font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
    color: #d8a8b2; margin: -8px 0 10px;
}
.btn--milk { background: #F7F2EC; color: #5a2a36; border-color: #F7F2EC; }
.btn--milk:hover { background: #fff; border-color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.25); }

/* ---- Materials (open content) ---- */
.mat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .mat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .mat-grid { grid-template-columns: 1fr; } }
.mat-card {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .3s ease;
}
.mat-card:hover { transform: translateY(-5px); border-color: var(--c-primary); box-shadow: 0 14px 36px rgba(111,53,66,.12); }
.mat-card__cover {
    aspect-ratio: 16/9;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 18px 20px;
    position: relative;
}
.mat-card__cover--cream { background: linear-gradient(150deg, #efe6d9 0%, #e2d4c0 100%); }
.mat-card__cover--blush { background: linear-gradient(150deg, #e8d6d7 0%, #d9bcbe 100%); }
.mat-card__cover--wine  { background: linear-gradient(150deg, #6f3542 0%, #4a2028 100%); }
.mat-card__cover-title {
    font-family: var(--font-h);
    font-size: 1.25rem; font-weight: 500; line-height: 1.2;
    color: var(--c-text);
}
.mat-card__cover--wine .mat-card__cover-title { color: #faf3ee; }
.mat-card__type {
    position: absolute; top: 14px; left: 14px;
    font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    background: rgba(253,250,246,.92); color: var(--c-primary);
    border-radius: 40px; padding: 4px 12px;
}
.mat-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.mat-card__cat { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--c-text-soft); margin-bottom: 8px; }
.mat-card__desc { font-size: .875rem; color: var(--c-text-mid); line-height: 1.6; margin-bottom: 16px; }
.mat-card .btn { margin-top: auto; width: 100%; }

/* Filter chips + search */
.mat-tools { max-width: 760px; margin: 0 auto 40px; }
.mat-search {
    width: 100%;
    font-family: var(--font-b); font-size: .95rem;
    padding: 15px 22px;
    border: 1px solid var(--c-border); border-radius: 40px;
    background: var(--c-white); color: var(--c-text);
    outline: none; transition: border-color var(--t);
    margin-bottom: 18px;
}
.mat-search:focus { border-color: var(--c-primary); }
.mat-search::placeholder { color: var(--c-text-soft); }
.mat-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.mat-chip {
    font-family: var(--font-b); font-size: .8rem; font-weight: 500;
    padding: 8px 18px; border-radius: 40px; cursor: pointer;
    background: var(--c-white); color: var(--c-text-mid);
    border: 1px solid var(--c-border);
    transition: all var(--t);
}
.mat-chip:hover { border-color: var(--c-primary); color: var(--c-primary); }
.mat-chip.on { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.mat-empty { text-align: center; color: var(--c-text-soft); padding: 40px 0; display: none; }

/* Full-width card buttons may wrap on narrow screens */
.ladder-card .btn, .service-card .btn, .pkg-card .btn, .fmt-card .btn, .mat-card .btn { white-space: normal; line-height: 1.35; }

/* ---- Material cards with real video thumbnails (v10) ---- */
.mat-card__thumb {
    display: block; position: relative;
    aspect-ratio: 16/9; overflow: hidden;
}
.mat-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mat-card:hover .mat-card__thumb img { transform: scale(1.05); }
.mat-card__thumb::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(62,44,39,.05) 0%, rgba(62,44,39,.35) 100%);
    z-index: 1;
}
.mat-card__play {
    position: absolute; top: 50%; left: 50%; z-index: 2;
    transform: translate(-50%,-50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(253,250,246,.92);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-primary); font-size: 1.1rem; padding-left: 4px;
    transition: transform .3s ease, background .3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.mat-card:hover .mat-card__play { transform: translate(-50%,-50%) scale(1.1); background: #fff; }
.mat-card__title {
    font-family: var(--font-h);
    font-size: 1.15rem; font-weight: 500; line-height: 1.25;
    color: var(--c-text); margin-bottom: 10px;
}
.mat-card__thumb .mat-card__type { z-index: 2; }

/* Play button stays centered even on designed-cover video cards */
.mat-card__cover.mat-card__thumb .mat-card__play { top: 50%; left: 50%; }
.mat-card__cover.mat-card__thumb .mat-card__cover-title { position: relative; z-index: 2; }

/* ===================================================
   LSD LIBRARY PAGE (v13)
   =================================================== */
/* price line */
.lib-price { font-family: var(--font-b); font-weight: 700; color: var(--c-text); }
.lib-hero-price { font-family: var(--font-b); font-size: 2.4rem; font-weight: 700; color: var(--c-primary); line-height: 1; margin: 6px 0 4px; }
.lib-hero-price small { font-size: 1rem; font-weight: 500; color: var(--c-text-soft); }
.lib-hero-note { font-size: .85rem; color: var(--c-text-soft); margin-bottom: 22px; }

/* "что внутри" — format items */
.lib-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px){ .lib-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .lib-grid { grid-template-columns: 1fr; } }
.lib-item {
    background: var(--c-white); border: 1px solid var(--c-border);
    border-radius: var(--r-md); padding: 24px 22px;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .3s;
}
.lib-item:hover { transform: translateY(-4px); border-color: var(--c-primary); box-shadow: 0 12px 30px rgba(111,53,66,.1); }
.lib-item__ic { font-size: 1.5rem; margin-bottom: 12px; }
.lib-item__t { font-family: var(--font-h); font-size: 1.3rem; font-weight: 500; color: var(--c-text); margin-bottom: 6px; }
.lib-item__x { font-size: .9rem; color: var(--c-text-mid); line-height: 1.6; }

/* catalog category number */
.topic-card__n {
    display: inline-block; font-family: var(--font-b);
    font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    color: var(--c-primary); background: var(--c-accent-light);
    border-radius: 40px; padding: 4px 14px; margin-bottom: 12px;
}

/* "Сейчас в библиотеке" — wine feature */
.lib-now {
    background: linear-gradient(150deg, #5a2a36 0%, #401f29 60%, #6f3542 100%);
    border-radius: var(--r-lg); overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0;
}
.lib-now__body { padding: clamp(32px,4vw,52px); }
.lib-now__eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #d8a8b2; margin-bottom: 14px; }
.lib-now__title { font-family: var(--font-h); font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 500; color: #faf3ee; line-height: 1.15; margin-bottom: 16px; }
.lib-now__desc { color: rgba(250,240,235,.8); line-height: 1.7; margin-bottom: 18px; }
.lib-now__list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 26px; }
.lib-now__list li { position: relative; padding-left: 20px; color: rgba(250,240,235,.85); font-size: .92rem; }
.lib-now__list li::before { content: '—'; position: absolute; left: 0; color: #d8a8b2; }
.lib-now__media { align-self: stretch; min-height: 320px; }
.lib-now__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px){ .lib-now { grid-template-columns: 1fr; } .lib-now__media { order: -1; min-height: 240px; } }

/* price block centered */
.lib-buy { max-width: 640px; margin: 0 auto; text-align: center; background: var(--c-white); border: 1.5px solid var(--c-primary); border-radius: var(--r-lg); padding: clamp(32px,5vw,52px); }
.lib-buy__price { font-family: var(--font-b); font-size: 3rem; font-weight: 700; color: var(--c-text); line-height: 1; margin-bottom: 4px; }
.lib-buy__price small { font-size: 1.1rem; font-weight: 500; color: var(--c-text-soft); }
.lib-buy__incl { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; justify-content: center; margin: 22px 0 28px; }
.lib-buy__incl li { font-size: .82rem; color: var(--c-text-mid); background: var(--c-bg); border: 1px solid var(--c-border); border-radius: 40px; padding: 6px 14px; }
.lib-buy .btn { min-width: 240px; }
.lib-buy__fine { font-size: .8rem; color: var(--c-text-soft); line-height: 1.7; margin-top: 20px; }

/* ===================================================
   v14 — more air, varied accent colours, lighter feel
   =================================================== */

/* MORE AIR */
.section { padding: clamp(64px, 8.5vw, 116px) 0; }
.section-header { margin-bottom: 62px; }
.section-sub { line-height: 1.85; }
.topic-grid { gap: 24px; }
.ladder__grid { gap: 22px; }
.mat-grid { gap: 24px; }
.help-list li { padding: 9px 0 9px 26px; }
@media (max-width: 600px){ .section-header { margin-bottom: 40px; } }

/* SECONDARY TINTS — soft, expensive, varied */
.section--blush { background: #f4e4e3; }
.section--sage  { background: #e9ece1; }
.section--peach { background: #f8e8d7; }
.section--sky   { background: #e4eaee; }

/* labels + accent word adopt the section's colour → each block feels distinct */
.section--blush .section-label, .section--blush .section-title em { color: #b0697a; }
.section--sage  .section-label, .section--sage  .section-title em { color: #7d8a68; }
.section--peach .section-label, .section--peach .section-title em { color: #c0894f; }
.section--sky   .section-label, .section--sky   .section-title em { color: #6b8698; }
.section-label::before { background: currentColor; }

/* pulse dot inherits the varied colour too */
.section--blush .section-label::before,
.section--sage  .section-label::before,
.section--peach .section-label::before,
.section--sky   .section-label::before { background: currentColor; }


/* ===================================================
   CLUB PAGE ONLY — olive / beige-green theme (v16)
   =================================================== */
body.lsd-theme {
  --c-primary: #6f6d3f;
  --c-primary-dark: #565534;
  --c-primary-light: #e8e8d0;
  --c-accent: #8a8a55;
  --c-accent-light: #e8e8d0;
  --c-burgundy: #4a4a2e;
}
.lsd-theme .btn--chocolate { background:#6f6d3f; border-color:#6f6d3f; }
.lsd-theme .btn--chocolate:hover { background:#565534; border-color:#565534; }
.lsd-theme .btn--milk { color:#565534; }
.lsd-theme .cta-section { background: linear-gradient(140deg,#3a3a26 0%,#2c2c1c 50%,#565534 100%); }
.lsd-theme .cta-section .section-title em { color:#cfd0a0; }
.lsd-theme .lib-now { background: linear-gradient(150deg,#565534 0%,#3f3f28 60%,#6f6d3f 100%); }
.lsd-theme .lib-now__eyebrow, .lsd-theme .lib-now__list li::before { color:#cfd0a0; }
/* section tints -> green/olive family */
.lsd-theme .section--sage  { background:#e6e9cf; }
.lsd-theme .section--blush { background:#eef0dd; }
.lsd-theme .section--peach { background:#e1e4c6; }
.lsd-theme .section--sky   { background:#ecedd8; }
.lsd-theme .section--sage  .section-label, .lsd-theme .section--sage  .section-title em { color:#7a8a4a; }
.lsd-theme .section--blush .section-label, .lsd-theme .section--blush .section-title em { color:#8a8a4a; }
.lsd-theme .section--peach .section-label, .lsd-theme .section--peach .section-title em { color:#6f7b3a; }
.lsd-theme .section--sky   .section-label, .lsd-theme .section--sky   .section-title em { color:#7f8547; }

/* Club interface screenshot showcase (v17) */
.club-shot { max-width: 300px; margin: 0 auto; border-radius: 26px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.16); border: 6px solid #fff; }
.club-shot img { width: 100%; display: block; }

/* Club sample consultation (v18) */
.club-sample { max-width: 760px; margin: 0 auto; }
.club-sample__thumb { display:block; position:relative; border-radius: var(--r-lg); overflow:hidden; aspect-ratio:16/9; box-shadow: var(--sh-lg); }
.club-sample__thumb img { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.club-sample__thumb:hover img { transform: scale(1.04); }
.club-sample__thumb::before { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,0) 55%,rgba(0,0,0,.28) 100%); z-index:1; }
.club-sample__play { position:absolute; top:50%; left:50%; z-index:2; transform:translate(-50%,-50%);
  width:72px; height:72px; border-radius:50%; background:rgba(253,250,246,.94); display:flex; align-items:center; justify-content:center;
  color:var(--c-primary); font-size:1.4rem; padding-left:5px; box-shadow:0 6px 20px rgba(0,0,0,.3); transition:transform .3s ease; }
.club-sample__thumb:hover .club-sample__play { transform:translate(-50%,-50%) scale(1.08); }
.club-sample__cap { text-align:center; margin-top:20px; font-size:.95rem; color:var(--c-text-mid); }

/* Square photo for branded product covers in the ladder (v19) */
.ladder-card__photo--cover { aspect-ratio: 1/1; }
