/* ══ ANNOUNCEMENT POPUP ══ */
.ann-overlay {
  position: fixed;
  inset: 0;
  background: rgb(10 30 36 / .55);
  z-index: 7000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.ann-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.ann-modal {
  background: var(--cream-lt);
  max-width: 480px;
  width: 100%;
  padding: 2.8rem 2.8rem 2.2rem;
  position: relative;
  animation: fadeUp .35s cubic-bezier(.16,1,.3,1) both;
}
.ann-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--ink-lt);
  cursor: pointer;
  font-family: var(--cond);
  line-height: 1;
  transition: color .2s;
}
.ann-close:hover,
.ann-close:focus-visible {
  color: var(--ink);
}
.ann-tag {
  font-family: var(--cond);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.ann-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.ann-title {
  font-family: var(--cond);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: .02em;
  margin-bottom: 1rem;
}
.ann-body {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-lt);
  margin-bottom: 1.6rem;
}
.ann-footer {
  display: flex;
}
.ann-cta {
  font-family: var(--cond);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--forest);
  padding: .85rem 2rem;
  transition: background .2s;
  display: inline-block;
}
.ann-cta:hover,
.ann-cta:focus-visible {
  background: var(--gold-lt);
}

/* ── mobile: full-screen takeover instead of a centered modal box,
   slides in from the left for site-wide motion consistency ── */
@media (max-width: 720px) {
  .ann-overlay {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }
  .ann-modal {
    max-width: none;
    width: 100%;
    height: 100%;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    box-sizing: border-box;
    animation: none;
    transform: translateX(-100%);
    transition: transform .35s ease;
  }
  .ann-overlay.open .ann-modal {
    transform: translateX(0);
  }
}

