*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
 
.r, .t-records, #allrecords { background-color: transparent !important; }
 
:root {
  --rose:       #e8276a;
  --rose-deep:  #c41f58;
  --rose-light: #fde8f0;
  --rose-soft:  rgba(232,39,106,0.08);
  --gold:       #c9a96e;
  --gold-light: #ecdfc0;
  --gold-pale:  rgba(201,169,110,0.15);
  --cream:      #fffefb;
  --cream2:     #fdf6ee;
  --white:      #ffffff;
  --ink:        #1e1418;
  --muted:      #6e5d64;
  --line:       rgba(201,169,110,0.32);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', sans-serif;
  --shadow-sm:  0 4px 18px rgba(232,39,106,0.07);
  --shadow-md:  0 12px 36px rgba(232,39,106,0.12);
  --shadow-lg:  0 24px 60px rgba(232,39,106,0.16);
  --r-xl: 36px; --r-lg: 24px; --r-md: 16px; --r-sm: 10px;
  --max: 1160px;
}
 
body {
  background: linear-gradient(135deg,
    #ffffff 0%, #fde8f0 18%, #fffefb 38%,
    #fdf6ee 58%, #fde8f0 78%, #ffffff 100%
  ) !important;
  background-size: 400% 400% !important;
  animation: gradientFlow 18s ease infinite !important;
  background-attachment: fixed !important;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.7;
}
@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
img { max-width: 100%; display: block; }
a   { text-decoration: none; }
 
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
 
/* ══ ТИПОГРАФИКА ══ */
h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.00em;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}
 
/* ✅ ОСНОВНОЙ ТЕКСТ — УВЕЛИЧЕН, letter-spacing: 0 */
.lead {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: 0;
}
.body-text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: 0;
}
.small-text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: 0;
}
 
/* ══ КНОПКИ ══ */
html body .t-btn,
html body .t-submit,
html body .t-btn_effects,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px !important;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  text-decoration: none;
}
html body .t-btn,
html body .t-submit,
html body .t-btn_effects,
.btn-primary {
  background-color: var(--rose) !important;
  background-image: none !important;
  color: var(--white) !important;
  box-shadow: 0 10px 28px rgba(232,39,106,0.35) !important;
}
html body .t-btn:hover,
html body .t-submit:hover,
.btn-primary:hover {
  background-color: var(--rose-deep) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 36px rgba(232,39,106,0.45) !important;
}
.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  border: 1.5px solid rgba(201,169,110,0.45) !important;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold) !important;
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.9);
}
 
/* ══ CARDS ══ */
.glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.28);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.card {
  background: rgba(255,255,255,0.90);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.22);
  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
 
/* ══ HERO BANNER ══ */
.hero-banner {
  background: linear-gradient(90deg, #ffffff 0%, #fde8f0 22%, #f0558a 55%, #e8276a 75%, #c9a96e 100%);
  border-radius: 36px;
  padding: 64px 56px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%; background: rgba(255,255,255,0.08);
}
.hero-banner::after {
  content: ''; position: absolute;
  bottom: 40px; left: -80px;
  width: 260px; height: 260px;
  border-radius: 50%; background: rgba(255,255,255,0.05);
}
.hero-banner h1       { color: var(--ink); }
.hero-banner h1 em    { color: var(--rose-deep); }
.hero-banner .eyebrow { color: var(--gold); }
.hero-banner .hero-eyebrow::before { background: var(--gold); }
.hero-banner .lead    { color: var(--muted); }
.hero-banner .btn-primary {
  background: var(--rose) !important; color: #fff !important;
  box-shadow: 0 10px 28px rgba(232,39,106,0.35) !important;
}
.hero-banner .btn-primary:hover { background: var(--rose-deep) !important; }
.hero-banner .btn-ghost {
  border-color: rgba(201,169,110,0.55) !important;
  color: var(--ink) !important; background: rgba(255,255,255,0.55) !important;
}
.hero-banner .btn-ghost:hover {
  border-color: var(--gold) !important;
  background: rgba(255,255,255,0.75) !important; color: var(--gold) !important;
}
.hero-banner .stat { background: rgba(255,255,255,0.55); border-color: rgba(201,169,110,0.30); backdrop-filter: blur(8px); }
.hero-banner .stat strong      { color: var(--rose-deep); }
.hero-banner .stat .small-text { color: var(--muted); }
.hero-banner .hero-photo { border-radius: 32px 32px 0 0; box-shadow: 0 -8px 40px rgba(0,0,0,0.10); margin-top: 40px; min-height: 580px; }
.hero-banner .hero-badge { background: rgba(255,255,255,0.92); border: 1px solid rgba(201,169,110,0.25); }
 
/* ══ НАВИГАЦИЯ ══ */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,253,0.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.28);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; gap: 24px; }
.brand { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--ink); letter-spacing: 0.01em; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; letter-spacing: 0; color: var(--muted); transition: color 0.25s; }
.nav-links a:hover { color: var(--rose-deep); }
 
