/* Local first-draft brand entrance. Only index.html loads this stylesheet. */
.brand-entry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: var(--header-height);
  background: var(--surface);
  color: var(--ink);
}

.brand-entry .brand-entry-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.brand-entry-panel {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.brand-entry-panel + .brand-entry-panel {
  border-left: 1px solid var(--line);
}

.brand-entry-media {
  height: clamp(320px, 46vh, 430px);
  min-width: 0;
  background: var(--paper);
}

.brand-entry-placeholder {
  display: grid;
  place-items: center;
  background: var(--rose-soft);
  color: var(--muted);
  font-size: 16px;
  letter-spacing: .06em;
}

.brand-entry-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-entry-copy {
  min-width: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 32px 30px;
  background: var(--surface);
  text-align: center;
  word-break: keep-all;
  overflow-wrap: normal;
}

.brand-entry-copy h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.04em;
}

.brand-entry-message {
  margin: 0 0 5px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}

.brand-entry-description {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.brand-entry .brand-entry-link {
  min-height: 50px;
  min-width: 230px;
  max-width: 100%;
  margin-top: auto;
  padding: 13px 22px;
  font-size: 16px;
  border-radius: var(--radius);
}

.brand-entry-link:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .brand-entry { grid-template-columns: minmax(0, 1fr); }
  .brand-entry-panel + .brand-entry-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .brand-entry-media { height: 200px; }
  .brand-entry-copy { min-height: 236px; padding: 24px 20px 26px; }
  .brand-entry-copy h2 { font-size: 32px; }
  .brand-entry-message { font-size: 20px; }
  .brand-entry-description { font-size: 16px; margin-bottom: 18px; }
}
