:root {
    --ivory: #f6f1e8;
    --sand: #ead7bf;
    --clay: #d06b43;
    --terracotta: #b74b2a;
    --teal: #1e6f70;
    --teal-dark: #174f50;
    --ink: #1f252b;
    --charcoal: #13181d;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

::selection {
    background: rgba(208, 107, 67, 0.25);
    color: var(--charcoal);
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 120;
    pointer-events: none;
    background: linear-gradient(135deg, var(--terracotta), var(--teal));
    transform: translateY(100%);
    transition: transform 0.55s cubic-bezier(0.72, 0, 0.24, 1);
}

.page-transition.active {
    transform: translateY(0);
}

.frost {
    backdrop-filter: blur(18px);
    background: rgba(246, 241, 232, 0.84);
}

.nav-link {
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    color: #33404a;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: linear-gradient(120deg, var(--terracotta), var(--teal));
}

.mobile-link {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    color: #25303a;
    font-weight: 600;
}

.mobile-link:hover,
.mobile-link.active {
    background: #ffffff;
    color: var(--terracotta);
}

.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.985);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.65) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    width: 28px !important;
    border-radius: 999px !important;
    background: var(--sand) !important;
}

.faq-item {
    border: 1px solid rgba(31, 37, 43, 0.12);
    border-radius: 1rem;
    overflow: hidden;
    background: #ffffff;
}

.faq-answer {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 1.5rem 1.25rem;
    color: #475569;
}

.faq-item.open .faq-answer {
    display: block;
    max-height: 220px;
}

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

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

.cookie-panel {
    box-shadow: 0 20px 55px rgba(19, 24, 29, 0.22);
}

.texture-bg {
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.12) 1px, transparent 0);
    background-size: 20px 20px;
}

.line-clamp-2 {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .faq-item.open .faq-answer {
        max-height: 320px;
    }
}