/* ══ HERO ══ */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 56px; align-items: center;
  padding: 72px 0 80px; min-height: calc(100vh - 70px);
}
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
h1 em { font-style: italic; font-weight: 300; color: var(--rose-deep); }
.hero-lead { margin: 24px 0 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { background: rgba(255,255,255,0.78); border: 1px solid rgba(201,169,110,0.25); border-radius: 20px; padding: 20px 16px; box-shadow: var(--shadow-sm); }
.stat strong { display: block; font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--gold); margin-bottom: 4px; }
.hero-photo {
  position: relative; border-radius: 44px; overflow: hidden;
  background: linear-gradient(160deg, #ede0d8 0%, #d8c4ba 100%);
  min-height: 660px;
  box-shadow: 24px 24px 72px rgba(0,0,0,0.09), inset 0 0 0 1px rgba(255,255,255,0.4);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-placeholder {
  width: 100%; height: 100%; min-height: 660px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #f2e8e3 0%, #e4d0c8 60%, #d6bdb4 100%);
  position: relative; overflow: hidden;
}
.hero-photo-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(255,255,255,0.35) 0%, transparent 60%);
}
.photo-icon { width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.45); display: flex; align-items: center; justify-content: center; font-size: 40px; margin-bottom: 18px; }
.photo-label { font-family: var(--serif); font-size: 20px; color: rgba(42,31,26,0.55); font-style: italic; }
.hero-badge { position: absolute; bottom: 22px; left: 22px; right: 22px; background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); border-radius: 22px; padding: 20px 22px; box-shadow: var(--shadow-md); }
 
/* ══ СЕКЦИИ ══ */
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 14px; }
.about-intro { padding: 52px; margin-bottom: 32px; }
 
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-num { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--gold); margin-bottom: 14px; line-height: 1; }
 
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.result-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.82); border-radius: 18px; padding: 22px 20px;
  border: 1px solid rgba(201,169,110,0.22); box-shadow: var(--shadow-sm);
  font-size: 17px; color: var(--muted); line-height: 1.65; letter-spacing: 0;
}
.result-dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; }
 
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: rgba(255,255,255,0.88); border-radius: 22px; padding: 28px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(201,169,110,0.20);
  border-bottom: 3px solid transparent; transition: all 0.35s ease;
}
.step:hover { border-bottom-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--gold-pale); -webkit-text-stroke: 1px var(--gold); margin-bottom: 12px; line-height: 1; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
 
