:root {
  --bg: #FFF8EF;
  --text: #24313A;

  --coral: #FF7A6B;
  --turquoise: #4DB6AC;
  --yellow: #FFD166;
  --sage: #A8D5BA;

  --container-width: 1280px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;

  font-family: "Nunito Sans", sans-serif;

  background: var(--bg);
  color: var(--text);

  line-height: 1.6;
}

.container {
  width: min(90%, var(--container-width));
  margin-inline: auto;
}

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

/* HEADER */

.site-header {
  background: white;

  position: sticky;
  top: 0;

  border-bottom: 1px solid #eee;

  z-index: 100;
}

.header-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 1rem 0;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-weight: 600;
}

.cta-button {
  background: var(--coral);

  color: white;

  padding: 0.8rem 1.2rem;

  border-radius: 999px;

  font-weight: 700;
}

/* MAIN */

main {
  min-height: 80vh;
}

/* FOOTER */

.site-footer {
  margin-top: 5rem;

  padding: 3rem 0;

  border-top: 1px solid #eee;

  text-align: center;
}

/* HERO */

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--turquoise);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-text {
  margin: 1.5rem 0 0;
  max-width: 620px;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-note {
  margin-top: 1rem;
  font-weight: 700;
  color: #5f6f78;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
}

.button-primary {
  background: var(--coral);
  color: white;
}

.button-secondary {
  background: white;
  color: var(--text);
  border: 2px solid #f0e3d3;
}

.hero-card {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(36, 49, 58, 0.08);
  border: 1px solid #f1e4d5;
}

.hero-card-icon {
  font-size: 2.5rem;
}

.hero-card h2 {
  margin: 1rem 0;
  font-size: 1.7rem;
  line-height: 1.1;
}

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

/* SECTIONS */

.section {
  padding: 4rem 0;
}

.section-soft {
  background: #ffffff80;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.feature-card {
  background: white;
  padding: 1.6rem;
  border-radius: 1.5rem;
  border: 1px solid #f1e4d5;
}

.feature-card span {
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 4rem;
  align-items: center;
}

.link-list {
  display: grid;
  gap: 1rem;
}

.link-list a {
  background: white;
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  font-weight: 800;
  border: 1px solid #f1e4d5;
}

/* ABOUT */

.about-intro h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  max-width: 800px;
  line-height: 1.2;
  margin: 0.5rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.prose p {
  font-size: 1.05rem;
  color: #3d4e57;
  margin-top: 0;
  margin-bottom: 1rem;
}

.cta-centered {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-centered h2 {
  margin-bottom: 1.5rem;
}

/* ARTICLES LISTING */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.article-card {
  background: white;
  border-radius: 1.5rem;
  border: 1px solid #f1e4d5;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(36, 49, 58, 0.1);
}

.article-card a {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  height: 100%;
}

.article-card-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--turquoise);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.6rem;
}

.article-card h2 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}

.article-card p {
  font-size: 0.95rem;
  color: #5f6f78;
  flex: 1;
  margin: 0 0 1.2rem;
  line-height: 1.5;
}

.article-card-link {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--coral);
  margin-top: auto;
}

.articles-empty {
  color: #5f6f78;
  font-size: 1.1rem;
}

.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #f1e4d5;
}

.pagination-info {
  font-weight: 700;
  color: #5f6f78;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-grid,
  .split-section,
  .cards-grid,
  .cards-grid-2,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    gap: 1rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }
}
