/* === PRIVATE SESSIONS - LUXURY WELLNESS CSS === */
/* CSS переменные наследуются из shared-variables.css */

/* === DECORATIVE WAVE ANIMATION === */
@keyframes waveFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
}
    to {
        opacity: 1;
        transform: translateY(0);
}
}

/* === LUXURY ANIMATIONS === */
@keyframes luxuryFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
}
    to {
        opacity: 1;
        transform: translateY(0);
}
}

@keyframes luxuryReveal {
    from {
        opacity: 0;
        transform: scale(0.95);
}
    to {
        opacity: 1;
        transform: scale(1);
}
}

@keyframes luxurySlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
}
    to {
        opacity: 1;
        transform: translateX(0);
}
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
}
    50% {
        transform: translateY(-3px);
}
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
}
    50% {
        background-position: 100% 50%;
}
    100% {
        background-position: 0% 50%;
}
}

/* === DECORATIVE WAVE TRANSITION === */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12vh;
    min-height: 48px;
    max-height: 120px;
    pointer-events: none;
    overflow: hidden;
    display: none; /* Hidden by default, shown on mobile */
    background: transparent;
    z-index: 3;
}

/* Show wave on mobile inside hero-image-wrapper-mobile */
.hero-image-wrapper-mobile .hero-wave {
    display: block;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    animation: waveFadeIn 1s ease 0.3s forwards;
}

/* === GLOBAL LUXURY TYPOGRAPHY === */
/* === TYPOGRAPHY MANAGED BY typography.css === */
/* Removed duplicate typography definitions (body, h1-h6, p, a) - they are now managed by typography.css */

/* === MOBILE FIRST LUXURY HERO === */
/* Унифицированный hero padding - mobile-first */
.private-hero {
    padding-top: calc(var(--header-height-mobile, 70px) + 16px);
    padding-bottom: 32px;
    padding-left: 0;
    padding-right: 0;
    background: var(--color-background);
    position: relative;
    overflow: hidden;
    min-height: auto; /* Убрали 100vh - контент определяет высоту */
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (min-width: 768px) {
    .private-hero {
        min-height: 100vh;
        min-height: 100dvh;
        align-items: center;
    }
}

/* === MOBILE HERO IMAGE WRAPPER (POSTER DESIGN) === */
.hero-image-wrapper-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: none; /* Hidden by default, shown on mobile */
    z-index: 0;
}

/* Show on mobile only */
@media (max-width: 767px) {
    .hero-image-wrapper-mobile {
        display: block;
    }
    
    /* iOS Safari safe-area support */
    @supports (padding: max(0px)) {
        .hero-image-wrapper-mobile {
            padding-left: max(0px, env(safe-area-inset-left));
            padding-right: max(0px, env(safe-area-inset-right));
        }
    }
}

.hero-image-wrapper-mobile .hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    z-index: 0;
    animation: fadeIn 1s ease-out;
}

/* Premium dark gradient overlay for emotional connection */
.hero-image-wrapper-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.05) 70%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 56px;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.92) 40%,
        rgba(255, 255, 255, 0.7) 70%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
}

.hero-overlay .private-hero-title {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
    text-align: center;
    margin: 0;
    max-width: 320px;
    animation: luxuryFadeIn 0.8s ease-out forwards;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-primary);
}

/* Gradient overlay for premium feel - desktop only */
.private-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at center top, 
        rgba(249, 250, 240, 0.1) 0%, 
        transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Hide radial gradient on mobile - we have hero image gradients */
@media (max-width: 767px) {
    .private-hero::before {
        display: none;
    }
}

.private-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 20px; /* Mobile: no top padding, image handles spacing */
    width: 100%;
    position: relative;
    z-index: 2;
}

/* === HERO CONTENT GRID - MOBILE FIRST === */
.hero-content-grid {
    display: flex;
    flex-direction: column;
    gap: 0; /* No gap on mobile */
    align-items: center;
    opacity: 0;
    animation: luxuryFadeIn 1s ease-out forwards;
}

/* === LEFT CONTENT COLUMN === */
.hero-content-left {
    text-align: center;
    max-width: 100%;
    order: 1;
}

/* Hero Label - Luxury Premium Style */
.hero-label {
    margin-top: 12px; /* Top margin since it's now after title */
    margin-bottom: 0;
    opacity: 0;
    animation: luxurySlideIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-label-text {
    font-family: var(--font-primary);
    font-size: 0.8125rem; /* 13px - delicate */
    font-weight: 300;
    color: var(--color-text); /* Changed from accent to black */
    text-transform: uppercase;
    letter-spacing: 0.18em; /* Ultra wide spacing */
    padding: 0;
    background: transparent;
    border-radius: 0;
    display: inline-block;
    position: relative;
}

/* Hero Title - Luxury Typography Mobile First */
.private-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3rem); /* Унифицировано: 40-48px */
    font-weight: 300;
    color: var(--color-secondary);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.02em;
    text-transform: none;
    position: relative;
    max-width: 100%;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.35);
}

