/* =========================================================
   НАТАЛЬНАЯ КАРТА — стиль «астрономический атлас»
   Тёмная навигационная синь + латунный акцент,
   круговые мотивы натальной карты как структурный приём.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --bg:        #0c0f24;
  --bg-panel:  #12162f;
  --bg-panel-2:#171c3c;
  --bg-raised: #1c2247;
  --line:      #2b3260;
  --line-soft: #1e2447;
  --accent:    #c3924f;
  --accent-2:  #e0b374;
  --accent-dim:#7c5c34;
  --text:      #f3ecd8;
  --text-soft: #e6ddc6;
  --text-muted:#c3b89d;
  --text-dim:  #9a8f74;

  --serif: 'Spectral', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 2px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(236,230,216,.35) 0, transparent 60%),
    radial-gradient(1px 1px at 78% 8%, rgba(236,230,216,.25) 0, transparent 60%),
    radial-gradient(1px 1px at 32% 62%, rgba(236,230,216,.2) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 60% 40%, rgba(236,230,216,.3) 0, transparent 60%),
    radial-gradient(1px 1px at 90% 70%, rgba(236,230,216,.2) 0, transparent 60%),
    radial-gradient(1px 1px at 20% 88%, rgba(236,230,216,.25) 0, transparent 60%);
  opacity: .5;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 500;
  color: var(--text);
  margin: 0;
  letter-spacing: .01em;
}

p{ margin: 0 0 1.1em; }
p:last-child{ margin-bottom: 0; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn-primary{
  background: var(--accent);
  color: #12162f;
}
.btn-primary:hover{ background: var(--accent-2); transform: translateY(-1px); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent-2); }
.btn-wide{ width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12,15,36,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text);
}
.brand-mark{
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.brand small{
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-dim);
  margin-top: 2px;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a{
  font-size: 14.5px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"]{
  color: var(--text);
  border-color: var(--accent);
}
.nav-cta{
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--accent-dim);
  color: var(--accent-2) !important;
}
.nav-cta:hover{ background: var(--accent); color: #12162f !important; border-color: var(--accent); }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.nav-toggle svg{ width: 18px; height: 18px; }

@media (max-width: 860px){
  .main-nav{
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 30px 28px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 16px;
  }
  .main-nav .nav-cta{
    margin-top: 14px;
    text-align: center;
    border-radius: var(--radius);
  }
  .nav-toggle{ display: inline-flex; }
}

/* ---------- Section rhythm ---------- */
section{ position: relative; z-index: 1; }
.section{ padding: 96px 0; }
.section-tight{ padding: 64px 0; }
.section-alt{ background: var(--bg-panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.kicker{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 18px;
}
.kicker::before{
  content: "";
  width: 30px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section-head{
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2{
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
}
.section-head p{
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 17px;
}

/* ---------- Hero ---------- */
.hero{
  padding: 64px 0 90px;
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow{
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: .04em;
  margin-bottom: 22px;
  display: block;
}
.hero h1{
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 em{
  font-style: italic;
  color: var(--accent-2);
}
.hero-lede{
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-meta{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.hero-meta div{ font-size: 13.5px; color: var(--text-dim); }
.hero-meta strong{
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  font-weight: 500;
}

.hero-chart{ position: relative; }
.hero-chart svg{ width: 100%; height: auto; }

/* ---------- Quote / signature ---------- */
.signature-block{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: flex-start;
  padding: 34px;
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--accent);
}
.signature-block img{
  width: 74px; height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.signature-block p{ font-size: 16.5px; color: var(--text-soft); }
.signature-name{
  margin-top: 14px;
  font-family: var(--serif);
  color: var(--accent-2);
  font-size: 16px;
}
.signature-name span{
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ---------- Cards ---------- */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.card-grid.cols-2{ grid-template-columns: repeat(2, 1fr); }
.info-card{
  background: var(--bg-panel);
  padding: 36px 32px;
}
.info-card .num{
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-dim);
  font-size: 14px;
  margin-bottom: 18px;
  display: block;
}
.info-card h3{ font-size: 21px; margin-bottom: 12px; }
.info-card p{ color: var(--text-muted); font-size: 15px; }

@media (max-width: 760px){
  .card-grid{ grid-template-columns: 1fr !important; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-chart{ order: -1; max-width: 300px; margin: 0 auto 20px; }
}

/* ---------- Topic list (degree-tick numbering) ---------- */
.degree-list{ list-style: none; margin: 0; padding: 0; }
.degree-item{
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line-soft);
}
.degree-item:last-child{ border-bottom: 1px solid var(--line-soft); }
.degree-mark{
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-2);
  font-size: 22px;
}
.degree-body h3{ font-size: 20px; margin-bottom: 10px; }
.degree-body p{ color: var(--text-muted); font-size: 15.5px; }

@media (max-width: 640px){
  .degree-item{ grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Process rail ---------- */
.rail{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.rail::before{
  content:"";
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.rail-step{
  position: relative;
  z-index: 1;
  padding-right: 24px;
}
.rail-step .dot{
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 22px;
}
.rail-step h4{ font-size: 17px; margin-bottom: 8px; }
.rail-step p{ font-size: 14.5px; color: var(--text-muted); }
@media (max-width: 760px){
  .rail{ grid-template-columns: 1fr; gap: 30px; }
  .rail::before{ display: none; }
}

/* ---------- FAQ / Accordion ---------- */
.accordion{ border-top: 1px solid var(--line-soft); }
.accordion-item{ border-bottom: 1px solid var(--line-soft); }
.accordion-trigger{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
  cursor: pointer;
}
.accordion-trigger .plus{
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform .25s ease, background .2s ease;
}
.accordion-item[data-open="true"] .plus{ transform: rotate(45deg); background: var(--accent-dim); border-color: var(--accent-dim); color: var(--text); }
.accordion-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion-panel-inner{
  padding: 0 4px 28px;
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 70ch;
}
.accordion-panel-inner p{ margin-bottom: 1em; }

/* ---------- Long-form article body ---------- */
.article-hero{
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line-soft);
}
.article-tag{
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--accent-2);
  border: 1px solid var(--accent-dim);
  padding: 6px 12px;
  margin-bottom: 22px;
}
.article-hero h1{
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.14;
  max-width: 840px;
}
.article-dek{
  margin-top: 18px;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
}
.article-meta{
  margin-top: 26px;
  display: flex;
  gap: 20px;
  font-size: 13.5px;
  color: var(--text-dim);
}

.article-body{
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: flex-start;
}
.article-toc{
  position: sticky;
  top: 100px;
  border-left: 1px solid var(--line-soft);
  padding-left: 20px;
}
.article-toc-label{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.article-toc a{
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 0;
  border-left: 1px solid transparent;
  margin-left: -21px;
  padding-left: 20px;
}
.article-toc a:hover{ color: var(--accent-2); border-color: var(--accent); }

.prose{ max-width: 68ch; font-size: 16.5px; color: var(--text-soft); }
.prose h2{
  font-size: 27px;
  margin: 2.2em 0 .7em;
  padding-top: .2em;
  color: var(--accent-2);
}
.prose h2:first-child{ margin-top: 0; }
.prose h3{ font-size: 21px; margin: 1.8em 0 .6em; color: var(--text); }
.prose p{ margin-bottom: 1.3em; }
.prose strong{ color: var(--text); font-weight: 700; }
.prose ul, .prose ol{ padding-left: 1.4em; margin-bottom: 1.3em; color: var(--text-soft); }
.prose li{ margin-bottom: .5em; }
.prose blockquote{
  margin: 2em 0;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text);
}
.prose hr{ border: 0; border-top: 1px solid var(--line-soft); margin: 2.6em 0; }

.tag-row{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid var(--line-soft);
}
.tag-pill{
  font-size: 12.5px;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: var(--radius);
}

@media (max-width: 900px){
  .article-body{ grid-template-columns: 1fr; }
  .article-toc{ position: static; border-left: 0; padding-left: 0; border-top: 1px solid var(--line-soft); padding-top: 20px; }
}

/* ---------- Related / article grid ---------- */
.article-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card{
  border: 1px solid var(--line-soft);
  padding: 30px 26px;
  transition: border-color .2s ease, transform .2s ease;
  background: var(--bg-panel);
}
.article-card:hover{ border-color: var(--accent-dim); transform: translateY(-3px); }
.article-card .cat{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--accent-2);
  margin-bottom: 16px;
  display: block;
}
.article-card h3{ font-size: 20px; line-height: 1.3; margin-bottom: 14px; }
.article-card p{ font-size: 14.5px; color: var(--text-muted); }
.article-card .read{ margin-top: 18px; font-size: 13.5px; color: var(--text-dim); }

@media (max-width: 900px){ .article-grid{ grid-template-columns: 1fr; } }

/* ---------- Tabs (used for zodiac elements) ---------- */
.tabs-nav{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 36px;
}
.tab-btn{
  background: none;
  border: 1px solid transparent;
  border-bottom: none;
  color: var(--text-muted);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 18px;
  cursor: pointer;
  margin-bottom: -1px;
}
.tab-btn[aria-selected="true"]{
  color: var(--text);
  border-color: var(--line-soft);
  border-bottom: 1px solid var(--bg);
  background: var(--bg-panel-2);
}
.tab-panel{ display: none; }
.tab-panel[data-active="true"]{ display: block; }
.tab-panel h3{ font-size: 22px; color: var(--accent-2); margin-bottom: 6px; }
.tab-panel .dates{ font-size: 13.5px; color: var(--text-dim); margin-bottom: 20px; }

/* ---------- Form ---------- */
.form-panel{
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  padding: 44px;
  position: relative;
}
.form-panel::before{
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 46px; height: 46px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}
.form-panel::after{
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 46px; height: 46px;
  border-bottom: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}
.form-row{ margin-bottom: 20px; }
.form-row label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 9px;
  letter-spacing: .01em;
}
.form-row input, .form-row textarea, .form-row select{
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--radius);
}
.form-row input::placeholder, .form-row textarea::placeholder{ color: var(--text-dim); }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus{ border-color: var(--accent); outline: none; }
.form-grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px){ .form-grid-2{ grid-template-columns: 1fr; } }

.radio-row{ display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill{
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-muted);
}
.radio-pill input{ display: none; }
.radio-pill:has(input:checked){
  border-color: var(--accent);
  color: var(--accent-2);
  background: rgba(195,146,79,.08);
}

.hp-field{ position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form-note{
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-dim);
  text-align: center;
}
.form-status{ margin-top: 16px; font-size: 14px; display: none; }
.form-status.visible{ display: block; }
.form-status.ok{ color: #9fd6ac; }
.form-status.err{ color: #e29b9b; }

/* ---------- Price block ---------- */
.price-panel{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px 40px;
  background: var(--bg-panel-2);
  border: 1px solid var(--accent-dim);
}
.price-old{
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 18px;
  margin-right: 12px;
}
.price-new{
  font-family: var(--serif);
  font-size: 34px;
  color: var(--accent-2);
}
.price-panel p{ color: var(--text-muted); font-size: 14.5px; margin-top: 6px; max-width: 46ch;}
@media (max-width: 640px){ .price-panel{ grid-template-columns: 1fr; text-align: left; } }

/* ---------- Contact strip ---------- */
.contact-strip{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
}
.contact-item{ font-size: 15px; }
.contact-item .label{ display: block; font-size: 12.5px; color: var(--text-dim); margin-bottom: 6px; }
.contact-item a{ color: var(--accent-2); border-bottom: 1px solid var(--accent-dim); }

/* ---------- CTA band ---------- */
.cta-band{
  padding: 80px 0;
  text-align: center;
  background: var(--bg-panel);
  border-top: 1px solid var(--line-soft);
}
.cta-band h2{ font-size: clamp(26px,3.6vw,40px); max-width: 700px; margin: 0 auto 20px; }
.cta-band p{ color: var(--text-muted); max-width: 520px; margin: 0 auto 32px; font-size: 16.5px; }

/* ---------- Footer ---------- */
.site-footer{
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 40px;
  background: var(--bg-panel);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h5{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.footer-brand-title{ font-family: var(--serif); font-size: 20px; margin-bottom: 14px; display: inline-block; }
.footer-grid p{ color: var(--text-muted); font-size: 14.5px; }
.footer-grid a{ color: var(--accent-2); font-size: 14.5px; transition: color .2s ease; }
.footer-grid a:hover{ color: var(--accent); }
.footer-links{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--text-dim);
}
@media (max-width: 700px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ---------- Success overlay ---------- */
.success-overlay{
  position: fixed; inset: 0;
  background: rgba(6,8,20,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.success-overlay.open{ display: flex; }
.success-card{
  background: var(--bg-panel-2);
  border: 1px solid var(--accent-dim);
  padding: 44px;
  max-width: 420px;
  text-align: center;
}
.success-card h3{ font-size: 24px; margin-bottom: 14px; }
.success-card p{ color: var(--text-muted); margin-bottom: 26px; }
.success-links{ display: flex; flex-direction: column; gap: 12px; }

/* Utility */
.mt-0{ margin-top: 0; }
.center{ text-align: center; }

/* =========================================================
   ДОПОЛНЕНИЕ v2 — АСТРОВИКА: премиальное золото, анимации,
   планеты/звёзды, модальное окно записи, блок «Обо мне»
   ========================================================= */

/* ---------- Золотой градиент / shine ---------- */
.gold-shine{
  background: linear-gradient(100deg, #8a6428 0%, #f6e6b8 22%, #fff6da 38%, #c9974c 55%, #f6e6b8 72%, #8a6428 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-sweep 6s linear infinite;
}
@keyframes gold-sweep{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 300% 50%; }
}

/* ---------- Кнопки с золотым переливом ---------- */
.btn-shimmer{
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, #8a6428 0%, #e8c27a 20%, #fff3d6 38%, #c9974c 55%, #e8c27a 72%, #8a6428 100%);
  background-size: 300% 100%;
  color: #12162f !important;
  border-color: transparent !important;
  animation: gold-sweep 5s linear infinite;
  box-shadow: 0 0 0 1px rgba(232,194,122,.25), 0 8px 24px -8px rgba(195,146,79,.55);
}
.btn-shimmer:hover{ animation-duration: 1.6s; transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(232,194,122,.4), 0 12px 30px -8px rgba(195,146,79,.7); }
button.nav-cta.btn-shimmer{ font-family: var(--sans); border: none; }

/* ---------- Звёзды-мерцания ---------- */
.stars-field{ position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.star{
  position: absolute;
  background: #f6e6b8;
  border-radius: 50%;
  opacity: .25;
  animation-name: twinkle;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  box-shadow: 0 0 6px 1px rgba(246,230,184,.6);
}
@keyframes twinkle{
  0%, 100%{ opacity: .15; transform: scale(.8); }
  50%{ opacity: 1; transform: scale(1.3); }
}

/* ---------- Плавающие планеты (декор) ---------- */
.planet, .planet-ring{ position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; opacity: .85; }
.planet-1{ width: 34px; height: 34px; top: 12%; right: 8%; background: radial-gradient(circle at 32% 30%, #f6d99b, #c3924f 55%, #6d4a22 100%); animation: float-a 9s ease-in-out infinite; box-shadow: 0 0 24px 2px rgba(195,146,79,.35); }
.planet-2{ width: 16px; height: 16px; top: 62%; right: 20%; background: radial-gradient(circle at 32% 30%, #d7dcf5, #7c86b8 60%, #3c4372 100%); animation: float-b 7s ease-in-out infinite; }
.planet-3{ width: 10px; height: 10px; top: 30%; right: 32%; background: radial-gradient(circle at 32% 30%, #f3b98a, #c46a3f 60%, #6b3620 100%); animation: float-a 11s ease-in-out infinite reverse; }
.planet-ring-1{ width: 60px; height: 60px; top: 8%; right: 4%; border: 1px solid rgba(232,194,122,.4); transform: rotate(-18deg); animation: spin-slow 40s linear infinite; }
@keyframes float-a{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }
@keyframes float-b{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(10px); } }
@keyframes spin-slow{ from{ transform: rotate(-18deg); } to{ transform: rotate(342deg); } }

@media (prefers-reduced-motion: reduce){
  .star, .planet, .planet-ring, .gold-shine, .btn-shimmer{ animation: none !important; }
}

/* ---------- Скролл-реveal ---------- */
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ---------- Блок «Обо мне» ---------- */
.about-section{ position: relative; }
.about-grid{
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}
.about-photo img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(195,146,79,.25), 0 30px 60px -30px rgba(0,0,0,.6);
}
.about-copy h2{ font-size: clamp(26px,3.2vw,36px); margin: 14px 0 20px; }
.about-lede{ font-size: 17.5px; color: var(--text-soft); font-family: var(--serif); font-style: italic; line-height: 1.6; margin-bottom: 28px; }
.values-list{ list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.values-list li{ display: flex; gap: 16px; color: var(--text-muted); font-size: 15px; line-height: 1.55; }
.v-num{ font-family: var(--serif); font-style: italic; color: var(--accent-2); flex-shrink: 0; }
@media (max-width: 820px){ .about-grid{ grid-template-columns: 1fr; } .about-photo{ max-width: 280px; margin: 0 auto; } }

/* ---------- Полоса «Обо мне» в футере всех статей (короткая) ---------- */
.about-strip{ padding: 0; }

/* ---------- Модальное окно записи ---------- */
.modal-overlay{
  position: fixed; inset: 0;
  background: rgba(6,8,20,.86);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.modal-overlay.open{ display: flex; }
.modal-card{
  position: relative;
  background: var(--bg-panel-2);
  border: 1px solid var(--accent-dim);
  padding: 44px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 0 1px rgba(232,194,122,.15), 0 40px 80px -30px rgba(0,0,0,.7);
  animation: modal-in .3s ease;
}
@keyframes modal-in{ from{ opacity: 0; transform: translateY(16px) scale(.98); } to{ opacity: 1; transform: translateY(0) scale(1); } }
.modal-card h3{ font-size: 24px; margin: 12px 0 10px; }
.modal-sub{ color: var(--text-muted); font-size: 14.5px; margin-bottom: 26px; }
.modal-close{
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  background: none;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover{ border-color: var(--accent); color: var(--accent-2); }

/* ---------- Мелкие правки ---------- */
.hero, .cta-band, .section-alt{ position: relative; overflow: hidden; }
.link-more{ color: var(--accent-2); border-bottom: 1px solid var(--accent-dim); font-size: 14.5px; }

/* Фото-акценты в статьях (Северный узел) */
.sign-photo{
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 20px;
  box-shadow: 0 20px 40px -24px rgba(0,0,0,.7);
}

/* Крупное фото-обрамление на hero-страницах (услуги, прогноз) */
.hero-photo{
  position: relative;
  border: 1px solid var(--accent-dim);
  box-shadow: 0 0 0 1px rgba(232,194,122,.15), 0 40px 80px -30px rgba(0,0,0,.7);
}
.hero-photo img{ width: 100%; display: block; }
.hero-photo::before{
  content: "";
  position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px;
  border: 1px solid rgba(232,194,122,.35);
  pointer-events: none;
}

/* ---------- Плавающие кнопки связи ---------- */
.float-contacts{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}
.float-btn{
  position: relative;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,.6), 0 0 0 1px rgba(232,194,122,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-btn:hover{ transform: translateY(-3px) scale(1.05); }
.float-btn svg{ width: 26px; height: 26px; }
.float-btn.tg{ background: linear-gradient(135deg,#3aa9e0,#1c7fbf); color:#fff; }
.float-btn.max{ background: linear-gradient(135deg,#e8c27a,#c3924f); color:#12162f; }
.float-btn .float-label{
  position: absolute;
  right: 66px;
  white-space: nowrap;
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 13px;
  padding: 6px 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.float-btn:hover .float-label{ opacity: 1; }
@media (max-width: 640px){
  .float-contacts{ right: 14px; bottom: 14px; gap: 10px; }
  .float-btn{ width: 48px; height: 48px; }
  .float-btn .float-label{ display: none; }
}

/* ---------- Попап скидки ---------- */
.promo-card{ max-width: 420px; text-align: center; }
.promo-card .kicker{ justify-content: center; }
.promo-card h3{ font-size: 24px; margin: 10px 0 14px; }
.promo-card p{ color: var(--text-muted); margin-bottom: 22px; }
.promo-price{ margin-bottom: 22px; }

/* ---------- Тост «социального доказательства» ---------- */
.proof-toast{
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 240;
  max-width: 320px;
  background: var(--bg-panel-2);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--accent);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.7);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.proof-toast.show{ transform: translateY(0); opacity: 1; }
.proof-toast .dot-live{
  width: 8px; height: 8px; border-radius: 50%;
  background: #7fd996; flex-shrink: 0; margin-top: 6px;
  box-shadow: 0 0 0 3px rgba(127,217,150,.2);
}
.proof-toast strong{ color: var(--text); }
.proof-toast p{ font-size: 13.5px; color: var(--text-muted); margin: 2px 0 0; }
.proof-toast .proof-close{
  margin-left: auto;
  background: none; border: none; color: var(--text-dim);
  cursor: pointer; font-size: 15px; line-height: 1; padding: 2px;
}
@media (max-width: 640px){ .proof-toast{ left: 12px; right: 12px; max-width: none; bottom: 84px; } }

/* ---------- Хлебные крошки ---------- */
.breadcrumbs{
  padding: 16px 28px 0;
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumbs a{ color: var(--text-dim); }
.breadcrumbs a:hover{ color: var(--accent-2); }
.breadcrumbs .sep{ opacity: .5; }
.breadcrumbs [aria-current="page"]{ color: var(--text-muted); }
