/* ═══════════════════════════════════════════════════════
   mtolmacheva-psycholog.ru — stylesheet v4 "Editorial Wine"
   Palette: deep wine/aubergine + warm cream + dusty rose
   Mood: premium feminine editorial (ref: anitawomancode)
   ═══════════════════════════════════════════════════════ */
:root {
  --c-accent:     #D9A08F;   /* warm terracotta rose */
  --c-accent-dk:  #C5826E;
  --c-accent-lt:  rgba(217,160,143,.13);
  --c-sand:       #4A1613;   /* alt-section brick (lighter) */
  --c-bg:         #3D1010;   /* exact reference brick-maroon (eyedropped, dominant) */
  --c-bg-2:       #501A16;
  --c-text:       #F4E9E2;   /* warm cream */
  --c-text-2:     #D6B7AC;   /* muted warm beige */
  --c-text-3:     #A5867D;   /* dim */
  --c-border:     rgba(244,233,226,.14);
  --c-card:       rgba(244,233,226,.05);
  --ff-display: 'Saira Condensed', 'PT Sans Narrow', 'Oswald', system-ui, sans-serif;
  --ff-script: 'Caveat', cursive;
  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --r-sm: 2px; --r-md: 2px; --r-lg: 2px; --r-xl: 2px; --r-full: 99rem;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.25);
  --shadow-md: 0 8px 28px rgba(0,0,0,.35);
  --shadow-lg: 0 22px 60px rgba(0,0,0,.45);
  --transition: .22s ease;
  --container: 1180px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans); font-size: 1rem; line-height: 1.7;
  color: var(--c-text); background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(60vw 50vw at 88% -6%, rgba(217,160,143,.08), transparent 60%),
    radial-gradient(50vw 45vw at 4% 4%, rgba(120,28,24,.22), transparent 62%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 5vw, 2.5rem); }
