/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #b8935a;
  --gold-light: #d4b896;
  --gold-dark: #8a6835;

  /* Світлі фони (тепла пісочна гамма) */
  --dark:   #fdf6ec;   /* основний фон сторінки */
  --dark-2: #f5e9d6;   /* фон карток / секцій */
  --dark-3: #ecdfc8;   /* альтернативний фон секцій */

  /* Акцентні секції (трохи темніший беж) */
  --section-dark:   #e8d9c0;
  --section-dark-2: #ddd0b5;

  /* Текст */
  --cream:      #1e1208;   /* заголовки секцій */
  --text:       #3d2e1a;   /* основний текст */
  --text-muted: #9a856a;   /* другорядний текст */

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* висота фіксованої шапки */
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════════ */
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__eyebrow--light {
  color: var(--gold);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 32px;
}
.section__title--light {
  color: var(--cream);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: #faf7f2;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 12px;
}
.btn--full {
  width: 100%;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition:
    background 0.4s ease,
    padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(184, 147, 90, 0.2);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--gold);
}

.nav__book {
  background: var(--gold);
  color: #faf7f2 !important;
  padding: 9px 22px;
  border-radius: 2px;
}
.nav__book:hover {
  background: var(--gold-light) !important;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav__cta:hover {
  background: rgba(184,147,90,0.12);
  color: var(--gold-dark);
}

.nav__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__language-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.nav__language-btn:hover {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-light);
  transition: all 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-menu__lang {
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-color: #e8d9c0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 12, 4, 0.50) 0%,
    rgba(20, 12, 4, 0.30) 50%,
    rgba(20, 12, 4, 0.55) 100%
  );
}

/* Hero text colours when a real photo is loaded */
.hero--photo .hero__eyebrow  { color: var(--gold-light); }
.hero--photo .hero__title    { color: #faf7f2; }
.hero--photo .hero__title em { color: var(--gold-light); }
.hero--photo .hero__subtitle { color: rgba(250, 247, 242, 0.82); }
.hero--photo .hero__scroll   { color: rgba(250, 247, 242, 0.55); }

.hero__content {
  position: relative;
  text-align: center;
  max-width: 780px;
  padding: 0 32px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about {
  padding: 120px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.about__image-decor {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  z-index: -1;
}

.about__lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about__body {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about__body strong {
  color: var(--gold-light);
  font-weight: 500;
}

.about__social {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.social-link:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   VENUS COURSE
═══════════════════════════════════════════════ */
.venus {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.venus__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}

.venus__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(15, 8, 2, 0.82), rgba(15, 8, 2, 0.82)),
    url('../images/DSC00247.jpg') center 20% / cover no-repeat;
}

.venus__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.venus__desc {
  max-width: 600px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.78);
  line-height: 1.8;
}

.venus__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.venus__features-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.venus__photo-col {
  flex-shrink: 0;
}

.venus__section-photo {
  width: 240px;
  height: 360px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 4px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.venus__feature {
  padding: 28px 24px;
  border: 1px solid rgba(250, 247, 242, 0.18);
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.venus__feature:hover {
  border-color: rgba(250, 247, 242, 0.45);
  transform: translateY(-4px);
}

.venus__feature-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.venus__feature h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: #faf7f2;
  margin-bottom: 10px;
}

.venus__feature p {
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   CTA STRIP — Консультація (повноекранне фото)
═══════════════════════════════════════════════ */
.cta-strip {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  min-height: 560px;
}

/* Фонове фото */
.cta-strip__bg {
  position: absolute;
  inset: 0;
}
.cta-strip__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Темний градієнт для читабельності тексту */
.cta-strip__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(12, 6, 2, 0.82) 0%,
      rgba(12, 6, 2, 0.65) 55%,
      rgba(12, 6, 2, 0.40) 100%
    );
}

/* Велика декоративна лапка */
.cta-strip::after {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 0;
  font-family: var(--font-serif);
  font-size: 28rem;
  line-height: 1;
  color: rgba(184,147,90,0.08);
  pointer-events: none;
  user-select: none;
}

.cta-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.cta-strip__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-strip__eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-strip__eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.6;
  flex-shrink: 0;
}

.cta-strip__text {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 300;
  color: #f5eee4;
  line-height: 1.3;
  margin-bottom: 32px;
}
.cta-strip__text em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

/* Meta — горизонтальні теги */
.cta-strip__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.cta-strip__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid rgba(184,147,90,0.4);
  border-radius: 2px;
}
.cta-strip__meta-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}
.cta-strip__meta-label::after { content: ':'; }
.cta-strip__meta-value {
  font-size: 0.85rem;
  color: rgba(245, 238, 228, 0.9);
}
.cta-strip__desc {
  font-size: 0.95rem;
  color: rgba(240, 232, 219, 0.65);
  line-height: 1.85;
  margin-bottom: 36px;
}
.cta-strip__desc em {
  font-style: italic;
  color: rgba(240, 232, 219, 0.9);
}
.cta-strip__content .btn {
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════
   SESSIONS (kept for reference — section removed from HTML)
═══════════════════════════════════════════════ */
.sessions {
  padding: 120px 0;
}

.sessions__intro {
  max-width: 500px;
  color: var(--text-muted);
  margin-bottom: 64px;
  font-size: 1.05rem;
}

.sessions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.session-card {
  position: relative;
  padding: 48px 36px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  background: var(--dark-2);
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.session-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}

.session-card--featured {
  border-color: rgba(201, 169, 110, 0.35);
  background: linear-gradient(135deg, var(--dark-2), rgba(201, 169, 110, 0.05));
}

.session-card__badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.session-card__icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.session-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}

