/* =========================================
   GLOBAL BASE
   ========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif; /* reverted font */
  background-color: #fcfaf6;
  color: #1f1f1f;
}

/* =========================================
   HERO TYPOGRAPHY FIXES (cleaner spacing)
   ========================================= */

.hero__title {
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__description {
  max-width: 36rem;
  line-height: 1.75;
}

.hero__scenario {
  margin-top: 1.5rem;
  max-width: 34rem;
}

.hero__scenario-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6a6a6a;
}

.hero__scenario p {
  margin: 0;
  line-height: 1.7;
  color: #3f3f3f;
}

.hero__actions {
  margin-top: 1.75rem;
}

.hero__microcopy {
  margin-top: 0.75rem;
}


/* =========================================
   SECTION 1: TOP ANNOUNCEMENT BAR
   ========================================= */

.announcement-bar {
  background-color: #f3b233; /* warm golden yellow */
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
}

.announcement-bar__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
  padding: 0.75rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-bar__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1f1f1f;
  text-align: center;
}

.announcement-bar__link {
  color: #1f1f1f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  transition: opacity 0.2s ease;
}

.announcement-bar__link:hover,
.announcement-bar__link:focus-visible {
  opacity: 0.75;
}

.announcement-bar__link:focus-visible {
  outline: 2px solid #1f1f1f;
  outline-offset: 2px;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .announcement-bar__container {
    width: min(100% - 1.5rem, 1200px);
    padding: 0.7rem 0;
  }

  .announcement-bar__text {
    font-size: 0.9rem;
  }
}

/* =========================================
   SECTION 2A: NAVIGATION
   ========================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(252, 250, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 31, 31, 0.06);
}

.nav__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 90px;
  width: auto;
  display: block;
}

/* Links */

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3f3f3f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: #1f1f1f;
}

/* CTA Button */

.nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  background-color: #f3b233;
  color: #1f1f1f;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav__button:hover,
.nav__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 31, 31, 0.12);
}

.nav__button:focus-visible {
  outline: 2px solid #1f1f1f;
  outline-offset: 3px;
}

/* Responsive */

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__container {
    height: 64px;
  }
}

/* =========================================
   SECTION 2B: BANNER
   ========================================= */

.banner {
  position: relative;
  width: 100%;
  height: 820px; /* adjust as needed */
  overflow: hidden;
}

.banner__image {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-travel-image.jpg");
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
}

@media (min-width: 769px) {
  .banner__image {
    background-attachment: fixed;
  }
}


/* .banner__image {
  position: absolute;
  inset: 0;

  background-image: url("hero-travel-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

/* =========================================
   SECTION 2C: HERO
   ========================================= */


.hero {
  background:
    radial-gradient(circle at top left, rgba(243, 178, 51, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(188, 104, 55, 0.12), transparent 30%),
    #fcfaf6;
  padding: 5.5rem 0 5rem;
} 

.hero__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(188, 104, 55, 0.08);
  border: 1px solid rgba(188, 104, 55, 0.14);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1f1f1f;
}

.hero__description {
  margin: 0 0 2rem;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4d4d4d;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.5rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.hero__button--primary {
  background-color: #f3b233;
  color: #1f1f1f;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.08);
}

.hero__button--primary:hover,
.hero__button--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(31, 31, 31, 0.12);
}

.hero__button--secondary {
  background-color: rgba(255, 255, 255, 0.7);
  color: #1f1f1f;
  border: 1px solid rgba(31, 31, 31, 0.12);
  backdrop-filter: blur(8px);
}

.hero__button--secondary:hover,
.hero__button--secondary:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(31, 31, 31, 0.22);
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.08);
}

.hero__button:focus-visible {
  outline: 2px solid #1f1f1f;
  outline-offset: 3px;
}

.hero__microcopy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666666;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__visual-card {
  position: relative;
  width: 100%;
  max-width: 470px;
  min-height: 420px;
  padding: 2rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84));
  box-shadow:
    0 20px 50px rgba(31, 31, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.hero__visual-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -25% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(243, 178, 51, 0.28), transparent 68%);
  pointer-events: none;
}

.hero__visual-card::after {
  content: "";
  position: absolute;
  inset: -12% auto auto -8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(188, 104, 55, 0.18), transparent 70%);
  pointer-events: none;
}

