/* ===== AnimatorParty WOW — стилове (v3: комерсиален/модерен, Happy-style) ===== */

@font-face {
  font-family: 'Adys';
  src: url('../fonts/ADYSV6-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Adys';
  src: url('../fonts/ADYSV6-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #F5124A;      /* доминиращ брандов червено-розов акцент */
  --color-primary-dark: #C90D3B;
  --color-secondary: #FFC700;    /* жълто — само за дребни акценти/бадж */
  --color-accent: #00B8AE;       /* тюркоазено — само за дребни акценти */
  --color-accent-2: #7B2FF7;     /* лилаво — само за дребни акценти */
  --color-orange: #FF7A1A;
  --color-green: #1FAE58;
  --color-ink: #1A1730;
  --color-ink-soft: #6b6580;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FAF7F9;
  --color-card: #ffffff;
  --color-border: #EFEAF0;
  --shadow-soft: 0 10px 28px rgba(26, 23, 48, 0.09);
  --shadow-hover: 0 18px 40px rgba(26, 23, 48, 0.15);
  --shadow-card: 0 6px 18px rgba(26, 23, 48, 0.07);
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-display: 'Adys', 'Roboto Condensed', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Adys', 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 .5em;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 15px 26px 15px 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: var(--shadow-card);
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary::after {
  content: '→';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  font-size: .85rem;
  line-height: 1;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); background: var(--color-primary-dark); }
.btn-secondary {
  background: #fff;
  color: var(--color-ink);
  border: 2px solid var(--color-border);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: var(--color-primary); color: var(--color-primary); }
.btn-block { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--color-primary);
  background: #FFE3EB;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

/* Прозрачен хедър над hero видеото на началната страница — побелява при скрол */
.site-header--transparent:not(.is-scrolled) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header--transparent:not(.is-scrolled) .main-nav a { color: #fff; }
.site-header--transparent.nav-open:not(.is-scrolled) .main-nav a { color: var(--color-ink); }
.site-header--transparent:not(.is-scrolled) .main-nav a:hover,
.site-header--transparent:not(.is-scrolled) .main-nav a.active { background: rgba(255,255,255,.18); color: #fff; }
.site-header--transparent:not(.is-scrolled) .logo-prefix { color: #fff; }
.site-header--transparent:not(.is-scrolled) .header-phone { background: rgba(255,255,255,.2); }
.site-header--transparent:not(.is-scrolled) .nav-toggle { border-color: rgba(255,255,255,.6); }
.site-header--transparent:not(.is-scrolled) .nav-toggle span,
.site-header--transparent:not(.is-scrolled) .nav-toggle span::before,
.site-header--transparent:not(.is-scrolled) .nav-toggle span::after { background: #fff; }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--color-ink);
  white-space: nowrap;
}
.logo .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-card);
}
.logo .logo-text strong { color: var(--color-primary); }

.logo-img { height: 28px; width: auto; display: block; }
.logo-prefix {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-ink);
  white-space: nowrap;
}
.footer-logo .logo-prefix { color: #fff; }
.footer-logo .logo-img { height: 24px; }
.hero-logo .logo-img { height: 46px; }
.admin-header .logo-img { height: 24px; }
.admin-header .logo-prefix { color: #fff; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  text-decoration: none;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: .96rem;
  color: var(--color-ink);
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: #FFE3EB;
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background: var(--color-primary);
  padding: 9px 18px 9px 9px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}
.header-phone .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  position: relative;
  transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* ===== Hero split (снимка като фон на цялата секция) ===== */
.hero {
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,23,48,.6) 0%, rgba(26,23,48,.42) 38%, rgba(26,23,48,.18) 65%, rgba(26,23,48,.04) 100%);
}
.hero .container { z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 10px;
  min-width: 0;
}
.hero-intro .hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-intro h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.hero-title-logo {
  height: 1.15em;
  width: auto;
  display: inline-block;
}
.hero-intro p {
  color: #fff;
  font-size: 1.1rem;
  max-width: 52ch;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}
.hero-badges span {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: .86rem;
  color: #fff;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.hero .btn-secondary:hover { background: #fff; color: var(--color-ink); border-color: #fff; }

.hero-book {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.hero-book h2 { font-size: 1.55rem; color: var(--color-ink); }
.hero-book-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-primary);
  text-decoration: none;
  margin: 6px 0 14px;
}
.hero-book-phone:hover { color: var(--color-primary-dark); }
.hero-book p { color: var(--color-ink-soft); margin-bottom: 18px; font-weight: 400; }

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 6px;
  font-size: .92rem;
  color: var(--color-ink);
}
.form-field .req { color: var(--color-primary); }
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  background: #fff;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245,18,74,.15);
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-note { font-size: .82rem; color: #cfc9e0; margin-top: 10px; font-weight: 600; }
.hero-book .form-note { color: var(--color-ink-soft); }
.contact-form-card .form-note { color: var(--color-ink-soft); }
.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: .92rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: #E4F7EA; color: #1B8A44; display: block; }
.form-status.error { background: #FDE3EA; color: var(--color-primary-dark); display: block; }

/* ===== Section shells ===== */
.section { padding: 76px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}
.section-header h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 800; }
.section-header p { color: var(--color-ink-soft); font-weight: 600; }

/* ===== Promo duo (1 / 2 аниматора) ===== */
.promo-duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
}
.promo-pkg {
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-direction: column;
}
.promo-pkg-photo {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  background-size: cover;
  background-position: center;
  border: 2px dashed var(--color-border);
  border-bottom: none;
}
.promo-pkg-photo.is-filled { border: none; }
.promo-pkg-body {
  position: relative;
  padding: 40px;
  color: #fff;
  flex: 1;
  background:
    #362E63
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23FFC700' fill-opacity='0.16'%3E%3Ccircle cx='14' cy='16' r='3'/%3E%3Ccircle cx='60' cy='8' r='2'/%3E%3Ccircle cx='100' cy='30' r='3.5'/%3E%3Ccircle cx='34' cy='54' r='2'/%3E%3Ccircle cx='84' cy='66' r='2.5'/%3E%3Ccircle cx='8' cy='92' r='2.5'/%3E%3Ccircle cx='50' cy='100' r='3'/%3E%3Ccircle cx='108' cy='104' r='2'/%3E%3Cpath d='M22 30l2.2 4.6 5 .7-3.6 3.5.9 5-4.5-2.4-4.5 2.4.9-5-3.6-3.5 5-.7z'/%3E%3Cpath d='M92 88l2.2 4.6 5 .7-3.6 3.5.9 5-4.5-2.4-4.5 2.4.9-5-3.6-3.5 5-.7z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 220px 220px;
}
.promo-pkg-body > * { position: relative; z-index: 1; }
.promo-pkg-body .eyebrow { background: rgba(255,255,255,.15); color: var(--color-secondary); }
.promo-pkg-prices { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 20px; }