.session-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.session-card__duration {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.session-card__price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 24px;
}
.session-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.session-card__consult {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(138,128,144,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.session-card__consult:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════ */
.blog {
  padding: 120px 0;
  background: var(--dark-3);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.blog-card {
  padding: 40px 32px;
  background: var(--dark-2);
  border: 1px solid rgba(184, 147, 90, 0.18);
  transition:
    border-color 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-4px);
}

.blog-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(184, 147, 90, 0.15);
  padding-top: 20px;
}

/* Blog card thumbnail */
.blog-card__thumb {
  margin: -40px -32px 24px -32px;
  height: 200px;
  overflow: hidden;
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__thumb img {
  transform: scale(1.04);
}

/* Pinned badge */
.blog-card--pinned {
  border-color: rgba(184, 147, 90, 0.38);
}
.blog-card__pinned-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(138, 104, 53, 0.45);
  padding: 3px 10px;
  margin-bottom: 14px;
}

.blog-card__date {
  font-size: 11px;
  color: var(--text-muted);
}

.blog-card__link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: letter-spacing 0.2s;
}
.blog-card__link:hover {
  letter-spacing: 0.12em;
}

.blog__more {
  text-align: center;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(184, 147, 90, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(184, 147, 90, 0.05) 0%,
      transparent 60%
    ),
    var(--section-dark);
}

.testimonials .container {
  position: relative;
}

.testimonials__track-wrap {
  position: relative;
}
.testimonials__track-wrap::before,
.testimonials__track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 16px;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.testimonials__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--section-dark), transparent);
}
.testimonials__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--section-dark), transparent);
}

.testimonials__grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(184,147,90,0.3) transparent;
}
.testimonials__grid::-webkit-scrollbar { height: 4px; }
.testimonials__grid::-webkit-scrollbar-track { background: transparent; }
.testimonials__grid::-webkit-scrollbar-thumb {
  background: rgba(184,147,90,0.35);
  border-radius: 2px;
}

