.landing-page {
  background: #faf9f7;
}

.landing-page .pix-header {
  background: transparent !important;
}

.lp-shell {
  padding: 112px 24px 76px;
  background: #faf9f7;
}

.lp-hero,
.lp-section {
  max-width: 1180px;
  margin: 0 auto;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .78fr);
  gap: 56px;
  align-items: center;
  min-height: 620px;
  padding: 34px 0 74px;
}

.lp-crumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: #5c0612;
  font-weight: 700;
  font-size: 13px;
}

.lp-eyebrow,
.lp-kicker {
  margin: 0 0 13px;
  color: #5c0612;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lp-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #16191f;
  font-family: var(--pix-heading-font);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.02;
}

.lp-deck {
  max-width: 660px;
  margin: 24px 0 0;
  color: #5b5650;
  font-size: 18px;
  line-height: 1.68;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--pix-heading-font);
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.lp-btn-primary {
  background: #5c0612;
  color: #fff;
  box-shadow: 0 18px 38px -24px rgba(92, 6, 18, .72);
}

.lp-btn-primary:hover {
  background: #420410;
  color: #fff;
}

.lp-btn-secondary {
  background: #fff;
  color: #5c0612;
  border: 1px solid rgba(92, 6, 18, .16);
}

.lp-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.lp-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(20, 24, 31, .09);
  border-radius: 999px;
  background: #fff;
  color: #5b5650;
  font-size: 13px;
  font-weight: 700;
}

.lp-hero-media {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background: #1c1514;
  box-shadow: 0 34px 68px -36px rgba(16, 24, 40, .48);
}

.lp-hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 12, 14, .32), rgba(20, 12, 14, 0) 52%);
  pointer-events: none;
}

.lp-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.lp-section {
  padding: 74px 0;
  border-top: 1px solid rgba(20, 24, 31, .08);
}

.lp-section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.lp-section h2 {
  margin: 0;
  color: #16191f;
  font-family: var(--pix-heading-font);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
}

.lp-copy {
  max-width: 850px;
  display: grid;
  gap: 18px;
}

.lp-copy p,
.lp-detail-card p,
.lp-split-panel p,
.lp-faq-panel p {
  margin: 0;
  color: #5b5650;
  font-size: 16px;
  line-height: 1.72;
}

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

.lp-tour-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 31, .09);
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 18px 44px -34px rgba(16, 24, 40, .42);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.lp-tour-card:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 6, 18, .24);
  box-shadow: 0 28px 58px -36px rgba(16, 24, 40, .58);
}

.lp-tour-card.is-featured {
  border-color: rgba(92, 6, 18, .28);
}

.lp-tour-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  display: block;
}

.lp-tour-kicker,
.lp-card-link {
  color: #5c0612;
  font-size: 12.5px;
  font-weight: 800;
}

.lp-tour-kicker {
  margin: 19px 20px 0;
}

.lp-tour-card h3 {
  margin: 8px 20px 10px;
  color: #16191f;
  font-family: var(--pix-heading-font);
  font-size: 20px;
  line-height: 1.22;
}

.lp-tour-card p {
  margin: 0 20px 18px;
  color: #5b5650;
  font-size: 14.5px;
  line-height: 1.62;
  flex: 1;
}

.lp-card-link {
  margin: auto 20px 22px;
}

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

.lp-detail-card {
  background: #fff;
  border: 1px solid rgba(20, 24, 31, .09);
  border-radius: 18px;
  padding: 26px;
}

.lp-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f6e7ea;
  color: #5c0612;
  font-weight: 900;
}

.lp-detail-card h2 {
  font-size: 23px;
  margin-bottom: 13px;
}

.lp-detail-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 19px;
  color: #3d3530;
  font-size: 14.5px;
  line-height: 1.55;
}

.lp-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 24px;
  align-items: start;
}

.lp-split-panel {
  background: #fff;
  border: 1px solid rgba(20, 24, 31, .09);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 46px -34px rgba(16, 24, 40, .42);
}

.lp-split-panel .lp-section-head {
  margin-bottom: 22px;
}

.lp-faq-list {
  display: grid;
  gap: 11px;
}

.lp-faq-panel details {
  background: #faf9f7;
  border: 1px solid rgba(20, 24, 31, .09);
  border-radius: 14px;
  padding: 0;
  transition: border-color .2s ease, background .2s ease;
}

.lp-faq-panel details[open] {
  background: #fdf6f7;
  border-color: rgba(92, 6, 18, .24);
}

.lp-faq-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  color: #16191f;
  font-family: var(--pix-heading-font);
  font-size: 16px;
  font-weight: 800;
}

.lp-faq-panel summary::-webkit-details-marker {
  display: none;
}

.lp-faq-panel details p {
  padding: 0 20px 20px;
  font-size: 14.5px;
  line-height: 1.68;
}

.lp-related-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.lp-related-links a {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(20, 24, 31, .09);
  background: #faf9f7;
  color: #16191f;
  font-family: var(--pix-heading-font);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.lp-related-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 6, 18, .24);
  background: #fdf6f7;
}

.lp-related-links span {
  color: #5c0612;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

@media (max-width: 960px) {
  .lp-shell {
    padding: 92px 18px 58px;
  }

  .lp-hero,
  .lp-split {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    min-height: 0;
    gap: 34px;
    padding-bottom: 56px;
  }

  .lp-hero-media,
  .lp-hero-media img {
    min-height: 360px;
  }

  .lp-tour-grid,
  .lp-detail-grid {
    grid-template-columns: 1fr;
  }

  .lp-related-panel {
    order: 2;
  }

  .lp-faq-panel {
    order: 1;
  }
}

@media (max-width: 620px) {
  .lp-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lp-hero h1 {
    font-size: 38px;
  }

  .lp-deck {
    font-size: 16.5px;
  }

  .lp-actions,
  .lp-btn {
    width: 100%;
  }

  .lp-section {
    padding: 54px 0;
  }

  .lp-split-panel {
    padding: 22px;
  }
}