/* ===== Promo package (legacy single-panel styles, still used by shared classes) ===== */
.promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  background: var(--color-ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.promo-info {
  padding: 48px;
  color: #fff;
  background:
    #362E63
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23FFC700' fill-opacity='0.16'%3E%3Ccircle cx='14' cy='16' r='3'/%3E%3Ccircle cx='60' cy='8' r='2'/%3E%3Ccircle cx='100' cy='30' r='3.5'/%3E%3Ccircle cx='34' cy='54' r='2'/%3E%3Ccircle cx='84' cy='66' r='2.5'/%3E%3Ccircle cx='8' cy='92' r='2.5'/%3E%3Ccircle cx='50' cy='100' r='3'/%3E%3Ccircle cx='108' cy='104' r='2'/%3E%3Cpath d='M22 30l2.2 4.6 5 .7-3.6 3.5.9 5-4.5-2.4-4.5 2.4.9-5-3.6-3.5 5-.7z'/%3E%3Cpath d='M92 88l2.2 4.6 5 .7-3.6 3.5.9 5-4.5-2.4-4.5 2.4.9-5-3.6-3.5 5-.7z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 220px 220px;
  min-width: 0;
  position: relative;
}
.promo-info > * { position: relative; z-index: 1; }
.promo-info .eyebrow { background: rgba(255,255,255,.15); color: var(--color-secondary); }
.promo-info h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; }
.promo-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}
.promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e5e0f5;
  font-size: .98rem;
  font-weight: 600;
}
.promo-list .li-icon {
  flex-shrink: 0;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-secondary);
  margin-top: 7px;
}
.promo-prices {
  padding: 48px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}