.hero__visual-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(31, 31, 31, 0.08);
}

.hero__visual-badge--guide {
  top: 1.25rem;
  right: 1.25rem;
  background-color: #f3b233;
  color: #1f1f1f;
}

.hero__visual-badge--traveler {
  left: 1.25rem;
  bottom: 1.25rem;
  background-color: #bc6837;
  color: #ffffff;
}

.hero__visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.hero__visual-label {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f4d27;
}

.hero__visual-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}

.hero__visual-text {
  margin: 0;
  max-width: 24rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

@media (max-width: 960px) {
  .hero {
    padding: 4.75rem 0 4.5rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__visual {
    justify-content: flex-start;
  }

  .hero__visual-card {
    max-width: 100%;
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 4rem 0 3.75rem;
  }

  .hero__container {
    width: min(100% - 1.5rem, 1200px);
    gap: 2rem;
  }

  .hero__description {
    font-size: 1.05rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__button {
    width: 100%;
  }

  .hero__visual-card {
    min-height: 320px;
    padding: 1.5rem;
    border-radius: 22px;
  }

  .hero__visual-badge--guide {
    top: 1rem;
    right: 1rem;
  }

  .hero__visual-badge--traveler {
    left: 1rem;
    bottom: 1rem;
  }
}

/* =========================================
   SECTION 3: HOW IT WORKS
   ========================================= */

.how-it-works {
  padding: 5rem 0;
  background-color: #ffffff;
}

.how-it-works__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.how-it-works__header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.how-it-works__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(243, 178, 51, 0.12);
  border: 1px solid rgba(243, 178, 51, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.how-it-works__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}

.how-it-works__intro {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.75;
  color: #5a5a5a;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.how-it-works__card {
  padding: 2rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
  box-shadow: 0 14px 30px rgba(31, 31, 31, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.how-it-works__card:hover,
.how-it-works__card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(31, 31, 31, 0.12);
  box-shadow: 0 18px 36px rgba(31, 31, 31, 0.08);
}

.how-it-works__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background-color: #f3b233;
  color: #1f1f1f;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.how-it-works__card-title {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
}

.how-it-works__card-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #5a5a5a;
}

@media (max-width: 900px) {
  .how-it-works {
    padding: 4.5rem 0;
  }

  .how-it-works__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .how-it-works {
    padding: 4rem 0;
  }

  .how-it-works__container {
    width: min(100% - 1.5rem, 1200px);
  }

  .how-it-works__header {
    margin-bottom: 2.25rem;
    text-align: left;
  }

  .how-it-works__card {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .how-it-works__card-title {
    font-size: 1.25rem;
  }
}
/* =========================================
   SECTION 4: SPLIT AUDIENCE
   ========================================= */

.audience-split {
  padding: 5rem 0;
  background-color: #fcfaf6;
}

.audience-split__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.audience-split__header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.audience-split__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(188, 104, 55, 0.08);
  border: 1px solid rgba(188, 104, 55, 0.14);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.audience-split__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}

.audience-split__intro {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.75;
  color: #5a5a5a;
}

.audience-split__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
  box-shadow: 0 16px 34px rgba(31, 31, 31, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.audience-card:hover,
.audience-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(31, 31, 31, 0.12);
  box-shadow: 0 20px 40px rgba(31, 31, 31, 0.08);
}

.audience-card--traveler::before,
.audience-card--guide::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  border-radius: 24px 24px 0 0;
}

.audience-card--traveler::before {
  background: #f3b233;
}

.audience-card--guide::before {
  background: #bc6837;
}

.audience-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(243, 178, 51, 0.14);
  border: 1px solid rgba(243, 178, 51, 0.2);
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  color: #8f4d27;
}

.audience-card__badge--guide {
  background-color: rgba(188, 104, 55, 0.1);
  border-color: rgba(188, 104, 55, 0.16);
}

.audience-card__title {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1f1f1f;
}

.audience-card__description {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #5a5a5a;
}

.audience-card__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.audience-card__list-item {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3f3f3f;
}

.audience-card__list-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background-color: #f3b233;
}

.audience-card--guide .audience-card__list-item::before {
  background-color: #bc6837;
}

.audience-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 3.2rem;
  margin-top: auto;
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.audience-card__button--primary {
  background-color: #f3b233;
  color: #1f1f1f;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.08);
}

