/* =========================================================
   BAZI MARATHON — TILDA CUSTOM CSS
   ========================================================= */


/* =========================================================
   01. VARIABLES
   ========================================================= */

.bazi-page {
  --bazi-green: #17231e;
  --bazi-green-2: #21332b;
  --bazi-green-3: #2d4136;

  --bazi-cream: #f3eee4;
  --bazi-paper: #ebe4d7;
  --bazi-white: #fffdf8;

  --bazi-gold: #b79a63;
  --bazi-gold-light: #d4bd8b;

  --bazi-terracotta: #a9614b;

  --bazi-text: #252a26;
  --bazi-muted: #777a72;

  --bazi-line: rgba(37, 42, 38, 0.15);
  --bazi-dark-line: rgba(255, 255, 255, 0.12);

  --bazi-radius: 2px;

  --bazi-container: 1180px;

  position: relative;

  width: 100%;
  max-width: 100%;

  overflow: hidden;

  background: var(--bazi-cream);

  color: var(--bazi-text);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.5;

  box-sizing: border-box;
}


/* =========================================================
   02. RESET
   ========================================================= */

.bazi-page *,
.bazi-page *::before,
.bazi-page *::after {
  box-sizing: border-box;
}

.bazi-page h1,
.bazi-page h2,
.bazi-page h3,
.bazi-page p {
  margin-top: 0;
}

.bazi-page button,
.bazi-page input {
  font-family: inherit;
}

.bazi-page button {
  cursor: pointer;
}

.bazi-page a {
  color: inherit;
  text-decoration: none;
}


/* =========================================================
   03. CONTAINER
   ========================================================= */

.bazi-container {
  width: min(
    calc(100% - 80px),
    var(--bazi-container)
  );

  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   04. TYPOGRAPHY
   ========================================================= */

.bazi-title {
  margin-bottom: 30px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(42px, 5vw, 76px);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.035em;

  color: var(--bazi-green);
}

.bazi-title--hero {
  max-width: 850px;

  margin-bottom: 32px;

  color: var(--bazi-white);

  font-size: clamp(46px, 6vw, 88px);

  line-height: 0.94;
}

.bazi-lead {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(25px, 2.4vw, 38px);

  line-height: 1.15;

  color: var(--bazi-green);
}

.bazi-section__label {
  margin-bottom: 35px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: var(--bazi-gold);
}

.bazi-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 30px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  color: var(--bazi-gold-light);
}

.bazi-eyebrow::before {
  content: "";

  width: 38px;
  height: 1px;

  background: var(--bazi-gold);
}


/* =========================================================
   05. HEADER
   ========================================================= */

.bazi-header {
  position: absolute;

  top: 0;
  left: 0;

  z-index: 50;

  width: 100%;

  color: var(--bazi-white);

  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease;
}

.bazi-header__inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  width: min(
    calc(100% - 80px),
    var(--bazi-container)
  );

  min-height: 88px;

  margin: 0 auto;

  border-bottom: 1px solid var(--bazi-dark-line);
}

.bazi-logo {
  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.18em;
}

.bazi-nav {
  display: flex;

  align-items: center;

  gap: 28px;

  margin-left: auto;
  margin-right: 34px;
}

.bazi-nav a {
  position: relative;

  font-size: 12px;

  color: rgba(255,255,255,0.78);

  transition:
    color 0.25s ease;
}

.bazi-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: var(--bazi-gold-light);

  transition: width 0.25s ease;
}

.bazi-nav a:hover {
  color: var(--bazi-white);
}

.bazi-nav a:hover::after {
  width: 100%;
}

.bazi-header__button {
  padding: 12px 20px;

  border: 1px solid rgba(255,255,255,0.45);

  background: transparent;

  color: var(--bazi-white);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.bazi-header__button:hover {
  background: var(--bazi-white);

  color: var(--bazi-green);
}

.bazi-menu-button {
  display: none;

  width: 42px;
  height: 42px;

  padding: 9px;

  border: 0;

  background: transparent;
}

.bazi-menu-button span {
  display: block;

  width: 24px;
  height: 1px;

  margin: 5px auto;

  background: var(--bazi-white);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}


/* =========================================================
   06. HERO
   ========================================================= */

.bazi-hero {
  position: relative;

  min-height: 820px;

  display: flex;

  align-items: center;

  background:
    radial-gradient(
      circle at 78% 46%,
      rgba(183,154,99,0.13),
      transparent 27%
    ),
    var(--bazi-green);

  color: var(--bazi-white);

  overflow: hidden;
}

.bazi-hero::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 48%;

  height: 100%;

  background:
    linear-gradient(
      135deg,
      transparent 0%,
      rgba(255,255,255,0.025) 50%,
      transparent 100%
    );

  pointer-events: none;
}