/* Hero Description */
.hero-description-main {
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: luxuryFadeIn 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.private-hero-description {
    font-family: var(--font-primary);
    font-size: 0.9375rem; /* 15px - perfect for mobile */
    line-height: 1.6;
    color: var(--color-text);
    max-width: 600px;
    font-weight: 300;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.private-hero-description strong {
    color: var(--color-primary);
    font-weight: 500;
}

/* === HERO PROGRAM DETAILS - LUXURY MINIMAL === */
.hero-program-details {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: luxuryFadeIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

/* Extra spacing on mobile */
@media (max-width: 767px) {
    .hero-program-details {
        margin-top: var(--space-md);
        margin-bottom: 20px; /* Компактный отступ снизу */
    }
}

.program-intro {
    margin-bottom: var(--space-sm);
    text-align: center;
}

.program-label {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-ultra);
    margin-bottom: var(--space-sm);
    display: block;
}

/* Program list replaced with caps-row - see above */

/* Luxury capsules row - mobile first */
.caps-row {
    display: flex;
    flex-wrap: wrap; /* Перенос на новую строку */
    justify-content: center; /* Центрирование */
    gap: 10px;
    margin-top: 12px;
    padding: 0 8px;
}

.cap {
    padding: 10px 18px;
    font-family: var(--font-primary);
    font-size: 0.8125rem; /* 13px */
    font-weight: 400;
    line-height: 1;
    color: var(--color-text);
    background: rgba(249, 250, 244, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 9999px;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.cap:hover {
    background: var(--color-accent-soft);
    border-color: var(--color-accent);
    transform: translateY(-1px);
}

/* === HERO CTA - LUXURY BUTTONS === */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    opacity: 0;
    animation: luxuryReveal 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-cta .btn {
    padding: 18px 40px;
    border-radius: 2px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: all var(--transition-medium);
    min-width: 220px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
}

.hero-cta .btn-primary {
    background: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
    position: relative;
    overflow: hidden;
    font-weight: 300;
}

.hero-cta .btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-1px);
}

.hero-cta .btn-primary svg {
    transition: transform var(--transition-fast);
}

.hero-cta .btn-primary:hover svg {
    transform: translateX(2px);
    animation: iconFloat 1s ease-in-out infinite;
}

.hero-cta .btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 300;
}

.hero-cta .btn-secondary:hover {
    border-color: var(--color-primary);
    background: transparent;
    transform: translateY(-1px);
}

/* === RIGHT CONTENT COLUMN === */
.hero-content-right {
    width: 100%;
    max-width: 450px;
    order: 2;
    opacity: 0;
    animation: luxuryReveal 1s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-image-section {
    width: 100%;
    position: relative;
    display: block;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    padding: var(--space-sm);
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-luxury);
    display: block;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-smooth);
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Decorative Elements */
.image-decoration-1 {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(253, 167, 0, 0.3) 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
    animation: iconFloat 3s ease-in-out infinite;
}

.image-decoration-2 {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--color-accent-soft) 0%, transparent 100%);
    border-radius: var(--border-radius-large);
    z-index: 1;
    opacity: 0.8;
    animation: iconFloat 4s ease-in-out infinite reverse;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: luxuryFadeIn 1s ease-out forwards;
    animation-delay: 1s;
    cursor: pointer;
    text-decoration: none;
    z-index: 12;
}

@media (min-width: 768px) {
    .scroll-indicator {
        display: flex;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }
}

.scroll-text {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    animation: iconFloat 2s ease-in-out infinite;
    transition: color var(--transition-fast);
}

/* Override global scroll-arrow border-based style from main.css */
.private-hero .scroll-arrow {
    width: auto;
    height: auto;
    border: 0;
    transform: none;
    opacity: 1;
}

.private-hero .scroll-arrow svg {
    display: block;
}

.scroll-indicator:hover .scroll-arrow {
    color: var(--color-accent);
}

.scroll-indicator:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* === DESKTOP HERO LAYOUT - TWO COLUMN === */

/* === LARGE DESKTOP === */

/* === BENEFIT SECTION - LUXURY DESIGN === */
/* Унифицированные отступы секций */
.private-for-you-section {
    padding: var(--spacing-section-mobile, 56px) 0;
    background: var(--color-background-soft);
    position: relative;
}