.audience-card__button--primary:hover,
.audience-card__button--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(31, 31, 31, 0.12);
}

.audience-card__button--secondary {
  background-color: #bc6837;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.08);
}

.audience-card__button--secondary:hover,
.audience-card__button--secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(31, 31, 31, 0.12);
}

.audience-card__button:focus-visible {
  outline: 2px solid #1f1f1f;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .audience-split {
    padding: 4.5rem 0;
  }

  .audience-split__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .audience-split {
    padding: 4rem 0;
  }

  .audience-split__container {
    width: min(100% - 1.5rem, 1200px);
  }

  .audience-split__header {
    margin-bottom: 2.25rem;
    text-align: left;
  }

  .audience-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .audience-card__title {
    font-size: 1.5rem;
  }

  .audience-card__button {
    width: 100%;
    align-self: stretch;
  }
}
/* =========================================
   SECTION 5: TRUST & SAFETY
   ========================================= */

.trust-safety {
  padding: 5rem 0;
  background-color: #ffffff;
}

.trust-safety__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.trust-safety__header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.trust-safety__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(243, 178, 51, 0.12);
  border: 1px solid rgba(243, 178, 51, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.trust-safety__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}

.trust-safety__intro {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.75;
  color: #5a5a5a;
}

.trust-safety__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-safety__card {
  padding: 1.75rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
  box-shadow: 0 14px 30px rgba(31, 31, 31, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.trust-safety__card:hover,
.trust-safety__card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(31, 31, 31, 0.12);
  box-shadow: 0 18px 36px rgba(31, 31, 31, 0.08);
}

.trust-safety__card--highlight {
  background:
    radial-gradient(circle at top right, rgba(243, 178, 51, 0.14), transparent 36%),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.trust-safety__highlight-label {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f4d27;
}

.trust-safety__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.15rem;
  border-radius: 14px;
  background-color: rgba(243, 178, 51, 0.16);
  border: 1px solid rgba(243, 178, 51, 0.2);
}

.trust-safety__icon--orange {
  background-color: rgba(188, 104, 55, 0.12);
  border-color: rgba(188, 104, 55, 0.18);
}

.trust-safety__icon-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #1f1f1f;
}

.trust-safety__card-title {
  margin: 0 0 0.85rem;
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 700;
  color: #1f1f1f;
}

.trust-safety__card-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #5a5a5a;
}

@media (max-width: 960px) {
  .trust-safety {
    padding: 4.5rem 0;
  }

  .trust-safety__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-safety {
    padding: 4rem 0;
  }

  .trust-safety__container {
    width: min(100% - 1.5rem, 1200px);
  }

  .trust-safety__header {
    margin-bottom: 2.25rem;
    text-align: left;
  }

  .trust-safety__grid {
    grid-template-columns: 1fr;
  }

  .trust-safety__card {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .trust-safety__card-title {
    font-size: 1.2rem;
  }
}
/* =========================================
   SECTION 6: TRAVELER VALUE
   ========================================= */

.traveler-value {
  padding: 5rem 0;
  background-color: #fcfaf6;
}

.traveler-value__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.traveler-value__content {
  max-width: 640px;
}

.traveler-value__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(243, 178, 51, 0.12);
  border: 1px solid rgba(243, 178, 51, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.traveler-value__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}

.traveler-value__description {
  margin: 0 0 2rem;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #5a5a5a;
}

.traveler-value__highlights {
  display: grid;
  gap: 1.25rem;
}

.traveler-value__highlight {
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.72);
}

.traveler-value__highlight-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 700;
  color: #1f1f1f;
}

.traveler-value__highlight-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #5a5a5a;
}

.traveler-value__visual {
  display: flex;
  justify-content: center;
}

.traveler-value__visual-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 2rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(243, 178, 51, 0.16), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.06);
}

.traveler-value__quote-mark {
  margin-bottom: 0.75rem;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: #bc6837;
}

.traveler-value__visual-text {
  margin: 0 0 1.5rem;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #3f3f3f;
}

.traveler-value__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.traveler-value__list-item {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3f3f3f;
}

.traveler-value__list-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background-color: #f3b233;
}

