/* ==========================================================================
   facilities.html — page-specific styles
   Reuses tokens/utilities from css/style.css; only adds what that file
   doesn't already cover.
   ========================================================================== */

/* Anchor targets covered by the sticky header need extra top margin so the
   header doesn't cover the heading when jumped to via the hero tag links. */
.scroll-anchor {
  scroll-margin-top: 80px;
}

/* Rental and Disclaimer share the same tan background with nothing visually
   separating them — the two sections' own top+bottom padding was stacking
   into one oversized gap between the cards. Pull the Disclaimer section's
   top padding in so they read as one continuous block. */
.disclaimer-section {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .disclaimer-section {
    padding-top: 24px;
  }
}

/* ---------- Hero ---------- */
.hero-facilities {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 768px) {
  .hero-facilities {
    gap: 24px;
  }
}

.hero-facilities__lead {
  max-width: 560px;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.tag-pill {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #dcc9ae;
  background: var(--color-surface);
  padding: 10px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-secondary);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
@media (min-width: 768px) {
  .tag-pill {
    justify-content: flex-start;
    padding: 10px 22px;
    font-size: 14px;
  }
}
.tag-pill:hover {
  border-color: var(--color-primary);
  background: var(--color-surface-accent);
}

/* ---------- Pricing ---------- */
.pricing {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .pricing {
    gap: 36px;
  }
}

.pricing__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .pricing-cards {
    flex-direction: row;
    gap: 24px;
  }
}

.pricing-basic,
.pricing-fee {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .pricing-basic,
  .pricing-fee {
    flex: 1;
    padding: 32px;
  }
}

.pricing-basic__label,
.pricing-fee__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .pricing-basic__label,
  .pricing-fee__label {
    font-size: 15px;
  }
}

.pricing-basic__price {
  font-family: var(--font-shippori);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .pricing-basic__price {
    font-size: 28px;
  }
}

.pricing-basic__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .pricing-basic__desc {
    font-size: 14px;
    line-height: 24px;
  }
}

.pricing-basic__note {
  font-size: 11px;
  line-height: 18px;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .pricing-basic__note {
    font-size: 13px;
    line-height: 22px;
  }
}

/* Tables ------------------------------------------------------------- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 20px;
}

.data-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: fixed;
}
@media (min-width: 768px) {
  .data-table {
    font-size: 14px;
  }
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-divider);
}

.data-table thead th {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-shippori);
  font-weight: 500;
  border-bottom: none;
}

.data-table tbody th {
  font-weight: 600;
  color: var(--color-text-primary);
}

.data-table tbody td {
  color: var(--color-text-primary);
  font-weight: 600;
  text-align: right;
}

.fee-table tbody th {
  font-weight: 400;
  color: var(--color-text-secondary);
}

.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td {
  border-bottom: none;
}

.plan-table-wrap {
  border: 1px solid var(--color-divider);
}

.plan-table {
  min-width: 640px;
}

.plan-table__col-name {
  width: 22%;
}
.plan-table__col-detail {
  width: 46%;
}
.plan-table__col-price {
  width: 32%;
}

.plan-table tbody tr:nth-child(even) {
  background: var(--color-surface-accent);
}
.plan-table tbody tr:nth-child(odd) {
  background: var(--color-surface);
}

.plan-table tbody th {
  font-family: var(--font-shippori);
  color: var(--color-secondary);
}

.plan-table tbody td:last-child {
  color: var(--color-primary);
  font-weight: 600;
  text-align: left;
}

.plan-table tbody td:first-of-type {
  text-align: left;
  font-weight: 400;
  color: var(--color-text-primary);
}

.fee-table {
  min-width: 320px;
}
.fee-table__col-label {
  width: 68%;
}
.fee-table__col-price {
  width: 32%;
}

.pricing-note {
  font-size: 11px;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .pricing-note {
    font-size: 13px;
  }
}

.pricing-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .pricing-hours {
    gap: 16px;
  }
}

.pricing-hours__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .pricing-hours__label {
    font-size: 16px;
  }
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .hours-grid {
    flex-direction: row;
    gap: 24px;
  }
}

.hour-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 20px;
  border: 1px solid rgba(111, 124, 95, 0.2);
  background: var(--color-background);
  padding: 16px;
}
@media (min-width: 768px) {
  .hour-card {
    padding: 20px;
  }
}

.hour-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hour-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: rgba(111, 124, 95, 0.1);
  color: var(--color-accent);
  flex-shrink: 0;
}
.hour-card__icon svg {
  width: 12px;
  height: 12px;
}
@media (min-width: 768px) {
  .hour-card__icon {
    width: 32px;
    height: 32px;
  }
  .hour-card__icon svg {
    width: 18px;
    height: 18px;
  }
}

.hour-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .hour-card__title {
    font-size: 14px;
  }
}

.hour-card__time {
  font-size: 13px;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .hour-card__time {
    font-size: 14px;
  }
}

/* ---------- Dot list (rental / disclaimer / wifi) ---------- */
.dot-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dot-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .dot-list li {
    font-size: 14px;
    line-height: 24px;
  }
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-text-secondary);
}

.dot-list--small li {
  padding-left: 14px;
}
.dot-list--small li::before {
  width: 5px;
  height: 5px;
  top: 7px;
}