.tariffs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.tariff { background: rgba(255,255,255,0.94); border-radius: 32px; padding: 44px 36px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; border: 1px solid rgba(201,169,110,0.22); transition: transform 0.35s ease; }
.tariff:hover { transform: translateY(-5px); }
.tariff.featured { border-color: var(--gold); background: #fffdf8; transform: scale(1.025); }
.tariff.featured:hover { transform: scale(1.025) translateY(-5px); }
.tariff-tag { display: inline-block; background: linear-gradient(135deg, var(--gold) 0%, #e2c07a 100%); color: white; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.tariff-price { font-family: var(--serif); font-size: 42px; font-weight: 300; color: var(--gold); margin: 14px 0 6px; line-height: 1; }
.tariff-duration { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.tariff ul { list-style: none; margin: 18px 0 28px; flex-grow: 1; display: grid; gap: 10px; }
.tariff li { font-size: 16px; color: var(--muted); padding-left: 20px; position: relative; line-height: 1.6; letter-spacing: 0; }
.tariff li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 14px; }
 
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
 
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: stretch; }
.about-photo { border-radius: 40px; overflow: hidden; background: linear-gradient(160deg, #f0558a 0%, #e8276a 100%); min-height: 540px; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder { width: 100%; height: 100%; min-height: 540px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(160deg, #f0558a 0%, #e8276a 100%); }
.about-photo-placeholder .photo-label { color: rgba(255,255,255,0.7); }
.about-content { padding: 44px 48px; }
 
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }
.contact-form { background: rgba(255,255,255,0.88); border-radius: 32px; padding: 44px 40px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; gap: 12px; margin-top: 26px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; border: 1.5px solid #ead9d4; border-radius: 16px; padding: 16px 18px;
  font-size: 16px; font-family: var(--sans); color: var(--ink);
  background: #fffdf9; outline: none; transition: border-color 0.25s;
  appearance: none; letter-spacing: 0;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--gold); }
.form-grid textarea { resize: vertical; min-height: 110px; }
.contact-info { background: rgba(255,255,255,0.82); border-radius: 32px; padding: 40px 36px; box-shadow: var(--shadow-sm); border: 1px solid rgba(201,169,110,0.28); }
.contact-row { display: flex; flex-direction: column; gap: 22px; margin-top: 26px; }
.contact-item .label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item a { font-size: 18px; font-weight: 600; color: var(--rose-deep); transition: color 0.25s; letter-spacing: 0; }
.contact-item a:hover { color: var(--gold); }
 
.summary { padding: 56px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 28px; }
 
footer { padding: 24px 0 44px; border-top: 1px solid rgba(201,169,110,0.28); color: var(--muted); font-size: 15px; letter-spacing: 0; }
 
.divider { display: flex; align-items: center; gap: 16px; margin: 0 auto 48px; max-width: 200px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gold); opacity: 0.5; }
.divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.7; }
 
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.8s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.28s; }
.hero-content > *:nth-child(4) { animation-delay: 0.38s; }
.hero-content > *:nth-child(5) { animation-delay: 0.48s; }
.hero-photo { animation: fadeUp 1s 0.3s ease both; }
 