@media (min-width: 768px) {
    .private-for-you-section {
        padding: var(--spacing-section-tablet, 80px) 0;
    }
}

@media (min-width: 1024px) {
    .private-for-you-section {
        padding: var(--spacing-section-desktop, 100px) 0;
    }
}

.private-for-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(249, 250, 240, 0.3) 0%, 
        transparent 50%,
        rgba(249, 250, 240, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.private-for-you-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.private-for-you-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 32px; /* Компактнее на mobile */
    letter-spacing: -0.02em;
    opacity: 0;
    animation: luxuryFadeIn 0.8s ease-out forwards;
    position: relative;
}

@media (min-width: 768px) {
    .private-for-you-title {
        margin-bottom: 48px; /* Больше на tablet */
    }
}

@media (min-width: 1024px) {
    .private-for-you-title {
        margin-bottom: 60px; /* Ещё больше на desktop */
    }
}

/* Timeline - журнальный стиль */
.timeline {
    margin: 0;
    padding: 0 0 0 28px;
    list-style: none;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(207, 161, 91, 0.2);
}

.timeline li {
    position: relative;
    margin: 0 0 32px;
}

.dot {
    position: absolute;
    left: -28px;
    top: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.timeline p {
    margin: 0;
    font-family: var(--font-primary);
    font-size: var(--fs-mobile-sm, 15px);
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text);
}

.timeline strong {
    color: var(--color-primary);
    font-weight: 500;
}

/* === SIMPLE PRICING CTA SECTION === */
/* Pricing Section - Unified Padding */
.private-pricing {
    padding: var(--spacing-section-mobile, 40px) 0;
    background: var(--color-white);
}

@media (min-width: 768px) {
    .private-pricing {
        padding: var(--spacing-section-tablet, 56px) 0;
    }
}

@media (min-width: 1024px) {
    .private-pricing {
        padding: var(--spacing-section-desktop, 80px) 0;
    }
}

.simple-pricing-cta {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

/* Журнальний стиль - две карточки в ряд на mobile */
.pricing-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0 32px;
}

@media (min-width: 480px) {
    .pricing-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 768px) {
    .pricing-options {
        gap: 32px;
        margin: 48px 0 40px;
    }
}

