:root {
  --bg: #f5f3ef;
  --text: #1f1c2f;
  --accent: #d8643d;
  --accent-dark: #a74526;
  --muted: #6f6a77;
  --surface: rgba(255, 255, 255, 0.75);
  --shadow: 0 24px 48px rgba(15, 10, 35, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 20px 40px rgba(216, 100, 61, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.ghost {
  border: 1px solid rgba(31, 28, 47, 0.35);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn.secondary:hover {
  background: var(--accent);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  backdrop-filter: blur(12px);
  background: rgba(245, 243, 239, 0.8);
  border-bottom: 1px solid rgba(31, 28, 47, 0.06);
}

.logo {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.logo .mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3b18c, var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.logo strong {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: transform 200ms ease;
}

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 6rem 5vw 4rem;
  gap: 4rem;
}

.hero-media {
  background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80") center/cover;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(16, 11, 30, 0.15), rgba(216, 100, 61, 0.35));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 720px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0.5rem 0 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-dark);
}

.about {
  padding: 5rem 5vw;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.about-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(110, 104, 118, 0.12);
  box-shadow: var(--shadow);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px rgba(15, 10, 35, 0.1);
}

.about-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-top: 0;
}

.about-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.about-card li {
  margin-bottom: 0.4rem;
}

.advantages {
  padding: 5rem 5vw 4rem;
  background: #fff;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.advantage {
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(216, 100, 61, 0.12), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(216, 100, 61, 0.18);
}

.destinations {
  padding: 5rem 5vw;
}

.destinations-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dest-controls {
  display: flex;
  gap: 0.75rem;
}

.scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31, 28, 47, 0.08);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 200ms ease;
}

.scroll-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
  transform: rotate(45deg);
}

.scroll-btn.prev::before {
  transform: rotate(-135deg);
}

.scroll-btn:hover {
  background: rgba(216, 100, 61, 0.2);
}

.destinations-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
}

.destinations-track::-webkit-scrollbar {
  display: none;
}

.destination {
  background: #fff;
  border-radius: 24px;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: transform 200ms ease;
}

.destination img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.destination:hover {
  transform: translateY(-4px);
}

.timeline {
  padding: 5rem 5vw;
  background: linear-gradient(180deg, #fff, rgba(255, 247, 239, 0.85));
}

.timeline-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2.5rem;
}

.timeline-steps li {
  display: grid;
  gap: 0.8rem;
  padding: 2.2rem;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 173, 138, 0.35);
  position: relative;
}

.step-index {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fbd4bd, var(--accent));
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #fff;
}

.testimonials {
  padding: 5rem 5vw;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  margin: 0;
  padding: 2.2rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(31, 28, 47, 0.08);
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-style: italic;
}


.legal-links {
  padding: 5rem 5vw;
  background: radial-gradient(circle at top left, rgba(216, 100, 61, 0.2), transparent 60%), #f9f7f3;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.legal-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  padding: 2.2rem;
  border: 1px solid rgba(216, 100, 61, 0.22);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.contact {
  padding: 5rem 5vw 6rem;
  background: #fffdf9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid rgba(31, 28, 47, 0.08);
  backdrop-filter: blur(12px);
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer {
  background: #1f1c2f;
  color: #f5f3ef;
  padding: 3rem 5vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand .mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f3b18c, var(--accent));
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-weight: 500;
}

.footer-meta {
  display: grid;
  gap: 0.5rem;
  justify-items: end;
  font-size: 0.85rem;
}

.footer-meta a {
  color: #f3b18c;
}

 [data-animate] {
  opacity: 1;
  transform: none;
  filter: none;
}

.js-animate [data-animate] {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.96);
  filter: blur(10px);
}

.js-animate [data-animate].visible {
  animation: bloomUp 0.9s var(--delay, 0s) cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes bloomUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.96);
    filter: blur(14px);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -6px, 0) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-media {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem 6vw;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 64px 16px auto 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow);
    transform: translateY(-24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .footer-meta {
    justify-items: start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .destinations-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

