:root {
  color-scheme: light;
  --paper: #f2eee7;
  --paper-deep: #ded5c8;
  --ink: #232625;
  --muted: #6c6962;
  --line: rgba(52, 48, 42, 0.18);
  --glass: rgba(255, 255, 255, 0.48);
  --glass-strong: rgba(255, 255, 255, 0.68);
  --bronze: #9b7150;
  --sage: #68786d;
  --shadow: rgba(36, 30, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.82), transparent 25rem),
    radial-gradient(circle at 82% 20%, rgba(155, 113, 80, 0.16), transparent 28rem),
    linear-gradient(135deg, #f7f4ee 0%, #e7ded1 55%, #cfc4b5 100%);
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

.shell {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 46px;
}

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.28fr);
  align-items: center;
  gap: clamp(40px, 7vw, 104px);
  border-bottom: 1px solid var(--line);
}

.copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  line-height: 0.98;
  font-weight: 600;
}

.lede {
  max-width: 54ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(35, 38, 37, 0.24);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  background: var(--glass);
  box-shadow: 0 10px 30px var(--shadow), inset 0 1px rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
}

.primary,
.donate {
  background: rgba(35, 38, 37, 0.92);
  color: #fffaf2;
  border-color: rgba(35, 38, 37, 0.7);
}

.showpiece {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 86px var(--shadow), inset 0 1px rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.showpiece img {
  display: block;
  width: 100%;
  height: auto;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 1px;
}

article {
  min-height: 188px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(18px);
}

article span {
  color: var(--bronze);
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: 1.55rem;
}

h2 {
  margin: 28px 0 12px;
  font-size: 1.05rem;
}

article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.donate-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 46px 0 0;
}

.donate-band h2 {
  margin: 0;
  max-width: 760px;
  font-family: Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
}

.donate-band p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 44px 0 32px;
    gap: 28px;
  }

  .showpiece {
    order: -1;
    border-radius: 26px;
  }

  .details {
    grid-template-columns: 1fr;
  }

  .donate-band {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
}
