.h7-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--h7-space-4);
  margin-top: var(--h7-space-2);
}
.h7-hero__actions .h7-btn--secondary {
  color: var(--h7-natural-linen);
  border-color: rgba(238, 229, 214, 0.55);
}
.h7-hero__actions .h7-btn--secondary:hover {
  background: rgba(238, 229, 214, 0.12);
  border-color: var(--h7-natural-linen);
}

@media (max-width: 640px) {
  .h7-hero__actions { flex-direction: column; align-items: stretch; }
}


.h7-rooms-rail {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: var(--h7-grid-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--h7-space-4);
  scrollbar-width: thin;
}
.h7-rooms-rail > * { scroll-snap-align: start; }


.h7-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--h7-space-7);
}

.h7-story-preview { display: flex; flex-direction: column; gap: var(--h7-space-4); }
.h7-story-preview h3 { max-width: 16ch; }
.h7-story-preview p { color: var(--h7-text-secondary); font-size: var(--h7-size-body-sm); }

.h7-story-preview__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--h7-surface-subtle);
  border: 1px solid var(--h7-border-default);
}
.h7-story-preview__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--h7-duration-reveal) var(--h7-ease-linen);
}
.h7-story-preview:hover .h7-story-preview__media img { transform: scale(1.03); }

@media (max-width: 900px) {
  .h7-stories { grid-template-columns: 1fr; gap: var(--h7-space-9); }
}


.h7-experience-band { padding-block: var(--h7-space-11); }

.h7-experience-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--h7-space-10);
  align-items: center;
}

.h7-experience-band__copy { display: flex; flex-direction: column; gap: var(--h7-space-5); }
.h7-experience-band__copy p { color: var(--h7-text-secondary); max-width: 42ch; }

.h7-experience-band__glyphs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--h7-space-7) var(--h7-space-5);
}

@media (max-width: 900px) {
  .h7-experience-band__inner { grid-template-columns: 1fr; gap: var(--h7-space-8); }
}
@media (max-width: 480px) {
  .h7-experience-band__glyphs { grid-template-columns: 1fr; gap: var(--h7-space-5); }
}


.h7-voices {
  --h7-voice-hold: 4500ms;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: var(--h7-space-10) var(--h7-space-6) var(--h7-space-9);
  background: var(--h7-surface-page);
  color: var(--h7-text-primary);
  border: 1px solid var(--h7-border-default);
  border-radius: var(--h7-radius-card);
  overflow: hidden;
}

.h7-voice {
  grid-area: 1 / 1;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--h7-space-5);
  max-width: 42ch;
  text-align: center;
}
.h7-voice[data-current] {
  display: flex;
  animation: h7-voice-in var(--h7-duration-reveal) var(--h7-ease-linen) both;
}

@keyframes h7-voice-in {
  from { clip-path: inset(0 0 100% 0); opacity: 0; }
  to   { clip-path: inset(0 0 0 0); opacity: 1; }
}

.h7-voice__mark {
  width: 36px;
  height: 36px;
  color: var(--h7-aged-brass);
}
[data-theme="dark"] .h7-voice__mark { color: var(--h7-brass-light); }

.h7-voice__quote {
  font-family: var(--h7-font-display);
  font-size: var(--h7-size-title);
  line-height: 1.5;
  color: var(--h7-text-primary);
}

.h7-voice__by {
  display: flex;
  flex-direction: column;
  gap: var(--h7-space-1);
  padding-top: var(--h7-space-4);
  border-top: 1px solid var(--h7-border-default);
  min-width: 14ch;
}
.h7-voice__name { font-size: var(--h7-size-body-sm); color: var(--h7-text-primary); }
.h7-voice__detail {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: var(--h7-tracking-caps);
  color: var(--h7-text-muted);
}

.h7-voices__rule {
  position: absolute;
  left: 50%;
  bottom: var(--h7-space-6);
  transform: translateX(-50%);
  width: min(320px, 68%);
  height: 3px;
  border-radius: 2px;
  background: var(--h7-border-default);
  overflow: hidden;
}
.h7-voices__rule span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 2px;
  background: var(--h7-aged-brass);
}
[data-theme="dark"] .h7-voices__rule span { background: var(--h7-brass-light); }
.h7-voices[data-running] .h7-voices__rule span {
  animation: h7-voice-progress var(--h7-voice-hold) linear forwards;
}
.h7-voices[data-paused] .h7-voices__rule span { animation-play-state: paused; }

@keyframes h7-voice-progress {
  from { width: 0; }
  to   { width: 100%; }
}

.h7-voices[data-static] {
  display: flex;
  flex-direction: column;
  gap: var(--h7-space-8);
  min-height: 0;
}
.h7-voices[data-static] .h7-voice {
  display: flex;
  animation: none;
}
.h7-voices[data-static] .h7-voices__rule { display: none; }


@media (max-width: 640px) {

  .h7-rooms-rail { grid-auto-columns: 78%; gap: var(--h7-space-4); }
  .h7-voices { min-height: 300px; padding: var(--h7-space-8) var(--h7-space-5) var(--h7-space-8); }
  .h7-voice { gap: var(--h7-space-4); }
  .h7-voice__quote { font-size: var(--h7-size-body-lg); }

  .h7-stories { gap: var(--h7-space-8); }
  .h7-experience-band { padding-block: var(--h7-space-10); }
}
