.experience-page { background: var(--paper); }
.detail-section { width: var(--container); margin: 0 auto; padding: 130px 0; }

.detail-hero {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--olive);
}
.detail-hero__image, .detail-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.detail-hero__image { object-fit: cover; object-position: center; animation: hero-arrive 1.4s cubic-bezier(.2, .75, .3, 1) both; }
.detail-hero__shade { background: linear-gradient(90deg, rgba(24, 19, 10, .84), rgba(24, 19, 10, .36) 58%, rgba(24, 19, 10, .12)), linear-gradient(0deg, rgba(18, 14, 7, .72), transparent 55%); }
.detail-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--container);
  min-height: min(900px, 100svh);
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 140px 0 160px;
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 55px; color: rgba(255, 255, 255, .65); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.detail-hero h1 { max-width: 1040px; margin-bottom: 28px; font-size: clamp(4.5rem, 8vw, 8.6rem); letter-spacing: -.055em; text-wrap: balance; }
.detail-hero__summary { max-width: 700px; margin-bottom: 35px; font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.65; }
.detail-hero__actions { display: flex; align-items: center; gap: 28px; }
.detail-facts {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 0;
  display: grid;
  width: min(620px, calc(100% - 64px));
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  color: var(--ink);
  background: var(--cream);
}
.detail-facts div { padding: 22px 25px; border-right: 1px solid var(--border); }
.detail-facts div:last-child { border-right: 0; }
.detail-facts dt { color: var(--muted); font-size: .61rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.detail-facts dd { margin: 4px 0 0; font-family: var(--serif); font-size: 1.12rem; line-height: 1.25; }

.detail-overview { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); align-items: start; gap: 9%; }
.detail-overview__copy h2, .detail-heading h2, .detail-faq__heading h2 { font-size: clamp(3.3rem, 6vw, 6rem); }
.detail-overview__copy h2 em, .detail-heading h2 em, .detail-faq__heading h2 em { color: var(--terracotta); }
.detail-prose { max-width: 760px; color: #5d5242; font-size: 1.08rem; line-height: 1.85; }
.detail-prose p { margin-bottom: 25px; }
.booking-card { position: sticky; top: 105px; padding: 42px; border-top: 4px solid var(--terracotta); background: var(--cream); box-shadow: var(--shadow); }
.booking-card h2 { margin-bottom: 16px; font-size: 2.7rem; letter-spacing: -.035em; }
.booking-card > p:not(.eyebrow) { color: var(--muted); }
.booking-card .button { width: 100%; margin: 16px 0 22px; }
.booking-card__trust { display: flex; justify-content: space-between; gap: 8px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); color: var(--muted); font-size: .62rem; letter-spacing: .05em; text-transform: uppercase; }
.booking-card > a { display: block; margin-top: 20px; font-size: .73rem; text-align: center; text-underline-offset: 3px; }