/* ---------- Rental ---------- */
.rental-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
}
@media (min-width: 768px) {
  .rental-card {
    padding: 32px;
  }
}

.rental-card__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .rental-card__label {
    font-size: 16px;
  }
}

.rental-card__link {
  padding: 10px 16px;
}

/* ---------- Disclaimer ---------- */
.disclaimer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .disclaimer {
    gap: 24px;
  }
}

.disclaimer-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}
@media (min-width: 768px) {
  .disclaimer-card {
    padding: 32px;
  }
}

.disclaimer-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .disclaimer-card__title {
    font-size: 16px;
  }
}

.disclaimer-pdf {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}
@media (min-width: 768px) {
  .disclaimer-pdf {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
  }
}

.disclaimer-pdf__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .disclaimer-pdf__note {
    gap: 16px;
    font-size: 15px;
  }
}

.disclaimer-pdf__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .disclaimer-pdf__icon {
    width: 22px;
    height: 22px;
  }
}

.disclaimer-pdf__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .disclaimer-pdf__actions {
    flex-direction: row;
    gap: 12px;
  }
}
.disclaimer-pdf__actions .btn {
  padding: 14px 24px;
  font-size: 14px;
}
/* Placeholder download links are visually a button but inert — no click
   handler needed since onclick="return false" already blocks navigation. */
.disclaimer-pdf__actions a[aria-disabled="true"] {
  cursor: not-allowed;
}

/* ---------- Rules ---------- */
.rules-section {
  position: relative;
  padding-block: 40px;
}
@media (min-width: 768px) {
  .rules-section {
    padding-block: 64px;
  }
}

.rules-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.rules-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.rules {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.rules__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.rules__heading {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 768px) {
  .rules__heading {
    font-size: 32px;
    line-height: 44px;
  }
  .rules__break {
    display: none;
  }
}

.rules-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .rules-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  background: var(--color-surface);
  padding: 14px;
  box-shadow: 0 4px 8px 0 rgba(74, 74, 64, 0.08);
  font-size: 13px;
  line-height: 20px;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .rules-list li {
    gap: 12px;
    padding: 20px;
    font-size: 15px;
    line-height: 28px;
  }
}

.rules-list__check {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .rules-list__check {
    width: 18px;
    height: 18px;
  }
}

.rules-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  border-radius: 20px;
  background: var(--color-surface-accent);
  padding: 16px;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .rules-info {
    gap: 18px;
    padding: 28px;
    font-size: 15px;
    line-height: 28px;
  }
}

.rules-info__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .rules-info__icon {
    width: 22px;
    height: 22px;
  }
}

/* ---------- Activities ---------- */
.activities__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .activities__intro {
    margin-bottom: 36px;
  }
}

.activity-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 768px) {
  .activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
}

.activity-tags li {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-surface);
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 4px 16px 0 rgba(74, 74, 64, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .activity-tags li {
    justify-content: flex-start;
    padding: 13px 22px;
    font-size: 15px;
  }
}

/* ---------- Site map ---------- */
.sitemap__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .sitemap__intro {
    margin-bottom: 36px;
  }
}

.sitemap-photo {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-surface-accent);
  box-shadow: 0 4px 16px 0 rgba(74, 74, 64, 0.08);
}
.sitemap-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.75);
}

/* ---------- Equipment ---------- */
.equipment__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .equipment__intro {
    margin-bottom: 36px;
  }
}

.equipment-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .equipment-grid {
    flex-direction: row;
    gap: 24px;
    margin-bottom: 24px;
  }
}

.equipment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  border: 1px solid var(--color-surface-accent);
  background: var(--color-surface);
  padding: 16px;
  box-shadow: 0 4px 16px 0 rgba(74, 74, 64, 0.08);
}
@media (min-width: 768px) {
  .equipment-card {
    flex: 1;
    gap: 16px;
    padding: 24px;
  }
}

.equipment-card__photo {
  height: 180px;
  width: 100%;
}
@media (min-width: 768px) {
  .equipment-card__photo {
    height: 272px;
  }
}

.equipment-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-accent);
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.equipment-card__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .equipment-card__icon {
    width: 32px;
    height: 32px;
  }
}

.equipment-card__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .equipment-card__label {
    font-size: 15px;
  }
}

.equipment-wifi {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}
@media (min-width: 768px) {
  .equipment-wifi {
    gap: 16px;
    padding: 32px;
  }
}

.equipment-wifi__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .equipment-wifi__title {
    font-size: 16px;
  }
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .faq {
    gap: 36px;
  }
}

.faq__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.faq__list {
  width: 100%;
  max-width: 880px;
}

/* ---------- Reservation CTA ---------- */
.reservation-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .reservation-cta {
    flex-direction: row;
    gap: 64px;
  }
}

.reservation-cta__photo {
  height: 220px;
  width: 100%;
  order: 2;
}
@media (min-width: 768px) {
  .reservation-cta__photo {
    height: 380px;
    flex: 1;
    order: 0;
  }
}

.reservation-cta__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .reservation-cta__body {
    flex: 1;
    gap: 18px;
  }
}

.reservation-cta__link {
  border-radius: 999px;
  border: 1.5px solid var(--color-primary);
  padding: 10px 16px;
}