@media (max-width: 960px) {
  .traveler-value {
    padding: 4.5rem 0;
  }

  .traveler-value__container {
    grid-template-columns: 1fr;
  }

  .traveler-value__content {
    max-width: 100%;
  }

  .traveler-value__visual {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .traveler-value {
    padding: 4rem 0;
  }

  .traveler-value__container {
    width: min(100% - 1.5rem, 1200px);
    gap: 1.5rem;
  }

  .traveler-value__highlight {
    padding: 1.2rem 1.2rem;
    border-radius: 16px;
  }

  .traveler-value__visual-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .traveler-value__visual-text {
    font-size: 1.02rem;
  }
}
/* =========================================
   SECTION 7: GUIDE VALUE
   ========================================= */

.guide-value {
  padding: 5rem 0;
  background-color: #ffffff;
}

.guide-value__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.guide-value__visual {
  display: flex;
  justify-content: flex-start;
}

.guide-value__visual-card {
  width: 100%;
  max-width: 460px;
  padding: 2rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(188, 104, 55, 0.14), transparent 34%),
    linear-gradient(180deg, #fff8f4 0%, #ffffff 100%);
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.06);
}

.guide-value__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(188, 104, 55, 0.1);
  border: 1px solid rgba(188, 104, 55, 0.16);
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  color: #8f4d27;
}

.guide-value__visual-title {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1f1f1f;
}

.guide-value__visual-text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #4f4f4f;
}

.guide-value__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.guide-value__list-item {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #3f3f3f;
}

.guide-value__list-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background-color: #bc6837;
}

.guide-value__content {
  max-width: 640px;
}

.guide-value__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(188, 104, 55, 0.08);
  border: 1px solid rgba(188, 104, 55, 0.14);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.guide-value__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}

.guide-value__description {
  margin: 0 0 2rem;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #5a5a5a;
}

.guide-value__highlights {
  display: grid;
  gap: 1.25rem;
}

.guide-value__highlight {
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 18px;
  background-color: #fcfaf6;
}

.guide-value__highlight-title {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 700;
  color: #1f1f1f;
}

.guide-value__highlight-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #5a5a5a;
}

@media (max-width: 960px) {
  .guide-value {
    padding: 4.5rem 0;
  }

  .guide-value__container {
    grid-template-columns: 1fr;
  }

  .guide-value__visual {
    order: 2;
  }

  .guide-value__content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .guide-value {
    padding: 4rem 0;
  }

  .guide-value__container {
    width: min(100% - 1.5rem, 1200px);
    gap: 1.5rem;
  }

  .guide-value__visual-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .guide-value__highlight {
    padding: 1.2rem;
    border-radius: 16px;
  }

  .guide-value__visual-title {
    font-size: 1.45rem;
  }
}
/* =========================================
   SECTION 8: WAITLIST
   ========================================= */

.waitlist {
  padding: 5rem 0;
  background-color: #fcfaf6;
}

.waitlist__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.waitlist__header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.waitlist__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(243, 178, 51, 0.12);
  border: 1px solid rgba(243, 178, 51, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.waitlist__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}

.waitlist__intro {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #5a5a5a;
}

.waitlist__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.waitlist-card {
  padding: 2rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
  box-shadow: 0 16px 34px rgba(31, 31, 31, 0.05);
}

.waitlist-card--traveler {
  border-top: 5px solid #f3b233;
}

.waitlist-card--guide {
  border-top: 5px solid #bc6837;
}

.waitlist-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(243, 178, 51, 0.14);
  border: 1px solid rgba(243, 178, 51, 0.2);
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  color: #8f4d27;
}

.waitlist-card__badge--guide {
  background-color: rgba(188, 104, 55, 0.1);
  border-color: rgba(188, 104, 55, 0.16);
}

.waitlist-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1f1f1f;
}

.waitlist-card__description {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #5a5a5a;
}

.waitlist-form {
  display: grid;
  gap: 1rem;
}

.waitlist-form__group {
  display: grid;
  gap: 0.5rem;
}

.waitlist-form__label {
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
  color: #2f2f2f;
}

.waitlist-form__input,
.waitlist-form__textarea,
.waitlist-form__select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(31, 31, 31, 0.12);
  border-radius: 14px;
  background-color: #ffffff;
  font: inherit;
  color: #1f1f1f;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.waitlist-form__input::placeholder,
