/* ─── ПЕРЕМЕННЫЕ ─── */
:root {
  --green-deep: #2a4030;
  --green-mid: #3d5c44;
  --green-light: #5a7a5e;
  --brown: #7a5c3a;
  --brown-light: #a07848;
  --gold: #c9a055;
  --gold-light: #e8c87a;
  --cream: #f5efe6;
  --cream-warm: #ede4d5;
  --milk: #faf6f0;
  --red-muted: #8b3a2e;
  --text-dark: #1e2a20;
  --text-mid: #3d4a35;
  --text-light: #6b7a5e;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--milk);
  color: var(--text-dark);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ─── NAV (общее) ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 84px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
  overflow: hidden;
}
nav.scrolled {
  background: rgba(42, 64, 48, 0.92);
  backdrop-filter: blur(12px);
}
nav.nav-solid {
  height: auto;
  padding: 16px 40px;
  background: rgba(42, 64, 48, 0.92);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-decoration: none;
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--cream-warm);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--gold);
  color: var(--green-deep) !important;
  padding: 8px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-warm);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-back:hover { opacity: 1; }

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  nav.nav-solid { padding: 14px 20px; }
  .nav-links { display: none; }
}

/* ─── КНОПКИ ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(201,160,85,0.5);
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 12px 36px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── ОБЩИЕ СЕКЦИИ ─── */
section { padding: 80px 20px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--brown);
}

/* ─── АНИМАЦИИ ПОЯВЛЕНИЯ ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── РАЗДЕЛИТЕЛИ ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 60px 0;
  opacity: 0.3;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--green-deep);
}
.divider span {
  font-size: 1.2rem;
  color: var(--green-deep);
}

/* ─── ORNAMENT ─── */
.ornament {
  text-align: center;
  color: var(--gold);
  opacity: 0.4;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  margin: 40px 0;
}
.ornament-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.06;
}
.ornament-bg svg {
  width: 100%;
  height: 100%;
}

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  color: rgba(245,239,230,0.6);
  padding: 56px 20px 32px;
}
footer a {
  color: rgba(232,200,122,0.7);
  text-decoration: none;
}
footer a:hover { color: var(--gold-light); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
.footer-logo {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 12px;
  display: block;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(245,239,230,0.5);
}
.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(245,239,230,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(245,239,230,0.3);
}
.footer-school {
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(245,239,230,0.5);
  font-size: 0.88rem;
}

/* ============================================
   ГЛАВНАЯ СТРАНИЦА (index.html)
   ============================================ */

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,18,12,0.72) 0%, rgba(20,30,20,0.45) 40%, rgba(10,18,12,0.82) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://чело-вечность.рф/istok/fire.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-deco svg {
  position: absolute;
  opacity: 0.07;
}
.hero-deco .deco-tree { bottom: -20px; right: -60px; width: 600px; }
.hero-deco .deco-tree2 { bottom: -10px; left: -80px; width: 400px; transform: scaleX(-1); }
.hero-deco .deco-sun { top: 60px; right: 120px; width: 280px; animation: spin-slow 80s linear infinite; }

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 160, 85, 0.15);
  border: 1px solid rgba(201, 160, 85, 0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 2px;
  margin-bottom: 32px;
  animation: fadeUp 1s ease both;
}
.hero-badge::before, .hero-badge::after {
  content: '✦';
  font-size: 0.6rem;
  opacity: 0.7;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.15s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(245,239,230,0.8);
  font-style: italic;
  margin-bottom: 48px;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeUp 1s ease 0.45s both;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-meta-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.hero-meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,200,122,1);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.hero-meta-value {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

.hero-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 1s ease 0.6s both;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,239,230,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,160,85,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.1); }
}