@media (max-width: 960px) {
  h1 { font-size: 38px !important; }
  h2 { font-size: 28px !important; }
  .hero, .about-grid, .contact-grid, .two-col { grid-template-columns: 1fr !important; gap: 32px; }
  .hero { min-height: auto; text-align: center; padding: 48px 0 60px; }
  .hero-eyebrow { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .hero-photo { min-height: 440px; order: -1; max-width: 480px; margin: 0 auto; }
  .hero-photo-placeholder { min-height: 440px; }
  .features-grid, .steps-grid, .tariffs, .reasons-grid, .results-grid { grid-template-columns: 1fr !important; }
  .tariff.featured { transform: none; }
  .tariff.featured:hover { transform: translateY(-5px); }
  .about-content { padding: 32px; }
  .summary { padding: 36px; }
  .about-intro { padding: 32px; }
  .section-head { margin-bottom: 36px; }
  .hero-banner { padding: 40px 28px 0; border-radius: 24px; }
  .lead       { font-size: 17px; }
  .body-text  { font-size: 16px; }
  .small-text { font-size: 15px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hero-actions .btn { width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .about-photo, .about-photo-placeholder { min-height: 360px; }
  .contact-form, .contact-info { padding: 28px 24px; }
  html body .t-btn, html body .t-submit, .btn { width: 100% !important; display: flex !important; }
}
 как добавить в этот код типограф ( чтобы не висели предлоги)
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
 
.r, .t-records, #allrecords { background-color: transparent !important; }
 
:root {
  --rose:       #e8276a;
  --rose-deep:  #c41f58;
  --rose-light: #fde8f0;
  --rose-soft:  rgba(232,39,106,0.08);
  --gold:       #c9a96e;
  --gold-light: #ecdfc0;
  --gold-pale:  rgba(201,169,110,0.15);
  --cream:      #fffefb;
  --cream2:     #fdf6ee;
  --white:      #ffffff;
  --ink:        #1e1418;
  --muted:      #6e5d64;
  --line:       rgba(201,169,110,0.32);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', sans-serif;
  --shadow-sm:  0 4px 18px rgba(232,39,106,0.07);
  --shadow-md:  0 12px 36px rgba(232,39,106,0.12);
  --shadow-lg:  0 24px 60px rgba(232,39,106,0.16);
  --r-xl: 36px; --r-lg: 24px; --r-md: 16px; --r-sm: 10px;
  --max: 1160px;
}
 
body {
  background: linear-gradient(135deg,
    #ffffff 0%, #fde8f0 18%, #fffefb 38%,
    #fdf6ee 58%, #fde8f0 78%, #ffffff 100%
  ) !important;
  background-size: 400% 400% !important;
  animation: gradientFlow 18s ease infinite !important;
  background-attachment: fixed !important;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.7;
}
@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
 
img { max-width: 100%; display: block; }
a   { text-decoration: none; }
 
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
 
/* ══ ТИПОГРАФИКА ══ */
h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}
 
/* ✅ ОСНОВНОЙ ТЕКСТ — УВЕЛИЧЕН, letter-spacing: 0 */
.lead {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: 0;
}
.body-text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: 0;
}
.small-text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: 0;
}
 
/* ══ КНОПКИ ══ */
html body .t-btn,
html body .t-submit,
html body .t-btn_effects,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px !important;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  text-decoration: none;
}
html body .t-btn,
html body .t-submit,
html body .t-btn_effects,
.btn-primary {
  background-color: var(--rose) !important;
  background-image: none !important;
  color: var(--white) !important;
  box-shadow: 0 10px 28px rgba(232,39,106,0.35) !important;
}
html body .t-btn:hover,
html body .t-submit:hover,
.btn-primary:hover {
  background-color: var(--rose-deep) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 36px rgba(232,39,106,0.45) !important;
}
.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  border: 1.5px solid rgba(201,169,110,0.45) !important;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold) !important;
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.9);
}
 
/* ══ CARDS ══ */
.glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,110,0.28);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.card {
  background: rgba(255,255,255,0.90);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.22);
  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
 