::selection { background: var(--c-accent); color: #271219; }

/* ── Typography ───────────────────────────────────── */
.section-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.1rem, 6.8vw, 5.2rem); line-height: .92;
  letter-spacing: -.01em; text-transform: uppercase; overflow-wrap: break-word;
  color: var(--c-text); margin-bottom: 1rem;
}
.eyebrow {
  font-family: var(--ff-display); font-size: .9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--c-accent); margin-bottom: .9rem;
}
.text-center { text-align: center; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-alt { background: var(--c-sand); }
.lead { font-family: var(--ff-serif); font-size: clamp(1.2rem, 2.6vw, 1.7rem); font-style: italic; color: var(--c-text-2); max-width: 720px; line-height: 1.5; margin-bottom: 1.5rem; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 2px;
  font-family: var(--ff-display); font-size: .84rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em;
  transition: var(--transition); white-space: nowrap; cursor: pointer; border: 1.5px solid transparent;
}
.btn-primary { background: #fff; color: #2A1310; border-color: #fff; }
.btn-primary:hover { background: rgba(255,255,255,.86); transform: translateY(-2px); }
.btn-accent { background: #fff; color: #2A1310; border-color: #fff; }
.btn-accent:hover { background: rgba(255,255,255,.86); }
.btn-outline { border-color: rgba(244,233,226,.5); color: var(--c-text); }
.btn-outline:hover { background: rgba(244,233,226,.08); border-color: var(--c-text); }
.btn-ghost { color: var(--c-text); border-color: var(--c-border); }
.btn-ghost:hover { background: rgba(243,232,225,.06); }
.btn-lg { padding: 1rem 2.5rem; font-size: .86rem; }
.btn-full { width: 100%; }

/* ── TOPBAR ───────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(31,14,19,.72); backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--c-border); transition: box-shadow var(--transition);
}
.topbar.scrolled { box-shadow: var(--shadow-md); }
.topbar .nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.topbar .brand {
  font-family: var(--ff-display); font-weight: 700; text-transform: uppercase;
  font-size: .98rem; letter-spacing: .18em; color: var(--c-text);
}
.topbar .links { display: none; gap: 28px; }
.topbar .links a { font-family: var(--ff-display); color: var(--c-text-2); font-size: .76rem; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; transition: var(--transition); }
.topbar .links a:hover, .topbar .links a.active { color: var(--c-accent); }
.topbar .nav-cta { font-size: .72rem; padding: .6rem 1.4rem; }
@media (min-width: 768px) { .topbar .links { display: flex; } }
.burger { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; padding: 4px 0; }
.burger span { display: block; height: 2px; width: 100%; background: var(--c-text); border-radius: 2px; transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 767px) {
  .burger { display: flex; }
  .topbar .links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #25121A; border-bottom: 1px solid var(--c-border);
    flex-direction: column; padding: 1rem 1.5rem; gap: 14px; z-index: 99;
  }
  .topbar .links.open { display: flex; }
}

/* ── HERO (full-bleed editorial) ──────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 24%; filter: grayscale(1) contrast(1.04) brightness(.82); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: #3D1010; mix-blend-mode: color; opacity: .68; pointer-events: none; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(40,9,9,.55) 0%, rgba(50,11,11,.14) 30%, rgba(61,16,16,.82) 80%, var(--c-bg) 100%),
    linear-gradient(90deg, rgba(40,9,9,.74) 0%, rgba(50,11,11,.2) 55%, transparent 80%);
}
.hero-inner { padding-block: clamp(3rem, 8vh, 6rem) clamp(3.5rem, 9vh, 6rem); width: 100%; }
.hero-content { max-width: 680px; }
.hero-eyebrow { color: rgba(243,232,225,.78); }
.hero-title {
  position: relative; font-family: var(--ff-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3rem, 15vw, 8rem); line-height: .82; letter-spacing: -.01em;
  color: #fff; margin-bottom: 1.4rem; overflow-wrap: normal; word-break: keep-all;
}
.hero-title span { display: block; }
.hero-title-glow { color: #fff; text-shadow: 0 0 26px rgba(255,255,255,.45), 0 2px 8px rgba(0,0,0,.4); }
.hero-script {
  display: inline-block !important; font-family: var(--ff-script); font-weight: 600;
  text-transform: none; letter-spacing: 0; font-size: clamp(1.6rem, 6vw, 3.4rem);
  color: #fff; line-height: 1; transform: rotate(-6deg);
  position: absolute; right: clamp(.5rem, 4vw, 4rem); top: clamp(1.2rem, 5vw, 2.4rem);
  text-shadow: 0 2px 14px rgba(0,0,0,.5); pointer-events: none;
}
.hero-desc { font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(243,232,225,.92); line-height: 1.7; margin-bottom: 2.2rem; max-width: 540px; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; max-width: 480px; }
.btn-hero { background: #fff; color: #1C0D12; border-color: #fff; padding: 1.05rem 2.4rem; flex: 1 1 auto; min-width: 220px; letter-spacing: .2em; }
.btn-hero:hover { background: rgba(255,255,255,.88); transform: translateY(-2px); }
.btn-hero-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-hero-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ── ABOUT ────────────────────────────────────────── */
.about-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.about-photo { width: 100%; max-width: 410px; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); outline: 1px solid var(--c-border); outline-offset: -1px; }
.about-text { color: var(--c-text-2); margin-bottom: 1.5rem; }
.about-text p + p { margin-top: .75rem; }
.cred-list { margin: 1.25rem 0; display: flex; flex-direction: column; gap: .6rem; }
.cred-item { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--c-text-2); }
.cred-check { color: var(--c-accent); font-weight: 700; flex-shrink: 0; }
.principles { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.25rem 0 2rem; }
.principle-tag { font-family: var(--ff-display); padding: .45rem 1rem; background: var(--c-accent-lt); color: var(--c-accent); border: 1px solid var(--c-border); border-radius: var(--r-full); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* ── TOPICS (with blurred numbering) ──────────────── */
.topics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1px; margin-top: 3rem; counter-reset: topic; background: var(--c-border); border: 1px solid var(--c-border); }
.topic-card { position: relative; counter-increment: topic; background: var(--c-bg); padding: 2.2rem 1.8rem; transition: var(--transition); overflow: hidden; }
.topic-card::before {
  content: counter(topic, decimal-leading-zero); position: absolute; bottom: -.22em; right: .06em;
  font-family: var(--ff-display); font-weight: 800; font-size: 6rem; line-height: 1;
  color: rgba(244,233,226,.07); filter: blur(2px); pointer-events: none; z-index: 0;
}
.topic-card > * { position: relative; z-index: 1; }
.topic-card:hover { background: var(--c-bg-2); }
.topic-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.topic-title { font-family: var(--ff-display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; margin-bottom: .5rem; }
.topic-desc { font-size: .98rem; color: var(--c-text-2); }

/* ── SERVICES ─────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.service-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card--featured { background: linear-gradient(160deg, rgba(216,155,140,.22), rgba(216,155,140,.06)); border-color: rgba(216,155,140,.5); }
.service-card--featured .service-desc, .service-card--featured .service-dur, .service-card--featured .price-eur { color: var(--c-text-2); }
.service-card-img { position: relative; min-height: 3rem; }
.service-card-img .service-photo { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.service-badge { position: absolute; top: .75rem; right: .75rem; z-index: 2; background: var(--c-accent); color: #271219; font-family: var(--ff-display); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .3rem .8rem; border-radius: var(--r-full); }
.service-body { padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.service-title { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; }
.service-desc { font-size: .9rem; color: var(--c-text-2); flex: 1; }
.service-dur { font-size: .85rem; color: var(--c-text-3); }
.service-price { display: flex; align-items: baseline; gap: .5rem; margin-top: .25rem; }
.price-rub { font-family: var(--ff-display); font-size: 2.1rem; font-weight: 800; letter-spacing: -.01em; color: var(--c-text); }
.price-eur { font-size: 1rem; color: var(--c-text-3); }
.service-card--featured .price-rub { color: var(--c-text); }
.service-detail-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }

/* ── PRICING ──────────────────────────────────────── */
.pricing-grid { max-width: 720px; margin: 2rem auto 0; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; border-bottom: 1px solid var(--c-border); position: relative; }
.pricing-cta { opacity: 0; transition: opacity .2s; flex-shrink: 0; margin-left: 1rem; }
.pricing-row:hover .pricing-cta { opacity: 1; }
.pricing-info { flex: 1; }
.pricing-name { font-family: var(--ff-display); font-weight: 600; font-size: 1rem; margin-bottom: .15rem; }
.pricing-dur { font-size: .85rem; color: var(--c-text-3); }
.pricing-cost { text-align: right; white-space: nowrap; }
.pricing-cost strong { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 800; letter-spacing: -.01em; color: var(--c-text); }
.pricing-eur { font-size: .85rem; color: var(--c-text-3); margin-left: .4rem; }

/* ── COURSES ──────────────────────────────────────── */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.course-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
.course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.course-card--free { border-color: rgba(216,155,140,.5); }
.course-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.course-body { padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.course-badge { font-family: var(--ff-display); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .3rem .8rem; border-radius: var(--r-full); display: inline-block; width: fit-content; }
.course-badge--free { background: var(--c-accent-lt); color: var(--c-accent); border: 1px solid var(--c-border); }
.course-title { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; }
.course-desc { font-size: .9rem; color: var(--c-text-2); }
.course-bullets { list-style: disc; padding-left: 1.25rem; font-size: .9rem; color: var(--c-text-2); }
.course-bullets li { margin-bottom: .3rem; }
.course-price { display: flex; align-items: baseline; gap: .6rem; margin-top: auto; padding-top: .5rem; }
.price-free { font-family: var(--ff-display); font-size: 2rem; font-weight: 800; color: var(--c-text); }
.price-old { font-size: 1.05rem; color: var(--c-text-3); text-decoration: line-through; }
.price-current { font-family: var(--ff-display); font-size: 2.1rem; font-weight: 800; letter-spacing: -.01em; color: var(--c-text); }

/* ── VIDEO ────────────────────────────────────────── */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 820px; margin: 2rem auto 0; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ── GALLERY ──────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .75rem; margin-top: 2rem; }
.gallery-item { position: relative; border-radius: var(--r-md); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: filter .3s ease, transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-warning { color: var(--c-text-3); font-size: .9rem; margin-top: 1rem; }
.gallery-spoiler .spoiler-item img { filter: blur(18px) brightness(.7); }
.gallery-spoiler .spoiler-item.revealed img { filter: none; }
.spoiler-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.3); color: #fff; font-size: .85rem; font-weight: 500; pointer-events: none; transition: opacity .3s; }
.spoiler-item.revealed .spoiler-overlay { opacity: 0; }
.gallery-caption { padding: .5rem; font-size: .82rem; color: var(--c-text-2); text-align: center; }

/* ── REVIEWS ──────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.review-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 1.9rem; display: flex; flex-direction: column; gap: .75rem; }
.review-stars { color: var(--c-accent); font-size: 1rem; letter-spacing: .05em; }
.review-text { font-family: var(--ff-serif); font-style: italic; font-size: 1.1rem; color: var(--c-text); line-height: 1.55; flex: 1; }
.review-author { display: flex; flex-direction: column; gap: .1rem; border-top: 1px solid var(--c-border); padding-top: .75rem; }
.review-name { font-family: var(--ff-display); font-weight: 600; font-size: .95rem; }
.review-city { font-size: .85rem; color: var(--c-text-3); }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

/* ── CONTACTS & FORM ──────────────────────────────── */
.contacts-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.contacts-desc { color: var(--c-text-2); margin: 1rem 0 2rem; max-width: 380px; }
.contacts-list { display: flex; flex-direction: column; gap: .85rem; }
.contact-item { display: flex; align-items: center; gap: .75rem; font-size: 1rem; color: var(--c-text); transition: color var(--transition); }
.contact-item:hover { color: var(--c-accent); }
.contact-ico { font-size: 1.2rem; }
.form-wrap { background: var(--c-bg-2); border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-md); }
.form-title { font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.2rem; margin-bottom: 1.5rem; }
.lead-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .88rem; font-weight: 500; color: var(--c-text-2); }
.form-group input, .form-group textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--c-border);
  border-radius: var(--r-md); font-family: var(--ff-sans); font-size: .95rem;
  background: rgba(243,232,225,.05); color: var(--c-text); transition: border-color var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--c-text-3); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--c-accent); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: .78rem; color: var(--c-text-3); text-align: center; margin-top: .25rem; }