.bazi-hero__inner {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1.25fr 0.75fr;

  align-items: center;

  gap: 50px;

  padding-top: 100px;
}

.bazi-hero__content {
  position: relative;

  z-index: 3;
}

.bazi-hero__date {
  margin-bottom: 28px;

  color: var(--bazi-gold-light);

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.bazi-hero__text {
  max-width: 590px;

  margin-bottom: 38px;

  color: rgba(255,255,255,0.7);

  font-size: 17px;

  line-height: 1.7;
}


/* =========================================================
   07. HERO DECORATION
   ========================================================= */

.bazi-hero__decor {
  position: absolute;

  border: 1px solid rgba(183,154,99,0.12);

  border-radius: 50%;

  pointer-events: none;
}

.bazi-hero__decor--one {
  width: 500px;
  height: 500px;

  top: -220px;
  right: -150px;
}

.bazi-hero__decor--two {
  width: 760px;
  height: 760px;

  bottom: -500px;
  left: -350px;
}


/* =========================================================
   08. BAZI MAP
   ========================================================= */

.bazi-hero__visual {
  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 550px;
}

.bazi-map {
  position: relative;

  width: min(42vw, 510px);

  aspect-ratio: 1 / 1;

  display: flex;

  align-items: center;

  justify-content: center;
}

.bazi-map__circle {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(183,154,99,0.35);
}

.bazi-map__circle--outer {
  width: 100%;
  height: 100%;

  border-style: dashed;

  animation: baziRotate 50s linear infinite;
}

.bazi-map__circle--middle {
  width: 76%;
  height: 76%;

  animation: baziRotateReverse 35s linear infinite;
}

.bazi-map__circle--inner {
  width: 50%;
  height: 50%;

  border-color: rgba(183,154,99,0.55);
}

.bazi-map__center {
  position: relative;

  z-index: 3;

  width: 145px;
  height: 145px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border: 1px solid var(--bazi-gold);

  border-radius: 50%;

  background: rgba(23,35,30,0.88);

  box-shadow:
    0 0 80px rgba(183,154,99,0.1);
}

.bazi-map__center span {
  font-family:
    Georgia,
    serif;

  font-size: 22px;

  letter-spacing: 0.12em;

  color: var(--bazi-gold-light);
}

.bazi-map__center small {
  margin-top: 4px;

  font-family:
    Georgia,
    serif;

  font-size: 24px;

  color: rgba(255,255,255,0.7);
}

.bazi-map__symbol {
  position: absolute;

  z-index: 4;

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(183,154,99,0.45);

  border-radius: 50%;

  background: var(--bazi-green);

  color: var(--bazi-gold-light);

  font-family:
    Georgia,
    serif;

  font-size: 20px;
}

.bazi-map__symbol--1 {
  top: 2%;
  left: 47%;
}

.bazi-map__symbol--2 {
  top: 25%;
  right: 3%;
}

.bazi-map__symbol--3 {
  bottom: 5%;
  right: 25%;
}

.bazi-map__symbol--4 {
  bottom: 10%;
  left: 19%;
}

.bazi-map__symbol--5 {
  top: 31%;
  left: 3%;
}

@keyframes baziRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes baziRotateReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}


/* =========================================================
   09. BUTTONS
   ========================================================= */

.bazi-button {
  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  min-height: 56px;

  padding: 0 27px;

  border: 1px solid var(--bazi-green);

  background: var(--bazi-green);

  color: var(--bazi-white);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.bazi-button:hover {
  transform: translateY(-2px);

  background: var(--bazi-green-2);
}

.bazi-button--gold {
  border-color: var(--bazi-gold);

  background: var(--bazi-gold);

  color: var(--bazi-green);
}

.bazi-button--gold:hover {
  background: var(--bazi-gold-light);

  border-color: var(--bazi-gold-light);

  color: var(--bazi-green);
}

.bazi-button__arrow {
  font-size: 18px;

  font-weight: 400;

  line-height: 1;
}


/* =========================================================
   10. GENERAL SECTIONS
   ========================================================= */

.bazi-section {
  position: relative;

  padding-top: 125px;
  padding-bottom: 125px;

  background: var(--bazi-cream);
}

.bazi-section__heading {
  display: grid;

  grid-template-columns: 1fr 0.65fr;

  gap: 80px;

  margin-bottom: 65px;
}

.bazi-section__heading > p {
  align-self: end;

  max-width: 440px;

  margin-bottom: 8px;

  color: var(--bazi-muted);

  font-size: 16px;

  line-height: 1.75;
}


/* =========================================================
   11. ABOUT
   ========================================================= */

.bazi-about {
  background: var(--bazi-cream);
}

.bazi-about__grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 100px;

  padding-bottom: 90px;
}

