/**
 * occ-wall.css — hand-authored styles for the Founding Members wall and the
 * embedded member-directory page. Kept separate from the compiled Tailwind
 * build (assets/css/app.css) so a future `npm run build` can't drop them.
 * Design tokens match theme.json / tailwind.config:
 * navy #0E2A47 · navy-deep #0A1F35 · gold #C2A14D · gold-deep #9C7C2E ·
 * gold-bright #D4AF37 · cream #FAF8F2 · cream-dark #F0EBDF · mist #E4E0D5 ·
 * slate #5C6672
 */

/* ---------- Founding wall: header row ---------- */
.occ-wall-head { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) {
  .occ-wall-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .occ-wall-head-cta { text-align: right; flex-shrink: 0; }
}
.occ-mt-3 { margin-top: 0.75rem; }

/* ---------- Founding wall: company plaques ---------- */
.occ-plaque-logobox {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.25rem 2.25rem 1.25rem;
}
.occ-plaque-logo {
  max-height: 4rem;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.occ-plaque-mono {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: #0A1F35;
  border: 2px solid rgba(194, 161, 77, 0.5);
  color: #C2A14D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.occ-plaque-body { padding: 0 1.75rem 1.75rem; }
.occ-plaque-city { display: block; margin-top: 0.375rem; }
.occ-plaque-foot { display: block; margin-top: auto; padding-top: 1.25rem; }
.occ-plaque-founding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-top: 1px solid rgba(228, 224, 213, 0.7);
  margin-top: 1rem;
  padding-top: 1rem;
}

/* ---------- Founding wall: reserved plaques ---------- */
.occ-reserved {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  min-height: 230px;
  border: 1px dashed rgba(14, 42, 71, 0.25);
  border-radius: 0.125rem;
  background: rgba(255, 255, 255, 0.55);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.occ-reserved:hover { border-color: rgba(194, 161, 77, 0.7); background: #ffffff; }
.occ-reserved i { color: rgba(194, 161, 77, 0.55); font-size: 1.125rem; margin-bottom: 0.875rem; transition: color 0.3s ease; }
.occ-reserved:hover i { color: #C2A14D; }
.occ-reserved-label { color: #5C6672; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; }
.occ-reserved-cta {
  margin-top: 0.625rem;
  color: #9C7C2E;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.occ-reserved:hover .occ-reserved-cta { opacity: 1; }

.occ-gold-link { color: #9C7C2E; font-weight: 600; transition: color 0.3s ease; }
.occ-gold-link:hover { color: #0E2A47; }

/* ---------- Full-directory band ---------- */
.occ-dir-band { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) {
  .occ-dir-band { grid-template-columns: 7fr 5fr; gap: 3.5rem; }
}
.occ-dir-card { padding: 2rem; }
@media (min-width: 1024px) { .occ-dir-card { padding: 2.5rem; } }
.occ-dir-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(194, 161, 77, 0.1);
  border: 1px solid rgba(194, 161, 77, 0.25);
  color: #9C7C2E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.occ-dir-card-eyebrow { font-size: 10px !important; margin-bottom: 0.5rem; }
.occ-dir-card-btn { width: 100%; margin-top: 1.75rem; }

/* ---------- Embedded member directory (/member-directory/) ---------- */
.occ-dir-embed { padding: 2.5rem 0 3.5rem; }
.occ-dir-frame iframe { display: block; width: 100%; border: 0; height: 1700px; }
@media (min-width: 1024px) { .occ-dir-frame iframe { height: 1500px; } }
.occ-dir-fallback { color: rgba(92, 102, 114, 0.75); font-size: 0.875rem; margin-top: 1.25rem; text-align: center; }
.occ-dir-fallback a { color: #9C7C2E; font-weight: 600; transition: color 0.3s ease; }
.occ-dir-fallback a:hover { color: #0E2A47; }
