:root {
  --bg: #0f1115;
  --bg-alt: #1b1f2a;
  --text-primary: #f7f2eb;
  --text-muted: #d7c6b3;
  --accent: #f2a365;
  --accent-strong: #ffcea3;
  --shadow: rgba(8, 10, 13, 0.6);
  --max-width: 1100px;
}

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

html {
  font-size: 16px;
}

body {
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f232f 0%, #0f1115 80%);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 3rem var(--shadow), 0 0 0 1px rgba(255, 206, 163, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 2rem 4rem rgba(8, 10, 13, 0.75), 0 0 40px rgba(242, 163, 101, 0.18);
}

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

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(15, 17, 21, 0.72);
  border-bottom: 1px solid rgba(255, 206, 163, 0.08);
  padding: 0.875rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-strong);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 206, 163, 0.18);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav__link:hover {
  color: var(--accent-strong);
  border-color: rgba(255, 206, 163, 0.45);
  background: rgba(242, 163, 101, 0.08);
}

/* ── Hero ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

.hero {
  min-height: calc(100svh - 56px);
  padding: 3rem 0 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero__content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body {
    font-size: 18px;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(242, 163, 101, 0.1);
  border: 1px solid rgba(242, 163, 101, 0.22);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1rem;
  animation: fadeUp 0.5s ease both;
}

.hero__text h1 {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--accent-strong);
  letter-spacing: -0.01em;
  text-shadow: 0 0.5rem 2rem rgba(242, 163, 101, 0.4);
  animation: fadeUp 0.55s 0.1s ease both;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  animation: fadeUp 0.55s 0.2s ease both;
}

.hero__cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #2c1205;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0.75rem 2rem rgba(242, 163, 101, 0.35);
  animation: fadeUp 0.55s 0.3s ease both;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.5rem rgba(242, 163, 101, 0.4);
}

.hero__media {
  animation: fadeIn 0.7s 0.25s ease both;
}


/* ── Sections ── */
.section {
  padding: 3.5rem 0;
}

.section--intro {
  background: rgba(27, 31, 42, 0.75);
  border-top: 1px solid rgba(255, 206, 163, 0.08);
  border-bottom: 1px solid rgba(255, 206, 163, 0.08);
}

.section--intro .lead {
  font-size: 1.175rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto;
  text-align: center;
}

.section--facts h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  margin-bottom: 2rem;
  text-align: center;
  color: var(--accent-strong);
}

.facts {
  display: grid;
  gap: 1.5rem;
  list-style: none;
}

@media (min-width: 768px) {
  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.fact__badge {
  display: inline-block;
  font-family: "Baloo 2", cursive;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(242, 163, 101, 0.23);
  color: var(--accent-strong);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.facts li {
  background: rgba(15, 17, 21, 0.85);
  padding: 1.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 206, 163, 0.08);
  box-shadow: 0 1rem 2rem rgba(9, 12, 16, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.facts li:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 206, 163, 0.3);
}

.section--cta {
  background: linear-gradient(135deg, rgba(242, 163, 101, 0.12), rgba(255, 206, 163, 0.18));
  text-align: center;
  border-radius: 2rem;
  margin: 0 auto 4rem;
  width: min(92%, var(--max-width));
  padding: 3rem 1.5rem;
}

.section--cta h2 {
  font-family: "Baloo 2", cursive;
  color: var(--accent-strong);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section--cta p {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--text-primary);
}

.footer {
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(247, 242, 235, 0.65);
  border-top: 1px solid rgba(255, 206, 163, 0.08);
  background: rgba(9, 11, 15, 0.85);
}

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

  .hero__subtitle {
    font-size: 1.05rem;
  }


  .facts li {
    padding: 1.25rem;
  }
}
