/* ==========================================================================
   Chooser — the temporary front door at /.
   Deliberately neutral so it does not bias the four directions.
   ========================================================================== */

:root {
  --paper:  #F4EEE2;
  --ink:    #3A342C;
  --muted:  #8A8072;
  --line:   #D8CDBA;

  /* base.css contract */
  --surround: #EFE7D8;
  --page-bg:  var(--paper);

  --music-bg:     var(--ink);
  --music-fg:     var(--paper);
  --music-border: var(--line);
}

body { background: var(--surround); color: var(--ink); }

.chooser {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 9vw, 96px) 24px clamp(56px, 8vw, 88px);
}

/* --- Masthead ------------------------------------------------------------ */

.chooser__head { text-align: center; }

.chooser__eyebrow {
  font-size: 11px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--muted);
  animation: om-rise .7s ease .05s both;
}

.chooser__names {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.02;
  margin: 18px 0 0;
  animation: om-rise .8s cubic-bezier(.2, .9, .3, 1) .15s both;
}
.chooser__amp { font-style: italic; color: var(--muted); }

.chooser__names-hy {
  font-family: 'Noto Serif Armenian', serif;
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--muted);
  margin-top: 14px;
  animation: om-rise .7s ease .3s both;
}

.chooser__date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  animation: om-rise .7s ease .4s both;
}
.chooser__date-rule { height: 1px; width: 54px; background: var(--line); }

.chooser__lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--muted);
  margin: 40px auto 0;
  max-width: 30em;
  line-height: 1.5;
  animation: om-rise .7s ease .5s both;
}

/* --- Cards --------------------------------------------------------------- */

.chooser__list {
  display: grid;
  gap: 18px;
  margin-top: clamp(40px, 6vw, 56px);
}

.pick {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 26px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  animation: om-rise .7s ease both;
}
.pick:nth-child(1) { animation-delay: .6s; }
.pick:nth-child(2) { animation-delay: .72s; }
.pick:nth-child(3) { animation-delay: .84s; }
.pick:nth-child(4) { animation-delay: .96s; }

.pick:hover,
.pick:focus-visible {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 6px 6px 0 var(--accent);
  outline: none;
}

/* Palette chip — four bands of the direction's own colours. */
.pick__swatch {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 62px;
  border: 1px solid var(--line);
}
.pick__swatch span { display: block; }

.pick__body { min-width: 0; }
.pick__no,
.pick__title,
.pick__note { display: block; }
.pick__no {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.pick__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.6vw, 32px);
  line-height: 1.1;
  margin-top: 6px;
  color: var(--accent);
}
.pick__note {
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

.pick__go {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.pick__go::after { content: ' →'; }

/* --- Footer -------------------------------------------------------------- */

.chooser__foot {
  text-align: center;
  margin-top: clamp(44px, 7vw, 64px);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 620px) {
  .pick {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 20px;
  }
  .pick__swatch { height: 52px; }
  .pick__go { grid-column: 2; justify-self: start; }
  .pick:hover { transform: none; box-shadow: none; }
  .chooser__date { flex-direction: column; gap: 10px; }
}
