/* Quorum Hall company — blank-slate (no a74-foundry / plaque patterns) */
:root {
  --qh-ink: #1e293b;
  --qh-mute: #64748b;
  --qh-paper: #eef2f6;
  --qh-sheet: #f8fafc;
  --qh-line: rgba(30, 41, 59, 0.12);
  --qh-rose: #fb7185;
  --qh-ice: #38bdf8;
  --qh-display: "Young Serif", Georgia, serif;
  --qh-sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --qh-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --qh-max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.qh-company {
  margin: 0;
  min-height: 100vh;
  color: var(--qh-ink);
  font-family: var(--qh-sans);
  background:
    radial-gradient(70% 45% at 100% 0%, rgba(251, 113, 133, 0.12), transparent 55%),
    radial-gradient(55% 40% at 0% 100%, rgba(56, 189, 248, 0.12), transparent 50%),
    linear-gradient(165deg, #e4e9f0 0%, var(--qh-paper) 42%, #e9eef5 100%);
  -webkit-font-smoothing: antialiased;
}

.a74-bare-main { min-height: 100vh; }
a { color: inherit; text-decoration: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
}

.qh-shell {
  position: relative;
  z-index: 1;
  width: min(var(--qh-max), calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 1rem 0 2.75rem;
}

.qh-orbit {
  pointer-events: none;
  position: fixed;
  inset: -20% auto auto 50%;
  z-index: 0;
  width: min(90vw, 52rem);
  height: min(90vw, 52rem);
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(30, 41, 59, 0.06);
  box-shadow:
    inset 0 0 0 4.5rem rgba(56, 189, 248, 0.03),
    inset 0 0 0 9rem rgba(251, 113, 133, 0.03),
    inset 0 0 0 14rem rgba(30, 41, 59, 0.02);
  opacity: 0.9;
}

.qh-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 0.5rem 0.55rem 0.5rem 0.7rem;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid var(--qh-line);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}
.qh-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.qh-brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--qh-ink);
  color: var(--qh-rose);
  font-size: 0.7rem;
  font-weight: 800;
}
.qh-brand-text strong {
  display: block;
  font-family: var(--qh-display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.1;
}
.qh-brand-text em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--qh-mute);
  font-weight: 800;
}
.qh-top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.qh-top-nav a {
  padding: 0.45rem 0.75rem;
  border-radius: 0.65rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--qh-mute);
  transition: color 0.2s, background 0.2s, transform 0.2s var(--qh-ease);
}
.qh-top-nav a:hover {
  color: var(--qh-ink);
  background: rgba(30, 41, 59, 0.05);
  transform: translateY(-1px);
}
.qh-top-cart {
  background: var(--qh-rose) !important;
  color: #fff !important;
}

.qh-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--qh-mute);
}
.qh-crumb a:hover { color: var(--qh-rose); }
.qh-crumb a::after {
  content: "·";
  margin-left: 0.45rem;
  opacity: 0.5;
}
.qh-crumb [aria-current="page"] { color: var(--qh-ink); }

.qh-mast {
  margin-bottom: 1.5rem;
  text-align: center;
  animation: qh-rise 0.55s var(--qh-ease) both;
}
.qh-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--qh-rose);
}
.qh-mast h1 {
  margin: 0;
  font-family: var(--qh-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.qh-lede {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  color: var(--qh-mute);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
}
.qh-pulse {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 28rem;
  margin: 1.25rem auto 0;
}
.qh-pulse > div {
  padding: 0.85rem 0.6rem;
  border-radius: 1rem;
  background: var(--qh-sheet);
  border: 1px solid var(--qh-line);
  box-shadow: 0 12px 28px rgba(30, 41, 59, 0.05);
}
.qh-pulse strong {
  display: block;
  font-family: var(--qh-display);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--qh-ink);
}
.qh-pulse span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--qh-mute);
}