/* ══ HERO BANNER ══ */
.hero-banner {
  background: linear-gradient(90deg, #ffffff 0%, #fde8f0 22%, #f0558a 55%, #e8276a 75%, #c9a96e 100%);
  border-radius: 36px;
  padding: 64px 56px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%; background: rgba(255,255,255,0.08);
}
.hero-banner::after {
  content: ''; position: absolute;
  bottom: 40px; left: -80px;
  width: 260px; height: 260px;
  border-radius: 50%; background: rgba(255,255,255,0.05);
}
.hero-banner h1       { color: var(--ink); }
.hero-banner h1 em    { color: var(--rose-deep); }
.hero-banner .eyebrow { color: var(--gold); }
.hero-banner .hero-eyebrow::before { background: var(--gold); }
.hero-banner .lead    { color: var(--muted); }
.hero-banner .btn-primary {
  background: var(--rose) !important; color: #fff !important;
  box-shadow: 0 10px 28px rgba(232,39,106,0.35) !important;
}
.hero-banner .btn-primary:hover { background: var(--rose-deep) !important; }
.hero-banner .btn-ghost {
  border-color: rgba(201,169,110,0.55) !important;
  color: var(--ink) !important; background: rgba(255,255,255,0.55) !important;
}
.hero-banner .btn-ghost:hover {
  border-color: var(--gold) !important;
  background: rgba(255,255,255,0.75) !important; color: var(--gold) !important;
}
.hero-banner .stat { background: rgba(255,255,255,0.55); border-color: rgba(201,169,110,0.30); backdrop-filter: blur(8px); }
.hero-banner .stat strong      { color: var(--rose-deep); }
.hero-banner .stat .small-text { color: var(--muted); }
.hero-banner .hero-photo { border-radius: 32px 32px 0 0; box-shadow: 0 -8px 40px rgba(0,0,0,0.10); margin-top: 40px; min-height: 580px; }
.hero-banner .hero-badge { background: rgba(255,255,255,0.92); border: 1px solid rgba(201,169,110,0.25); }
 
/* ══ НАВИГАЦИЯ ══ */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,253,0.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.28);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; gap: 24px; }
.brand { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--ink); letter-spacing: 0.01em; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; letter-spacing: 0; color: var(--muted); transition: color 0.25s; }
.nav-links a:hover { color: var(--rose-deep); }
 
/* ══ HERO ══ */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 56px; align-items: center;
  padding: 72px 0 80px; min-height: calc(100vh - 70px);
}
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
h1 em { font-style: italic; font-weight: 300; color: var(--rose-deep); }
.hero-lead { margin: 24px 0 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat { background: rgba(255,255,255,0.78); border: 1px solid rgba(201,169,110,0.25); border-radius: 20px; padding: 20px 16px; box-shadow: var(--shadow-sm); }
.stat strong { display: block; font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--gold); margin-bottom: 4px; }
.hero-photo {
  position: relative; border-radius: 44px; overflow: hidden;
  background: linear-gradient(160deg, #ede0d8 0%, #d8c4ba 100%);
  min-height: 660px;
  box-shadow: 24px 24px 72px rgba(0,0,0,0.09), inset 0 0 0 1px rgba(255,255,255,0.4);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-placeholder {
  width: 100%; height: 100%; min-height: 660px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #f2e8e3 0%, #e4d0c8 60%, #d6bdb4 100%);
  position: relative; overflow: hidden;
}
.hero-photo-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(255,255,255,0.35) 0%, transparent 60%);
}
.photo-icon { width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.45); display: flex; align-items: center; justify-content: center; font-size: 40px; margin-bottom: 18px; }
.photo-label { font-family: var(--serif); font-size: 20px; color: rgba(42,31,26,0.55); font-style: italic; }
.hero-badge { position: absolute; bottom: 22px; left: 22px; right: 22px; background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); border-radius: 22px; padding: 20px 22px; box-shadow: var(--shadow-md); }
 
/* ══ СЕКЦИИ ══ */
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .eyebrow { margin-bottom: 14px; }
.about-intro { padding: 52px; margin-bottom: 32px; }
 
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-num { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--gold); margin-bottom: 14px; line-height: 1; }
 
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.result-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.82); border-radius: 18px; padding: 22px 20px;
  border: 1px solid rgba(201,169,110,0.22); box-shadow: var(--shadow-sm);
  font-size: 17px; color: var(--muted); line-height: 1.65; letter-spacing: 0;
}
.result-dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; }
 
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: rgba(255,255,255,0.88); border-radius: 22px; padding: 28px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(201,169,110,0.20);
  border-bottom: 3px solid transparent; transition: all 0.35s ease;
}
.step:hover { border-bottom-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--gold-pale); -webkit-text-stroke: 1px var(--gold); margin-bottom: 12px; line-height: 1; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
 