.contact-method-tabs { display: flex; gap: .5rem; }
.method-tab { flex: 1; padding: .65rem 1rem; border: 1.5px solid var(--c-border); border-radius: var(--r-md); font-size: .9rem; font-weight: 500; text-align: center; background: transparent; color: var(--c-text-2); cursor: pointer; transition: var(--transition); }
.method-tab.active { border-color: var(--c-accent); color: var(--c-accent); background: var(--c-accent-lt); }
.method-tab:hover { border-color: var(--c-accent); }

/* ── CTA Band ─────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, #5A211C, #3C100F); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); color: var(--c-text); text-align: center; }
.cta-band .section-title { color: var(--c-text); }
.cta-band .cta-desc { color: var(--c-text-2); max-width: 560px; margin: 0 auto 1.5rem; }
.cta-band .btn-primary { background: #fff; color: #3C100F; border-color: #fff; }
.cta-band .btn-primary:hover { background: rgba(255,255,255,.86); }
.cta-band input, .cta-band textarea { background: rgba(243,232,225,.08); border: 1px solid var(--c-border); color: var(--c-text); border-radius: var(--r-md); padding: .8rem 1rem; font-size: 1rem; width: 100%; }
.cta-band input::placeholder, .cta-band textarea::placeholder { color: var(--c-text-3); }
.cta-band .form-group { margin-bottom: .75rem; }

/* ── Landing Page Cards ───────────────────────────── */
.lps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.lp-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); color: var(--c-text); text-decoration: none; }
.lp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.lp-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.lp-card-img.img-placeholder { font-size: 3rem; }
.lp-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.lp-card-title { font-family: var(--ff-display); font-weight: 600; font-size: 1rem; line-height: 1.4; }
.lp-card-desc { font-size: .88rem; color: var(--c-text-2); line-height: 1.5; flex: 1; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--c-border); padding: 1.5rem 0; }
.faq-question { position: relative; display: block; padding-right: 48px; font-family: var(--ff-sans); font-weight: 600; font-size: clamp(1.1rem, 3.2vw, 1.35rem); line-height: 1.35; cursor: pointer; list-style: none; }
.faq-q-text { display: block; }
.faq-q-ico { position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--ff-sans); font-size: 2.4rem; font-weight: 300; line-height: 1; color: var(--c-text); transition: transform .25s ease, color .2s; }
.faq-question:hover .faq-q-ico { color: var(--c-accent); }
.faq-item[open] .faq-q-ico { transform: translateY(-50%) rotate(45deg); color: var(--c-accent); }
.faq-answer { padding: 1rem 0 .25rem; font-size: 1.05rem; color: var(--c-text-2); line-height: 1.7; max-width: 680px; }
.faq-question::-webkit-details-marker { display: none; }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: #1C0D12; color: var(--c-text-2); padding: 4rem 0 2rem; border-top: 1px solid var(--c-border); }
.footer h3 { font-family: var(--ff-display); color: var(--c-text); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: .7rem; }
.footer a { color: var(--c-text-2); transition: color .2s; }
.footer a:hover { color: var(--c-accent); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; }
.footer-copy { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--c-border); font-size: .85rem; color: var(--c-text-3); }
.footer-socials { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .5rem; }
.social-circle { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--c-border); font-size: 1.1rem; transition: var(--transition); line-height: 1; }
.social-circle:hover { background: rgba(243,232,225,.1); border-color: var(--c-accent); transform: scale(1.08); }

