/* Wegman Capital homepage — static styles. All rules are wc-* prefixed so they
   can drop into an existing template without colliding. */

.wc-page {
  font-family: "Archivo", system-ui, sans-serif;
  color: #201e1d;
  background: #f3f2f2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.wc-main {
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 64px 32px 48px;
  flex: 1;
}

.wc-lockup {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.wc-firms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid rgba(32, 30, 29, 0.4);
}

.wc-firm {
  display: block;
  padding-right: 20px;
  color: #201e1d;
  text-decoration: none;
}

.wc-firm:hover { color: #1d4d8f; }
.wc-firm:focus-visible { outline: 2px solid #12315e; outline-offset: 2px; }

.wc-firm-name {
  display: block;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.wc-firm-tag {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #12315e;
}

.wc-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 64px;
  justify-content: center;
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid rgba(32, 30, 29, 0.4);
}

.wc-contact p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.wc-link {
  color: #12315e;
  text-decoration: none;
  border-bottom: 1px solid #12315e;
}

.wc-link:hover { color: #1d4d8f; border-bottom-color: #1d4d8f; }
.wc-link:focus-visible { outline: 2px solid #12315e; outline-offset: 2px; }

.wc-footer { border-top: 2px solid rgba(32, 30, 29, 0.4); }

.wc-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #605d5d;
}

@media (max-width: 720px) {
  .wc-firms { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
}
