:root {
  color-scheme: light;
  --ink: #2d261f;
  --muted: #6c5d50;
  --paper: #fff8ec;
  --pot: #c94321;
  --herb: #5e7040;
  --line: rgba(96, 72, 48, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #fffaf2 0%, var(--paper) 48%, #f3dfbd 100%);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.hero {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(140px, 240px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: 48px 0;
}

.mark {
  width: min(100%, 220px);
  aspect-ratio: 1;
  display: block;
  border-radius: 24%;
  box-shadow: 0 22px 54px rgba(92, 55, 34, 0.2);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--herb);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.94;
  font-weight: 760;
}

.lead {
  margin: 24px 0 0;
  color: var(--pot);
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  line-height: 1.12;
  font-weight: 720;
}

.body {
  margin: 20px 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.6;
}

a {
  display: inline-flex;
  margin-top: 30px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.42);
}

a:focus-visible {
  outline: 3px solid rgba(94, 112, 64, 0.45);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mark {
    width: 150px;
  }
}
