:root {
  --bg: #F3F5F4;
  --ink: #1f2428;
  --muted: #5b6770;
  --card: #F1F4F3;
  --border: #d7dde3;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, serif;
  background: #F7F9F8;
  color: #2b2b2b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 50px;
  min-height: 100vh;
  text-align: center;
}

.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 18px 16px;
}

.hero {
  text-align: center;
  margin-top: 6px;
  margin-bottom: 1.4rem;
}

.hero img + img {
  margin-top: 0.5rem;   /* space between logo and image */
}

.kicker {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.02em;
}

h1 {
  margin: 6px 0 6px;
  font-size: 1.8rem;
  line-height: 1.2;
}

h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.sub {
  margin: 0 0 8px;
  color: var(--muted);
}

.muted-line {
  margin: 12px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cards {
  display: grid;
  gap: 20px;
}

.card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  line-height: 1.6;
  margin: 18px 0;
}

.listen-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.quiet-button {
  display: inline-block;
  background: #C9D5D0;
  border: 1px solid #B8C6C1;
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font: inherit;
  font-size: 0.98rem;
  color: #2b2b2b;
  cursor: pointer;
  line-height: 1.2;
  text-decoration: none;
  min-width: 220px;
  text-align: center;

  margin: 10px 0;   /* 👈 add this */
}

.quiet-button:hover,
.quiet-button:focus {
  background: #B8C6C1;
  border-color: #AEBDB7;
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  color: #2b2b2b;
  text-decoration: none;
  border-bottom: 1px solid rgba(43,43,43,0.25);
  padding-bottom: 2px;
  text-align: center;
}

.back-link:hover {
  border-bottom-color: rgba(43,43,43,0.5);
}

.footer {
  padding: 28px 0 36px;
  color: var(--muted);
}

.powered-by {
  margin-top: 33px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  opacity: 0.7;
}

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

.museum-logo {
  display: block;
  max-width: 90px;       /* smaller than before */
  width: 100%;
  height: auto;
  margin: 0 auto 0.6rem; /* tighter spacing below */
  opacity: 0.95;          /* softens it slightly */
}

.object-image {
  display: block;
  max-width: 55%;
  height: auto;
  margin: 1.5rem auto 1rem;
  border-radius: 16px;
  opacity: 0.95;
}

.object-image {
  box-shadow: 0 0 0 12px #E4ECE9;
}

.object-image.needle-image {
  max-width: 45%;   /* ⬅️ smaller than gloves */
  opacity: 0.95;    /* slight softening */
}

.intro {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* FORCE hide screen reader text */
p.sr-only {
  display: none !important;
}
section.wrap h2 {
  margin-top: 24px;
}

.discover-text {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: #f7f9f8;
  text-align: left;
}

.discover-text p {
  margin: 0;
}

.discover-text.intro-text {
  text-align: center;
}

.quiet-button.center {
  display: block;
  margin: 2rem auto 0;
}
