* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f7f2eb;
  color: #222;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  padding: 0;
}

/* HERO */

.hero {
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
  overflow: hidden;
  background: #fff;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px;
  max-height: 360px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 2.25rem;
  background: #fff;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d35445;
  background: #fde6e0;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #14233b;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #384353;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: #e3442e;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.08s ease, box-shadow 0.08s ease,
    background 0.1s ease;
  box-shadow: 0 4px 12px rgba(227, 68, 46, 0.3);
}

.btn-primary:hover {
  background: #cf3824;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(227, 68, 46, 0.4);
}

.btn-ghost {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #d2c6b7;
  background: #fffaf4;
  font-size: 0.9rem;
}

.hero-meta {
  font-size: 0.8rem;
  color: #7f7a6f;
}

/* CONTENT SECTIONS */

section {
  margin-bottom: 3rem;
  clear: both;
}

section:first-of-type {
  margin-top: 3rem;
}

h2 {
  font-size: 1.4rem;
  color: #14233b;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.highlight {
  font-weight: 600;
  color: #14233b;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.pill {
  font-size: 0.8rem;
  background: #f0e3d3;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: #524535;
}

.callout {
  background: #14233b;
  color: #f7f2eb;
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.callout strong {
  color: #ffe0c7;
}

footer {
  margin-top: 2rem;
  padding-bottom: 3rem;
  font-size: 0.8rem;
  color: #7b7264;
  text-align: center;
}

footer a {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .page {
    padding-top: 1rem;
  }

  .hero-content {
    padding: 1.6rem 1.4rem 2rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
