/*
  location.css — styles for /location/{city}/ pages only.
  Uses KCC's existing brand tokens (navy #2b318c, magenta #ec008c,
  teal #0d9488, Sora + Lora). Written with literal hex values rather than
  var(--navy) etc. in case your global stylesheet defines those custom
  properties under different names — if it already has tokens for these
  colors, swap the hex values below for your existing var() references
  instead of keeping two parallel color systems.
*/

.location-page .breadcrumb {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  padding: 1.25rem 1.5rem 0;
  max-width: 780px;
  margin: 0 auto;
}

.location-page .breadcrumb a {
  color: #2b318c;
  text-decoration: none;
}

.location-page .breadcrumb a:hover {
  text-decoration: underline;
}

.location-page .hero {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2.5rem;
}

.location-page .eyebrow {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0d9488;
  margin: 0 0 0.5rem;
}

.location-page .hero h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: #2b318c;
  margin: 0 0 1rem;
}

.location-page .lede {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
  max-width: 60ch;
  margin: 0 0 1.5rem;
}

.location-page section {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.location-page section h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2b318c;
  margin: 0 0 1.25rem;
}

.location-page section p,
.location-page section li {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #374151;
}

.location-page ul,
.location-page ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.location-page li {
  margin-bottom: 0.5rem;
}

.location-page .travel-option {
  border-left: 3px solid #0d9488;
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin-bottom: 1.5rem;
}

.location-page .travel-option h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #2b318c;
  margin: 0 0 0.4rem;
}

.location-page .note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 1rem;
}

/* FAQ */

.location-page .faq details {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
}

.location-page .faq summary {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #2b318c;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

.location-page .faq summary::-webkit-details-marker {
  display: none;
}

.location-page .faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: #ec008c;
  font-weight: 700;
  font-size: 1.2rem;
}

.location-page .faq details[open] summary::after {
  content: '−';
}

.location-page .faq details p {
  margin: 0.75rem 0 0;
}

/* CTAs */

.location-page .cta {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  margin: 0 0.75rem 0.75rem 0;
  transition: opacity 0.15s ease;
}

.location-page .cta:hover {
  opacity: 0.85;
}

.location-page .cta.whatsapp {
  background: #ec008c;
  color: #ffffff;
}

.location-page .cta.secondary {
  background: transparent;
  color: #0d9488;
  border: 1.5px solid #0d9488;
}

.location-page .cta-block {
  text-align: center;
  background: #f4f1ea;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  max-width: 780px;
  margin: 2rem auto;
}

.location-page .cta-block h2 {
  max-width: 40ch;
  margin: 0 auto 1.25rem;
}

/* Mobile */

@media (max-width: 640px) {
  .location-page .hero,
  .location-page section,
  .location-page .cta-block {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .location-page .cta {
    display: block;
    text-align: center;
    margin-right: 0;
  }
}