/* Tour detail — FAQ accordion (also powers FAQPage rich results) */

.tour-faq__lead {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  margin: 0 0 1.75rem;
  max-width: 60ch;
}

.tour-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tour-faq__item {
  background: white;
  border: 1px solid rgba(24, 14, 10, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.tour-faq__item[open] {
  border-color: rgba(201, 150, 58, 0.4);
  box-shadow: 0 10px 32px rgba(24, 14, 10, 0.07);
}

.tour-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--forest);
  transition: color 0.2s;
}

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

.tour-faq__item summary:hover { color: var(--terracotta); }

.tour-faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201, 150, 58, 0.15);
  color: var(--terracotta);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.tour-faq__item[open] summary::after {
  content: '−';
  background: var(--terracotta);
  color: white;
}

.tour-faq__body {
  padding: 0 1.4rem 1.35rem;
}

.tour-faq__body p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.95;
  color: #4a4540;
  font-weight: 300;
  margin: 0;
  max-width: 66ch;
}

.tour-faq__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(24, 14, 10, 0.08);
}

.tour-faq__foot span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  color: #666;
  font-weight: 300;
}

.tour-faq__ask {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: color 0.2s;
}

.tour-faq__ask:hover { color: var(--gold); }

/* Related guides — internal linking block */
.tour-guides__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.tour-guides__card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: white;
  border: 1px solid rgba(24, 14, 10, 0.08);
  border-radius: 10px;
  padding: 1.25rem 1.2rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.tour-guides__card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 150, 58, 0.45);
  box-shadow: 0 14px 36px rgba(24, 14, 10, 0.09);
}

.tour-guides__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
}

.tour-guides__desc {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #666;
  font-weight: 300;
}

.tour-guides__cta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}

@media (max-width: 768px) {
  .tour-guides__grid {
    grid-template-columns: 1fr;
  }

  .tour-faq__item summary {
    font-size: 1.08rem;
    padding: 1rem 1.1rem;
  }

  .tour-faq__body {
    padding: 0 1.1rem 1.2rem;
  }
}
