.reveal {
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(18px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
  }

  .reveal.reveal-pending {
    opacity: 1;
    transform: none;
  }

  .ruta__line {
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.btn--brass {
  background: var(--brass-grad);
  color: var(--bg);
}

.btn--brass:hover,
.btn--brass:focus-visible {
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--brass);
  color: var(--brass);
}

.btn--sm {
  padding: .55rem 1.1rem;
  font-size: .85rem;
}

.eyebrow {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}

.section {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.section--tight {
  padding-block: clamp(2.25rem, 4vw, 3.5rem);
}

.section--panel {
  background: var(--panel);
  border-block: 1px solid var(--line);
}

.section__head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section__title {
  font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.75rem);
  margin-top: .5rem;
}

.lead {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
}

.lead__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--veil);
}

.lead__body {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  padding-block: clamp(6rem, 16vh, 9rem) clamp(3rem, 8vh, 5rem);
}

.lead__title {
  margin-top: .75rem;
  font-size: clamp(2.5rem, 1.9rem + 2.6vw, 4.25rem);
}

.lead__title em {
  font-style: normal;
  color: var(--brass);
}

.lead__text {
  max-width: 30rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.lead__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(230, 239, 233, .18);
}

.stat__num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.15rem);
  font-weight: 700;
  color: var(--brass);
}

.stat__label {
  margin-top: .2rem;
  font-size: .82rem;
  color: var(--muted);
}

.ruta__map {
  position: relative;
  margin-top: clamp(1.5rem, 5vw, 3rem);
}

.ruta__svg {
  width: 100%;
  height: auto;
}

.ruta__track {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
  stroke-linecap: round;
}

.ruta__line {
  fill: none;
  stroke: var(--brass);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.6s ease;
}

.ruta__map.is-drawn .ruta__line {
  stroke-dashoffset: 0;
}

.ruta__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -1.75rem;
}

.ruta__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
}

.ruta__point-num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brass);
  font-size: .95rem;
}

.ruta__point-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(.9rem, .8rem + .4vw, 1.1rem);
}

.ruta__point-text {
  max-width: 14rem;
  font-size: .85rem;
  color: var(--muted);
}

.playbill__row {
  border-bottom: 1px solid var(--line);
}

.playbill__row:first-child {
  border-top: 1px solid var(--line);
}

.playbill__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1.25rem;
  padding-block: 1.5rem;
  text-align: left;
}

.playbill__index {
  flex: none;
  width: 2.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brass);
}

.playbill__title {
  flex: 1;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, .95rem + .5vw, 1.35rem);
  font-weight: 600;
}

.playbill__price {
  flex: none;
  font-size: .9rem;
  color: var(--muted);
}

.playbill__icon {
  flex: none;
  width: 20px;
  height: 20px;
  transition: transform .25s ease;
}

.playbill__row.is-open .playbill__icon,
.playbill__row:hover .playbill__icon,
.playbill__row:focus-within .playbill__icon {
  transform: rotate(45deg);
}

.playbill__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.playbill__row.is-open .playbill__panel,
.playbill__row:hover .playbill__panel,
.playbill__row:focus-within .playbill__panel {
  grid-template-rows: 1fr;
}

.playbill__panel-inner {
  overflow: hidden;
}

.playbill__panel-body {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.75rem;
  color: var(--muted);
}

.playbill__panel-body p {
  flex: 1 1 18rem;
}

.gallery {
  display: flex;
  gap: 1.25rem;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
}

.gallery__item {
  flex: 0 0 auto;
  width: clamp(210px, 46vw, 340px);
  scroll-snap-align: start;
}

.gallery__item img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.gallery__cap {
  margin-top: .6rem;
  font-size: .82rem;
  color: var(--muted);
}

.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .quotes {
    grid-template-columns: repeat(6, 1fr);
  }

  .quotes__item:nth-child(1) {
    grid-column: span 3;
  }

  .quotes__item:nth-child(2) {
    grid-column: span 3;
  }

  .quotes__item:nth-child(3) {
    grid-column: span 2;
  }

  .quotes__item:nth-child(4) {
    grid-column: span 2;
  }

  .quotes__item:nth-child(5) {
    grid-column: span 2;
  }
}

.quotes__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--panel);
  border: 1px solid var(--line);
}

.quotes__text {
  font-size: 1.02rem;
  line-height: 1.55;
}

.quotes__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.quotes__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(201, 162, 39, .16);
  color: var(--brass);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
}

.quotes__name {
  font-weight: 600;
  font-size: .92rem;
}

.quotes__role {
  font-size: .8rem;
  color: var(--muted);
}

.hub {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .hub {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hub-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--line);
}

.hub-card__num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brass);
}

.hub-card__title {
  font-size: clamp(1.25rem, 1.1rem + .6vw, 1.6rem);
}

.hub-card__text {
  color: var(--muted);
}

.hub-card__link {
  margin-top: auto;
}

.pricing-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
}

.pricing {
  width: 100%;
  min-width: 26rem;
  border-collapse: collapse;
}

.pricing th,
.pricing td {
  padding: .95rem .5rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: .95rem;
}

.pricing thead th {
  color: var(--muted);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pricing td:last-child,
.pricing th:last-child {
  text-align: right;
}

.pricing tbody td:last-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brass);
}

.pricing-note {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--muted);
}

.amenities {
  display: grid;
  gap: .9rem;
}

@media (min-width: 700px) {
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amenities li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
}

.amenities__icon {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: .1rem;
  color: var(--brass);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item:first-child {
  border-top: 1px solid var(--line);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  padding-block: 1.25rem;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
}

.faq__q .playbill__icon {
  transition: transform .2s ease;
}

.faq__q[aria-expanded="true"] .playbill__icon {
  transform: rotate(45deg);
}

.faq__a {
  padding-bottom: 1.25rem;
  color: var(--muted);
  max-width: 42rem;
}

.faq__a[hidden] {
  display: none;
}

.team {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team__card {
  padding: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
}

.team__photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.team__name {
  font-size: 1.15rem;
}

.team__role {
  margin-top: .2rem;
  font-size: .85rem;
  color: var(--brass);
}

.team__bio {
  margin-top: .85rem;
  color: var(--muted);
  font-size: .92rem;
}

.values {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.values li {
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.values__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brass);
  margin-bottom: .5rem;
}

.legal {
  padding: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--line);
  font-size: .9rem;
  color: var(--muted);
}

.legal dt {
  font-weight: 600;
  color: var(--text);
}

.legal dd {
  margin: 0 0 .75rem;
}

.cta-band {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--panel);
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta-band__title {
  max-width: 34rem;
  margin-inline: auto;
  font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.4rem);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.pagefoot {
  background: var(--panel);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 4rem) 1.75rem;
}

.pagefoot__grid {
  display: grid;
  gap: 2.25rem;
}

@media (min-width: 900px) {
  .pagefoot__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.pagefoot__text {
  max-width: 22rem;
  margin-top: .85rem;
  color: var(--muted);
  font-size: .92rem;
}

.pagefoot__title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.pagefoot__list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1.1rem;
}

.pagefoot__list a:hover,
.pagefoot__list a:focus-visible {
  color: var(--brass);
}

.pagefoot__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}

.errpage {
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding-block: 4rem;
  text-align: center;
}

.errpage__code {
  font-family: var(--font-head);
  font-size: clamp(4rem, 3rem + 6vw, 8rem);
  font-weight: 800;
  color: var(--brass);
}

@media (min-width: 700px) {
  .lead__body {
    max-width: 40rem;
  }
}
