:root {
  --font-body-family: Murecho, sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-heading-family: Helvetica, Arial, sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 300;
  --font-body-scale: 1.0;
  --font-heading-scale: 1.0;
  --ink: #211713;
  --muted: #6a6a6a;
  --paper: #fff8ea;
  --surface: #fffdf7;
  --accent: #cf2e31;
  --accent-dark: #8b1b21;
  --line: rgba(33, 23, 19, 0.14);
  --shadow: 0 24px 70px rgba(63, 39, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 248, 234, 0) 38%),
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(1440px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 42px);
  display: grid;
  align-items: center;
}

.hero {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
}

.art-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.art-panel img {
  width: 100%;
  height: auto;
}

.content {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #000000;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: var(--font-body-weight);
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.08;
  font-weight: var(--font-heading-weight);
  letter-spacing: 0;
  color: #555555;
}

h1 span,
.intro span {
  display: block;
}

h1 span + span {
  margin-top: 8px;
}

.intro {
  max-width: 600px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
}

.actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.actions a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3f3f3f;
  transition: transform 160ms ease, color 160ms ease;
}

.actions svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.actions a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.actions a:hover,
.actions a:focus-visible {
  color: #000000;
  transform: translateY(-2px);
}

.actions a:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.24);
  outline-offset: 5px;
}

@media (min-width: 900px) {
  .hero {
    grid-template-rows: auto auto;
  }

  .art-panel {
    justify-self: center;
    width: min(100%, 1280px);
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 14px;
    align-items: start;
  }

  .hero {
    gap: 26px;
  }

  .art-panel {
    margin-top: 6px;
  }

  .content {
    padding: 0 6px 24px;
  }

  h1 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .intro {
    margin-top: 18px;
  }

  .actions {
    gap: 22px;
  }

  .actions a {
    width: 34px;
  }
}