/* Mission amphitheater */
.qh-mission {
  margin-bottom: 1.5rem;
  padding: 2rem 1.4rem 2.1rem;
  text-align: center;
  background: var(--qh-ink);
  color: #fff;
  border-radius: 1.5rem 0.4rem 1.5rem 0.4rem;
  box-shadow: 0 24px 48px rgba(30, 41, 59, 0.2);
  animation: qh-rise 0.55s var(--qh-ease) 0.05s both;
  position: relative;
  overflow: hidden;
}
.qh-mission::before {
  content: "";
  position: absolute;
  inset: auto -10% -40%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.25), transparent 65%);
  pointer-events: none;
}
.qh-mission .qh-kicker { color: var(--qh-ice); position: relative; }
.qh-mission-quote {
  position: relative;
  margin: 0.75rem auto 0;
  max-width: 40rem;
  padding: 0;
  border: 0;
}
.qh-mission-quote p {
  margin: 0;
  font-family: var(--qh-display);
  font-size: clamp(1.45rem, 3.8vw, 2.35rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.qh-mission-body {
  position: relative;
  margin: 1rem auto 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}
.qh-mission-seat {
  position: relative;
  margin: 1.15rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
}

.qh-section-head {
  margin-bottom: 0.9rem;
}
.qh-section-head h2 {
  margin: 0;
  font-family: var(--qh-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.qh-section-head p {
  margin: 0.4rem 0 0;
  color: var(--qh-mute);
  font-weight: 500;
  max-width: 34rem;
}

/* Growth rings history */
.qh-history {
  margin-bottom: 1.5rem;
  animation: qh-rise 0.55s var(--qh-ease) 0.08s both;
}
.qh-rings {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  counter-reset: qh-ring;
}
.qh-ring {
  display: grid;
  grid-template-columns: minmax(6.5rem, 8.5rem) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  padding: 0;
  animation: qh-rise 0.45s var(--qh-ease) both;
  animation-delay: calc(var(--qh-i, 0) * 0.06s);
}
.qh-ring-when {
  display: grid;
  place-content: center;
  padding: 0.85rem 0.7rem;
  text-align: center;
  background: var(--qh-sheet);
  border: 1px solid var(--qh-line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--qh-rose);
  box-shadow: 0 10px 22px rgba(30, 41, 59, 0.04);
}
.qh-ring-copy {
  position: relative;
  padding: 1rem 1.1rem 1.1rem;
  background: var(--qh-sheet);
  border: 1px solid var(--qh-line);
  border-radius: 1.1rem;
  border-left: 4px solid var(--qh-ice);
  box-shadow: 0 12px 28px rgba(30, 41, 59, 0.04);
}
.qh-ring:nth-child(even) .qh-ring-copy { border-left-color: var(--qh-rose); }
.qh-ring-copy strong {
  display: block;
  font-family: var(--qh-display);
  font-size: 1.2rem;
  font-weight: 400;
}
.qh-ring-copy p {
  margin: 0.35rem 0 0;
  color: var(--qh-mute);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 500;
}

/* Values wedges */
.qh-values {
  margin-bottom: 1.35rem;
  animation: qh-rise 0.55s var(--qh-ease) 0.1s both;
}
.qh-wedges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.qh-wedge {
  position: relative;
  padding: 1.25rem 1.15rem 1.3rem;
  background: var(--qh-sheet);
  border: 1px solid var(--qh-line);
  border-radius: 1.25rem 0.35rem 1.25rem 0.35rem;
  overflow: hidden;
  transition: transform 0.28s var(--qh-ease), box-shadow 0.28s;
  animation: qh-rise 0.45s var(--qh-ease) both;
  animation-delay: calc(var(--qh-i, 0) * 0.05s);
}
.qh-wedge:nth-child(even) {
  border-radius: 0.35rem 1.25rem 0.35rem 1.25rem;
  margin-top: 1.1rem;
}
.qh-wedge::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent 70%);
  pointer-events: none;
}
.qh-wedge:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 18px 36px rgba(30, 41, 59, 0.1);
}
.qh-wedge.is-inview {
  border-color: rgba(56, 189, 248, 0.35);
}
.qh-wedge-idx {
  display: block;
  font-family: var(--qh-display);
  font-size: 1.5rem;
  color: var(--qh-rose);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.qh-wedge h3 {
  margin: 0;
  font-family: var(--qh-display);
  font-size: 1.55rem;
  font-weight: 400;
}
.qh-wedge-line {
  margin: 0.45rem 0 0;
  font-weight: 700;
  font-size: 0.98rem;
}
.qh-wedge-hint {
  margin: 0.35rem 0 0;
  color: var(--qh-mute);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

/* Aisle river */
.qh-aisles {
  margin-bottom: 1.35rem;
  animation: qh-rise 0.55s var(--qh-ease) 0.12s both;
}
.qh-aisle-river {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.55rem;
}
.qh-aisle-river a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--qh-sheet);
  border: 1px solid var(--qh-line);
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--qh-ease);
}
.qh-aisle-river a:hover {
  background: var(--qh-ink);
  color: #fff;
  border-color: var(--qh-ink);
  transform: translateY(-2px);
}