/* ─── СЕКЦИЯ: О МЕСТЕ ─── */
#about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.about-photo-inner {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(160deg, rgba(42,64,48,0.2) 0%, rgba(90,122,94,0.1) 50%, rgba(42,64,48,0.4) 100%),
    linear-gradient(135deg, #3d5c44 0%, #2a4030 40%, #4a6a4e 70%, #2d4432 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,160,85,0.3);
  border-radius: 2px;
  pointer-events: none;
}
.photo-caption {
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(245,239,230,0.8);
  font-size: 1rem;
  line-height: 1.4;
}
.photo-placeholder-icon {
  font-size: 4rem;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
.about-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text p strong {
  color: var(--green-deep);
  font-weight: 600;
}
.about-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.about-fact {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(42,64,48,0.05);
  border-left: 2px solid var(--gold);
  border-radius: 0 2px 2px 0;
}
.fact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.fact-text { font-size: 0.95rem; color: var(--text-mid); }

/* ─── СЕКЦИЯ: В. А. ЕФИМОВ ─── */
#efimov {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
#efimov::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(90,122,94,0.15) 0%, transparent 60%);
}
.efimov-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .efimov-grid { grid-template-columns: 1fr; gap: 40px; }
}
.efimov-photo-wrap {
  position: relative;
  overflow: visible;
}
.efimov-photo {
  aspect-ratio: 3/4;
  background: #0a120c;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.efimov-photo-placeholder {
  font-size: 5rem;
  opacity: 0.12;
}
.efimov-name-plate {
  position: absolute;
  z-index: 10;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--green-deep);
  padding: 14px 20px;
  border-radius: 2px;
}
.efimov-name-plate .name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
}
.efimov-name-plate .title {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.8;
  text-transform: uppercase;
}
.efimov-content {
  padding-bottom: 20px;
}
.efimov-content .section-label { color: var(--gold-light); }
.efimov-content .section-label::before { background: var(--gold-light); }
.efimov-content .section-title { color: var(--cream); }
.efimov-content .section-title em { color: var(--gold-light); }
.efimov-quote {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(245,239,230,0.9);
  margin: 28px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.efimov-desc {
  font-size: 1rem;
  color: rgba(245,239,230,0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}
.efimov-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.tag {
  background: rgba(201,160,85,0.12);
  border: 1px solid rgba(201,160,85,0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ─── СЕКЦИЯ: ЧТО БУДЕТ ─── */
#features {
  background: var(--milk);
}
.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.features-header .section-label {
  justify-content: center;
}
.features-header .section-label::before { display: none; }
.features-header .section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-item {
  background: var(--cream);
  padding: 36px 28px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.3s ease;
}
.feature-item:hover { background: var(--cream-warm); }
.feature-item:hover::before { height: 100%; }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── СЕКЦИЯ: ПРОГРАММА ─── */
#program {
  background: var(--cream);
  position: relative;
}
.program-header {
  margin-bottom: 56px;
}
.days-nav {
  display: flex;
  gap: 2px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.day-btn {
  flex: 1;
  min-width: 130px;
  padding: 16px 20px;
  background: rgba(42,64,48,0.06);
  border: none;
  cursor: pointer;
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
  text-align: left;
}
.day-btn .day-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.day-btn .day-name {
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
}
.day-btn .day-date {
  font-size: 0.78rem;
  opacity: 0.6;
  font-style: italic;
  margin-top: 2px;
  display: block;
}
.day-btn.active, .day-btn:hover {
  background: var(--green-deep);
  color: var(--cream);
}
.day-btn.active .day-num, .day-btn:hover .day-num { color: var(--gold-light); }

.day-content { display: none; }
.day-content.active { display: block; }

.day-intro {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(42,64,48,0.12);
}
.program-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.program-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(42,64,48,0.08);
  align-items: flex-start;
}
.program-item:last-child { border-bottom: none; }
.program-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
  position: relative;
}
.program-dot::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: rgba(201,160,85,0.3);
}
.program-item:last-child .program-dot::after { display: none; }
.program-text { flex: 1; }
.program-text strong {
  color: var(--green-deep);
  font-weight: 600;
}
.program-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.6;
}

/* ─── СЕКЦИЯ: КАК УСТРОЕНО ─── */
#logistics {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
#logistics::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(90,122,94,0.1);
}
.logistics-header {
  text-align: center;
  margin-bottom: 56px;
}
.logistics-header .section-label { justify-content: center; color: var(--gold-light); }
.logistics-header .section-label::before { display: none; }
.logistics-header .section-label::after { content: ''; width: 32px; height: 1px; background: var(--gold-light); opacity: 0.6; }
.logistics-header .section-title { color: var(--cream); }
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .logistics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .logistics-grid { grid-template-columns: 1fr; }
}
.logistics-card {
  background: rgba(255,255,255,0.04);
  padding: 32px 24px;
  border: 1px solid rgba(201,160,85,0.12);
  transition: background 0.2s, border-color 0.2s;
}
.logistics-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,160,85,0.3);
}
.logistics-icon { font-size: 1.8rem; margin-bottom: 14px; }
.logistics-title {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.logistics-desc {
  font-size: 0.88rem;
  color: rgba(245,239,230,0.65);
  line-height: 1.65;
}

.logistics-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.logistics-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid rgba(201,160,85,0.35);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: all 0.2s;
}
.logistics-link:hover {
  background: rgba(201,160,85,0.12);
  border-color: var(--gold);
}