.bazi-about__content {
  max-width: 670px;
}

.bazi-about__content p:last-child {
  margin-bottom: 0;

  color: var(--bazi-muted);

  font-size: 17px;

  line-height: 1.8;
}

.bazi-elements {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  border-top: 1px solid var(--bazi-line);

  border-bottom: 1px solid var(--bazi-line);
}

.bazi-element {
  min-height: 260px;

  padding: 30px 24px;

  border-right: 1px solid var(--bazi-line);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.bazi-element:last-child {
  border-right: 0;
}

.bazi-element:hover {
  background: rgba(183,154,99,0.08);

  transform: translateY(-4px);
}

.bazi-element__number {
  font-size: 10px;

  letter-spacing: 0.15em;

  color: var(--bazi-muted);
}

.bazi-element__symbol {
  margin-top: 48px;
  margin-bottom: 30px;

  font-family:
    Georgia,
    serif;

  font-size: 48px;

  color: var(--bazi-gold);
}

.bazi-element h3 {
  margin-bottom: 0;

  font-family:
    Georgia,
    serif;

  font-size: 23px;

  font-weight: 400;
}


/* =========================================================
   12. AUDIENCE
   ========================================================= */

.bazi-audience {
  background: var(--bazi-paper);
}

.bazi-audience__grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--bazi-line);
}

.bazi-audience-card {
  min-height: 260px;

  padding: 36px;

  border-bottom: 1px solid var(--bazi-line);

  transition:
    background 0.3s ease;
}

.bazi-audience-card:nth-child(odd) {
  border-right: 1px solid var(--bazi-line);
}

.bazi-audience-card:hover {
  background: rgba(255,255,255,0.32);
}

.bazi-audience-card span {
  display: block;

  margin-bottom: 55px;

  font-size: 11px;

  letter-spacing: 0.15em;

  color: var(--bazi-gold);
}

.bazi-audience-card h3 {
  max-width: 520px;

  margin-bottom: 0;

  font-family:
    Georgia,
    serif;

  font-size: clamp(21px, 2vw, 29px);

  font-weight: 400;

  line-height: 1.18;
}

.bazi-audience-card:last-child {
  grid-column: span 2;
}


/* =========================================================
   13. QUESTIONS
   ========================================================= */

.bazi-questions {
  background: var(--bazi-green);

  color: var(--bazi-white);
}

.bazi-questions .bazi-title {
  color: var(--bazi-white);
}

.bazi-questions__heading {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 100px;

  align-items: center;
}

.bazi-coming-soon {
  padding: 35px;

  border: 1px solid var(--bazi-dark-line);

  background: rgba(255,255,255,0.025);
}

.bazi-coming-soon span {
  display: block;

  margin-bottom: 15px;

  color: var(--bazi-gold-light);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.16em;
}