.waitlist-form__textarea::placeholder {
  color: #8a8a8a;
}

.waitlist-form__textarea {
  resize: vertical;
  min-height: 110px;
}

.waitlist-form__input:focus,
.waitlist-form__textarea:focus,
.waitlist-form__select:focus {
  outline: none;
  border-color: rgba(31, 31, 31, 0.24);
  box-shadow: 0 0 0 4px rgba(243, 178, 51, 0.14);
}

.waitlist-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  margin-top: 0.5rem;
  padding: 0.95rem 1.4rem;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.waitlist-form__button--traveler {
  background-color: #f3b233;
  color: #1f1f1f;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.08);
}

.waitlist-form__button--guide {
  background-color: #bc6837;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.08);
}

.waitlist-form__button:hover,
.waitlist-form__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(31, 31, 31, 0.12);
}

.waitlist-form__button:focus-visible {
  outline: 2px solid #1f1f1f;
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .waitlist {
    padding: 4.5rem 0;
  }

  .waitlist__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .waitlist {
    padding: 4rem 0;
  }

  .waitlist__container {
    width: min(100% - 1.5rem, 1200px);
  }

  .waitlist__header {
    margin-bottom: 2.25rem;
    text-align: left;
  }

  .waitlist-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .waitlist-card__title {
    font-size: 1.45rem;
  }

  .waitlist-form__button {
    width: 100%;
  }
}
/* =========================================
   SECTION 10: FAQ
   ========================================= */

.faq {
  padding: 5rem 0;
  background-color: #fcfaf6;
}

.faq__container {
  width: min(100% - 2rem, 960px);
  margin: 0 auto;
}

.faq__header {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(243, 178, 51, 0.12);
  border: 1px solid rgba(243, 178, 51, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.faq__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f1f1f;
}

.faq__intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5a5a5a;
}

.faq__list {
  display: grid;
  gap: 1rem;
}

.faq__item {
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
  box-shadow: 0 12px 28px rgba(31, 31, 31, 0.04);
  overflow: hidden;
}

.faq__item[open] {
  border-color: rgba(31, 31, 31, 0.12);
  box-shadow: 0 16px 32px rgba(31, 31, 31, 0.06);
}

.faq__question {
  position: relative;
  padding: 1.25rem 3.5rem 1.25rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 700;
  color: #1f1f1f;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  color: #8f4d27;
}

.faq__item[open] .faq__question::after {
  content: "–";
}

.faq__answer {
  padding: 0 1.25rem 1.25rem;
}

.faq__answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #5a5a5a;
}

@media (max-width: 640px) {
  .faq {
    padding: 4rem 0;
  }

  .faq__container {
    width: min(100% - 1.5rem, 960px);
  }

  .faq__header {
    margin-bottom: 2.25rem;
    text-align: left;
  }

  .faq__question {
    padding: 1.1rem 3rem 1.1rem 1rem;
    font-size: 1rem;
  }

  .faq__question::after {
    right: 1rem;
  }

  .faq__answer {
    padding: 0 1rem 1.1rem;
  }
}

/* =========================================
   SECTION 11: FINAL CTA
   ========================================= */

.final-cta {
  padding: 5rem 0;
  background:
    radial-gradient(circle at top left, rgba(243, 178, 51, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(188, 104, 55, 0.12), transparent 28%),
    #ffffff;
}

.final-cta__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.final-cta__content {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(253, 250, 245, 0.92));
  box-shadow: 0 18px 42px rgba(31, 31, 31, 0.06);
  text-align: center;
}

.final-cta__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(243, 178, 51, 0.12);
  border: 1px solid rgba(243, 178, 51, 0.18);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.final-cta__title {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1f1f1f;
}

.final-cta__description {
  max-width: 42rem;
  margin: 0 auto 2rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #555555;
}

.final-cta__microcopy {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666666;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.5rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.final-cta__button--primary {
  background-color: #f3b233;
  color: #1f1f1f;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.08);
}

.final-cta__button--primary:hover,
.final-cta__button--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(31, 31, 31, 0.12);
}

.final-cta__button--secondary {
  background-color: #bc6837;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(31, 31, 31, 0.08);
}

.final-cta__button--secondary:hover,
.final-cta__button--secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(31, 31, 31, 0.12);
}

