/* SEO landings — общий стиль для посадочных страниц
   Палитра ЧитаклЬ: бургунди #431d28, золото #d4af37, кремовый #f9f5f7
   Шрифты: Oranienbaum (заголовки), Cormorant Garamond (текст), Marck Script (акценты) */

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: #f9f5f7;
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 18px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.seo-header {
    background: linear-gradient(135deg, #431d28 0%, #5a2a38 100%);
    color: #fff;
    padding: 16px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.seo-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.seo-logo {
    font-family: 'Oranienbaum', serif;
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: #d4af37;
    text-decoration: none;
}

.seo-logo:hover { color: #f4d03f; }

.seo-nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border: 1px solid rgba(212, 175, 55, 0.6);
    padding: 8px 18px;
    border-radius: 24px;
    transition: all 0.2s;
}

.seo-nav-link:hover {
    background: #d4af37;
    color: #431d28;
    border-color: #d4af37;
}

/* Hero */
.seo-hero {
    background: linear-gradient(135deg, #431d28 0%, #5a2a38 100%);
    color: #fff;
    padding: 80px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08), transparent 50%);
    pointer-events: none;
}

.seo-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.seo-hero h1 {
    font-family: 'Oranienbaum', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: 2px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.seo-hero .lead {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin: 0 auto 36px;
    font-style: italic;
}

.seo-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 32px auto;
}

/* Main content */
.seo-main {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
}

.seo-section {
    margin-bottom: 56px;
}

.seo-section h2 {
    font-family: 'Oranienbaum', serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: #431d28;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.seo-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
}

.seo-section p {
    margin-bottom: 18px;
    color: #2a2a2a;
}

.seo-section ul {
    margin: 16px 0 16px 0;
    padding-left: 0;
    list-style: none;
}

.seo-section ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
}

.seo-section ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.1rem;
}

.seo-quote {
    font-family: 'Marck Script', cursive;
    font-size: 1.5rem;
    color: #d4af37;
    text-align: center;
    margin: 40px 0;
    padding: 0 40px;
    line-height: 1.4;
}

/* CTA */
.seo-cta-block {
    background: linear-gradient(135deg, #f9f5f7 0%, #faf3eb 100%);
    border: 1px solid rgba(67, 29, 40, 0.1);
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    margin: 56px 0;
}

.seo-cta-block h3 {
    font-family: 'Oranienbaum', serif;
    font-size: 1.6rem;
    color: #431d28;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.seo-cta-block p {
    color: #4a4a4a;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.seo-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #431d28 0%, #5a2a38 100%);
    color: #d4af37;
    text-decoration: none;
    font-family: 'Oranienbaum', serif;
    font-size: 1.15rem;
    letter-spacing: 3px;
    padding: 16px 40px;
    border-radius: 32px;
    border: 1px solid #d4af37;
    transition: all 0.25s;
    text-transform: uppercase;
}

.seo-cta-button:hover {
    background: #d4af37;
    color: #431d28;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* FAQ */
.seo-faq-item {
    border-bottom: 1px solid rgba(67, 29, 40, 0.12);
    padding: 18px 0;
}

.seo-faq-item:last-child { border-bottom: none; }

.seo-faq-q {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #431d28;
    margin-bottom: 8px;
}

.seo-faq-a { color: #2a2a2a; }

/* Footer */
.seo-footer {
    background: #2a1218;
    color: rgba(255, 255, 255, 0.85);
    padding: 40px 24px 32px;
    margin-top: auto;
}

.seo-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.seo-footer-title {
    font-family: 'Oranienbaum', serif;
    color: #d4af37;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.seo-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
    margin-bottom: 24px;
}

.seo-footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.98rem;
    transition: color 0.2s;
}

.seo-footer-links a:hover { color: #d4af37; }

.seo-footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
}

@media (max-width: 600px) {
    .seo-hero { padding: 56px 20px 64px; }
    .seo-main { padding: 40px 20px; }
    .seo-section { margin-bottom: 40px; }
    .seo-cta-block { padding: 32px 20px; }
    .seo-quote { font-size: 1.2rem; padding: 0 20px; margin: 28px 0; }
}
