.page-hero {
  padding: 7rem 0 3rem;
  background: var(--detail-shell-bg);
}

.detail-breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0 0 1rem;
}

.detail-breadcrumb li {
  position: relative;
  font-size: 0.9rem;
  color: #6d5647;
}

.detail-breadcrumb li + li::before {
  content: "/";
  margin-right: 0.75rem;
  color: #b8964a;
}

.detail-breadcrumb a {
  color: #8c5a3c;
  text-decoration: none;
}

.detail-page-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 0.85rem;
  color: #1a120c;
}

.detail-page-subtitle {
  max-width: 760px;
  font-size: 1rem;
  color: #5f4d41;
  margin-bottom: 0;
}

.detail-panel {
  background: var(--detail-card-bg);
  border: 1px solid var(--detail-border);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(43, 31, 24, 0.08);
  padding: 1.5rem;
  height: 100%;
}

.detail-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.detail-panel p:last-child,
.detail-note p:last-child {
  margin-bottom: 0;
}

.detail-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: #4d3d33;
}

.detail-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #c08552;
  font-weight: 700;
}

.detail-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.detail-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 180px;
}

.detail-note {
  background: #fffdf9;
  border-left: 4px solid #c08552;
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.detail-section-spacer {
  margin-top: 2rem;
}

.amenity-story-page .section-head {
  margin-bottom: 2.5rem;
}

.amenity-story-intro {
  max-width: 760px;
  margin: 0 auto 3.25rem;
}

.amenity-story-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-heading);
}

.amenity-story-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5f4d41;
  margin: 0;
}

.amenity-story-grid {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

.amenity-story-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 4rem;
}

.amenity-story-block-reverse .amenity-story-media {
  order: 2;
}

.amenity-story-block-reverse .amenity-story-copy {
  order: 1;
}

.amenity-story-media {
  position: relative;
}

.amenity-story-media img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: 14px 14px 0 rgba(26, 18, 12, 0.88);
  transition:
    transform 0.6s ease,
    box-shadow 0.4s ease,
    filter 0.4s ease;
}

.amenity-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192, 133, 82, 0) 0%, rgba(26, 18, 12, 0) 60%, rgba(26, 18, 12, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.amenity-story-block:hover .amenity-story-media img,
.amenity-story-block-reverse:hover .amenity-story-media img {
  transform: scale(1.04);
  box-shadow: 8px 8px 0 rgba(26, 18, 12, 0.88), 0 18px 36px rgba(26, 18, 12, 0.18);
  filter: brightness(1.06) saturate(1.08);
}

.amenity-story-block:hover .amenity-story-media::after,
.amenity-story-block-reverse:hover .amenity-story-media::after {
  opacity: 1;
}

.amenity-story-block:hover .amenity-story-copy h3,
.amenity-story-block-reverse:hover .amenity-story-copy h3 {
  color: var(--color-primary-strong);
  transition: color 0.4s ease;
}

.amenity-story-copy {
  max-width: 430px;
}

.amenity-story-copy h3 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--color-heading);
}

.amenity-story-copy p {
  font-size: 1rem;
  line-height: 1.9;
  color: #4d3d33;
  margin: 0;
}

@media (max-width: 767.98px) {
  .page-hero {
    padding: 6rem 0 2.5rem;
  }

  .detail-panel {
    padding: 1.15rem;
  }

  .detail-cta-row .btn,
  .detail-link-btn {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .amenity-story-intro {
    margin-bottom: 2rem;
  }

  .amenity-story-intro h3 {
    font-size: 1.35rem;
  }

  .amenity-story-grid {
    gap: 2.2rem;
  }

  .amenity-story-block,
  .amenity-story-block-reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .amenity-story-block-reverse .amenity-story-media,
  .amenity-story-block-reverse .amenity-story-copy {
    order: initial;
  }

  .amenity-story-media img {
    height: 280px;
    box-shadow: 8px 8px 0 rgba(26, 18, 12, 0.88);
  }

  .amenity-story-copy {
    max-width: none;
  }

  .amenity-story-copy h3 {
    font-size: 1.45rem;
    margin-bottom: 0.7rem;
  }

  .amenity-story-copy p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}
