/* Buttons, arch frames, rules, small print. */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--brass);
  border-radius: 2px;
  background: transparent;
  color: var(--brass-2);
  font-family: var(--body);
  font-variation-settings: "wght" 620;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.btn:hover { background: var(--brass); color: var(--night); border-color: var(--brass); }
.btn--solid { background: var(--brass); color: var(--night); }
.btn--solid:hover { background: var(--brass-2); border-color: var(--brass-2); color: var(--night); }
.btn--quiet { border-color: var(--line); color: var(--sand); }
.btn--quiet:hover { border-color: var(--sand); background: transparent; color: var(--sand); }
.btn--sm { padding: 0.62rem 1.1rem; font-size: 0.78rem; }
.btn svg { width: 12px; height: 12px; flex: none; }

/* an outbound link — underlined, so colour is never the only signal */
.link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--sand);
  font-variation-settings: "wght" 560;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(210, 167, 92, 0.55);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.link:hover { color: var(--brass-2); border-bottom-color: var(--brass); }
.link svg { width: 10px; height: 10px; flex: none; }

/* ------------------------------------------------------------ the arch
   The block's one piece of architecture, borrowed as a frame. */
.arch {
  position: relative;
  overflow: hidden;
  border-radius: var(--arch);
  background: var(--night-2);
  aspect-ratio: 4 / 5;
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch--wide { aspect-ratio: 3 / 2; border-radius: 26% 26% 6px 6px / 30% 30% 2% 2%; }

.arch-caption {
  margin: 0.9rem 0 0;
  font-size: 0.83rem;
  line-height: 1.45;
  color: var(--sand-3);
}

/* ---------------------------------------------------------------- rules */
.hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* a hairline with a small brass tick, used above section headings */
.tick { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.tick::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
  flex: none;
}
.tick .eyebrow { margin: 0; }

/* ------------------------------------------------------------ open status */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-variation-settings: "wght" 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.status__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.status--open   { color: var(--brass-2); }
.status--closed { color: var(--sand-3); }
.status--soon   { color: var(--clay-2); }

/* -------------------------------------------------------------- key facts */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.facts div { display: flex; flex-direction: column; gap: 0.3rem; }
.facts dt, .facts .n {
  font-family: var(--display);
  font-variation-settings: "wght" 340, "opsz" 60;
  font-size: clamp(2.1rem, 1.6rem + 1.7vw, 3rem);
  line-height: 0.95;
  color: var(--sand);
  letter-spacing: -0.02em;
}
.facts .t {
  font-size: 0.88rem;
  color: var(--sand-3);
  line-height: 1.4;
}

/* --------------------------------------------------------------- reveal */
@media (prefers-reduced-motion: no-preference) {
  .js .rise { opacity: 0; transform: translateY(18px); }
  .js .rise.in {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .js .rise.d1.in { transition-delay: 0.09s; }
  .js .rise.d2.in { transition-delay: 0.18s; }
}
