:root {
  color-scheme: light;
  --ink: #1b120a;
  --muted: #6e5030;
  --paper: #fff8e9;
  --panel: #fff3d3;
  --gold: #c99021;
  --deep: #2b1608;
  --accent: #8d1512;
  --white: #fffdf7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 233, 0.94), rgba(255, 243, 211, 0.96)),
    radial-gradient(circle at 12% 18%, rgba(201, 144, 33, 0.2), transparent 28%),
    var(--paper);
}

body,
html {
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(22px, 4vh, 44px) 0 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  min-height: calc(100vh - 104px);
}

.hero-copy {
  padding: 18px 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
  color: var(--deep);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4.3rem, 8.4vw, 7.4rem);
  font-style: italic;
  font-weight: 700;
}

h1 span {
  display: block;
}

.intro {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);
  line-height: 1.5;
}

.intro p {
  margin: 0;
}

.intro p + p {
  margin-top: 8px;
}

.actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(100%, 360px);
  margin: 28px auto 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 16px;
  border: 2px solid var(--deep);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
}

.button-icon {
  flex: 0 0 auto;
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
}

.button.primary {
  color: var(--white);
  background: var(--deep);
}

.button.secondary {
  color: var(--deep);
  background: rgba(255, 253, 247, 0.82);
}

.hero-art {
  display: block;
  justify-self: end;
  width: 100%;
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  object-fit: contain;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 6px 0 26px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 819px) {
  .page-shell {
    width: min(100% - 16px, 500px);
    padding: 12px 0 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
  }

  .hero-copy {
    padding: 4px 0 0;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(2.75rem, 11.5vw, 4.35rem);
  }

  .intro {
    max-width: 34rem;
    margin-top: 16px;
    font-size: 1.01rem;
    line-height: 1.46;
  }

  .actions {
    grid-template-columns: 1fr;
    margin-top: 22px;
    width: 100%;
  }

  .button {
    min-height: 48px;
    padding: 11px 12px;
    font-size: 0.93rem;
  }

  .hero-art {
    justify-self: center;
    width: 100%;
  }

  .hero-art img {
    margin: 0 auto;
  }

  .site-footer {
    width: min(100% - 16px, 500px);
    padding: 4px 0 22px;
  }
}

@media (min-width: 1280px) {
  .hero-art {
    width: 100%;
  }
}