.bazi-coming-soon p {
  margin-bottom: 0;

  color: rgba(255,255,255,0.55);

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   14. SCHEDULE
   ========================================================= */

.bazi-schedule {
  background: var(--bazi-cream);
}

.bazi-timeline {
  border-top: 1px solid var(--bazi-line);
}

.bazi-timeline__item {
  display: grid;

  grid-template-columns: 190px 1px 1fr;

  gap: 40px;

  min-height: 250px;

  padding: 45px 0;

  border-bottom: 1px solid var(--bazi-line);
}

.bazi-timeline__date {
  color: var(--bazi-muted);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.bazi-timeline__date span {
  display: block;

  margin-bottom: 4px;

  font-family:
    Georgia,
    serif;

  color: var(--bazi-green);

  font-size: 58px;

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.bazi-timeline__line {
  width: 1px;

  background: var(--bazi-gold);
}

.bazi-timeline__time {
  margin-bottom: 13px;

  color: var(--bazi-gold);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.12em;
}

.bazi-timeline__content h3 {
  margin-bottom: 16px;

  font-family:
    Georgia,
    serif;

  font-size: 34px;

  font-weight: 400;
}

.bazi-timeline__content p {
  max-width: 620px;

  margin-bottom: 0;

  color: var(--bazi-muted);

  font-size: 16px;

  line-height: 1.75;
}

.bazi-schedule__bottom {
  padding-top: 55px;

  max-width: 760px;
}

.bazi-schedule__bottom p {
  margin-bottom: 0;

  font-family:
    Georgia,
    serif;

  font-size: 27px;

  line-height: 1.3;

  color: var(--bazi-green);
}


/* =========================================================
   15. PROGRAM
   ========================================================= */

.bazi-program {
  background: var(--bazi-green);

  color: var(--bazi-white);
}

.bazi-program .bazi-title {
  color: var(--bazi-white);
}

.bazi-program__grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid var(--bazi-dark-line);

  border-left: 1px solid var(--bazi-dark-line);
}

.bazi-program-card {
  min-height: 260px;

  padding: 32px;

  border-right: 1px solid var(--bazi-dark-line);

  border-bottom: 1px solid var(--bazi-dark-line);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.bazi-program-card:hover {
  background: rgba(255,255,255,0.035);
}

.bazi-program-card span {
  display: block;

  margin-bottom: 65px;

  color: var(--bazi-gold-light);

  font-size: 10px;

  letter-spacing: 0.15em;
}

.bazi-program-card h3 {
  margin-bottom: 12px;

  font-family:
    Georgia,
    serif;

  font-size: 29px;

  font-weight: 400;
}

.bazi-program-card p {
  max-width: 430px;

  margin-bottom: 0;

  color: rgba(255,255,255,0.55);

  font-size: 14px;

  line-height: 1.6;
}

.bazi-program-card--wide {
  grid-column: span 2;
}


/* =========================================================
   16. CURATOR
   ========================================================= */

.bazi-curator {
  background: var(--bazi-paper);
}

.bazi-curator__grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 100px;

  align-items: center;
}

.bazi-photo-placeholder {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 5;

  display: flex;

  align-items: center;

  justify-content: center;

  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(183,154,99,0.2),
      transparent 30%
    ),
    var(--bazi-green);

  overflow: hidden;
}

.bazi-photo-placeholder::before {
  content: "";

  position: absolute;

  width: 70%;

  aspect-ratio: 1;

  border: 1px solid rgba(183,154,99,0.35);

  border-radius: 50%;
}

.bazi-photo-placeholder::after {
  content: "";

  position: absolute;

  width: 45%;

  aspect-ratio: 1;

  border: 1px solid rgba(183,154,99,0.2);

  border-radius: 50%;
}

.bazi-photo-placeholder > div {
  position: relative;

  z-index: 2;

  text-align: center;

  color: var(--bazi-gold-light);
}

.bazi-photo-placeholder span {
  display: block;

  margin-bottom: 8px;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.2em;
}

.bazi-photo-placeholder small {
  color: rgba(255,255,255,0.5);

  font-size: 11px;
}

.bazi-curator__content {
  max-width: 620px;
}

.bazi-curator__role {
  margin-bottom: 35px;

  color: var(--bazi-gold);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.08em;
}

.bazi-curator__content p {
  max-width: 580px;

  color: var(--bazi-muted);

  font-size: 16px;

  line-height: 1.75;
}


/* =========================================================
   17. BONUS
   ========================================================= */

.bazi-bonus {
  background: var(--bazi-cream);
}

.bazi-bonus__card {
  position: relative;

  display: grid;

  grid-template-columns: 1fr 0.75fr;

  gap: 50px;

  padding: 75px;

  background: var(--bazi-green);

  color: var(--bazi-white);

  overflow: hidden;
}

.bazi-bonus__card::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -200px;
  top: -230px;

  border: 1px solid rgba(183,154,99,0.18);

  border-radius: 50%;
}

.bazi-bonus__content {
  position: relative;

  z-index: 2;
}

.bazi-bonus .bazi-title {
  max-width: 650px;

  color: var(--bazi-white);
}

.bazi-bonus__content h3 {
  max-width: 550px;

  margin-bottom: 20px;

  font-family:
    Georgia,
    serif;

  font-size: 28px;

  font-weight: 400;
}

.bazi-bonus__content p {
  max-width: 540px;

  margin-bottom: 32px;

  color: rgba(255,255,255,0.58);

  line-height: 1.75;
}

.bazi-bonus__visual {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 400px;
}

.bazi-checklist {
  position: relative;

  z-index: 2;

  width: 290px;

  padding: 28px;

  background: var(--bazi-cream);

  color: var(--bazi-green);

  box-shadow:
    20px 25px 70px rgba(0,0,0,0.25);

  transform:
    rotate(4deg);
}

.bazi-checklist__top {
  margin-bottom: 25px;

  font-family:
    Georgia,
    serif;

  font-size: 27px;

  letter-spacing: 0.12em;
}