.price-row {
  position: relative;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  border: 1.5px solid transparent;
  transition: transform .15s ease, border-color .15s ease;
}
.price-row.featured {
  background: #FFF6E0;
  border-color: var(--color-secondary);
  transform: scale(1.04);
  box-shadow: var(--shadow-card);
}
.price-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.duration-pill {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-ink);
}
.duration-sub { color: var(--color-ink-soft); font-size: .85rem; font-weight: 600; margin-top: 2px; }
.price-row .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.price-row .amount small { font-size: 1.05rem; font-weight: 700; margin-left: 2px; }
.price-row.featured .amount { color: var(--color-primary-dark); }
.price-row .badge {
  position: absolute;
  top: -12px;
  right: 18px;
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}
.promo-prices .btn { margin-top: 8px; }

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.services-grid--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.service-card .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 2px; font-weight: 800; }
.service-card p { color: var(--color-ink-soft); font-size: .92rem; margin: 0; font-weight: 600; }
.service-card .service-link {
  margin-top: auto;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: .9rem;
}

.service-card.has-cover { padding-top: 0; overflow: hidden; }
.service-card .card-cover {
  margin: 0 -24px 16px;
  align-self: stretch;
  flex-shrink: 0;
  height: 170px;
  background-size: cover;
  background-position: center;
  display: block;
}
.service-card.has-cover .service-icon { margin-top: 4px; }