.testimonial-card {
  flex: 0 0 340px;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.12);
  scroll-snap-align: start;
  transition: border-color 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 32px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  color: var(--cream);
  font-size: 0.9rem;
}
.testimonial-card__author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════
   VIDEO TESTIMONIALS
═══════════════════════════════════════════════ */
.video-testimonials {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(184, 147, 90, 0.18);
}

.video-testimonials__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  text-align: center;
}

.video-testimonials__track-wrap {
  position: relative;
}

.video-testimonials__track-wrap::before,
.video-testimonials__track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.video-testimonials__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--section-dark), transparent);
}
.video-testimonials__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--section-dark), transparent);
}

.video-testimonials__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 147, 90, 0.3) transparent;
}
.video-testimonials__grid::-webkit-scrollbar {
  height: 4px;
}
.video-testimonials__grid::-webkit-scrollbar-track {
  background: transparent;
}
.video-testimonials__grid::-webkit-scrollbar-thumb {
  background: rgba(184, 147, 90, 0.35);
  border-radius: 2px;
}

.video-testimonials__item {
  flex: 0 0 380px;
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(184, 147, 90, 0.15);
  border-radius: 2px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 0.3s;
}
.video-testimonials__item:hover {
  border-color: rgba(184, 147, 90, 0.4);
}

.video-testimonials__item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
}

.contact__inner {
  max-width: 720px;
}

.contact__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 48px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid rgba(184, 147, 90, 0.3);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 106, 90, 0.5);
}
.form-hint {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.03em;
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

/* Прибрати жовтий autofill браузера */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px #f5e9d6 inset !important;
  -webkit-text-fill-color: var(--text) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.venus-modal__input:-webkit-autofill,
.venus-modal__input:-webkit-autofill:hover,
.venus-modal__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px var(--bg) inset !important;
  -webkit-text-fill-color: var(--text) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23C9A96E' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group select option {
  background: var(--dark-2);
}

/* ═══════════════════════════════════════════════
   BLOG — EXPAND & CARD BUTTON
═══════════════════════════════════════════════ */
.blog-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 40px;
  font-size: 0.9rem;
}
.blog-card--extra {
  display: none;
}
.blog-card--revealed {
  animation: fadeInUp 0.4s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ═══════════════════════════════════════════════
   BLOG MODAL
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   THANK YOU MODAL
═══════════════════════════════════════════════ */
.thankyou-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.thankyou-modal.is-open {
  display: flex;
}
.thankyou-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.thankyou-modal__box {
  position: relative;
  z-index: 1;
  background: var(--dark);
  border: 1px solid rgba(184, 147, 90, 0.25);
  border-radius: 2px;
  max-width: 480px;
  width: 100%;
  padding: 56px 48px 48px;
  text-align: center;
  animation: thankyou-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes thankyou-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.thankyou-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.thankyou-modal__close:hover { color: var(--gold); }
.thankyou-modal__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.thankyou-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}
.thankyou-modal__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.thankyou-modal__tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 16px;
  width: 100%;
  justify-content: center;
}
.thankyou-modal__tg::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23faf7f2'%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm5.894 8.221-1.97 9.28c-.145.658-.537.818-1.084.508l-3-2.21-1.447 1.394c-.16.16-.295.295-.605.295l.213-3.053 5.56-5.023c.242-.213-.054-.333-.373-.12L7.119 13.99 4.16 13.08c-.645-.204-.657-.644.136-.953l11.25-4.337c.537-.194 1.006.131.348.431z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.thankyou-modal__dismiss {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid rgba(184, 147, 90, 0.3);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.thankyou-modal__dismiss:hover {
  border-color: var(--gold);
  color: var(--gold);
}
@media (max-width: 480px) {
  .thankyou-modal__box { padding: 48px 24px 36px; }
  .thankyou-modal__title { font-size: 1.6rem; }
}

