:root {
  --bg: #f4efe7;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #1c2430;
  --muted: #536171;
  --primary: #156c74;
  --primary-dark: #0d4950;
  --accent: #e69a2e;
  --accent-soft: #f8dfb6;
  --border: rgba(28, 36, 48, 0.12);
  --shadow: 0 22px 52px rgba(28, 36, 48, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(21, 108, 116, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(230, 154, 46, 0.18), transparent 28%),
    linear-gradient(180deg, #f3eee5 0%, #fbfaf6 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.hero,
.section {
  position: relative;
}

.hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero__content,
.hero__card,
.card,
.callout,
.highlight {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 231, 0.92)),
    var(--surface-strong);
}

.hero__card {
  padding: 1.75rem;
  background:
    linear-gradient(180deg, rgba(248, 223, 182, 0.78), rgba(255, 255, 255, 0.94)),
    var(--surface-strong);
}

.hero__badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(13, 73, 80, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.75rem, 8vw, 5.3rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.hero__lead {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 24px rgba(13, 73, 80, 0.22);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
}

.hero__card h2 {
  margin-bottom: 0.85rem;
}

.hero__card p {
  max-width: 24rem;
}

.section {
  margin-top: 1.5rem;
}

.section__heading {
  margin-bottom: 1.25rem;
}

.section--story,
.highlights,
.callout {
  padding: 1.5rem;
}

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

.card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.96);
}

.card__label {
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.card p,
.highlight p,
.callout p {
  margin-top: 0.65rem;
}

.card__link {
  display: inline-flex;
  margin-top: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}

.card__link:hover,
.card__link:focus-visible {
  text-decoration: underline;
}

.highlights {
  display: grid;
  gap: 1rem;
}

.highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.93);
}

.highlight__number {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  color: var(--primary-dark);
  background: var(--accent-soft);
}

.callout {
  display: grid;
  gap: 1.5rem;
  background:
    linear-gradient(135deg, rgba(21, 108, 116, 0.12), rgba(230, 154, 46, 0.16)),
    var(--surface-strong);
}

.callout__bubble {
  padding: 1.25rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(21, 108, 116, 0.18);
}

.callout__bubble p {
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-size: 1.25rem;
  color: var(--text);
}

@media (min-width: 720px) {
  .page-shell {
    width: min(1120px, calc(100% - 3rem));
    padding-top: 1.5rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
    gap: 1.75rem;
    padding-top: 4rem;
  }

  .highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .callout {
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
    align-items: center;
  }
}

@media (max-width: 719px) {
  .hero__content,
  .hero__card,
  .section--story,
  .highlights,
  .callout {
    border-radius: 24px;
  }
}