/* bold flat icon colors, rotating */
.service-card:nth-child(8n+1) .service-icon { background: var(--color-primary); color: #fff; }
.service-card:nth-child(8n+2) .service-icon { background: var(--color-accent); color: #fff; }
.service-card:nth-child(8n+3) .service-icon { background: var(--color-secondary); color: var(--color-ink); }
.service-card:nth-child(8n+4) .service-icon { background: var(--color-accent-2); color: #fff; }
.service-card:nth-child(8n+5) .service-icon { background: var(--color-green); color: #fff; }
.service-card:nth-child(8n+6) .service-icon { background: var(--color-orange); color: #fff; }
.service-card:nth-child(8n+7) .service-icon { background: var(--color-accent-2); color: #fff; }
.service-card:nth-child(8n+8) .service-icon { background: var(--color-primary); color: #fff; }

/* ===== About / gallery ===== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.about-text { min-width: 0; }
.about-text p { color: var(--color-ink-soft); font-weight: 600; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}
.about-stats .stat {
  min-width: 0;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
}
.about-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-primary);
}
.about-stats .stat span { font-size: .82rem; color: var(--color-ink-soft); font-weight: 700; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 90px);
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g-item:nth-child(4) { grid-column: span 2; }
.gallery-grid .g-item {
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.gallery-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-note {
  grid-column: 1 / -1;
  font-size: .82rem;
  color: var(--color-ink-soft);
  font-weight: 700;
  text-align: center;
  padding-top: 6px;
  background: #fff;
}

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.testi-card {
  min-width: 0;
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.testi-stars { color: var(--color-secondary); font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 2px; }
.testi-card p.quote { color: var(--color-ink-soft); font-weight: 600; font-style: normal; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-alt); font-weight: 800; color: var(--color-primary);
  font-family: var(--font-display);
}
.testi-author strong { display: block; font-size: .92rem; }
.testi-author span { font-size: .8rem; color: var(--color-ink-soft); font-weight: 600; }
.testi-placeholder {
  text-align: center;
  color: var(--color-ink-soft);
  font-weight: 700;
  font-size: .95rem;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

/* ===== CTA band ===== */
.cta-band {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-hover);
}
.cta-band h2 { color: #fff; margin-bottom: 6px; font-size: 1.9rem; font-weight: 800; }
.cta-band p { margin: 0; opacity: .95; font-weight: 600; }
.cta-band .btn-secondary { background: #fff; border-color: #fff; color: var(--color-primary); }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  padding: 54px 0 44px;
  background: var(--color-bg-alt);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 3.8vw, 2.7rem); font-weight: 800; }
.page-hero p { color: var(--color-ink-soft); max-width: 60ch; margin: 0 auto; font-weight: 600; }
.breadcrumb {
  font-size: .85rem;
  color: var(--color-ink-soft);
  font-weight: 700;
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--color-primary); text-decoration: none; font-weight: 800; }

/* ===== Pricing page: bundles + addons side by side ===== */
.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.pricing-bundles { display: grid; gap: 24px; min-width: 0; }
.bundle-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  min-width: 0;
}
.bundle-photo {
  height: 190px;
  background-size: cover;
  background-position: center;
}
.bundle-card .bundle-head,
.bundle-card .bundle-prices,
.bundle-card > .btn { margin-left: 32px; margin-right: 32px; }
.bundle-head { padding-top: 28px; }
.bundle-card > .btn { margin-top: 4px; margin-bottom: 32px; }
.bundle-head h3 { font-size: 1.3rem; margin-bottom: 6px; }
.bundle-head p { color: var(--color-ink-soft); font-size: .92rem; margin: 0 0 20px; }
.bundle-prices { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }

.pricing-addons {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 30px;
  min-width: 0;
  position: sticky;
  top: 90px;
}
.pricing-addons h3 { font-size: 1.15rem; margin-bottom: 6px; }
.addon-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.addon-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.addon-list li:last-child { border-bottom: none; }
.addon-name { font-weight: 700; font-size: .92rem; }
.addon-name small { font-weight: 500; color: var(--color-ink-soft); }
.addon-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.addon-price.muted { color: var(--color-ink-soft); font-size: .82rem; font-weight: 600; }
.pricing-addons-note { font-size: .8rem; color: var(--color-ink-soft); margin: 18px 0 0; }

/* ===== Pricing page ===== */
.price-table {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}
.price-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, .7fr) minmax(0, .7fr);
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid var(--color-border);
  gap: 10px;
}
.price-table-row > * { min-width: 0; }
.price-table-row:last-child { border-bottom: none; }
.price-table-row.head {
  background: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.price-table-row .name { font-weight: 800; font-family: var(--font-display); }
.price-table-row .name small { display: block; font-weight: 600; color: var(--color-ink-soft); font-size: .85rem; font-family: var(--font-body); }
.price-table-row .price { font-family: var(--font-display); font-weight: 800; color: var(--color-primary); font-size: 1.2rem; }
.price-table-row .price.muted { color: var(--color-ink-soft); font-size: .95rem; font-weight: 700; }

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.addon-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
}
.addon-card h3 { font-size: 1rem; margin-bottom: 4px; font-weight: 800; }
.addon-card p { margin: 0; color: var(--color-ink-soft); font-size: .9rem; font-weight: 600; }

/* ===== Theme catalog (партита за момичета/момчета) ===== */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}
@media (max-width: 980px) {
  .theme-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .theme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.theme-card { min-width: 0; }
.theme-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  background-size: cover;
  background-position: center;
  border: 2px dashed var(--color-border);
}
.theme-photo.is-filled { border: none; box-shadow: var(--shadow-card); }
.theme-name {
  margin-top: 10px;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
  color: var(--color-ink);
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}
.contact-info-list { display: grid; gap: 16px; margin-top: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}
.contact-info-item .icon-circle {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary); color: #fff; flex-shrink: 0; font-size: 1.1rem;
}
.contact-info-item strong { display: block; font-family: var(--font-display); }
.contact-info-item span, .contact-info-item a { color: var(--color-ink-soft); text-decoration: none; font-weight: 600; }
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-hover);
  padding: 36px;
}
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-alt); text-decoration: none; color: var(--color-primary);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-ink);
  color: #cfc9e0;
  padding: 60px 0 26px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 36px;
}
.footer-grid > * { min-width: 0; }
.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 800;
}
.footer-about p { color: #b8b1d1; font-size: .92rem; font-weight: 600; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-nav a { color: #cfc9e0; text-decoration: none; font-size: .92rem; font-weight: 600; }
.footer-nav a:hover { color: var(--color-secondary); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); color: #fff; text-decoration: none;
}
.adys-credit {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: .75rem;
  line-height: 1.4;
  color: #9d96b8;
}
.adys-credit img { width: 34px; height: 34px; flex-shrink: 0; }
.adys-credit a { color: #b8b1d1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: #9d96b8;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .logo-prefix { display: none; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 24px 16px;
    gap: 4px;
    box-shadow: var(--shadow-hover);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .hero-grid { grid-template-columns: 1fr; }
  .promo { grid-template-columns: 1fr; }
  .promo-duo { grid-template-columns: 1fr; }
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-addons { position: static; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-table-row { grid-template-columns: 1fr; gap: 4px; }
  .addons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hero-bg {
    bottom: auto;
    height: 78vh;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--color-bg));
    z-index: 1;
  }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-rows: repeat(3, 70px); }

  .badge-hide-mobile { display: none; }

  .hero-cta {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero-cta .btn {
    flex: 1;
    min-width: 0;
    padding: 12px 12px;
    font-size: .82rem;
    gap: 6px;
  }
  .hero-cta .btn-primary::after { display: none; }
}