/* Карточка в формате: цифра сверху, текст снизу */
.pricing-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background: rgba(249, 250, 244, 0.5);
    border: 1px solid rgba(207, 161, 91, 0.1);
    border-radius: 20px;
    min-height: 200px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(253, 167, 0, 0.04), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pricing-option:hover {
    border-color: var(--color-accent);
    background: rgba(249, 250, 244, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(207, 161, 91, 0.12);
}

.pricing-option:hover::before {
    opacity: 1;
}

/* Большая цена сверху */
.option-price {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 4.5rem); /* 48-72px */
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

/* Описание снизу */
.option-text {
    font-family: var(--font-primary);
    font-size: clamp(0.9375rem, 2vw, 1.0625rem); /* 15-17px */
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.01em;
    max-width: 200px;
    position: relative;
    z-index: 1;
}

/* Clickable pricing card */
.pricing-option.clickable {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.pricing-option.clickable:active {
    transform: scale(0.97);
}

.option-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 0;
    background: none;
    border: none;
    color: var(--color-accent, #CFA15B);
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.option-cta::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-accent, #CFA15B);
    margin: 8px auto 0;
    transition: width 0.3s ease;
}

.pricing-option.clickable:hover .option-cta {
    color: var(--color-primary, #1a1a1a);
    letter-spacing: 0.16em;
}

.pricing-option.clickable:hover .option-cta::after {
    width: 40px;
    background: var(--color-primary, #1a1a1a);
}

.session-details {
    margin: 24px 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

@media (min-width: 768px) {
    .session-details {
        margin: 32px 0 40px;
    }
}

.detail-item {
    font-family: var(--font-primary);
    font-size: 0.875rem; /* 14px - компактнее */
    font-weight: 300;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .detail-item {
        font-size: 0.9375rem; /* 15px на tablet+ */
    }
}

/* Desktop CTA Styles */
.pricing-cta {
    margin-top: var(--space-lg);
    text-align: center;
}

.pricing-cta .btn {
    padding: 16px 40px;
    font-size: 1rem;
    min-width: 200px;
}

/* === TABLET RESPONSIVE === */

/* === MOBILE OPTIMIZED - POSTER HERO DESIGN === */

/* === SMALL MOBILE (320px+) - Compact Version === */

/* === DESKTOP/MOBILE VISIBILITY HELPERS === */
/* Managed by responsive media queries below */

/* ============================================ */
/* === MOBILE SPECIFIC ADJUSTMENTS === */
/* ============================================ */

/* Expandable description (mobile only) */
.hero-description-expandable {
  overflow: hidden;
  margin-top: 16px;
}

.description-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}

.description-content.expanded {
  max-height: 500px;
  opacity: 1;
  margin-bottom: 16px;
}

.read-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: var(--fs-mobile-sm);
  font-weight: 500;
  cursor: pointer;
  padding: 12px 0;
  margin: 0 auto;
  transition: all var(--transition-fast);
}

.read-more-btn:active {
  transform: scale(0.98);
}

.read-more-btn .btn-icon {
  transition: transform var(--transition-fast);
}

.read-more-btn[aria-expanded="true"] .btn-icon {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .description-content,
  .read-more-btn .btn-icon {
    transition: none;
  }
}

/* Small mobile screens (320px - 375px) */
@media (max-width: 375px) {
  .private-hero-title {
    font-size: clamp(1.5rem, 6vw, 1.75rem);
  }
  
  .private-hero-description {
    font-size: var(--fs-mobile-sm); /* 14px */
    line-height: var(--lh-mobile-relaxed);
  }
  
  .program-label {
    font-size: var(--fs-mobile-2xs); /* 10px */
  }
  
  .caps-row {
    gap: 8px;
    padding: 0;
  }
  
  .cap {
    padding: 8px 14px;
    font-size: 0.75rem; /* 12px на маленьких экранах */
  }
  
  .timeline {
    padding-left: 24px;
  }
  
  .timeline p {
    font-size: var(--fs-mobile-sm); /* 14px */
    line-height: var(--lh-mobile-relaxed);
  }
  
  .dot {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
    left: -24px;
  }
  
  .timeline::before {
    left: 10px;
  }
}

/* Mobile optimization (under 768px) */
@media (max-width: 767px) {
  .hero-content-right {
    display: none !important;
  }
  
  .private-hero .container {
    padding: max(calc(60vh - 60px), 340px) 20px 40px; /* Текст ещё ближе */
  }
  
  .hero-content-left {
    text-align: center;
    padding-top: 16px;
  }
  
  .hero-description-main {
    margin-top: 12px;
  }
  
  .hero-description-main .private-hero-description {
    font-size: clamp(0.95rem, 3.5vw, 1.05rem);
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  .hero-description-expandable {
    margin: 16px 0;
  }
  
  .hero-program-details {
    margin-top: 24px;
  }
  
  .mobile-only {
    display: block;
  }
  
  .desktop-only {
    display: none;
  }
  
  .hero-content-grid {
    gap: 0;
  }
}

/* Tablet and up */
@media (min-width: 768px) {
  .hero-image-wrapper-mobile {
    display: none !important;
  }
  
  .mobile-only {
    display: none;
  }
  
  .desktop-only {
    display: block;
  }
  
  .private-hero .container {
    padding: var(--header-height-desktop) 32px 40px;
  }
  
  .hero-content-grid {
    flex-direction: row;
    gap: var(--space-xl);
    align-items: flex-start;
  }
  
  .hero-content-left {
    text-align: left;
    flex: 1;
    max-width: 600px;
  }
  
  .hero-content-right {
    flex: 0 0 auto;
    width: 40%;
  }
  
  .private-for-you-title {
    font-size: clamp(2.5rem, 4vw, 3rem);
  }
}

/* Desktop large */
@media (min-width: 1024px) {
  .private-hero .container {
    padding: var(--header-height-desktop) 60px 60px;
    max-width: 1200px;
  }
  
  .hero-content-grid {
    gap: var(--space-2xl);
  }
  
  /* Override data-animate opacity for hero on desktop */
  .private-hero [data-animate] {
    opacity: 1 !important;
  }
  
  .hero-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury-card);
  }
  
  .hero-image-wrapper img {
    max-height: 75vh;
    object-fit: cover;
    border-radius: 20px;
  }
  
  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .hero-cta .luxury-button {
    width: auto;
    max-width: 300px;
  }
  
  .caps-row {
    justify-content: flex-start; /* На desktop выровнять по левому краю */
    gap: 12px;
  }
  
  .cap {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}

/* === END RESPONSIVE ADJUSTMENTS === */

/* 
 * TODO: Path 2 Migration - Unified Responsive System
 * ------------------------------------------------
 * After testing and approval, migrate mobile hero styles to unified-responsive.css:
 * - .hero-image-wrapper-mobile responsive behavior
 * - .hero-overlay gradient and positioning
 * - Mobile-specific typography adjustments
 * - Safe-area insets for iOS
 * 
 * This ensures consistency across all pages while maintaining the current working state.
 * Reference: mobile.plan.md, Step 8
 */