/* ─── СЕКЦИЯ: СТОИМОСТЬ ─── */
#price {
  background: var(--milk);
}
.price-header { text-align: center; margin-bottom: 56px; }
.price-header .section-label { justify-content: center; }
.price-header .section-label::before { display: none; }
.price-header .section-label::after { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.6; }

.price-included {
  background: var(--cream);
  border: 1px solid rgba(42,64,48,0.12);
  padding: 40px;
  border-radius: 4px;
  margin-bottom: 32px;
}
.price-included-title {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 24px;
}
.price-included-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}
@media (max-width: 600px) {
  .price-included-list { grid-template-columns: 1fr; }
  .price-included { padding: 24px; }
}
.price-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.price-included-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.price-cta-block {
  text-align: center;
  padding: 48px;
  background: var(--green-deep);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.price-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(90,122,94,0.2) 0%, transparent 70%);
}
.price-amount {
  font-family: var(--ff-serif);
  font-size: 0.9rem;
  color: rgba(245,239,230,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
}
.price-value {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  position: relative;
}
.price-note {
  font-size: 0.85rem;
  color: rgba(245,239,230,0.5);
  margin-bottom: 32px;
  position: relative;
}
.price-cta-block .btn-primary {
  font-size: 0.95rem;
  padding: 18px 60px;
  position: relative;
}

/* ─── СЕКЦИЯ: КАК ДОБРАТЬСЯ ─── */
#location {
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── СЕКЦИЯ: ЧТО ВЗЯТЬ ─── */
#packing {
  background: var(--milk);
}
.packing-header { margin-bottom: 48px; }
.packing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .packing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .packing-grid { grid-template-columns: 1fr; }
}
.packing-category {
  padding: 28px;
  background: var(--cream);
  border-radius: 2px;
  border-top: 3px solid var(--gold);
}
.packing-cat-title {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.packing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.packing-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.packing-list li::before {
  content: '–';
  color: var(--gold);
  flex-shrink: 0;
}
.packing-list li.no-dash::before { display: none; }
.packing-list li ul li::before { display: none; }

/* ─── ПОПУТЧИКИ ─── */
#companions {
  background: var(--cream-warm);
  text-align: center;
}
.companions-inner {
  max-width: 640px;
  margin: 0 auto;
}
.companions-icon { font-size: 3rem; margin-bottom: 24px; display: block; }
.companions-title {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 16px;
}
.companions-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.2s;
}
.sticky-cta a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ─── АККОРДЕОН МАРШРУТОВ ─── */
.route-accordion { display: flex; flex-direction: column; gap: 2px; }
.acc-item { border-radius: 2px; overflow: hidden; }
.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(42,64,48,0.06);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.acc-btn:hover, .acc-btn.open { background: var(--green-deep); }
.acc-btn.open .acc-city { color: var(--cream); }
.acc-btn.open .acc-arrow { color: var(--gold); transform: rotate(180deg); }
.acc-city {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: color 0.2s;
}
.acc-arrow {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.3s, color 0.2s;
}
.acc-body {
  display: none;
  padding: 20px;
  background: var(--cream);
  flex-direction: column;
  gap: 14px;
}
.acc-body.open { display: flex; }
.acc-route {
  padding: 14px 16px;
  background: var(--milk);
  border-radius: 2px;
  border-left: 2px solid rgba(42,64,48,0.15);
}
.acc-route.optimal { border-left-color: var(--gold); }
.acc-route-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.acc-route-title {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.acc-route-detail {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.acc-back {
  padding: 12px 16px;
  background: rgba(42,64,48,0.05);
  border-radius: 2px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── КНОПКА ГОСТЕЙ ─── */
.guests-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: 2px solid var(--green-deep);
  color: var(--green-deep);
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 20px 56px;
  border-radius: 2px;
  position: relative;
  transition: color 0.35s, transform 0.2s;
  overflow: hidden;
}
.guests-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
}
.guests-btn:hover::before { transform: scaleX(1); }
.guests-btn:hover {
  color: var(--cream);
  transform: translateY(-2px);
}
.guests-btn > * { position: relative; z-index: 1; }
.guests-btn .guests-btn-icon {
  color: var(--gold);
  font-size: 0.75rem;
  transition: color 0.35s;
  position: relative;
  z-index: 1;
}
.guests-btn:hover .guests-btn-icon { color: var(--gold-light); }
@media (max-width: 600px) {
  .guests-btn { font-size: 1.1rem; padding: 16px 32px; gap: 12px; }
}

/* ─── АДАПТИВ HERO ─── */
@media (max-width: 768px) {
  #video-usadba .container > div {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .hero-bg-img {
    background-position: 65% 60% !important;
  }
  .hero-content {
    padding: 70px 16px 40px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .hero-badge {
    font-size: 0.68rem;
    padding: 5px 12px;
    margin-bottom: 20px;
  }
  .hero-meta {
    gap: 20px;
    margin-bottom: 32px;
  }
  .hero-meta-value {
    font-size: 0.95rem;
  }
  .hero-meta-label {
    font-size: 0.65rem;
  }
  .hero-meta-icon {
    font-size: 1.1rem;
  }
  .btn-primary {
    padding: 14px 36px;
    font-size: 0.82rem;
  }
  .btn-secondary {
    padding: 10px 24px;
    font-size: 0.78rem;
  }
}

/* ============================================
   СТРАНИЦА ГОСТЕЙ (guests.html)
   ============================================ */

/* ─── ШАПКА СТРАНИЦЫ ─── */
.page-header {
  background: var(--green-deep);
  padding: 120px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-header-ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
}
.page-header-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: fadeUp 0.8s ease both;
}
.page-header-label::before,
.page-header-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.page-header-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.page-header-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: rgba(245,239,230,0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeUp 0.8s ease 0.2s both;
}