.bazi-checklist__line {
  width: 100%;
  height: 1px;

  margin-bottom: 10px;

  background: rgba(23,35,30,0.2);
}

.bazi-checklist__line--short {
  width: 60%;

  margin-bottom: 30px;
}

.bazi-checklist__item {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 17px;

  font-size: 12px;
}

.bazi-checklist__item span {
  color: var(--bazi-gold);
}


/* =========================================================
   18. RECORD
   ========================================================= */

.bazi-record {
  background: var(--bazi-paper);
}

.bazi-record__grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 100px;
}

.bazi-record__answer {
  display: inline-block;

  padding: 12px 18px;

  border: 1px solid var(--bazi-gold);

  color: var(--bazi-gold);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.08em;
}

.bazi-record__content {
  max-width: 650px;
}

.bazi-record__content > p {
  margin-bottom: 28px;

  color: var(--bazi-muted);

  font-size: 16px;

  line-height: 1.75;
}

.bazi-record__content h3 {
  margin-bottom: 22px;

  font-family:
    Georgia,
    serif;

  font-size: 26px;

  font-weight: 400;
}

.bazi-prices {
  margin-bottom: 30px;

  border-top: 1px solid var(--bazi-line);

  border-bottom: 1px solid var(--bazi-line);
}

.bazi-price {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 20px 0;

  border-bottom: 1px solid var(--bazi-line);
}

.bazi-price:last-child {
  border-bottom: 0;
}

.bazi-price span {
  color: var(--bazi-muted);

  font-size: 13px;
}

.bazi-price strong {
  color: var(--bazi-green);

  font-family:
    Georgia,
    serif;

  font-size: 28px;

  font-weight: 400;
}


/* =========================================================
   19. AUTHOR
   ========================================================= */

.bazi-author {
  background: var(--bazi-green);

  color: var(--bazi-white);
}

.bazi-author__grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 100px;

  align-items: center;
}

.bazi-author .bazi-title {
  color: var(--bazi-white);
}

.bazi-author__facts {
  max-width: 600px;
}

.bazi-author__facts > div {
  padding: 20px 0;

  border-top: 1px solid var(--bazi-dark-line);

  color: rgba(255,255,255,0.65);

  font-size: 15px;

  line-height: 1.7;
}

.bazi-author__facts > div:last-child {
  border-bottom: 1px solid var(--bazi-dark-line);
}

.bazi-author__facts strong {
  color: var(--bazi-gold-light);

  font-weight: 500;
}


/* =========================================================
   20. REVIEWS
   ========================================================= */

.bazi-reviews {
  background: var(--bazi-cream);
}

.bazi-reviews__placeholder {
  display: grid;

  place-items: center;

  min-height: 330px;

  padding: 50px;

  border: 1px dashed rgba(183,154,99,0.55);

  text-align: center;
}

.bazi-reviews__placeholder span {
  display: block;

  margin-bottom: 15px;

  color: var(--bazi-gold);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.16em;
}

.bazi-reviews__placeholder p {
  max-width: 450px;

  margin-bottom: 0;

  color: var(--bazi-muted);

  font-size: 14px;

  line-height: 1.7;
}


/* =========================================================
   21. FAQ
   ========================================================= */

.bazi-faq {
  background: var(--bazi-paper);
}

.bazi-faq > .bazi-container > .bazi-title {
  max-width: 760px;

  margin-bottom: 65px;
}

.bazi-faq__list {
  border-top: 1px solid var(--bazi-line);
}

.bazi-faq__item {
  border-bottom: 1px solid var(--bazi-line);
}

.bazi-faq__question {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 30px 0;

  border: 0;

  background: transparent;

  color: var(--bazi-green);

  text-align: left;
}

.bazi-faq__question > span:first-child {
  max-width: 850px;

  font-family:
    Georgia,
    serif;

  font-size: clamp(21px, 2vw, 28px);

  font-weight: 400;

  line-height: 1.2;
}

