/* ==========================================================================
   CALIGOBI 2026 — info.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Anchor nav (shared shape with experience.css)
   -------------------------------------------------------------------------- */
.jump {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(240, 221, 162, 0.14);
  position: sticky;
  top: var(--header-h);
  z-index: 40;
}

.jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem clamp(1rem, 2.4vw, 2rem);
  padding-block: 1rem;
}

.jump-list a {
  font-family: var(--font-label);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(233, 219, 198, 0.72);
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.3s var(--ease);
}

.jump-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.jump-list a:hover { color: var(--accent); }
.jump-list a:hover::after { transform: scaleX(1); }

@media (max-width: 620px) {
  .jump { position: static; }
  .jump-list a { font-size: 0.8rem; letter-spacing: 0.12em; }
}

/* --------------------------------------------------------------------------
   Info blocks
   -------------------------------------------------------------------------- */
.info-block {
  display: grid;
  grid-template-columns: minmax(0, 22rem) 1fr;
  gap: clamp(1rem, 4vw, 3.5rem);
  padding-block: clamp(2rem, 4vw, 3.25rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 4.5rem);
}

.info-block:first-child { border-top: 0; padding-top: 0; }

.info-head { display: flex; align-items: baseline; gap: 1rem; }

.info-num {
  font-family: var(--font-label);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  flex: none;
}

.info-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.05;
  color: var(--heading);
}

.info-body p {
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* The sections carry real detail now rather than one-line summaries, so they
   need sub-headings and lists. ul/ol are reset to no margin, no padding and no
   marker in global.css, so all three are set back here. */
.info-sub {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--heading);
  margin: 1.7rem 0 0.7rem;
}
.info-body > :first-child { margin-top: 0; }

.info-list {
  margin: 0 0 1.1em;
  padding-left: 1.2rem;
}

.info-list li {
  position: relative;
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.info-list li + li { margin-top: 0.3rem; }

/* A small turned square, echoing the diamond marks on the ticket tiers. */
.info-list li::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: 0.68em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  opacity: 0.7;
  transform: rotate(45deg);
}

.info-list strong { color: var(--ink); font-weight: 600; }

/* Where to Stay — five numbered options, each a heading over a short note */
.stay-list {
  counter-reset: stay;
  margin: 1.5rem 0 0.5rem;
}

.stay-option {
  counter-increment: stay;
  position: relative;
  padding: 1.15rem 0 1.15rem 3.25rem;
  border-top: 1px solid var(--line);
}
.stay-option:last-child { border-bottom: 1px solid var(--line); }

/* Plain numbers in a ring. The sections themselves are numbered 01-09 in the
   same accent, and "01 Where to Stay" directly over "01 Stay in a ger" read as
   the same sequence. */
.stay-option::before {
  content: counter(stay);
  position: absolute;
  left: 0;
  top: 1.1rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  font-family: var(--font-label);
  font-size: 0.95rem;
  line-height: 1;
  color: var(--accent);
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.stay-name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.25;
  color: var(--heading);
}

.stay-option p { margin: 0; }

@media (max-width: 480px) {
  .stay-option { padding-left: 2.6rem; }
}

.location-note {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(244, 236, 224, 0.72);
  margin: 0 0 1.5rem;
}

.info-pending {
  font-family: var(--font-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem !important;
  color: var(--accent) !important;
  margin-bottom: 0 !important;
}

.info-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.info-body a:hover { color: var(--heading); }

@media (max-width: 760px) {
  .info-block { grid-template-columns: 1fr; gap: 1rem; }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq {
  border-bottom: 1px solid var(--line);
  padding-block: 0.9rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.03rem;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: color 0.25s var(--ease);
}

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

.faq summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-label);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.35s var(--ease);
  flex: none;
}

.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--heading); }

.faq p {
  margin: 0.85rem 0 0.4rem;
  padding-right: 2.5rem;
  font-size: 0.99rem;
}

/* --------------------------------------------------------------------------
   Location & map
   -------------------------------------------------------------------------- */
.location-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.location-address {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  color: var(--ink-invert);
  margin-bottom: 2rem;
}

.location-facts { margin: 0 0 0.5rem; }

.location-facts > div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding-block: 0.8rem;
  border-top: 1px solid rgba(240, 221, 162, 0.16);
}

.location-facts dt {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.location-facts dd {
  margin: 0;
  font-size: 0.99rem;
  color: rgba(244, 236, 224, 0.82);
}

.location-facts a {
  color: var(--accent);
  border-bottom: 1px solid rgba(240, 221, 162, 0.35);
  word-break: break-word;
}
.location-facts a:hover { color: var(--white); }

.location-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(240, 221, 162, 0.2);
  aspect-ratio: 4 / 3;
  background: var(--navy-900);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Warm the default map tiles towards the site's desert palette */
  filter: grayscale(0.35) sepia(0.28) saturate(0.9) contrast(1.05);
}

@media (max-width: 860px) {
  .location-inner { grid-template-columns: 1fr; }
  .location-map { aspect-ratio: 16 / 11; }
  .location-facts > div { grid-template-columns: 1fr; gap: 0.2rem; }
}
