:root {
    --ink: #201914;
    --wine: #5c6952;
    --rose: #b8755f;
    --gold: #a48c56;
    --mist: #efe6d8;
    --soft: #fbf6ef;
    --deep: #2f2924;
    --shadow: 0 20px 55px rgba(32, 25, 20, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 14% 10%, rgba(184, 117, 95, 0.16), transparent 28%),
        radial-gradient(circle at 86% 8%, rgba(164, 140, 86, 0.18), transparent 24%),
        linear-gradient(180deg, #f7f0e6 0%, #f3ecdf 42%, #faf6ef 100%);
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.45s ease;
}

body.page-ready {
    opacity: 1;
}

body.page-leave {
    opacity: 0;
}

::selection {
    background: rgba(92, 105, 82, 0.22);
    color: #17120f;
}

.glass-nav {
    backdrop-filter: blur(14px);
    background: rgba(251, 246, 239, 0.84);
    border-bottom: 1px solid rgba(32, 25, 20, 0.08);
}

.nav-link {
    padding: 0.56rem 0.96rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #645950;
    transition: all 0.26s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep);
    background: rgba(92, 105, 82, 0.12);
}

.mobile-nav-link {
    display: block;
    border-radius: 0.85rem;
    padding: 0.76rem 0.98rem;
    color: #645950;
    font-weight: 600;
    transition: all 0.26s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--deep);
    background: rgba(92, 105, 82, 0.12);
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.92rem 1.38rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(120deg, #495442, #6c775f);
    box-shadow: 0 14px 30px rgba(73, 84, 66, 0.25);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(73, 84, 66, 0.31);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.92rem 1.38rem;
    font-weight: 700;
    color: var(--deep);
    border: 1px solid rgba(32, 25, 20, 0.16);
    background: rgba(255, 252, 247, 0.86);
    transition: all 0.26s ease;
}

.btn-outline:hover {
    background: #fffdf9;
    border-color: rgba(32, 25, 20, 0.28);
}

.soft-card {
    background: var(--soft);
    border: 1px solid rgba(32, 25, 20, 0.09);
    border-radius: 1.45rem;
    box-shadow: var(--shadow);
}

.editorial-frame {
    position: relative;
    border: 1px solid rgba(32, 25, 20, 0.14);
}

.editorial-frame::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.grain-block {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.52)),
        radial-gradient(circle at 1px 1px, rgba(32, 25, 20, 0.04) 1px, transparent 0);
    background-size: auto, 10px 10px;
}

.reveal-section,
.reveal-item {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item:nth-child(2) { transition-delay: 0.08s; }
.reveal-item:nth-child(3) { transition-delay: 0.14s; }
.reveal-item:nth-child(4) { transition-delay: 0.2s; }
.reveal-item:nth-child(5) { transition-delay: 0.26s; }

.reveal-section.visible,
.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-icon {
    transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 0;
}

.faq-item.open .faq-answer {
    padding-bottom: 1.2rem;
}

.swiper-pagination-bullet {
    width: 11px !important;
    height: 11px !important;
    opacity: 1 !important;
    background: rgba(92, 105, 82, 0.28) !important;
}

.swiper-pagination-bullet-active {
    width: 28px !important;
    border-radius: 999px !important;
    background: linear-gradient(120deg, #495442, #6c775f) !important;
}

.input-style,
.form-input {
    width: 100%;
    border: 1px solid rgba(32, 25, 20, 0.16);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.86rem 0.95rem;
}

.input-style:focus,
.form-input:focus {
    outline: none;
    border-color: rgba(92, 105, 82, 0.7);
    box-shadow: 0 0 0 3px rgba(92, 105, 82, 0.12);
}

#cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    transform: translateY(26px);
    opacity: 0;
    transition: all 0.35s ease;
}

#cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .editorial-frame::before {
        inset: 9px;
    }
}