.final-cta__button:focus-visible {
  outline: 2px solid #1f1f1f;
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .final-cta {
    padding: 4rem 0;
  }

  .final-cta__container {
    width: min(100% - 1.5rem, 1200px);
  }

  .final-cta__content {
    padding: 2rem 1.25rem;
    border-radius: 22px;
    text-align: left;
  }

  .final-cta__description {
    margin: 0 0 1.5rem;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__button {
    width: 100%;
  }
}
/* =========================================
   SECTION 12: FOOTER
   ========================================= */

.site-footer {
  padding: 3.5rem 0 2rem;
  background-color: #1f1f1f;
  color: #f5f1e8;
}

.site-footer__container {
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand {
  max-width: 28rem;
}

.site-footer__logo {
  margin: 0 0 0.85rem;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.site-footer__mission {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: rgba(245, 241, 232, 0.82);
}

.site-footer__nav,
.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.site-footer__label {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3b233;
}

.site-footer__link {
  color: rgba(245, 241, 232, 0.86);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.site-footer__link:focus-visible {
  outline: 2px solid #f3b233;
  outline-offset: 3px;
  border-radius: 4px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.68);
}

.site-footer__legal {
  flex-direction: row;
  gap: 1.25rem;
}

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

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 3rem 0 1.75rem;
  }

  .site-footer__container {
    width: min(100% - 1.5rem, 1200px);
  }

  .site-footer__top {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .site-footer__bottom {
    padding-top: 1.25rem;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    gap: 0.9rem 1.25rem;
  }
}

/* =========================================
   THANK YOU PAGE
   ========================================= */

.thank-you-hero {
  position: relative;
  min-height: calc(100vh - 53px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  background-image: url("images/hero-travel-image.jpg");
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
}

.thank-you-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(252, 250, 246, 0.42) 0%,
      rgba(252, 250, 246, 0.68) 45%,
      rgba(252, 250, 246, 0.82) 100%
    );
}

.thank-you-hero__container {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.thank-you-card {
  width: 100%;
  max-width: 760px;
  padding: 2.5rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
  box-shadow:
    0 20px 50px rgba(31, 31, 31, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.thank-you-card__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(243, 178, 51, 0.14);
  border: 1px solid rgba(243, 178, 51, 0.20);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.thank-you-card__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1f1f1f;
}

.thank-you-card__description {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #4d4d4d;
}

.thank-you-card__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.thank-you-card__highlight {
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 18px;
  background-color: rgba(252, 250, 246, 0.82);
}

.thank-you-card__highlight-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  line-height: 1.25;
  font-weight: 700;
  color: #1f1f1f;
}

.thank-you-card__highlight-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #5a5a5a;
}

.thank-you-card__actions {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .thank-you-hero {
    padding: 3rem 0;
    background-position: center 22%;
  }

  .thank-you-hero__container {
    width: min(100% - 1.5rem, 1200px);
  }

  .thank-you-card {
    padding: 1.75rem;
    border-radius: 22px;
  }

  .thank-you-card__highlights {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   LEGAL PAGES
   ========================================= */

.legal-hero {
  position: relative;
  min-height: calc(100vh - 53px);
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("images/hero-travel-image.jpg");
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
}

.legal-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(252, 250, 246, 0.45) 0%,
      rgba(252, 250, 246, 0.7) 45%,
      rgba(252, 250, 246, 0.88) 100%
    );
}

.legal-hero__container {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1000px);
  margin: 0 auto;
}

.legal-card,
.legal-page__container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.90));
  box-shadow:
    0 20px 50px rgba(31, 31, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.legal-card__eyebrow,
.legal-page__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  background-color: rgba(243, 178, 51, 0.14);
  border: 1px solid rgba(243, 178, 51, 0.20);
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #8f4d27;
}

.legal-card__title,
.legal-page__title {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1f1f1f;
}

.legal-card__intro,
.legal-page__intro {
  margin: 0 0 0.75rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #4d4d4d;
}

.legal-card__updated,
.legal-page__updated {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666666;
}

.legal-card__content,
.legal-page__content {
  display: grid;
  gap: 1.75rem;
}

.legal-card__section,
.legal-page__section {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 31, 31, 0.08);
}

.legal-card__section:first-child,
.legal-page__section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-card__section-title,
.legal-page__section-title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1f1f1f;
}

