:root {
  color-scheme: light;
  --bg: #fff8f7;
  --surface: #ffffff;
  --surface-muted: #f7ecea;
  --text: #211716;
  --muted: #6e5a57;
  --line: #e8d6d2;
  --brand: #8c1d3f;
  --brand-dark: #62132b;
  --accent: #136f63;
  --shadow: 0 18px 50px rgba(33, 23, 22, 0.10);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 248, 247, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  color: var(--brand);
}

.hero {
  align-items: center;
  background:
    linear-gradient(110deg, rgba(33, 23, 22, 0.86), rgba(140, 29, 63, 0.70)),
    url("https://images.unsplash.com/photo-1518895312237-a9e23508077d?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: 72vh;
  padding: clamp(72px, 12vw, 132px) clamp(20px, 5vw, 72px);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd8df;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  margin-bottom: 22px;
  max-width: 900px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  max-width: 680px;
}

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

.button {
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  text-decoration: none;
}

.button.primary {
  background: #fff;
  color: var(--brand-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
}

.notice,
.section,
.site-footer {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.notice {
  background: var(--brand-dark);
  color: #fff;
  font-size: 16px;
  padding-bottom: 18px;
  padding-top: 18px;
}

.section {
  padding-bottom: clamp(56px, 8vw, 96px);
  padding-top: clamp(56px, 8vw, 96px);
}

.section.muted {
  background: var(--surface-muted);
}

.section-heading {
  margin-bottom: 28px;
  max-width: 760px;
}

.category-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.category-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 12px;
  list-style-position: inside;
  margin: 0;
  max-width: 820px;
  padding: 0;
}

.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}

.site-footer {
  align-items: center;
  background: var(--text);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 24px;
  padding-top: 24px;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 70vh;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}