/* ═══════════════════════════════════════════════
   BLOG MODAL
═══════════════════════════════════════════════ */
.blog-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px;
  overflow-y: auto;
}
.blog-modal.is-open {
  display: flex;
}
.blog-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.blog-modal__box {
  position: relative;
  z-index: 1;
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 2px;
  max-width: 760px;
  width: 100%;
  padding: 60px 72px;
  margin: auto;
  animation: modalIn 0.3s ease both;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.blog-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.blog-modal__close:hover {
  color: var(--gold);
}
.blog-modal__tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.blog-modal__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.blog-modal__date {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.blog-modal__body {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1rem;
}
.blog-modal__body p {
  margin-bottom: 20px;
}
.blog-modal__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin: 36px 0 12px;
}
.blog-modal__body strong {
  color: var(--text);
  font-weight: 500;
}
.blog-modal__body em {
  font-style: italic;
  color: var(--text);
}
.blog-modal__body hr {
  border: none;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  margin: 36px 0;
}
@media (max-width: 768px) {
  .blog-modal {
    padding: 16px;
  }
  .blog-modal__box {
    padding: 40px 24px;
  }
  .blog-modal__title {
    font-size: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════
   VENUS MODAL
═══════════════════════════════════════════════ */
.venus-modal__box {
  max-width: 600px;
}
.venus-modal__photo {
  display: block;
  width: 52%;
  height: auto;
  margin: 0 auto 28px;
  border-radius: 4px;
}
.venus-modal__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.venus-modal__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 12px;
}
.venus-modal__subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.venus-modal__quote {
  border-left: 2px solid var(--gold);
  padding: 12px 20px;
  margin: 0 0 32px;
  color: var(--text);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  background: rgba(201,169,110,0.06);
  border-radius: 0 4px 4px 0;
}
.venus-modal__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  text-align: center;
  font-style: italic;
}
.venus-modal__section-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin: 28px 0 14px;
}
.venus-modal__list {
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 22px;
}
.venus-modal__list li {
  margin-bottom: 8px;
}
.venus-modal__list--format {
  list-style: none;
  padding-left: 0;
}
.venus-modal__list--format li::before {
  content: '✦';
  color: var(--gold);
  margin-right: 10px;
  font-size: 0.7em;
}
.venus-modal__cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(184, 147, 90, 0.2);
}
.venus-modal__form-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
}
.venus-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto;
}
.venus-modal__input {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid rgba(184, 147, 90, 0.4);
  background: rgba(184, 147, 90, 0.04);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.venus-modal__input::placeholder {
  color: var(--text-muted);
}
.venus-modal__input:focus {
  border-color: var(--gold);
  background: rgba(184, 147, 90, 0.08);
}
.venus-modal__btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
}

/* ─── Blog title with author avatar ──────────────────────────── */
.blog__title-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.blog__title-row .section__title {
  margin-bottom: 0;
}
.blog__author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(184, 147, 90, 0.25);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(184, 147, 90, 0.2);
  padding: 56px 0;
  background: var(--dark-3);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
}

