:root {
  color-scheme: light;
  --ink: #291509;
  --muted: #67451f;
  --sun: #ffd84d;
  --gold: #ffb238;
  --paper: #fff6cf;
  --cream: #fffaf0;
  --line: rgba(41, 21, 9, 0.16);
  --coral: #d95b38;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.7) 0 18%, transparent 18% 100%),
    radial-gradient(circle at 72% 18%, #ffe991 0 17rem, transparent 17.5rem),
    linear-gradient(140deg, #ffe36d 0%, #ffbd43 58%, #fff4cf 100%);
}

button,
a {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px) 0 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-lockup img {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(104, 62, 2, 0.18);
}

.brand-lockup span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 1.14rem;
  font-weight: 800;
}

.brand-lockup em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 700;
}

.eyebrow {
  margin: clamp(40px, 9vw, 88px) 0 14px;
  color: #8c351e;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.6rem, 8.4vw, 7.65rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 36rem;
  margin: 26px 0 0;
  color: #4c2d12;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 600;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-actions span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(41, 21, 9, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 250, 240, 0.55);
  color: #4b2d12;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 34px 60px rgba(82, 43, 0, 0.22));
}

.notes {
  margin: 0 auto;
  padding: 18px 0 72px;
}

.notes p {
  width: min(760px, 100%);
  margin: 0;
  color: #48280f;
  font-size: clamp(1.08rem, 2.2vw, 1.36rem);
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  h1 {
    max-width: 9.5ch;
    font-size: clamp(3.35rem, 16vw, 5.8rem);
  }

  .eyebrow {
    margin-top: 44px;
  }

  .hero-visual {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .brand-lockup img {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .lede {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .hero-visual img {
    width: min(100%, 420px);
  }
}
