:root {
  --bg: #f4f1ec;
  --ink: #1e1a17;
  --muted: #6b625b;
  --card: #fcfaf7;
  --line: #ddd3c9;
  --terracotta: #c66a3d;
  --deep: #2f3b46;
  --sage: #738a7a;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, #e9dfd3 0%, transparent 28%),
    radial-gradient(circle at 8% 90%, #dfe7e1 0%, transparent 25%),
    var(--bg);
}

main,
section,
header,
footer {
  max-width: 100%;
}

.site-header { transition: all 0.3s ease; }
.site-header.is-solid {
  background: rgba(28, 33, 38, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-header.is-solid .brand,
.site-header.is-solid .nav-link,
.site-header.is-solid .mobile-menu-btn { color: #fff; }
.site-header.is-solid .nav-link.active {
  background: #fff;
  color: #1b2127;
}

.nav-link,
.mobile-nav-link {
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.nav-link { padding: 0.5rem 0.95rem; color: #2b2926; }
.nav-link:hover,
.nav-link.active { background: #ece4db; color: #151311; }
.mobile-nav-link { padding: 0.65rem 0.85rem; color: #2f2b27; }
.mobile-nav-link.active { background: #ece4db; color: #151311; }

.panel {
  border: 1px solid var(--line);
  background: rgba(252, 250, 247, 0.82);
  box-shadow: 0 18px 40px rgba(37, 29, 21, 0.06);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #7a4d35;
}
.kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta), #e0a37a);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-loader {
  width: 100vw;
  height: 100dvh;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hero-stage {
  min-height: clamp(620px, 88vh, 820px);
}
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide { height: 100%; }

.swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.swiper-wrapper,
.swiper-slide {
  min-width: 0;
}
.hero-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-pagination .swiper-pagination-bullet { background: #ffffff !important; opacity: 0.45; }
.hero-pagination .swiper-pagination-bullet-active { opacity: 1; }

.loop-track {
  white-space: nowrap;
  display: flex;
  gap: 2.2rem;
  animation: loopline 20s linear infinite;
}
@keyframes loopline {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.faq-answer { display: none; }
.faq-item[data-open="true"] .faq-answer { display: block; }
.faq-item[data-open="true"] .faq-plus { transform: rotate(45deg); }

.reviews-pagination .swiper-pagination-bullet { background: #fff !important; opacity: 0.35; }
.reviews-pagination .swiper-pagination-bullet-active { opacity: 1; }

.page-in { animation: pageIn 0.55s ease; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