.footer__nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__nav a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: 24px;
}
.footer__social a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__social a:hover {
  color: var(--gold);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__legal a {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  opacity: 0.6;
}
.footer__legal a:hover {
  color: var(--gold);
  opacity: 1;
}
.footer__legal span {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.4;
}
.footer__copy {
  font-size: 12px;
  color: rgba(138, 128, 144, 0.5);
}

/* ═══════════════════════════════════════════════
   SECTION TEXT OVERRIDES
═══════════════════════════════════════════════ */
.venus .section__title--light {
  color: #faf7f2;
}
.testimonials .testimonial-card__text {
  color: var(--text);
}
.testimonials .testimonial-card__author strong {
  color: var(--cream);
}
.testimonials .testimonial-card__author span {
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .venus__split {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .venus__section-photo {
    width: 200px;
    height: 300px;
  }
  .sessions__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* ── NAV ── */
  .nav__links    { display: none; }
  .nav__controls { display: none; }
  .nav__burger   { display: flex; }
  .nav           { padding: 18px 20px; }
  .nav.scrolled  { padding: 14px 20px; }

  /* ── CONTAINER ── */
  .container { padding: 0 16px; }

  /* ── TYPOGRAPHY ── */
  .section__title   { font-size: 2rem; margin-bottom: 16px; }
  .section__eyebrow { margin-bottom: 10px; }

  /* ── ALL SECTIONS ── */
  .about,
  .venus,
  .blog,
  .testimonials,
  .contact { padding: 56px 0; }

  /* ── ABOUT ── */
  .about { padding: 48px 0 40px; }
  .about__grid         { grid-template-columns: 1fr; gap: 24px; }
  .about__image-wrap   { position: relative; }
  .about__image-wrap::before,
  .about__image-wrap::after { display: none; }
  .about__photo        { aspect-ratio: 3/4; max-height: 56vh; width: 100%; }
  .about__image-decor  { display: none; }
  .about__text         { text-align: center; }
  .about__body         { display: none; }
  .about__lead         { font-size: 1rem; margin-bottom: 10px; }
  .about__social       { justify-content: center; margin-top: 20px; gap: 16px; }

  /* ── VENUS ── */
  .venus__split        { grid-template-columns: 1fr; gap: 10px; }
  .venus__photo-col    { display: none; }
  .venus__features-col { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .venus__feature      { padding: 12px 10px; }
  .venus__feature-icon { font-size: 0.9rem; margin-bottom: 6px; }
  .venus__feature h3   { font-size: 0.88rem; margin-bottom: 4px; }
  .venus__feature p    { font-size: 0.78rem; line-height: 1.5; }
  .venus__desc         { margin-bottom: 20px; font-size: 0.88rem; }
  .venus            { padding: 48px 0; }
  .venus #venus-more-btn { margin-top: 20px; padding: 12px 24px; font-size: 11px; }

  /* ── BLOG ── */
  .blog__grid { grid-template-columns: 1fr; }

  /* ── TESTIMONIALS ── */
  .testimonials              { padding: 48px 0; }
  .testimonial-card          { flex: 0 0 72vw; padding: 20px 16px; }
  .testimonial-card__quote   { font-size: 2.5rem; margin-bottom: 10px; }
  .testimonial-card__text    { font-size: 0.9rem; margin-bottom: 16px; }
  .testimonial-card__avatar  { width: 36px; height: 36px; font-size: 0.9rem; }
  .testimonial-card__author strong { font-size: 0.82rem; }
  .testimonial-card__author span   { font-size: 0.72rem; }
  .video-testimonials__item  { flex: 0 0 72vw; }
  .video-testimonials        { margin-top: 32px; padding-top: 28px; }

  /* ── FORM ── */
  .form-row { grid-template-columns: 1fr; }

  /* ── HERO ── */
  .hero__scroll { display: none; }
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .hero__actions .btn {
    padding: 12px 20px;
    font-size: 11px;
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    text-align: center;
  }

  /* ── CTA STRIP ── */
  .cta-strip        { padding: 72px 0; min-height: 480px; }
  .cta-strip::after { font-size: 12rem; }
  .cta-strip__inner { max-width: 100%; }
  .cta-strip__content { text-align: center; }
  .cta-strip__eyebrow { justify-content: center; }
  .cta-strip__meta    { justify-content: center; }
  .cta-strip__text    { font-size: 1.8rem; margin-bottom: 20px; }
  .cta-strip__desc    { font-size: 0.88rem; margin-bottom: 24px; }
  .cta-strip__content .btn { align-self: center; }
}

@media (max-width: 480px) {
  .venus__features-col { grid-template-columns: 1fr; }
  .about,
  .venus,
  .blog,
  .testimonials,
  .contact { padding: 48px 0; }
  .testimonial-card         { flex: 0 0 85vw; }
  .video-testimonials__item { flex: 0 0 85vw; }
}