/* ── THANK YOU ────────────────────────────────────── */
.thankyou { min-height: calc(100svh - 68px); display: flex; align-items: center; justify-content: center; background: var(--c-sand); }

/* ── PHOTO PLACEHOLDERS (slots for client photos) ─── */
.photo-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem;
  background: repeating-linear-gradient(45deg, rgba(244,233,226,.05), rgba(244,233,226,.05) 10px, rgba(244,233,226,.025) 10px, rgba(244,233,226,.025) 20px);
  border: 1.5px dashed rgba(244,233,226,.28); color: var(--c-text-2);
  text-align: center; position: relative;
}
.photo-ph::before { content: '⬚'; font-size: 1.6rem; color: var(--c-accent); opacity: .8; line-height: 1; }
.photo-ph .ph-label { font-family: var(--ff-display); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
.photo-ph .ph-dim { font-size: .64rem; color: var(--c-text-3); letter-spacing: .06em; }
.photo-ph--card { aspect-ratio: 4/3; width: 100%; margin-bottom: 1.1rem; }
.photo-ph--wide { aspect-ratio: 16/9; width: 100%; }
.photo-ph--square { aspect-ratio: 1/1; width: 100%; }
.photo-ph--avatar { width: 96px; height: 96px; border-radius: 50%; }

/* ── PLACEHOLDERS ─────────────────────────────────── */
.img-placeholder { background: linear-gradient(135deg, #3A1B23 0%, #4A2029 100%); display: flex; align-items: center; justify-content: center; color: var(--c-accent); font-size: 2rem; position: relative; }
.service-placeholder { aspect-ratio: 16/10; width: 100%; }
.card-photo.img-placeholder { aspect-ratio: 16/10; width: 100%; font-size: 2.5rem; }

/* ── Ceny hero ────────────────────────────────────── */
.ceny-hero-section { padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(2rem, 5vw, 4rem); }
.ceny-hero-inner { display: grid; grid-template-columns: 1fr auto; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.ceny-hero-text .section-title { margin-bottom: .75rem; }
.ceny-hero-text .lead { margin-bottom: 1.5rem; }
.ceny-hero-photo { width: clamp(180px, 22vw, 300px); aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.ceny-hero-photo.img-placeholder { width: clamp(180px, 22vw, 300px); aspect-ratio: 3/4; border-radius: var(--r-xl); font-size: 4rem; }
@media (max-width: 640px) { .ceny-hero-inner { grid-template-columns: 1fr; } .ceny-hero-photo-wrap { display: none; } }

/* ── CARDS ────────────────────────────────────────── */
.cards-grid { display: grid; gap: 24px; margin-top: 2rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden; }
.card-link { display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-photo { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card-body h2, .card-body h3 { font-family: var(--ff-display); font-weight: 700; margin-bottom: .5rem; }
.card-body h2 a, .card-body h3 a { color: var(--c-text); }
.card-body h2 a:hover, .card-body h3 a:hover { color: var(--c-accent); }
.card-title { font-size: 1.15rem; }
.card-excerpt { color: var(--c-text-2); font-size: .92rem; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.card-tag { font-family: var(--ff-display); display: inline-block; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; padding: .28rem .7rem; border-radius: var(--r-full); background: var(--c-accent-lt); color: var(--c-accent); border: 1px solid var(--c-border); margin-bottom: .75rem; }

/* ── Article ──────────────────────────────────────── */
.article-container { max-width: 780px; margin: 0 auto; }
.article-hero-img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: var(--r-lg); margin-bottom: 2rem; }
.article-title { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.7rem, 3.5vw, 2.7rem); line-height: 1.08; margin-bottom: 1.5rem; }
.article-body { font-size: 1.05rem; line-height: 1.8; color: var(--c-text-2); }
.article-body p { margin-bottom: 1.25rem; }
.article-body h2 { font-family: var(--ff-display); font-weight: 700; color: var(--c-text); font-size: 1.45rem; margin: 2rem 0 .75rem; }
.article-body h3 { font-family: var(--ff-display); color: var(--c-text); font-size: 1.15rem; margin: 1.5rem 0 .5rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-body li { margin-bottom: .4rem; }
.article-body a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.article-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--c-border); }

/* ── Case / Topic ─────────────────────────────────── */
.case-detail { max-width: 880px; margin: 0 auto; }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 2rem 0; }
@media (max-width: 640px) { .case-grid { grid-template-columns: 1fr; } }
.topic-img { width: 100%; max-width: 700px; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-lg); margin: 2rem 0; }
.topic-body { font-size: 1.05rem; line-height: 1.8; color: var(--c-text-2); margin-top: 1.5rem; }
.topic-body p { margin-bottom: 1rem; }

/* ══════════ BLOCK BUILDER STYLES ══════════ */
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.advantage-card { text-align: center; padding: 2rem 1.5rem; background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); }
.advantage-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.advantage-card h3 { font-family: var(--ff-display); font-weight: 600; margin-bottom: .5rem; }
.advantage-card p { font-size: .9rem; color: var(--c-text-2); }

.columns-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.column-item img { border-radius: var(--r-md); margin-bottom: 1rem; }
.column-item h3 { font-family: var(--ff-display); font-weight: 600; margin-bottom: .4rem; }
.column-item p { font-size: .9rem; color: var(--c-text-2); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.team-card { text-align: center; }
.team-photo { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; box-shadow: var(--shadow-md); outline: 1px solid var(--c-border); }
.team-card h3 { font-family: var(--ff-display); font-weight: 600; }
.team-role { font-size: .9rem; color: var(--c-accent); margin-bottom: .5rem; }
.team-bio { font-size: .9rem; color: var(--c-text-2); }
.team-exp { font-size: .85rem; color: var(--c-text-3); margin-top: .25rem; }

.stages-list { max-width: 720px; margin: 2rem auto 0; }
.stage-item { display: flex; gap: 1.5rem; padding: 1.4rem 0; border-bottom: 1px solid var(--c-border); align-items: flex-start; }
.stage-num { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: transparent; border: 1.5px solid var(--c-accent); color: var(--c-accent); font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
.stage-content h3 { font-family: var(--ff-display); font-weight: 600; margin-bottom: .25rem; }
.stage-content p { font-size: .92rem; color: var(--c-text-2); }

.tariffs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.tariff-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 2rem 1.5rem; text-align: center; }
.tariff-card--featured { border-color: rgba(216,155,140,.5); box-shadow: var(--shadow-md); background: linear-gradient(160deg, rgba(216,155,140,.16), transparent); }
.tariff-card h3 { font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.2rem; margin-bottom: .5rem; }
.tariff-desc { font-size: .9rem; color: var(--c-text-2); margin-bottom: 1rem; }
.tariff-price { margin: 1rem 0; }
.tariff-price strong { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 800; letter-spacing: -.01em; color: var(--c-text); }

.partners-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center; margin-top: 2.5rem; }
.partner-logo { opacity: .6; transition: opacity .2s; filter: brightness(0) invert(1); }
.partner-logo:hover { opacity: 1; }
.partner-logo img { height: 48px; width: auto; }

.schedule-list { max-width: 720px; margin: 2rem auto 0; }
.schedule-row { display: flex; gap: 1.5rem; padding: 1.1rem 0; border-bottom: 1px solid var(--c-border); }
.schedule-time { flex-shrink: 0; font-family: var(--ff-display); font-weight: 700; color: var(--c-accent); min-width: 80px; }
.schedule-row h3 { font-family: var(--ff-display); font-weight: 600; margin-bottom: .2rem; }
.schedule-row p { font-size: .9rem; color: var(--c-text-2); }

.social-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.social-links .social-circle { width: auto; height: auto; padding: .6rem 1.2rem; border-radius: var(--r-full); border: 1px solid var(--c-border); color: var(--c-text); font-size: .95rem; }
.social-links .social-circle:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ── Spinner ──────────────────────────────────────── */
.btn.loading { position: relative; color: transparent !important; pointer-events: none; }
.btn.loading::after { content: ''; position: absolute; width: 18px; height: 18px; border: 2px solid rgba(39,18,25,.4); border-top-color: #271219; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { margin-inline: auto; }
  .contacts-inner { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .topbar .nav-socials, .topbar .nav-cta { display: none !important; }
  html, body { overflow-x: hidden; max-width: 100%; }
  .topbar { padding-inline: clamp(1rem, 5vw, 2.5rem); }
  /* keep long button labels inside the screen */
  .btn { letter-spacing: .06em; font-size: .76rem; padding: .85rem 1.3rem; white-space: normal; max-width: 100%; }
  .btn-lg { padding: .95rem 1.5rem; font-size: .8rem; }
  .contact-method-tabs { flex-wrap: wrap; }
  .method-tab { flex: 1 1 calc(50% - .5rem); }
  .pricing-row, .schedule-row, .phone-row { flex-wrap: wrap; gap: .5rem; }
  .pricing-cta { margin-left: auto; opacity: 1; }
  /* full-bleed hero on phones */
  .hero { align-items: flex-end; }
  .hero-bg img { object-position: 64% 18%; }
  .hero::after { background:
    linear-gradient(180deg, rgba(40,9,9,.5) 0%, rgba(50,11,11,.12) 24%, rgba(61,16,16,.85) 72%, var(--c-bg) 100%); }
  .hero-content { max-width: 100%; width: 100%; min-width: 0; }
  .hero-title { font-size: clamp(2.4rem, 13.5vw, 5rem); letter-spacing: -.01em; line-height: .82; word-break: keep-all; overflow-wrap: normal; }
  .hero-script { position: static; display: block !important; transform: rotate(-4deg); margin: .1rem 0 .5rem; text-align: left; }
  .hero-desc { max-width: 100%; font-size: .95rem; overflow-wrap: break-word; }
  .hero-eyebrow { letter-spacing: .16em; overflow-wrap: break-word; }
  .hero-actions { max-width: 100%; flex-direction: column; }
  .btn-hero { width: 100%; flex: none; min-width: 0; letter-spacing: .14em; }
}