.tariffs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.tariff { background: rgba(255,255,255,0.94); border-radius: 32px; padding: 44px 36px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; border: 1px solid rgba(201,169,110,0.22); transition: transform 0.35s ease; }
.tariff:hover { transform: translateY(-5px); }
.tariff.featured { border-color: var(--gold); background: #fffdf8; transform: scale(1.025); }
.tariff.featured:hover { transform: scale(1.025) translateY(-5px); }
.tariff-tag { display: inline-block; background: linear-gradient(135deg, var(--gold) 0%, #e2c07a 100%); color: white; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }
.tariff-price { font-family: var(--serif); font-size: 42px; font-weight: 300; color: var(--gold); margin: 14px 0 6px; line-height: 1; }
.tariff-duration { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.tariff ul { list-style: none; margin: 18px 0 28px; flex-grow: 1; display: grid; gap: 10px; }
.tariff li { font-size: 16px; color: var(--muted); padding-left: 20px; position: relative; line-height: 1.6; letter-spacing: 0; }
.tariff li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 14px; }
 
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
 
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: stretch; }
.about-photo { border-radius: 40px; overflow: hidden; background: linear-gradient(160deg, #f0558a 0%, #e8276a 100%); min-height: 540px; box-shadow: var(--shadow-lg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder { width: 100%; height: 100%; min-height: 540px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(160deg, #f0558a 0%, #e8276a 100%); }
.about-photo-placeholder .photo-label { color: rgba(255,255,255,0.7); }
.about-content { padding: 44px 48px; }
 
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }
.contact-form { background: rgba(255,255,255,0.88); border-radius: 32px; padding: 44px 40px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; gap: 12px; margin-top: 26px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; border: 1.5px solid #ead9d4; border-radius: 16px; padding: 16px 18px;
  font-size: 16px; font-family: var(--sans); color: var(--ink);
  background: #fffdf9; outline: none; transition: border-color 0.25s;
  appearance: none; letter-spacing: 0;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--gold); }
.form-grid textarea { resize: vertical; min-height: 110px; }
.contact-info { background: rgba(255,255,255,0.82); border-radius: 32px; padding: 40px 36px; box-shadow: var(--shadow-sm); border: 1px solid rgba(201,169,110,0.28); }
.contact-row { display: flex; flex-direction: column; gap: 22px; margin-top: 26px; }
.contact-item .label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item a { font-size: 18px; font-weight: 600; color: var(--rose-deep); transition: color 0.25s; letter-spacing: 0; }
.contact-item a:hover { color: var(--gold); }
 
.summary { padding: 56px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 28px; }
 
footer { padding: 24px 0 44px; border-top: 1px solid rgba(201,169,110,0.28); color: var(--muted); font-size: 15px; letter-spacing: 0; }
 
.divider { display: flex; align-items: center; gap: 16px; margin: 0 auto 48px; max-width: 200px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gold); opacity: 0.5; }
.divider-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.7; }
 
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.8s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.28s; }
.hero-content > *:nth-child(4) { animation-delay: 0.38s; }
.hero-content > *:nth-child(5) { animation-delay: 0.48s; }
.hero-photo { animation: fadeUp 1s 0.3s ease both; }
 