.legal-card__section p,
.legal-page__section p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #5a5a5a;
}

.legal-page__list {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: #5a5a5a;
}

.legal-page__list li {
  margin-bottom: 0.65rem;
  line-height: 1.7;
}

.legal-card__actions {
  margin-top: 2rem;
}

.legal-card a,
.legal-page__container a {
  color: #8f4d27;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.legal-card a:hover,
.legal-card a:focus-visible,
.legal-page__container a:hover,
.legal-page__container a:focus-visible {
  opacity: 0.8;
}

.legal-page {
  padding: 4rem 0;
  background:
    radial-gradient(circle at top left, rgba(243, 178, 51, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(188, 104, 55, 0.12), transparent 30%),
    #fcfaf6;
}

@media (max-width: 640px) {
  .legal-hero,
  .legal-page {
    padding: 3rem 0;
  }

  .legal-hero__container,
  .legal-page__container {
    width: min(100% - 1.5rem, 1000px);
  }

  .legal-card,
  .legal-page__container {
    padding: 1.75rem;
    border-radius: 22px;
  }

  .legal-card__section-title,
  .legal-page__section-title {
    font-size: 1.15rem;
  }

  .legal-card__intro,
  .legal-page__intro {
    font-size: 1rem;
  }
}










/* =========================================
   CONVERSION REBUILD OVERRIDES
   ========================================= */

h1, h2, h3,
.hero__title,
.hero__visual-title,
.how-it-works__title,
.audience-split__title,
.trust-safety__title,
.traveler-value__title,
.guide-value__title,
.waitlist__title,
.faq__title,
.final-cta__title,
.site-footer__logo {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
}

.nav__logo img {
  height: 86px;
}

.hero {
  padding: 6.25rem 0 5.75rem;
}

.hero__container {
  grid-template-columns: 1fr 0.95fr;
  gap: 3.5rem;
}

.hero__title {
  max-width: 11ch;
  font-weight: 800;
}

.hero__description {
  max-width: 44rem;
  margin-bottom: 1.25rem;
  font-size: 1.16rem;
  color: #3f3f3f;
}

.hero__scenario {
  max-width: 44rem;
  margin: 0 0 2rem;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--color-gold);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(31, 31, 31, 0.05);
}

.hero__scenario p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #3f3f3f;
}

