.logo-page {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
  padding: 118px 0 90px;
}

.logo-hero {
  max-width: 850px;
  padding-bottom: 82px;
}

.logo-hero h1 {
  max-width: 760px;
  margin: 14px 0 28px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(4rem, 8vw, 7.25rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
}

.logo-hero h1 em { color: var(--accent); font-weight: 400; }

.logo-lede {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.download-section {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.section-intro h2 {
  margin: 8px 0 0;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}

.section-intro > p { margin: 0; color: var(--muted); }

.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }

.asset-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.asset-preview {
  display: grid;
  min-height: 270px;
  padding: 64px;
  place-items: center;
  border-bottom: 1px solid var(--line);
}

.asset-preview img { width: 100%; max-width: 410px; }
.preview-white { background: #fff; }
.preview-transparent {
  background-color: #fff;
  background-image: linear-gradient(45deg, #eeeae3 25%, transparent 25%), linear-gradient(-45deg, #eeeae3 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #eeeae3 75%), linear-gradient(-45deg, transparent 75%, #eeeae3 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
}

.asset-meta { display: flex; gap: 24px; align-items: end; justify-content: space-between; padding: 26px; }
.asset-meta h3 { margin: 8px 0 2px; font-size: 1.05rem; }
.asset-meta p { margin: 0; color: var(--muted); font-size: .88rem; }
.file-type { color: var(--accent-strong); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }

.download-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 10px;
  color: #fff;
  background: #1a1a1a;
  font-size: .82rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.download-button:hover { transform: translateY(-2px); background: var(--accent-strong); }
.download-button:focus-visible { outline: 3px solid rgba(212, 106, 29, .35); outline-offset: 3px; }
.download-button span { font-size: 1.15rem; }

.usage-note {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 38px;
  padding: 36px;
  border-radius: 20px;
  color: #fff;
  background: #1a1a1a;
}

.usage-note > span { display: grid; width: 84px; height: 84px; place-items: center; border-radius: 16px; color: #fff; background: var(--accent); font-size: 2.4rem; font-weight: 800; }
.usage-note h2 { margin: 0 0 6px; font-family: "Instrument Serif", serif; font-size: 2rem; font-weight: 400; }
.usage-note p { max-width: 720px; margin: 0; color: #c9c4bc; }

@media (max-width: 780px) {
  .logo-page { padding-top: 82px; }
  .logo-hero { padding-bottom: 58px; }
  .logo-hero h1 { font-size: clamp(3.7rem, 17vw, 5.5rem); }
  .section-intro { grid-template-columns: 1fr; gap: 20px; }
  .download-grid { grid-template-columns: 1fr; }
  .asset-preview { min-height: 220px; padding: 48px 34px; }
}

@media (max-width: 520px) {
  .logo-page { width: min(calc(100% - 28px), 1180px); padding-bottom: 60px; }
  .download-section { padding: 54px 0; }
  .asset-meta { align-items: stretch; flex-direction: column; }
  .download-button { justify-content: space-between; }
  .usage-note { grid-template-columns: 1fr; padding: 28px; }
  .usage-note > span { width: 64px; height: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  .download-button { transition: none; }
}