.bazi-faq__icon {
  flex: 0 0 auto;

  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid var(--bazi-line);

  border-radius: 50%;

  color: var(--bazi-gold);

  font-size: 22px;

  font-weight: 300;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.bazi-faq__item.is-open .bazi-faq__icon {
  transform: rotate(45deg);

  background: var(--bazi-green);

  color: var(--bazi-white);
}

.bazi-faq__answer {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.45s ease;
}

.bazi-faq__answer p {
  max-width: 750px;

  margin: 0 0 30px;

  color: var(--bazi-muted);

  font-size: 16px;

  line-height: 1.75;
}


/* =========================================================
   22. FINAL CTA
   ========================================================= */

.bazi-final {
  position: relative;

  min-height: 650px;

  display: flex;

  align-items: center;

  background: var(--bazi-green);

  color: var(--bazi-white);

  overflow: hidden;
}

.bazi-final::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 700px;
  height: 700px;

  border: 1px solid rgba(183,154,99,0.15);

  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.bazi-final::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 430px;
  height: 430px;

  border: 1px solid rgba(183,154,99,0.12);

  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.bazi-final__content {
  position: relative;

  z-index: 3;

  max-width: 900px;

  margin: 0 auto;

  text-align: center;
}

.bazi-final .bazi-section__label {
  color: var(--bazi-gold-light);
}

.bazi-final .bazi-title {
  color: var(--bazi-white);

  font-size: clamp(55px, 8vw, 105px);
}

.bazi-final__content p {
  max-width: 520px;

  margin: 0 auto 25px;

  color: rgba(255,255,255,0.65);

  font-size: 16px;

  line-height: 1.7;
}

.bazi-final__name {
  margin-bottom: 30px;

  color: var(--bazi-gold-light);

  font-family:
    Georgia,
    serif;

  font-size: 20px;
}


/* =========================================================
   23. FOOTER
   ========================================================= */

.bazi-footer {
  background: #101914;

  color: rgba(255,255,255,0.55);

  font-size: 12px;
}

.bazi-footer__inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  min-height: 100px;
}

.bazi-footer .bazi-logo {
  color: var(--bazi-white);
}


/* =========================================================
   24. MODAL
   ========================================================= */

.bazi-modal {
  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 25px;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.bazi-modal.is-open {
  opacity: 1;

  visibility: visible;
}

.bazi-modal__overlay {
  position: absolute;

  inset: 0;

  background: rgba(10,16,13,0.78);

  backdrop-filter: blur(8px);
}

.bazi-modal__window {
  position: relative;

  z-index: 2;

  width: min(100%, 520px);

  max-height: calc(100vh - 50px);

  overflow-y: auto;

  padding: 55px;

  background: var(--bazi-cream);

  color: var(--bazi-green);

  box-shadow:
    0 30px 100px rgba(0,0,0,0.3);

  transform: translateY(20px);

  transition:
    transform 0.35s ease;
}

.bazi-modal.is-open .bazi-modal__window {
  transform: translateY(0);
}

.bazi-modal__close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 40px;
  height: 40px;

  border: 1px solid var(--bazi-line);

  border-radius: 50%;

  background: transparent;

  color: var(--bazi-green);

  font-size: 25px;

  line-height: 1;

  transition:
    background 0.25s ease;
}

.bazi-modal__close:hover {
  background: var(--bazi-paper);
}

.bazi-modal__content h2 {
  margin-bottom: 15px;

  font-family:
    Georgia,
    serif;

  font-size: 48px;

  font-weight: 400;

  line-height: 1;
}

.bazi-modal__content > p {
  margin-bottom: 30px;

  color: var(--bazi-muted);

  font-size: 14px;

  line-height: 1.7;
}

.bazi-form label {
  display: block;

  margin-bottom: 20px;
}

