/* ==========================================================================
   The Hour — home
   ========================================================================== */

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100dvh - var(--bar));
  background: var(--velvet);
}
.hero__copy {
  padding: clamp(36px, 6vw, 72px) clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero__copy::after {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  right: -1px;
  width: 14px;
  background:
    radial-gradient(circle at 0 8px, var(--plum) 7px, transparent 8px) 0 0 / 14px 18px;
}
.hero__stamp {
  font-family: var(--display);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 800;
  line-height: 0.85;
  color: var(--wine);
  letter-spacing: -0.06em;
  margin: 0 0 8px;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.6vw, 58px);
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--candle);
}
.hero__sub {
  margin: 0 0 28px;
  max-width: 42ch;
  color: var(--muted);
  font-size: 18px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.hero__micro { margin: 0; font-size: 12px; color: var(--blush); }
.hero__shot {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  position: absolute;
  inset: 0;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero__copy::after { display: none; }
  .hero__shot { min-height: 280px; }
  .hero__stamp { font-size: 72px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
}

/* seven night passs */
.nights {
  background: var(--plum);
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
}
.nights__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.night {
  background: var(--candle);
  color: var(--plum);
  padding: 14px 10px 16px;
  text-align: center;
  clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px);
}
.night__d {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.night__v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  margin-top: 4px;
}
.night.is-live {
  background: var(--copper);
}

@media (max-width: 720px) {
  .nights__row { grid-template-columns: repeat(4, 1fr); }
  .night:last-child { grid-column: 2 / 4; }
}

/* promotions as passs */
.sect { padding: 72px 0; }
.sect__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}
.sect__head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  max-width: 16ch;
}
.sect__note { margin: 0; color: var(--muted); max-width: 28ch; font-size: 15px; }

.passs {
  display: grid;
  gap: 16px;
}
.pass {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  background: var(--velvet);
  border: 1px solid var(--line);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 160px;
}
.pass::before,
.pass::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  background: var(--plum);
  border-radius: 50%;
  transform: translateY(-50%);
}
.pass::before { left: -11px; }
.pass::after { right: -11px; }
.pass__img {
  overflow: hidden;
  background: #000;
}
.pass__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
}
.pass__body { padding: 22px 24px; }
.pass__body h3 {
  margin: 4px 0 8px;
  font-size: 26px;
}
.pass__body p { margin: 0; color: var(--muted); font-size: 15px; max-width: 48ch; }
.pass__val {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  border-left: 1px dashed var(--line);
  font-family: var(--mono);
  color: var(--candle);
  min-width: 140px;
}
.pass__val b { font-family: var(--display); font-size: 28px; font-weight: 800; color: var(--pearl); }

@media (max-width: 800px) {
  .pass { grid-template-columns: 1fr; }
  .pass__img { max-height: 180px; }
  .pass__val { align-items: flex-start; border-left: 0; border-top: 1px dashed var(--line); }
}

/* evening steps */
.evening {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.program {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.program:last-child { border-right: 0; }
.program time {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--copper);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.program h3 { margin: 0 0 8px; font-size: 24px; }
.program p { margin: 0; color: var(--muted); font-size: 15px; }

@media (max-width: 800px) {
  .evening { grid-template-columns: 1fr; }
  .program { border-right: 0; border-bottom: 1px solid var(--line); }
}

.sect__cta {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sect__cta p { margin: 0; color: var(--muted); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: 0;
  color: var(--pearl);
  padding: 18px 0;
  min-height: 56px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
}
.faq__ic {
  width: 18px; height: 18px; position: relative; flex-shrink: 0; margin-top: 6px;
}
.faq__ic::before, .faq__ic::after {
  content: "";
  position: absolute;
  background: var(--copper);
  top: 50%; left: 50%;
}
.faq__ic::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq__ic::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq__item.open .faq__ic::after { opacity: 0; }
.faq__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 240ms var(--ease); }
.faq__item.open .faq__panel { grid-template-rows: 1fr; }
.faq__panel > div { overflow: hidden; }
.faq__a { margin: 0 0 20px; color: var(--muted); max-width: 62ch; }
.faq__a a { color: var(--copper); }

.sect--wine { background: var(--velvet); }