.detail-highlights { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8%; padding-top: 70px; }
.detail-heading h2 { margin-bottom: 0; }
.highlight-list { display: grid; align-self: end; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.highlight-item { padding-top: 22px; border-top: 1px solid var(--border); }
.highlight-item span { color: var(--terracotta); font-family: var(--serif); }
.highlight-item h3 { margin: 35px 0 13px; font-size: 1.7rem; line-height: 1.12; }
.highlight-item p { margin: 0; color: var(--muted); font-size: .9rem; }

.detail-itinerary { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9%; padding: 125px max(32px, calc((100vw - 1240px) / 2)); color: var(--white); background: var(--olive); }
.detail-itinerary__heading h2 { color: var(--white); font-size: clamp(3.5rem, 6vw, 6.6rem); }
.detail-itinerary__heading h2 em { color: #f4dc9b; }
.itinerary-list { margin: 0; padding: 0; list-style: none; counter-reset: itinerary; }
.itinerary-item { position: relative; display: grid; grid-template-columns: 75px 1fr; gap: 15px; padding: 31px 0; border-top: 1px solid rgba(255, 255, 255, .18); counter-increment: itinerary; }
.itinerary-item::before { color: var(--gold); content: "0" counter(itinerary); font-family: var(--serif); font-size: 1.15rem; }
.itinerary-item h3 { margin: 0 0 10px; font-size: 2rem; }
.itinerary-item p { max-width: 600px; margin: 0; color: rgba(255, 255, 255, .68); }

.detail-gallery { display: grid; height: 760px; grid-template-columns: 1.1fr .9fr .9fr; grid-template-rows: repeat(2, 1fr); gap: 7px; padding: 7px; }
.detail-gallery figure { min-height: 0; margin: 0; overflow: hidden; background: var(--cream); }
.detail-gallery figure:first-child { grid-row: 1 / span 2; }
.detail-gallery figure:last-child { grid-column: 2 / span 2; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.detail-gallery figure:hover img { transform: scale(1.03); }

.detail-inclusions { padding-bottom: 110px; }
.detail-inclusions > .detail-heading { max-width: 780px; }
.inclusion-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 65px; }
.inclusion-card { padding: 45px; color: var(--white); background: var(--olive); }
.inclusion-card--quiet { color: var(--ink); background: var(--cream); }
.inclusion-card h3 { margin-bottom: 30px; font-size: 2.3rem; }
.inclusion-card ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.inclusion-card li { position: relative; padding: 15px 0 15px 29px; border-top: 1px solid rgba(255, 255, 255, .17); }
.inclusion-card--quiet li { border-color: var(--border); }
.inclusion-card li::before { position: absolute; top: 15px; left: 0; color: var(--gold); content: "✓"; }
.inclusion-card--quiet li::before { color: var(--terracotta-dark); content: "•"; }

.detail-faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 10%; padding-top: 90px; border-top: 1px solid var(--border); }
.faq-list { align-self: start; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; min-height: 80px; align-items: center; justify-content: space-between; gap: 25px; cursor: pointer; font-family: var(--serif); font-size: 1.45rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { display: grid; width: 32px; height: 32px; flex: 0 0 auto; place-items: center; border: 1px solid var(--border); border-radius: 50%; content: "+"; font-family: var(--sans); font-size: 1rem; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { max-width: 650px; padding: 0 55px 25px 0; color: var(--muted); }

.related { padding-top: 80px; }
.related .detail-heading h2 { font-size: clamp(3rem, 5vw, 5rem); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 55px; }
.related-card { position: relative; min-height: 400px; overflow: hidden; color: var(--white); background: var(--olive); text-decoration: none; }
.related-card img, .related-card::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.related-card img { object-fit: cover; transition: transform .6s ease; }
.related-card::after { background: linear-gradient(0deg, rgba(22, 17, 8, .86), transparent 65%); content: ""; }
.related-card:hover img { transform: scale(1.04); }
.related-card__content { position: absolute; z-index: 2; right: 25px; bottom: 24px; left: 25px; }
.related-card__content span { color: #f4dc9b; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.related-card h3 { margin: 9px 0 0; font-size: 1.75rem; }
.detail-final { padding-top: 125px; padding-bottom: 125px; }

.xola-bridge { position: fixed !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip-path: inset(50%) !important; opacity: 0 !important; pointer-events: none !important; }
@media (max-width: 1000px) {
  .detail-overview { grid-template-columns: 1fr .7fr; gap: 5%; }
  .booking-card { padding: 32px; }
  .detail-highlights { grid-template-columns: 1fr; gap: 55px; }
  .detail-itinerary { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 800px) {
  .detail-section { padding: 95px 0; }
  .detail-hero, .detail-hero__content { min-height: 820px; }
  .detail-hero__content { justify-content: flex-end; padding: 140px 0 180px; }
  .detail-hero__shade { background: linear-gradient(0deg, rgba(20, 15, 7, .88), rgba(20, 15, 7, .18) 80%); }
  .breadcrumb { margin-bottom: 28px; }
  .detail-hero h1 { font-size: clamp(4rem, 13vw, 6.4rem); }
  .detail-facts { right: 18px; left: 18px; width: auto; }
  .detail-overview { grid-template-columns: 1fr; gap: 60px; }
  .booking-card { position: static; }
  .highlight-list { grid-template-columns: repeat(3, 1fr); }
  .detail-itinerary { padding: 95px 18px; }
  .detail-gallery { height: 690px; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 1fr); }
  .detail-gallery figure:first-child { grid-row: 1 / span 2; }
  .detail-gallery figure:last-child { grid-column: 1 / span 2; }
  .detail-faq { grid-template-columns: 1fr; gap: 50px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .detail-hero, .detail-hero__content { min-height: 780px; }
  .detail-hero__content { padding: 120px 0 190px; }
  .detail-hero h1 { font-size: clamp(3.5rem, 16vw, 5rem); }
  .detail-hero__summary { font-size: 1rem; }
  .detail-hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .detail-facts { right: 0; left: 0; grid-template-columns: repeat(3, 1fr); }
  .detail-facts div { padding: 17px 12px; }
  .detail-facts dd { font-size: .88rem; }
  .detail-facts dt { font-size: .52rem; }
  .booking-card { padding: 30px 24px; }
  .highlight-list { grid-template-columns: 1fr; }
  .highlight-item h3 { margin-top: 20px; }
  .itinerary-item { grid-template-columns: 48px 1fr; }
  .detail-gallery { height: auto; grid-template-columns: 1fr; grid-template-rows: none; }
  .detail-gallery figure, .detail-gallery figure:first-child, .detail-gallery figure:last-child { height: 340px; grid-column: auto; grid-row: auto; }
  .detail-gallery figure:nth-child(3) { display: none; }
  .inclusion-columns { grid-template-columns: 1fr; }
  .inclusion-card { padding: 34px 25px; }
  .faq-item summary { min-height: 72px; font-size: 1.25rem; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { min-height: 390px; }
}
