/* Variant 1: Warm Natural - Editorial Style */
/* Inspired by yoga-fest.ru: warm serif typography, soft gradients, earthy tones */

:root {
    --color-bg: #F8F6F2;
    --color-bg-warm: #f0ece4;
    --color-text: #081B2C;
    --color-text-muted: #3a4d5e;
    --color-accent: #0E8EA0;
    --color-accent-light: #48b7c5;
    --color-accent-dark: #0a6b78;
    --color-gold: #D4AF37;
    --color-border: #e0dcd5;
    --font-serif: 'Evolventa', 'Cormorant', Georgia, serif;
    --font-sans: 'Evolventa', 'Inter', -apple-system, sans-serif;
    --font-latin: 'Cinzel', Georgia, serif;
    --font-display: 'Nickainley', 'Cormorant', cursive;
    --font-latin-heading: 'Simple Serenity', 'Cinzel', Georgia, serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Marquee Banner */
.marquee-banner {
    background-color: var(--color-accent);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-item {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-latin-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-cta {
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: var(--color-accent);
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.nav-cta:hover {
    background: var(--color-accent-dark);
}

/* Hero Section */
.hero {
    min-height: calc(100dvh - 70px - 40px);
    display: flex;
    align-items: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-warm) 50%, #e8e2d8 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-date {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: var(--color-border);
}

.hero-location {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.hero-title {
    font-family: var(--font-serif);
    margin-bottom: 24px;
}

.hero-title-event {
    display: block;
    font-family: var(--font-latin-heading);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.hero-title-line {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 300;
    line-height: 1;
    color: var(--color-text);
}

.hero-title-accent {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 600;
    line-height: 1;
    color: var(--color-accent);
    font-style: italic;
}

.hero-title-sub {
    display: block;
    font-family: var(--font-latin);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 4px 20px rgba(196, 125, 79, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(196, 125, 79, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: white;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 200px 200px 40px 40px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-accent-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

/* Content Section */
.content {
    padding: 120px 24px;
    background: white;
}

.content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    max-width: 700px;
    margin-bottom: 80px;
}

.content-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--color-text);
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.content-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature {
    display: block;
    padding: 32px;
    border-radius: 20px;
    background: var(--color-bg);
    transition: transform 0.2s ease;
    text-decoration: none;
}

.feature:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--color-accent-dark);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.content-text-bottom {
    max-width: 700px;
    margin-top: 60px;
}

/* CTA Section */
.cta-section {
    padding: 60px 24px;
    background: var(--color-accent);
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-large {
    font-size: 16px;
    padding: 18px 40px;
    width: 100%;
    max-width: 500px;
}

.cta-section .btn-primary {
    background: white;
    color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
    background: var(--color-bg);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.cta-section .btn-secondary:hover {
    border-color: white;
    color: white;
}

/* More Section */
.more-section {
    padding: 120px 24px;
    background: var(--color-bg);
}

.more-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.more-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--color-text);
}

.more-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.more-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 48px;
}

.more-list li {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text-muted);
    padding-left: 24px;
    position: relative;
}

.more-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--color-accent-light);
    border-radius: 50%;
}

.more-section .btn-primary {
    display: inline-flex;
}

.more-price {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 32px;
}

/* For Whom Section */
.for-whom {
    padding: 100px 24px;
    background: var(--color-bg-warm);
}

.for-whom-inner {
    max-width: 700px;
    margin: 0 auto;
}

.for-whom-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--color-text);
}

.for-whom-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.for-whom-list li {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-muted);
    padding-left: 36px;
    position: relative;
}

.for-whom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--color-accent-light);
    border-radius: 50%;
}

.for-whom-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 12px;
    width: 8px;
    height: 6px;
    border-left: 2px solid var(--color-accent-dark);
    border-bottom: 2px solid var(--color-accent-dark);
    transform: rotate(-45deg);
}

/* Pricing Cash Note */
.pricing-cash-note {
    margin-top: 48px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.pricing-cash-note a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.pricing-cash-note a:hover {
    text-decoration: underline;
}

/* Location Title Link */
.location-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-title-link:hover {
    color: var(--color-accent);
}

/* Info Sections */
.info-section {
    padding: 100px 24px;
    background: white;
}

.info-section-alt {
    background: var(--color-bg);
}

.info-inner {
    max-width: 700px;
    margin: 0 auto;
}

.info-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--color-text);
}

.info-subtitle {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.info-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.info-text:last-child {
    margin-bottom: 0;
}

.info-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.info-link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    padding: 100px 24px;
    background: white;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 48px;
    color: var(--color-text);
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-bg);
    overflow: hidden;
}

.faq-question {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-question::after {
    transform: rotate(-135deg);
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
    padding: 0 28px 24px 28px;
}

/* Contact Section */
.contact-section {
    padding: 60px 24px;
    background: var(--color-bg-warm);
    text-align: center;
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.contact-text a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Pricing Section */
.pricing {
    padding: 120px 24px;
    background: var(--color-bg);
}

.pricing-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--color-accent);
    margin-bottom: 60px;
}

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

.price-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    border: 1px solid var(--color-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.price-card-featured {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, white 0%, #fdf9f0 100%);
    transform: scale(1.04);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.25);
}

.price-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-text);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 16px;
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 16px;
}

.price-currency {
    font-size: 28px;
    font-weight: 400;
    vertical-align: super;
}

.price-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    min-height: 44px;
}

/* Location Section */
.location {
    padding: 120px 24px;
    background: white;
}

.location-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 24px;
}

.location-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.location-desc:last-of-type {
    margin-bottom: 32px;
}

.location-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amenity {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    background: var(--color-bg);
    border-radius: 100px;
    color: var(--color-text-muted);
}

.location-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    padding: 40px 24px;
    background: var(--color-text);
    color: white;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero {
        padding: 60px 24px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-frame {
        aspect-ratio: 16/10;
        border-radius: 40px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .content-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .location-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .more-inner {
        text-align: center;
    }

    .more-list {
        text-align: left;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 20px;
    }

    .faq-answer {
        font-size: 15px;
        padding: 0 20px 20px 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
