/* Traveller-type pages, adapted from the ANZ Deals experience-card system. */
.exp-page #page { max-width: none; }

.exp-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 24px 64px;
}

.exp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 40, .15), rgba(7, 20, 40, .88));
}

.exp-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  text-shadow: var(--text-shadow-photo);
}

.exp-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #e6c069;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.exp-hero h1 {
  font-family: var(--site-font-display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1;
  margin-bottom: 18px;
}

.exp-hero p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .92);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.exp-hero-ctas,
.exp-cta-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.exp-hero .btn {
  text-shadow: none;
}

.exp-intro,
.exp-dest,
.exp-crosslinks {
  padding: clamp(72px, 10vh, 110px) 24px;
  background: var(--bg);
}

.exp-intro-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
}

.exp-intro-media {
  position: relative;
}

.exp-intro-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.exp-photo-credit {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(7, 20, 40, .72);
  color: rgba(255, 255, 255, .86);
  font-size: 10px;
}

.exp-intro-text p {
  margin: 16px 0;
  color: var(--fg-muted);
  font-size: .9375rem;
  line-height: 1.75;
}

.exp-intro-text .quote {
  margin-top: 0;
  color: var(--fg);
  font-family: var(--site-font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  line-height: 1.35;
}

.exp-who,
.exp-faq {
  padding: clamp(72px, 10vh, 110px) 24px;
  background: var(--bg-soft);
}

.exp-section-head {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
}

.exp-section-head .eyebrow { margin-bottom: 12px; }

.exp-section-head h2 {
  font-family: var(--site-font-display);
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  line-height: 1.05;
}

.exp-section-head p {
  margin-top: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.exp-who-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.exp-who-card {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card-bg);
  text-align: left;
  transition: transform .25s ease, border-color .25s ease;
}

.exp-who-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.exp-who-card-icon {
  display: block;
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.exp-who-card h3 {
  margin-bottom: 8px;
  color: var(--fg);
  font-family: var(--site-font-display);
  font-size: 1.2rem;
}

.exp-who-card p {
  color: var(--fg-muted);
  font-size: .8438rem;
  line-height: 1.6;
}

.exp-who-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.exp-dest-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exp-dest-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
}

.exp-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.exp-dest-card:hover img { transform: scale(1.06); }

.exp-dest-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, rgba(7, 20, 40, 0) 38%, rgba(7, 20, 40, .92) 100%);
  color: #fff;
}

.exp-dest-card-overlay h3 {
  margin-bottom: 8px;
  font-family: var(--site-font-display);
  font-size: 1.5rem;
}

.exp-dest-card-overlay p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .88);
  font-size: .8125rem;
  line-height: 1.55;
}

.exp-link {
  color: #e6c069;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.exp-cta {
  padding: clamp(72px, 10vh, 105px) 24px;
  background: #0f4d2f;
  color: #fff;
  text-align: center;
}

.exp-cta h2 {
  margin-bottom: 14px;
  font-family: var(--site-font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.exp-cta p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.65;
}

.exp-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.exp-faq-item {
  margin-bottom: 12px;
  padding: 4px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card-bg);
}

.exp-faq-item summary {
  position: relative;
  padding: 16px 34px 16px 0;
  color: var(--fg);
  cursor: pointer;
  font-size: .9375rem;
  font-weight: 700;
  list-style: none;
}

.exp-faq-item summary::-webkit-details-marker { display: none; }

.exp-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 0;
  color: var(--accent);
  font-size: 1.25rem;
}

.exp-faq-item[open] summary::after { content: "−"; }

.exp-faq-item p {
  margin: 0 0 18px;
  color: var(--fg-muted);
  font-size: .875rem;
  line-height: 1.65;
}

.exp-faq-item a {
  color: var(--accent);
  text-decoration: underline;
}

.exp-crosslinks {
  padding-top: 42px;
  padding-bottom: 82px;
  text-align: center;
}

.exp-crosslinks-inner { max-width: 1120px; margin: 0 auto; }

.exp-crosslinks-title {
  margin-bottom: 18px;
  color: var(--fg-muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.exp-crosslinks-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.exp-crosslinks-row a {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg);
  font-size: .8125rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.exp-crosslinks-row a:hover,
.exp-crosslinks-row a.is-current {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

@media (max-width: 900px) {
  .exp-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .exp-intro-media img { aspect-ratio: 16 / 9; }
  .exp-who-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-dest-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .exp-hero { min-height: 62vh; }
  .exp-who-grid { grid-template-columns: 1fr; }
}