/* ─── СЕКЦИЯ ГОСТЕЙ ─── */
.guests-section {
  padding: 80px 20px 100px;
  background: var(--milk);
}

/* ─── СЕТКА КАРТОЧЕК ─── */
.guests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.guests-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: calc((1100px - 32px) / 3 * 2 + 32px);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .guests-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .guests-grid-bottom { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}
@media (max-width: 580px) {
  .guests-grid { grid-template-columns: 1fr; gap: 20px; }
  .guests-grid-bottom { grid-template-columns: 1fr; max-width: 100%; }
}

/* ─── КАРТОЧКА ГОСТЯ ─── */
.guest-card {
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.guest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(42,64,48,0.15);
}
.guest-photo {
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
}
.guest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.guest-card:hover .guest-photo img {
  transform: scale(1.04);
}
.guest-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.15;
  background: linear-gradient(160deg, #3d5c44 0%, #2a4030 60%, #4a6a4e 100%);
}
.guest-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,18,12,0.65) 0%, transparent 100%);
  pointer-events: none;
}
.guest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.guest-card:hover::before { transform: scaleX(1); }

.guest-info {
  padding: 24px 22px 28px;
  border-top: 1px solid rgba(42,64,48,0.08);
}
.guest-name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 6px;
}
.guest-nickname {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.guest-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── ВИДЕО (guests) ─── */
.video-section {
  background: var(--cream);
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.video-header {
  text-align: center;
  margin-bottom: 48px;
}
.video-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(42,64,48,0.18);
  position: relative;
  background: #0a120c;
}
.video-wrap video {
  width: 100%;
  display: block;
}
.video-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(201,160,85,0.25);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

/* ─── КНОПКА НАЗАД ─── */
.back-block {
  text-align: center;
  padding: 64px 20px 80px;
  background: var(--milk);
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(42,64,48,0.3);
  color: var(--green-deep);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  font-family: var(--ff-sans);
  font-weight: 600;
}
.btn-back:hover {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}

/* ─── FOOTER (guests — компактный) ─── */
footer.footer-compact {
  padding: 28px 20px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(245,239,230,0.4);
}

/* ─── SECTION-LABEL центрированный (guests) ─── */
.section-label-center {
  justify-content: center;
}
.section-label-center::before {
  display: block;
}
.section-label-center::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
