.experience { background: var(--cream); }

.experience__head { display: grid; gap: 22px; }
.experience__title {
  font-size: var(--display-sm);
  line-height: 0.86;
  color: var(--ink);
}
.experience__title-line { display: block; }
.experience__title-line + .experience__title-line { margin-top: 0.12em; }
.experience__lines { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 14px; }
.experience__lines span {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 5vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  white-space: nowrap;
}
.experience__lines span:nth-child(even) { color: var(--ink); }

/* ---- cultural experience video ---- */
.video-frame {
  margin-top: clamp(32px, 6vw, 64px);
  position: relative;
  background: var(--ink);
  padding: 10px;
  border-bottom: 6px solid var(--orange);
}
.video-frame__inner {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.video-frame__inner > video,
.video-frame__inner > iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-frame__sound-toggle {
  position: absolute;
  left: 14px; bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;        /* comfortable tap target on mobile */
  padding: 9px 14px 9px 12px;
  background: var(--ink);
  color: var(--gold);
  border: 1px solid rgba(248,232,203,.35);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.video-frame__sound-toggle:hover { background: #1a1713; }
.video-frame__sound-icon {
  width: 14px; height: 14px;
  flex: 0 0 auto;
  background: var(--orange);
  border-radius: 50%;
  position: relative;
}
.video-frame__sound-icon::after {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--ink);
}
.video-frame__sound-toggle.is-unmuted { background: var(--orange); color: var(--ink); border-color: var(--orange); }
.video-frame__sound-toggle.is-unmuted .video-frame__sound-icon { background: var(--ink); }
.video-frame__sound-toggle.is-unmuted .video-frame__sound-icon::after { background: var(--orange); }

/* ---- feature tags ---- */
.tags {
  margin-top: clamp(28px, 5vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tags li {
  padding: 10px 16px;
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3.6vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tags li:nth-child(3n+1) { background: var(--ink); color: var(--text-dark-bg); }

@media (min-width: 900px) {
  /* lay the copy and the video frame out inline (side by side) instead
     of stacking the video full-width beneath the heading */
  .experience > .shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 64px;
    row-gap: 40px;
    align-items: center;
    grid-template-areas:
      "head  video"
      "tags  video";
  }
  .experience__head { grid-area: head; grid-template-columns: none; gap: 22px; align-items: start; }
  .video-frame { grid-area: video; align-self: center; width: 100%; margin-top: 0; padding: 14px; }
  .tags { grid-area: tags; align-self: start; margin-top: 0; }
}

@media (min-width: 1200px) {
  .experience > .shell { column-gap: 88px; }
}