.bazi-form label > span {
  display: block;

  margin-bottom: 8px;

  color: var(--bazi-green);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.bazi-form label em {
  color: var(--bazi-muted);

  font-style: normal;

  font-weight: 400;

  text-transform: none;
}

.bazi-form input {
  width: 100%;

  height: 55px;

  padding: 0 16px;

  border: 1px solid rgba(37,42,38,0.2);

  outline: none;

  background: rgba(255,255,255,0.35);

  color: var(--bazi-green);

  font-size: 14px;

  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.bazi-form input:focus {
  border-color: var(--bazi-gold);

  background: var(--bazi-white);
}

.bazi-form .bazi-button {
  width: 100%;

  margin-top: 8px;
}

.bazi-form__note {
  display: block;

  margin-top: 18px;

  color: var(--bazi-muted);

  font-size: 11px;

  line-height: 1.6;
}

.bazi-form-success {
  padding: 20px 0;
}

.bazi-form-success__icon {
  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 50%;

  background: var(--bazi-green);

  color: var(--bazi-gold-light);

  font-size: 25px;
}

.bazi-form-success h3 {
  margin-bottom: 10px;

  font-family:
    Georgia,
    serif;

  font-size: 32px;

  font-weight: 400;
}

.bazi-form-success p {
  color: var(--bazi-muted);
}


/* =========================================================
   25. SCROLL REVEAL
   ========================================================= */

.bazi-page .bazi-element,
.bazi-page .bazi-audience-card,
.bazi-page .bazi-program-card,
.bazi-page .bazi-timeline__item {
  opacity: 0;

  transform: translateY(22px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.bazi-page .bazi-element.is-visible,
.bazi-page .bazi-audience-card.is-visible,
.bazi-page .bazi-program-card.is-visible,
.bazi-page .bazi-timeline__item.is-visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   26. MOBILE MENU
   ========================================================= */

@media (max-width: 960px) {

  .bazi-header__inner {
    width: calc(100% - 40px);

    min-height: 75px;
  }

  .bazi-nav {
    display: none;
  }

  .bazi-header__button {
    display: none;
  }

  .bazi-menu-button {
    display: block;
  }

  .bazi-header.nav-open .bazi-nav {
    position: absolute;

    top: 75px;
    left: 20px;
    right: 20px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;

    margin: 0;

    padding: 25px;

    border: 1px solid var(--bazi-dark-line);

    background: rgba(23,35,30,0.97);

    backdrop-filter: blur(15px);
  }

  .bazi-header.nav-open .bazi-menu-button span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .bazi-header.nav-open .bazi-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .bazi-header.nav-open .bazi-menu-button span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .bazi-container {
    width: calc(100% - 50px);
  }

  .bazi-hero {
    min-height: 900px;
  }

  .bazi-hero__inner {
    grid-template-columns: 1fr;

    padding-top: 130px;
  }

  .bazi-hero__visual {
    min-height: 350px;
  }

  .bazi-map {
    width: min(70vw, 450px);
  }

  .bazi-about__grid,
  .bazi-record__grid,
  .bazi-author__grid,
  .bazi-curator__grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .bazi-section__heading,
  .bazi-questions__heading {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .bazi-elements {
    grid-template-columns: repeat(3, 1fr);
  }

  .bazi-element:nth-child(3) {
    border-right: 0;
  }

  .bazi-element:nth-child(4),
  .bazi-element:nth-child(5) {
    border-top: 1px solid var(--bazi-line);
  }

  .bazi-element:nth-child(4) {
    border-right: 1px solid var(--bazi-line);
  }

  .bazi-program__grid {
    grid-template-columns: 1fr;
  }

  .bazi-program-card--wide {
    grid-column: span 1;
  }

  .bazi-bonus__card {
    grid-template-columns: 1fr;

    padding: 55px;
  }

  .bazi-bonus__visual {
    min-height: 350px;
  }
}


/* =========================================================
   27. TABLET
   ========================================================= */

@media (max-width: 700px) {

  .bazi-container {
    width: calc(100% - 36px);
  }

  .bazi-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .bazi-title {
    font-size: 48px;
  }

  .bazi-title--hero {
    font-size: clamp(42px, 12vw, 66px);
  }

  .bazi-hero {
    min-height: 820px;
  }

  .bazi-hero__text {
    font-size: 15px;
  }

  .bazi-elements {
    grid-template-columns: repeat(2, 1fr);
  }

  .bazi-element {
    min-height: 210px;
  }

  .bazi-element:nth-child(2) {
    border-right: 0;
  }

  .bazi-element:nth-child(3) {
    border-top: 1px solid var(--bazi-line);
    border-right: 1px solid var(--bazi-line);
  }

  .bazi-element:nth-child(4) {
    border-right: 0;
  }

  .bazi-element:nth-child(5) {
    grid-column: span 2;

    border-top: 1px solid var(--bazi-line);
  }

  .bazi-audience__grid {
    grid-template-columns: 1fr;
  }

  .bazi-audience-card:nth-child(odd) {
    border-right: 0;
  }

  .bazi-audience-card:last-child {
    grid-column: span 1;
  }

  .bazi-audience-card {
    min-height: 220px;

    padding: 28px;
  }

  .bazi-timeline__item {
    grid-template-columns: 100px 1px 1fr;

    gap: 22px;

    min-height: 230px;
  }

  .bazi-timeline__date span {
    font-size: 45px;
  }

  .bazi-timeline__content h3 {
    font-size: 27px;
  }

  .bazi-program-card {
    min-height: 220px;
  }

  .bazi-bonus__card {
    padding: 40px 25px;
  }

  .bazi-modal__window {
    padding: 45px 25px 30px;
  }
}


/* =========================================================
   28. MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .bazi-container {
    width: calc(100% - 30px);
  }

  .bazi-header__inner {
    width: calc(100% - 30px);
  }

  .bazi-hero {
    min-height: 850px;
  }

  .bazi-hero__inner {
    padding-top: 115px;
  }

  .bazi-eyebrow {
    margin-bottom: 22px;

    font-size: 9px;
  }

  .bazi-title--hero {
    margin-bottom: 25px;

    font-size: 43px;

    line-height: 0.96;
  }

  .bazi-hero__date {
    font-size: 11px;
  }

  .bazi-hero__text {
    font-size: 14px;

    line-height: 1.65;
  }

  .bazi-button {
    width: 100%;

    min-height: 58px;
  }

  .bazi-hero__visual {
    min-height: 290px;
  }

  .bazi-map {
    width: 285px;
  }

  .bazi-map__center {
    width: 100px;
    height: 100px;
  }

  .bazi-map__center span {
    font-size: 16px;
  }

  .bazi-map__center small {
    font-size: 17px;
  }

  .bazi-map__symbol {
    width: 38px;
    height: 38px;

    font-size: 15px;
  }

  .bazi-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .bazi-title {
    font-size: 42px;
  }

  .bazi-lead {
    font-size: 25px;
  }

  .bazi-elements {
    grid-template-columns: 1fr 1fr;
  }

  .bazi-element {
    min-height: 175px;

    padding: 22px 18px;
  }

  .bazi-element__symbol {
    margin-top: 30px;
    margin-bottom: 20px;

    font-size: 37px;
  }

  .bazi-element h3 {
    font-size: 20px;
  }

  .bazi-element:nth-child(5) {
    grid-column: span 2;
  }

  .bazi-audience-card {
    min-height: 200px;

    padding: 24px 20px;
  }

  .bazi-audience-card span {
    margin-bottom: 35px;
  }

  .bazi-audience-card h3 {
    font-size: 22px;
  }

  .bazi-timeline__item {
    grid-template-columns: 75px 1px 1fr;

    gap: 15px;

    padding: 30px 0;
  }

  .bazi-timeline__date span {
    font-size: 38px;
  }

  .bazi-timeline__date {
    font-size: 8px;
  }

  .bazi-timeline__content h3 {
    font-size: 23px;
  }

  .bazi-timeline__content p {
    font-size: 14px;
  }

  .bazi-schedule__bottom p {
    font-size: 22px;
  }

  .bazi-program-card {
    min-height: 200px;

    padding: 25px 20px;
  }

  .bazi-program-card span {
    margin-bottom: 45px;
  }

  .bazi-program-card h3 {
    font-size: 25px;
  }

  .bazi-curator__grid,
  .bazi-author__grid {
    gap: 40px;
  }

  .bazi-photo-placeholder {
    max-width: 100%;
  }

  .bazi-bonus__visual {
    min-height: 300px;
  }

  .bazi-checklist {
    width: 240px;
  }

  .bazi-price {
    align-items: flex-start;

    flex-direction: column;

    gap: 8px;
  }

  .bazi-price strong {
    font-size: 25px;
  }

  .bazi-final {
    min-height: 600px;
  }

  .bazi-final .bazi-title {
    font-size: 55px;
  }

  .bazi-footer__inner {
    flex-direction: column;

    justify-content: center;

    gap: 15px;

    padding: 25px 0;

    text-align: center;
  }

  .bazi-modal {
    padding: 12px;
  }

  .bazi-modal__window {
    max-height: calc(100vh - 24px);
  }

  .bazi-modal__content h2 {
    font-size: 40px;
  }
}


/* =========================================================
   29. VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

  .bazi-title--hero {
    font-size: 38px;
  }

  .bazi-title {
    font-size: 37px;
  }

  .bazi-map {
    width: 250px;
  }

  .bazi-timeline__item {
    grid-template-columns: 62px 1px 1fr;

    gap: 12px;
  }

  .bazi-timeline__date span {
    font-size: 32px;
  }

  .bazi-timeline__content h3 {
    font-size: 21px;
  }
}


/* =========================================================
   30. ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .bazi-page *,
  .bazi-page *::before,
  .bazi-page *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
  }

}


/* =========================================================
   31. TILDA OVERRIDE
   ========================================================= */

/*
   Убираем потенциальные ограничения HTML-элемента Tilda.
*/

.bazi-page {
  min-width: 0 !important;
}

.bazi-page img {
  max-width: 100%;
}

.bazi-page table {
  border-collapse: collapse;
}


/* =========================================================
   32. ANCHOR SCROLL
   ========================================================= */

html {
  scroll-behavior: smooth;
}

#about,
#audience,
#schedule,
#program,
#author,
#faq {
  scroll-margin-top: 90px;
}