:root {
  --bg-deep: #0a1610;
  --bg: #0f2419;
  --surface: #152e22;
  --surface-2: #1a3d2e;
  --border: rgba(201, 162, 39, 0.22);
  --gold: #e8c547;
  --gold-dim: #c9a227;
  --gold-muted: #8a7028;
  --cream: #f4ead8;
  --text: #e8efe9;
  --text-muted: rgba(232, 239, 233, 0.72);
  --terracotta: #c45c3e;
  --red-pattern: #8b2e2e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(26, 61, 46, 0.55), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 35%, #0c1812 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  font-size: 0.85em;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.15em 0.45em;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(10, 22, 16, 0.96), rgba(10, 22, 16, 0.88));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* Не inherit: иначе a:hover даёт underline цветом --text (светлая линия под золотым текстом) */
  color: var(--gold);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

/* Круглый значок: IMG_6346 / logo.png (квадрат) обрезается по кругу */
.brand-mark {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #142a1f;
  border: 2px solid rgba(201, 162, 39, 0.55);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.brand-mark-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin-inline: auto;
  background: var(--gold);
  border-radius: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav .nav-cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dim), #a68520);
  color: #0f1a12 !important;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
}

.site-nav .nav-cta:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(10, 22, 16, 0.98);
    border-bottom: 1px solid var(--border);
    gap: 0;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* Hero: фото на весь блок, слоганы и кнопки поверх (как в первой версии) */
.hero {
  --hero-vh: 76vh;
  --hero-max-px: 720px;
  --hero-img-x: 50%;
  --hero-img-y: 32%;
  --hero-img-scale: 1;

  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(var(--hero-vh), var(--hero-max-px));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}

.hero-bg img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-img-x) var(--hero-img-y);
  transform: scale(var(--hero-img-scale));
  transform-origin: var(--hero-img-x) var(--hero-img-y);
}

