.identity-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) var(--pad) 3.5rem;
  border-bottom: 1px solid var(--line);
}

.identity-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 1rem;
}

.seal-note {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-left: 2px solid var(--gold);
  background: rgba(197, 206, 192, 0.22);
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
}

.identity-hero-logo {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: var(--paper);
}

.identity-block {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad);
}

.identity-block + .identity-block {
  border-top: 1px solid var(--line);
}

.swatches {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.swatch {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 0.45rem;
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.swatch span {
  background: rgba(255, 255, 255, 0.88);
  padding: 0.12rem 0.25rem;
}

.swatch.dark span {
  background: rgba(0, 0, 0, 0.35);
  color: var(--chalk);
}

.identity-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.identity-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.4rem 1.35rem;
}

.identity-card h3 { margin-bottom: 0.75rem; }

.type-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.type-small {
  color: var(--muted);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.muted { color: var(--muted); margin-top: 1rem; }

.identity-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.identity-card li + li { margin-top: 0.4rem; }

.identity-grid-2,
.identity-grid-3 {
  display: grid;
  gap: 1rem;
}

.identity-grid-2 { grid-template-columns: 1fr 1fr; }
.identity-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.identity-block figure figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.55rem 0.1rem 0;
}

.identity-cta {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.nav a[aria-current="page"] {
  color: var(--forest);
}

@media (max-width: 980px) {
  .identity-hero,
  .identity-rules,
  .identity-grid-2,
  .identity-grid-3,
  .swatches {
    grid-template-columns: 1fr 1fr;
  }

  .identity-hero { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .identity-grid-3,
  .swatches,
  .identity-rules,
  .identity-grid-2 {
    grid-template-columns: 1fr;
  }
}