.hero__visual-card {
  max-width: 500px;
  min-height: 460px;
  padding: 2.4rem;
  border-radius: 34px;
  border-color: rgba(31, 31, 31, 0.1);
  box-shadow:
    0 28px 70px rgba(31, 31, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hero__visual-title {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
}

.hero__button,
.nav__button,
.audience-card__button,
.waitlist-form__button,
.final-cta__button {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero__button--primary,
.nav__button,
.audience-card__button--primary,
.waitlist-form__button--traveler,
.final-cta__button--primary {
  box-shadow: 0 14px 28px rgba(243, 178, 51, 0.28), 0 10px 24px rgba(31, 31, 31, 0.08);
}

.pulse-cta {
  animation: travilrPulse 2.8s ease-in-out infinite;
}

@keyframes travilrPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 14px 28px rgba(243, 178, 51, 0.24), 0 10px 24px rgba(31, 31, 31, 0.08); }
  50% { transform: translateY(-1px); box-shadow: 0 18px 34px rgba(243, 178, 51, 0.36), 0 14px 30px rgba(31, 31, 31, 0.1); }
}

.reveal {
  animation: travilrFadeUp 0.7s ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 24%;
}

@keyframes travilrFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.waitlist-card {
  box-shadow: 0 22px 48px rgba(31, 31, 31, 0.07);
}

.waitlist-card__description {
  margin-bottom: 1.35rem;
}

.waitlist-form {
  gap: 0.95rem;
}

.waitlist-form__optional {
  font-weight: 500;
  color: #777777;
}

.waitlist-form__input {
  min-height: 3.2rem;
}

.traveler-value__highlight-title,
.guide-value__highlight-title,
.audience-card__title,
.waitlist-card__title,
.faq__question,
.trust-safety__card-title,
.how-it-works__card-title {
  letter-spacing: -0.025em;
}

.final-cta__content {
  box-shadow: 0 26px 60px rgba(31, 31, 31, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@supports not (animation-timeline: view()) {
  .reveal {
    animation: none;
  }
}

@media (max-width: 960px) {
  .hero {
    padding: 4.75rem 0 4.5rem;
  }

  .hero__title {
    max-width: 100%;
  }

  .hero__visual-card {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .nav__logo img {
    height: 74px;
  }

  .hero__scenario {
    padding: 1rem;
    border-radius: 0 16px 16px 0;
  }

  .pulse-cta {
    animation: none;
  }
}

/* =========================================
   HERO COPY POLISH OVERRIDES
   ========================================= */

.hero__content {
  max-width: 690px;
}

.hero__description {
  max-width: 42rem;
  margin-bottom: 1.35rem;
  font-size: clamp(1.08rem, 1.2vw, 1.18rem);
  line-height: 1.68;
  font-weight: 500;
  color: #3f3f3f;
  text-wrap: pretty;
}

.hero__scenario {
  position: relative;
  max-width: 40rem;
  margin: 0 0 1.8rem;
  padding: 1.15rem 1.25rem 1.2rem;
  border: 1px solid rgba(188, 104, 55, 0.14);
  border-left: 5px solid var(--color-terracotta);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 240, 0.84));
  box-shadow: 0 14px 32px rgba(31, 31, 31, 0.055);
}

.hero__scenario-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a4f25;
}

.hero__scenario p {
  margin: 0;
  font-size: clamp(0.98rem, 1vw, 1.04rem);
  line-height: 1.62;
  font-weight: 500;
  color: #2f2f2f;
  text-wrap: pretty;
}

@media (max-width: 640px) {
  .hero__description {
    line-height: 1.62;
  }

  .hero__scenario {
    max-width: 100%;
    margin-bottom: 1.55rem;
    padding: 1rem 1rem 1.05rem;
    border-radius: 16px;
  }

  .hero__scenario p {
    line-height: 1.58;
  }
}

/* =========================================
   HERO READABILITY REFINEMENT
   ========================================= */

.hero {
  padding: 5.75rem 0 5.25rem;
}

.hero__container {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  gap: clamp(4rem, 7vw, 7rem);
  align-items: center;
}

.hero__content {
  max-width: 720px;
}

.hero__eyebrow {
  margin-bottom: 1.4rem;
}

.hero__title {
  max-width: 690px;
  margin-bottom: 1.55rem;
  font-family: var(--font-body);
  font-size: clamp(3.5rem, 5.2vw, 5.35rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.hero__description {
  max-width: 660px;
  margin-bottom: 2.15rem;
  font-size: clamp(1.08rem, 1.25vw, 1.23rem);
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: #484848;
}

.hero__scenario {
  position: relative;
  max-width: 640px;
  margin: 0 0 1.65rem;
  padding: 1.15rem 1.35rem 1.25rem 1.45rem;
  border-left: 4px solid rgba(188, 104, 55, 0.72);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(31, 31, 31, 0.045);
}

.hero__scenario-label {
  display: block;
  margin-bottom: 0.62rem;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  color: #8f4d27;
}

.hero__scenario p {
  margin: 0;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -0.008em;
  color: #2f2f2f;
}

.hero__actions {
  margin-top: 0.15rem;
  margin-bottom: 1.05rem;
}

.hero__button {
  min-height: 3.55rem;
  padding: 1rem 1.75rem;
  font-size: 1.03rem;
}

.hero__microcopy {
  font-size: 0.98rem;
  font-weight: 500;
}

.hero__visual-card {
  max-width: 450px;
}

@media (max-width: 1080px) {
  .hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 3rem;
  }

  .hero__title {
    font-size: clamp(3.1rem, 5.2vw, 4.8rem);
  }
}

@media (max-width: 960px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .hero__content,
  .hero__title,
  .hero__description,
  .hero__scenario {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3.75rem 0 3.5rem;
  }

  .hero__title {
    font-size: clamp(2.65rem, 13vw, 3.75rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
  }

  .hero__description {
    margin-bottom: 1.6rem;
    font-size: 1.04rem;
    line-height: 1.7;
  }

  .hero__scenario {
    margin-bottom: 1.45rem;
    padding: 1rem 1rem 1.05rem 1.15rem;
    border-radius: 0 16px 16px 0;
  }

  .hero__scenario p {
    font-size: 1rem;
    line-height: 1.62;
  }
}
