/* ==========================================================================
   Front-desk homepage (simple version, 2026-09-07)
   Clean gold-on-black one-pager. No scroll-scrub, no video, no chat JS.
   Reuses design tokens from styles.css.
   ========================================================================== */

/* —— Brand hero —— */
.hero-front {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(4.5rem, 11vh, 7.5rem) 0 1.5rem;
}

.hero-front .hero-medallion {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 38px rgba(205, 169, 92, 0.24);
  margin-bottom: 1.6rem;
}

.hero-front h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 8.5vw, 6.8rem);
  line-height: 1;
  letter-spacing: 0.005em;
  max-width: 14ch;
  text-wrap: balance;
}

.hero-front .hero-text {
  margin: 1.7rem auto 0;
  max-width: 58ch;
}

.hero-front .hero-subtext {
  margin: 1rem auto 0;
  max-width: 56ch;
  color: var(--muted);
}

.hero-front .hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.3rem;
}

.hero-footnote {
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
  max-width: 56ch;
}

/* —— Desk cards —— */
.desk-head {
  margin: 3.5rem 0 0;
}

.desk-head .eyebrow {
  margin-bottom: 1.6rem;
}

.desk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.desk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  min-height: 27rem;
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #0a0e14;
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease;
}

.desk-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--img);
  background-size: cover;
  background-position: center 18%;
  transform: scale(1.02);
  transition: transform 300ms ease;
}

.desk-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(6, 8, 12, 0.18) 0%,
    rgba(6, 8, 12, 0.5) 46%,
    rgba(5, 7, 11, 0.97) 94%
  );
}

.desk-card:hover,
.desk-card:focus-visible {
  border-color: var(--line);
  transform: translateY(-3px);
}

.desk-card:hover::before {
  transform: scale(1.06);
}

.desk-card:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.desk-card-eyebrow {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desk-card h3 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.15rem;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.desk-card p {
  margin: 0.6rem 0 0;
  color: #d9d2c4;
  font-size: 0.95rem;
  line-height: 1.6;
}

.desk-card-cta {
  margin-top: 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
}

.buy-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.45rem;
  margin-top: 1.3rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  color: #16100a;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 12px 26px rgba(205, 169, 92, 0.2);
}

.card-note {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .desk-grid {
    grid-template-columns: 1fr;
  }

  .desk-card {
    min-height: 24rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .desk-card,
  .desk-card::before {
    transition: none;
  }
}