/* Вуаль: без тяжёлого левого градиента — люди по кадру светлее; снизу чуть темнее под кнопки */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 22, 16, 0.14) 0%, transparent 45%),
    linear-gradient(0deg, rgba(10, 22, 16, 0.72) 0%, rgba(10, 22, 16, 0.28) 28%, transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  padding: 3rem 0 3.25rem;
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  color: var(--cream);
  margin: 0 0 0.35rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero-kicker--sm {
  font-size: clamp(0.98rem, 2vw, 1.2rem);
  opacity: 0.95;
  margin-bottom: 0.7rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  color: var(--gold);
  text-shadow: 0 4px 36px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  margin: 0.15rem 0 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-muted);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero-content .hero-ornament {
  width: 100px;
  margin: 0.7rem 0 1.05rem;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.95;
}

.hero-lead {
  max-width: 36ch;
  color: rgba(232, 239, 233, 0.9);
  font-size: 1.05rem;
  margin: 0 0 1.65rem;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

@media (max-width: 520px) {
  .hero {
    min-height: min(62vh, 520px);
  }

  .hero-title {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .hero-content {
    padding: 2rem 0 2.5rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Вторая кнопка в паре с WhatsApp — в тон золоту/тёмному стеклу */
.hero-content .btn-ghost {
  background: rgba(8, 18, 12, 0.42);
  border: 1px solid rgba(232, 197, 71, 0.4);
  color: var(--cream);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-content .btn-ghost:hover {
  background: rgba(15, 36, 25, 0.55);
  border-color: rgba(232, 197, 71, 0.55);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.2);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--gold-dim), #9a7a1f);
  color: #0f1a12;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border: 1px solid var(--border);
}

.btn-block {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section.about {
  padding-top: 5.25rem;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
  font-weight: 600;
}

.team-back-wrap {
  margin-top: 2.5rem;
  text-align: center;
}

.section.team-page {
  padding-top: 4rem;
  padding-bottom: 3.25rem;
}

.section.team-page .section-head {
  margin-bottom: 1.35rem;
}

.section.team-page .section-head h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
}

.section.team-page .section-lead {
  font-size: 0.9rem;
  max-width: 56ch;
}

.section.team-page .ornament {
  margin-top: 0.85rem;
}

.section.team-page .team-leader.team-profile-card {
  padding: 1.2rem 1.2rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section.team-page .team-leader {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem 1.65rem;
  max-width: 920px;
  align-items: center;
}

.section.team-page .team-leader-copy .team-tagline {
  display: inline;
  font-size: 0.9rem;
  margin: 0;
}

.section.team-page .team-leader-copy .team-tagline + .team-tagline::before {
  content: " · ";
  color: rgba(201, 162, 39, 0.45);
  font-weight: 400;
}

.section.team-page .team-leader-copy > .team-leader-p:first-of-type {
  margin-top: 0.35rem;
}

.section.team-page .team-leader-media {
  justify-self: center;
  width: 100%;
  max-width: 232px;
}

.section.team-page .team-leader-media video {
  width: 100%;
  max-height: min(36vh, 300px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

.section.team-page .team-member-card--rich .team-member-media video {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

.section.team-page .team-video-caption {
  margin-top: 0.4rem;
  font-size: 0.8rem;
}

.section.team-page .team-leader-headline {
  font-size: clamp(0.95rem, 1.9vw, 1.2rem);
  margin: 0 0 0.45rem;
}

.section.team-page .team-leader-p {
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}

.section.team-page .team-leader-bullets {
  font-size: 0.82rem;
  line-height: 1.38;
  margin: 0 0 0.55rem 0.95rem;
}

.section.team-page .team-leader-bullets li {
  margin-bottom: 0.25rem;
}

.team-leader-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 0.65rem;
}

.section.team-page .team-leader-phone {
  margin: 0;
}

.team-leader-wa-btn {
  font-size: 0.88rem;
  padding: 0.45rem 1rem;
}

.team-member-cta {
  margin-top: 0.75rem;
}

.team-cta-wa {
  font-size: 0.86rem;
  padding: 0.42rem 0.95rem;
}

.section.team-page .team-member-copy .team-member-tagline {
  display: inline;
  margin: 0;
}

.section.team-page .team-member-copy .team-member-tagline + .team-member-tagline::before {
  content: " · ";
  color: rgba(201, 162, 39, 0.45);
  font-weight: 400;
}

.section.team-page .team-member-copy > .team-member-p:first-of-type {
  margin-top: 0.35rem;
}

.section.team-page .team-members-wrap {
  margin-top: 1.35rem;
  padding-top: 1rem;
}

.section.team-page .team-members-placeholder {
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.section.team-page .team-back-wrap {
  margin-top: 1.35rem;
}

@media (max-width: 820px) {
  .section.team-page .team-leader-media {
    max-width: 200px;
  }

  .section.team-page .team-leader-media video {
    max-height: min(42vh, 280px);
  }
}

.section.team,
.section.gallery,
.section.videos,
.section.prices {
  background: rgba(0, 0, 0, 0.08);
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.section-lead {
  max-width: 52ch;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.ornament {
  width: 120px;
  height: 3px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  border-radius: 2px;
}

/* About */
.about {
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 2.5rem;
  align-items: start;
}

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

.prose p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  white-space: pre-line;
}

.about-text.prose > p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.about-text.prose > p:nth-of-type(2) {
  color: var(--cream);
  font-weight: 500;
}

.prose p:last-child {
  margin-bottom: 0;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aside-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.aside-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.aside-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.aside-card--accent {
  border-color: rgba(201, 162, 39, 0.45);
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

/* Team / leader */
.team {
  border-top: 1px solid var(--border);
}

.team-leader {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.team-leader-media video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #000;
  box-shadow: var(--shadow);
}

.team-video-caption {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.team-leader-headline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.25;
  margin: 0 0 1rem;
}

.team-tagline {
  font-size: 1.08rem;
  color: var(--cream);
  margin: 0 0 0.35rem;
  font-weight: 500;
}

.team-leader-p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.team-leader-bullets {
  margin: 0 0 1.25rem 1.1rem;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.team-leader-bullets li {
  margin-bottom: 0.45rem;
}

.team-leader-closing {
  font-style: italic;
  color: var(--cream);
}

.team-leader-phone {
  margin: 1.25rem 0 0;
}

.team-phone-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.team-phone-link:hover {
  text-decoration: underline;
}

.team-members-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.team-members-title {
  font-family: var(--font-display);
  color: var(--gold);
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 1.35rem;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.team-member-card video {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #000;
}

.team-member-meta h5 {
  margin: 0.75rem 0 0.35rem;
  color: var(--cream);
  font-size: 1.05rem;
}

.team-member-meta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.team-member-card--rich {
  grid-column: 1 / -1;
}

.team-member-rich {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem 1.5rem;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.team-member-card--rich .team-member-media {
  justify-self: center;
  width: 100%;
  max-width: 232px;
}

.team-member-card--rich .team-member-media video {
  width: 100%;
  max-height: min(36vh, 300px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}

.team-member-video-cap {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.team-member-headline {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.85vw, 1.15rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.25;
  margin: 0 0 0.45rem;
}

.team-member-tagline {
  font-size: 0.88rem;
  color: var(--cream);
  margin: 0 0 0.1rem;
  font-weight: 500;
}

.team-member-p {
  margin: 0 0 0.45rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

.team-member-bullets {
  margin: 0 0 0.5rem 0.95rem;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.38;
}

.team-member-bullets li {
  margin-bottom: 0.22rem;
}

.team-member-bullets--booking {
  margin-top: 0.15rem;
  margin-bottom: 0.55rem;
}

.team-member-closing {
  font-style: italic;
  color: var(--cream);
}

.team-member-booking-lead {
  margin-top: 0.35rem;
  font-weight: 500;
  color: var(--cream);
}

.team-member-footer {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--gold);
}

.team-members-placeholder {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 52ch;
  margin: 0 auto 0.75rem;
}

.team-members-placeholder--hint {
  margin-bottom: 0;
  font-size: 0.88rem;
  opacity: 0.9;
}

@media (max-width: 820px) {
  .team-leader {
    grid-template-columns: 1fr;
  }

  .team-member-rich {
    grid-template-columns: 1fr;
  }

  .team-member-card--rich .team-member-media {
    max-width: 200px;
  }

  .team-member-card--rich .team-member-media video {
    max-height: min(42vh, 280px);
  }
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.video-card .embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

/* Тік (телефон) бейнелер — JSON-да portrait: true немесе aspectRatio: "9/16" */
.video-card--portrait {
  max-width: min(100%, 420px);
  width: 100%;
  justify-self: center;
}

.video-card--portrait .embed {
  aspect-ratio: 9 / 16;
}

.video-card iframe,
.video-card .embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.video-card .meta {
  padding: 1.1rem 1.25rem 1.35rem;
}

.video-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
  color: var(--cream);
}

.video-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.video-empty {
  text-align: center;
  color: var(--text-muted);
}

/* Prices */
.prices-intro:empty {
  display: none;
}

.prices-intro {
  text-align: center;
  max-width: 58ch;
  margin: -0.25rem auto 1.75rem;
}

.prices-intro p {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  color: var(--cream);
  line-height: 1.45;
}

.prices-intro p:last-child {
  margin-bottom: 0;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.price-cards.price-cards--single {
  grid-template-columns: minmax(260px, min(100%, 540px));
  justify-content: center;
}

.price-amount-eyebrow {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-muted);
}

.price-caption {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-card {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.price-card.is-featured {
  border-color: rgba(232, 197, 71, 0.55);
  background: linear-gradient(160deg, rgba(26, 61, 46, 0.9), var(--surface));
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0;
  color: var(--gold);
}

.price-duration {
  font-size: 0.88rem;
  color: var(--gold-muted);
  margin: 0;
}

.price-amount {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0;
}

.price-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.price-card li {
  margin-bottom: 0.35rem;
}

.price-extras {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.price-extra {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.price-extra h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--gold-dim);
}

.price-extra p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.prices-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 65ch;
  margin-inline: auto;
  white-space: pre-line;
}

/* Contact */
.contact {
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

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

.contact-block h3,
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-list li {
  margin-bottom: 1rem;
}

.contact-list .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-muted);
  margin-bottom: 0.2rem;
}

.contact-form {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.form-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label span {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold-muted);
  outline-offset: 2px;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.5em;
}

.form-status.ok {
  color: #6dffc4;
}

.form-status.err {
  color: #ff8a7a;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.footer-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--gold);
}

.footer-copy {
  width: 100%;
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .footer-copy {
    width: auto;
    margin: 0;
  }
}

/* Anchor offset under sticky header */
#about,
#team,
#gallery,
#videos,
#prices,
#contact,
#main {
  scroll-margin-top: 5.5rem;
}

/* Skip link: полностью скрыт, без полоски; появляется только при Tab (доступность) */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  z-index: 100;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  overflow: visible;
  clip-path: none;
  background: var(--gold);
  color: #0f1a12;
  font-weight: 600;
  border-radius: 8px;
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

/* Focus visibility */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--gold-dim);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline-color: var(--cream);
}

/* Loading skeleton for empty grids */
.is-loading-skeleton #priceCards:empty,
.is-loading-skeleton #videoGrid:empty,
.is-loading-skeleton #galleryGrid:empty {
  min-height: 140px;
  border-radius: var(--radius);
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.09) 45%,
    rgba(255, 255, 255, 0.04) 90%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s ease-in-out infinite;
  border: 1px solid var(--border);
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .is-loading-skeleton #priceCards:empty,
  .is-loading-skeleton #videoGrid:empty,
  .is-loading-skeleton #galleryGrid:empty {
    animation: none;
    background: rgba(255, 255, 255, 0.06);
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item .gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.65rem;
  font-size: 0.8rem;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  text-align: left;
}

.gallery-empty {
  text-align: center;
  color: var(--text-muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 12, 8, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 1.5rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--gold);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-caption {
  margin: 1rem 0 0;
  max-width: 50ch;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Фондық әуен (тек басты бет) */
.bg-music-fab {
  position: fixed;
  z-index: 46;
  right: 0.75rem;
  bottom: max(5.25rem, calc(env(safe-area-inset-bottom) + 4.75rem));
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  border: 1px solid rgba(232, 197, 71, 0.45);
  background: rgba(26, 61, 46, 0.92);
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.bg-music-fab:hover {
  background: rgba(232, 197, 71, 0.15);
  transform: scale(1.05);
}

.bg-music-fab.is-playing {
  background: rgba(232, 197, 71, 0.22);
  color: var(--cream);
}

/* Үнсіз автоплей күйі: transform болмайды (hover scale-мен қақтығыспау үшін) */
.bg-music-fab.is-playing.is-muted {
  box-shadow: 0 0 0 1px rgba(232, 197, 71, 0.35);
  animation: bg-music-pulse-op 2.2s ease-in-out infinite;
}

@keyframes bg-music-pulse-op {
  0%,
  100% {
    opacity: 0.88;
  }
  50% {
    opacity: 1;
  }
}

@media (min-width: 861px) {
  .bg-music-fab {
    bottom: 1.35rem;
    right: 1rem;
  }
}

/* Mobile sticky CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0.5rem 0.75rem;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(10, 22, 16, 0.97));
  border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
  .mobile-cta {
    display: grid;
  }

  body {
    padding-bottom: 4.25rem;
  }
}

.mobile-cta a {
  text-align: center;
  padding: 0.65rem 0.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: 10px;
  margin: 0 0.2rem;
}

.mobile-cta-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
}

.mobile-cta-ig {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream) !important;
  border: 1px solid var(--border);
}
