/* ============================================
   Hours & Pricing Page Styles
   ============================================ */

/* Anchor scroll offset for fixed header */
.tc-hours,
.tc-pricing,
.tc-options,
.tc-policy {
  scroll-margin-top: 100px;
}

/* Shared Table Styles */
.tc-hours__table-wrap,
.tc-pricing__table-wrap,
.tc-options__table-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.tc-hours__table,
.tc-pricing__table,
.tc-options__table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tc-hours__table thead,
.tc-pricing__table thead,
.tc-options__table thead {
  background-color: var(--color-brown);
  color: var(--color-white);
}

.tc-hours__table th,
.tc-pricing__table th,
.tc-options__table th {
  padding: 14px 24px;
  font-size: var(--fs-base);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
}

.tc-hours__table td,
.tc-pricing__table td,
.tc-options__table td {
  padding: 16px 24px;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.tc-hours__table tbody tr:last-child td,
.tc-pricing__table tbody tr:last-child td,
.tc-options__table tbody tr:last-child td {
  border-bottom: none;
}

.tc-hours__table tbody tr:hover,
.tc-pricing__table tbody tr:hover,
.tc-options__table tbody tr:hover {
  background-color: var(--color-cream);
}

/* Hours Section - Staff Cards */
.tc-hours__grid {
  gap: 32px;
}

.tc-hours__card {
  background-color: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-md);
}

.tc-hours__card-title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: 12px;
  text-align: center;
}

.tc-hours__staff-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.tc-hours__staff-link:hover {
  opacity: 0.75;
}

.tc-hours__card-photo .tc-hours__staff-link {
  display: block;
}

.tc-hours__card-photo {
  width: 160px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tc-hours__card-photo img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
}


.tc-hours__card .tc-hours__table th,
.tc-hours__card .tc-hours__table td {
  text-align: center;
}

.tc-hours__open {
  color: var(--color-brown);
  font-weight: 500;
}

.tc-hours__open small {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--color-text-light);
}

.tc-hours__closed {
  color: var(--color-text-light);
  opacity: 0.4;
}

.tc-hours__note {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-top: 24px;
  opacity: 0.7;
}

/* Pricing Section */
.tc-pricing__price {
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
  color: var(--color-brown-dark);
}

.tc-pricing__row--highlight {
  background-color: var(--color-cream);
}

.tc-pricing__row--highlight td {
  font-weight: 500;
}

/* Options Section */
.tc-options__note {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-top: 4px;
  opacity: 0.7;
}

/* Policy Section */
.tc-policy__grid {
  gap: 32px;
}

.tc-policy__card {
  background-color: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-md);
}

.tc-policy__card-title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-brown);
}

.tc-policy__card-text {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--color-text-light);
}

.tc-policy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tc-policy__list-item {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-text-light);
  padding-left: 20px;
  position: relative;
}

.tc-policy__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--color-brown);
  border-radius: 50%;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .tc-hours__table th,
  .tc-pricing__table th,
  .tc-options__table th {
    padding: 12px 16px;
    font-size: var(--fs-base);
  }

  .tc-hours__table td,
  .tc-pricing__table td,
  .tc-options__table td {
    padding: 14px 16px;
    font-size: var(--fs-base);
  }

  .tc-hours__card {
    padding: 24px;
  }

  .tc-hours__grid {
    gap: 20px;
  }

  .tc-policy__card {
    padding: 24px;
  }

  .tc-policy__grid {
    gap: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tc-hours__table-wrap,
  .tc-pricing__table-wrap,
  .tc-options__table-wrap {
    max-width: 600px;
  }
}
