:root {
  --bg: #f5efe4;
  --paper: #fffbf3;
  --ink: #171411;
  --muted: #6d6253;
  --accent: #b4863f;
  --accent-soft: #eed7b0;
  --line: rgba(23, 20, 17, 0.12);
  --shadow: 0 22px 60px rgba(60, 44, 24, 0.12);
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(180, 134, 63, 0.12), transparent 26%),
    linear-gradient(180deg, #faf5ec 0%, #f5efe4 100%);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

#scroll-navbar {
  position: fixed;
  inset: 18px 20px auto;
  z-index: 1000;
  transform: translateY(-24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#scroll-navbar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-content {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  min-height: 62px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 251, 243, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-brand-text {
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.nav-brand-logo {
  display: none;
  width: 64px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: rgba(23, 20, 17, 0.72);
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); width: 12px; }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }

.nav-content.menu-open .nav-toggle span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav-content.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-content.menu-open .nav-toggle span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

.page-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-rotator {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(17, 14, 10, 0.08) 0%, rgba(17, 14, 10, 0.44) 55%, rgba(17, 14, 10, 0.7) 100%),
    linear-gradient(90deg, rgba(17, 14, 10, 0.74) 0%, rgba(17, 14, 10, 0.2) 50%, rgba(17, 14, 10, 0.56) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 180px 0 70px;
  color: #fff8ef;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-hero-content h1,
.tour-cta h2 {
  margin: 0;
  max-width: 11ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.page-hero-content p:last-of-type {
  max-width: 650px;
  line-height: 1.8;
  color: rgba(255, 248, 239, 0.82);
  margin: 24px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  margin-top: 30px;
  background: #fff3dd;
  color: var(--ink);
}

.btn-secondary {
  background: var(--ink);
  color: #fff8ef;
}

.btn-outline {
  border: 1px solid var(--line);
  background: rgba(255, 251, 243, 0.9);
  color: var(--ink);
}

.tour-search {
  padding: 44px 0 0;
}

.search-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 251, 243, 0.84);
  border: 1px solid rgba(23, 20, 17, 0.08);
  box-shadow: var(--shadow);
}

.search-copy h2,
.search-copy p,
.search-status,
.search-label {
  margin: 0;
}

.search-copy h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.search-copy p:last-child {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.search-input-wrap {
  display: grid;
  gap: 12px;
  align-content: center;
}

.search-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.tour-search-input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 20, 17, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
}

.tour-search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(180, 134, 63, 0.12);
}

.search-status {
  color: var(--muted);
  line-height: 1.7;
}

.tour-list {
  display: grid;
  gap: 28px;
  padding: 96px 0 70px;
}

.experience-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 251, 243, 0.82);
  border: 1px solid rgba(23, 20, 17, 0.08);
  box-shadow: var(--shadow);
}

.experience-card:nth-child(even) {
  grid-template-columns: 1.05fr 0.95fr;
}

.experience-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.experience-copy {
  padding: 34px;
  display: grid;
  gap: 18px;
}

.experience-tag {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

.experience-copy h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.experience-title-link {
  transition: color 0.25s ease;
}

.experience-title-link:hover {
  color: var(--accent);
}

.experience-copy p:not(.experience-tag) {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.highlight-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.experience-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.experience-meta span:first-child {
  font-weight: 800;
  color: var(--accent);
}

.tour-actions {
  display: none;
  justify-content: center;
  padding-bottom: 78px;
}

.experience-card.is-hidden-by-search,
.experience-card.is-collapsed {
  display: none !important;
}

.tour-cta {
  margin-bottom: 100px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(180, 134, 63, 0.18), rgba(255, 251, 243, 0.82));
  box-shadow: var(--shadow);
}

.tour-cta h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

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

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

@media (max-width: 860px) {
  #scroll-navbar {
    inset: 14px 14px auto;
  }

  .nav-content {
    width: calc(100vw - 28px);
    flex-wrap: wrap;
    border-radius: 24px;
    align-items: center;
    position: relative;
    min-height: 58px;
    padding: 10px 12px;
  }

  .nav-logo img {
    width: 82px;
  }

  .nav-brand-text {
    display: none;
  }

  .nav-brand-logo {
    display: block;
    width: 58px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: auto;
    display: grid;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 24px;
    background: rgba(255, 251, 243, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-content.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(23, 20, 17, 0.04);
  }

  .search-card {
    grid-template-columns: 1fr;
  }

  .experience-card,
  .experience-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .page-hero-content {
    padding-top: 150px;
  }

  .page-hero-content p:last-of-type {
    font-size: 0.98rem;
  }

  .experience-copy {
    padding: 24px;
  }

  .experience-image img {
    min-height: 240px;
  }

  .tour-list {
    gap: 18px;
    padding: 54px 0 28px;
  }

  .tour-actions {
    display: flex;
  }

  .tour-cta {
    margin-bottom: 48px;
  }
}

.breadcrumbs {
  width: var(--shell);
  margin: 100px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 248, 239, 0.78);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: inherit;
}

.faq-section {
  padding-bottom: 112px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 243, 0.92);
  box-shadow: var(--shadow);
}

.faq-card h3 {
  margin: 0 0 12px;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.faq-card p {
  margin: 0;
  color: rgba(23, 20, 17, 0.7);
  line-height: 1.8;
}

.tour-cta-copy {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.tour-cta-copy p {
  margin: 0;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