/* Registry seal strip */
.qh-registry {
  margin-bottom: 1.25rem;
  animation: qh-rise 0.55s var(--qh-ease) 0.14s both;
}
.qh-seal-strip {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.qh-seal-strip > div {
  padding: 0.85rem 0.9rem;
  background: var(--qh-sheet);
  border: 1px solid var(--qh-line);
  border-radius: 0.9rem;
  border-top: 3px solid var(--qh-ice);
}
.qh-seal-strip > div:nth-child(even) { border-top-color: var(--qh-rose); }
.qh-seal-strip .is-wide { grid-column: 1 / -1; }
.qh-seal-strip dt {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--qh-mute);
}
.qh-seal-strip dd {
  margin: 0.3rem 0 0;
  font-weight: 650;
  font-size: 0.95rem;
  line-height: 1.35;
  word-break: break-word;
}

.qh-reach {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}
.qh-reach > div {
  padding: 0.95rem 1rem;
  background: var(--qh-ink);
  color: #fff;
  border-radius: 1rem;
}
.qh-reach span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.45);
}
.qh-reach a,
.qh-reach strong {
  display: block;
  margin-top: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  word-break: break-word;
}
.qh-reach a:hover { color: var(--qh-ice); }

.qh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.qh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.22s var(--qh-ease), filter 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.qh-btn:hover { transform: translateY(-2px); }
.qh-btn-hot {
  background: var(--qh-rose);
  color: #fff;
  box-shadow: 0 12px 26px rgba(251, 113, 133, 0.3);
}
.qh-btn-ghost {
  border: 1.5px solid var(--qh-line);
  background: var(--qh-sheet);
  color: var(--qh-ink);
}
.qh-btn-ghost:hover { border-color: var(--qh-ink); }

.qh-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  justify-content: center;
  margin-top: 1.75rem;
  padding-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--qh-mute);
}
.qh-foot a:hover { color: var(--qh-rose); }

@keyframes qh-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 800px) {
  .qh-wedges { grid-template-columns: 1fr; }
  .qh-wedge:nth-child(even) { margin-top: 0; }
  .qh-reach { grid-template-columns: 1fr; }
  .qh-ring {
    grid-template-columns: 1fr;
  }
  .qh-ring-when {
    justify-self: start;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
  }
}

@media (max-width: 520px) {
  .qh-shell { width: calc(100% - 1rem); }
  .qh-pulse { grid-template-columns: 1fr; max-width: 14rem; }
  .qh-seal-strip { grid-template-columns: 1fr; }
  .qh-actions { flex-direction: column; }
  .qh-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
