.ht-page {
  padding-top: calc(var(--nav-h) + 1.5rem);
  padding-bottom: 4rem;
}

.ht-hero-card {
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}

.ht-hero-card h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.4rem 0 0.6rem;
  color: var(--ink);
}

.ht-budget {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  background: rgba(196, 149, 90, 0.12);
  border-left: 3px solid #c4955a;
  border-radius: 0 10px 10px 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.ht-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.ht-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ht-toc a {
  font-size: 0.82rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
}

.ht-toc a:hover {
  border-color: #c4955a;
  color: #8a5a2b;
}

.ht-table-wrap {
  overflow-x: auto;
  padding: 0;
}

.ht-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.ht-table th,
.ht-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.ht-table th {
  background: rgba(0, 0, 0, 0.03);
  font-weight: 700;
  white-space: nowrap;
}

.ht-table a {
  color: #8a5a2b;
  font-weight: 600;
  text-decoration: none;
}

.ht-table a:hover {
  text-decoration: underline;
}

.ht-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  background: rgba(74, 140, 100, 0.15);
  color: #2d6a4f;
}

.ht-status.relative {
  background: rgba(100, 100, 100, 0.12);
  color: #555;
}

.ht-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ht-card {
  padding: 0;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}

.ht-card.is-highlight {
  outline: 2px solid #c4955a;
  box-shadow: 0 0 0 4px rgba(196, 149, 90, 0.2);
}

.ht-card-head {
  padding: 1.15rem 1.35rem 0.85rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
}

.ht-card-head .ht-night {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: #8a5a2b;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.ht-card-head h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0;
  flex: 1;
  min-width: 12rem;
}

.ht-card-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.15rem 1.35rem 1.35rem;
}

@media (min-width: 880px) {
  .ht-card-body.has-photos {
    grid-template-columns: 1.1fr 1fr;
  }
}

.ht-meta {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
}

.ht-meta div {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.5rem;
}

.ht-meta .k {
  color: var(--ink-muted);
  font-weight: 600;
}

.ht-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.ht-chip {
  font-size: 0.78rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(74, 124, 140, 0.1);
  border: 1px solid rgba(74, 124, 140, 0.2);
}

.ht-why {
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  background: rgba(196, 149, 90, 0.08);
  border-radius: 10px;
  font-size: 0.9rem;
}

.ht-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.ht-photos img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: zoom-in;
}

.ht-photos img:first-child {
  grid-column: 1 / -1;
  height: 200px;
}

.ht-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.ht-actions a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #8a5a2b;
  text-decoration: none;
}

.ht-actions a:hover {
  text-decoration: underline;
}

.ht-lb {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
}

.ht-lb.open {
  display: flex;
}

.ht-lb img {
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  border-radius: 8px;
}

.ht-home-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(196, 149, 90, 0.35);
  background: linear-gradient(135deg, rgba(196, 149, 90, 0.1), rgba(74, 124, 140, 0.06));
}

.ht-home-card:hover {
  border-color: #c4955a;
}

.ht-home-card h3 {
  margin: 0.35rem 0 0.35rem;
  font-family: var(--font-serif);
}

.ht-home-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.ht-home-card-cta {
  white-space: nowrap;
  font-weight: 700;
  color: #8a5a2b;
}
