:root {
  --bg: #f8f4ec;
  --bg-soft: #fefcf8;
  --hero-accent: linear-gradient(180deg, #fee4bc 0%, #f8f4ec 100%);
  --card: #ffffff;
  --ink: #1f2a37;
  --muted: #5c6070;
  --accent: #c0522f;
  --accent-strong: #963515;
  --accent-soft: #ffe7d3;
  --border: #e5d6c5;
  --font-body: "Work Sans", "Segoe UI", sans-serif;
  --font-heading: "Newsreader", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

.container {
  width: min(960px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -1000px;
  top: 12px;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
}

.hero {
  background: var(--hero-accent);
  padding: clamp(2.5rem, 8vw, 4.5rem) 0;
}

.hero__content {
  text-align: left;
}

.home-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.home-link:hover {
  text-decoration: underline;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: var(--accent-strong);
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--ink);
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 720px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cta {
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta.primary {
  background: var(--accent);
  color: #fff9f5;
  box-shadow: 0 14px 30px rgba(192, 82, 47, 0.35);
}

.cta.secondary {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.cta.tertiary {
  border: 1px solid var(--border);
  color: var(--accent-strong);
  text-align: center;
  display: inline-flex;
  justify-content: center;
}

.cta:hover {
  transform: translateY(-2px);
}

.hero__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__highlights li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  color: var(--accent-strong);
}

.section {
  padding: clamp(3rem, 8vw, 4.75rem) 0;
}

.cheat-sheet {
  background: var(--bg-soft);
}

.section__lead {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 2rem;
}

.show {
  background: var(--bg);
}

.show__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.show__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 16px 30px rgba(20, 26, 39, 0.08);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.checklist li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 0.45rem;
}

.checklist li {
  display: flex;
}

.prompt-card {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--accent-soft);
  border-radius: 16px;
}

.prompt-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.prompt-text {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cheat-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cheat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 12px 24px rgba(20, 26, 39, 0.05);
}

.cheat-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.5;
}

.model-card,
.safety-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.model-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.steps {
  background: var(--bg-soft);
}

.stepper {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding-left: 1.25rem;
}

.stepper h3 {
  margin-bottom: 0.35rem;
}

.safety-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.safety-card {
  background: var(--hero-accent);
  border: 1px solid rgba(192, 82, 47, 0.2);
}

.helpers-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.helpers-grid article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  min-height: 160px;
}

.footer {
  background: #f4ebe0;
  color: #3c2a22;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer .home-link {
  color: var(--accent-strong);
}

@media (max-width: 600px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__highlights {
    flex-direction: column;
  }

  .stepper {
    padding-left: 1rem;
  }
}