@media (max-width: 960px) {
  h1 { font-size: 38px !important; }
  h2 { font-size: 28px !important; }
  .hero, .about-grid, .contact-grid, .two-col { grid-template-columns: 1fr !important; gap: 32px; }
  .hero { min-height: auto; text-align: center; padding: 48px 0 60px; }
  .hero-eyebrow { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .hero-photo { min-height: 440px; order: -1; max-width: 480px; margin: 0 auto; }
  .hero-photo-placeholder { min-height: 440px; }
  .features-grid, .steps-grid, .tariffs, .reasons-grid, .results-grid { grid-template-columns: 1fr !important; }
  .tariff.featured { transform: none; }
  .tariff.featured:hover { transform: translateY(-5px); }
  .about-content { padding: 32px; }
  .summary { padding: 36px; }
  .about-intro { padding: 32px; }
  .section-head { margin-bottom: 36px; }
  .hero-banner { padding: 40px 28px 0; border-radius: 24px; }
  .lead       { font-size: 17px; }
  .body-text  { font-size: 16px; }
  .small-text { font-size: 15px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hero-actions .btn { width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .about-photo, .about-photo-placeholder { min-height: 360px; }
  .contact-form, .contact-info { padding: 28px 24px; }
  html body .t-btn, html body .t-submit, .btn { width: 100% !important; display: flex !important; }
}
/* ===== SAFE ADAPTIVE PATCH ===== */

/* Страховка от распирания сетки */
html, body {
  overflow-x: hidden;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

.hero,
.hero-content,
.hero-stats,
.features-grid,
.results-grid,
.steps-grid,
.tariffs,
.reasons-grid,
.about-grid,
.contact-grid,
.two-col,
.nav,
.nav-links,
.hero-actions,
.form-grid,
.contact-row,
.tariff,
.card,
.step,
.result-item,
.contact-form,
.contact-info,
.about-content,
.about-intro,
.summary {
  min-width: 0;
}

.hero > *,
.about-grid > *,
.contact-grid > *,
.two-col > *,
.tariffs > *,
.features-grid > *,
.results-grid > *,
.steps-grid > *,
.reasons-grid > * {
  min-width: 0;
}

/* ===== large tablet / small desktop ===== */
@media (max-width: 1200px) {
  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .hero {
    gap: 40px;
    padding: 56px 0 64px;
  }

  .hero-photo,
  .hero-photo-placeholder {
    min-height: 560px;
  }

  .about-photo,
  .about-photo-placeholder {
    min-height: 460px;
  }

  .tariff {
    padding: 36px 28px;
  }

  .summary {
    padding: 44px;
  }

  .about-content,
  .about-intro,
  .contact-form,
  .contact-info {
    padding: 36px 32px;
  }
}

/* ===== tablet ===== */
@media (max-width: 960px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 40px !important;
    line-height: 1.02 !important;
  }

  h2 {
    font-size: 30px !important;
    line-height: 1.08 !important;
  }

  h3 {
    font-size: 22px !important;
    line-height: 1.14 !important;
  }

  .lead {
    font-size: 17px !important;
    line-height: 1.35 !important;
  }

  .body-text {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }

  .small-text {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .hero,
  .about-grid,
  .contact-grid,
  .two-col,
  .features-grid,
  .steps-grid,
  .tariffs,
  .reasons-grid,
  .results-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .hero {
    min-height: auto;
    text-align: center;
    padding: 44px 0 52px;
  }

  .hero-eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-photo,
  .hero-photo-placeholder {
    order: -1;
    width: 100%;
    max-width: 520px;
    min-height: 460px;
    margin: 0 auto;
  }

  .hero-banner {
    padding: 40px 28px 0;
    border-radius: 24px;
  }

  .about-photo,
  .about-photo-placeholder {
    min-height: 440px;
  }

  .about-content,
  .about-intro,
  .contact-form,
  .contact-info,
  .summary {
    padding: 32px 28px;
  }

  .tariff.featured {
    transform: none;
  }

  .tariff.featured:hover {
    transform: translateY(-5px);
  }

  .section-head {
    margin-bottom: 36px;
  }

  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
  }
}

/* ===== mobile ===== */
@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 24px);
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: 34px !important;
    line-height: 1.04 !important;
    letter-spacing: -0.01em !important;
  }

  h2 {
    font-size: 26px !important;
    line-height: 1.1 !important;
  }

  h3 {
    font-size: 20px !important;
    line-height: 1.16 !important;
  }

  .lead,
  .body-text,
  .small-text {
    line-height: 1.32 !important;
  }

  .nav {
    gap: 16px;
    padding: 16px 0;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 24px;
  }

  .hero {
    gap: 20px;
    padding: 28px 0 36px;
  }

  .hero-eyebrow {
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-eyebrow::before {
    width: 26px;
  }

  .hero-lead {
    margin: 18px auto 28px;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-actions .btn,
  .btn,
  html body .t-btn,
  html body .t-submit {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    padding: 15px 20px !important;
  }

  .hero-stats {
    max-width: 100%;
    gap: 12px;
  }

  .stat {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .stat strong {
    font-size: 24px;
  }

  .hero-photo,
  .hero-photo-placeholder {
    max-width: 100%;
    min-height: 340px;
    border-radius: 28px;
  }

  .hero-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px 16px;
    border-radius: 18px;
  }

  .hero-banner {
    border-radius: 20px;
    padding: 28px 18px 0;
  }

  .hero-banner .hero-photo {
    min-height: 300px;
    margin-top: 28px;
    border-radius: 22px 22px 0 0;
  }

  .features-grid,
  .results-grid,
  .steps-grid,
  .tariffs,
  .reasons-grid,
  .about-grid,
  .contact-grid,
  .two-col {
    gap: 18px !important;
  }

  .card,
  .step,
  .tariff,
  .contact-form,
  .contact-info,
  .about-content,
  .about-intro,
  .summary {
    padding: 24px 20px !important;
    border-radius: 22px;
  }

  .result-item {
    padding: 18px 16px;
    gap: 12px;
    border-radius: 16px;
    line-height: 1.45;
  }

  .step-num {
    font-size: 28px;
  }

  .tariff {
    padding: 28px 20px !important;
  }

  .tariff-price {
    font-size: 34px;
  }

  .tariff ul {
    margin: 16px 0 22px;
    gap: 8px;
  }

  .tariff li {
    font-size: 15px;
    line-height: 1.45;
  }

  .about-photo,
  .about-photo-placeholder {
    min-height: 320px;
    border-radius: 24px;
  }

  .contact-form,
  .contact-info {
    padding: 24px 18px !important;
  }

  .form-grid {
    gap: 10px;
    margin-top: 20px;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .summary {
    padding: 24px 20px !important;
  }

  footer {
    padding: 20px 0 34px;
    font-size: 14px;
  }
}

/* ===== extra small mobile ===== */
@media (max-width: 375px) {
  .wrap {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: 30px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  .hero-photo,
  .hero-photo-placeholder,
  .about-photo,
  .about-photo-placeholder {
    min-height: 280px;
  }

  .card,
  .step,
  .tariff,
  .contact-form,
  .contact-info,
  .about-content,
  .about-intro,
  .summary {
    padding: 20px 16px !important;
  }
}

/* ===== mobile hero softer background ===== */
@media (max-width: 640px) {
  .hero-banner {
    background-color: #fffafc !important;
    background-image: linear-gradient(
      180deg,
      #ffffff 0%,
      #fff7fa 30%,
      #fbe8ef 58%,
      #f4e9d8 100%
    ) !important;
  }
}
/* ===== mobile hero: text -> buttons -> photo -> stats ===== */
@media (max-width: 640px) {
  .hero {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 28px 0 36px !important;
  }

  /* раскрываем внутренние элементы hero-content в общий поток */
  .hero-content {
    display: contents !important;
  }

  /* текст */
  .hero-eyebrow {
    order: 1 !important;
  }

  .hero h1 {
    order: 2 !important;
    text-align: center;
  }

  .hero-lead {
    order: 3 !important;
    margin: 18px auto 28px !important;
    text-align: center;
    max-width: 100%;
  }

  /* кнопки */
  .hero-actions {
    order: 4 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
    justify-content: center !important;
  }

  .hero-actions .btn,
  .btn,
  html body .t-btn,
  html body .t-submit {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    padding: 15px 20px !important;
  }

  /* фото */
  .hero-photo,
  .hero-photo-placeholder {
    order: 5 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 340px !important;
    margin: 0 auto !important;
    border-radius: 28px !important;
  }

  /* статистика 1:1 и прочее — после фото */
  .hero-stats {
    order: 6 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}