/* ============================================
   DeHaat Farmer Creator Movement — pitch site
   Styled on the Honest Farms brand system
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.8px;
  line-height: 1.55;
  color: var(--color-base);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.container--narrow { max-width: 920px; }

section { padding: var(--section-spacing) 0; scroll-margin-top: 72px; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-base);
  line-height: 1.18;
}

h1 { font-size: clamp(38px, 5.4vw, 64px); }
h2 { font-size: clamp(29px, 3.4vw, 40px); }
h3 { font-size: clamp(21px, 2.2vw, 25px); }

.lead {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.6;
}

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
}

.section-head { max-width: 860px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: rgba(var(--color-base-rgb), .88); }

.muted { color: rgba(var(--color-base-rgb), .7); }
.accent { color: var(--color-accent); }

.footnote {
  font-size: 13px;
  color: rgba(var(--color-base-rgb), .55);
  margin-top: 28px;
  line-height: 1.5;
}
.footnote a { color: inherit; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-soft);
  transition: box-shadow var(--duration-medium) var(--ease);
}
.nav.is-scrolled { box-shadow: var(--shadow); }

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

.nav__logo img { height: 48px; width: auto; }

.nav__tag {
  font-weight: 600;
  font-size: 14px;
  color: rgba(var(--color-base-rgb), .75);
}

/* ---------- Hero ---------- */

.hero { padding: 72px 0 0; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--color-accent); }

.hero__sub { max-width: 520px; margin-bottom: 36px; }

.hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__caption {
  font-size: 13px;
  color: rgba(var(--color-base-rgb), .55);
  margin-top: 12px;
}

.hero__strip {
  margin-top: 72px;
  border-top: 1px solid var(--color-border-soft);
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15px;
  color: rgba(var(--color-base-rgb), .8);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16.8px;
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-button);
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--duration-short) var(--ease), transform var(--duration-short) var(--ease);
}
.btn:hover { background: var(--color-accent-dark); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--color-base);
  border: 1.5px solid var(--color-border);
}
.btn--ghost:hover { background: rgba(var(--color-base-rgb), .06); color: var(--color-base); }

/* ---------- Section tints ---------- */

.band--soft { background: var(--color-bg-soft); }
.band--cream { background: var(--color-cream-light); }
.band--blue { background: var(--color-base); }
.band--blue h2, .band--blue h3, .band--blue p { color: #fff; }
.band--blue .kicker { color: var(--color-cream-text); }
.band--blue .muted { color: rgba(255, 255, 255, .75); }
.band--blue .footnote { color: rgba(255, 255, 255, .5); }

/* ---------- Cards & grids ---------- */

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* stat blocks */
.stat { padding: 28px; }
.stat__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(34px, 3.6vw, 48px);
  color: var(--color-accent);
  line-height: 1.05;
  margin-bottom: 8px;
}
.stat--blue .stat__num { color: var(--color-base); }
.stat__label { font-weight: 600; margin-bottom: 6px; color: var(--color-navy); }
.stat__note { font-size: 14px; color: rgba(var(--color-base-rgb), .65); }

.band--blue .stat__num { color: var(--color-cream-text); }
.band--blue .stat__label { color: #fff; }
.band--blue .stat__note { color: rgba(255, 255, 255, .65); }

/* creator cards */
.creator-card { display: flex; flex-direction: column; gap: 10px; }
.creator-card h3 { font-size: 19px; color: var(--color-navy); }
.creator-card .creator-card__role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.creator-card p { font-size: 15px; color: rgba(var(--color-base-rgb), .85); }
.creator-card .creator-card__stat {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-soft);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-navy);
}

/* media + text split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-base);
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  padding: 9px 18px;
}
.chip--green { color: var(--color-accent); border-color: rgba(15, 128, 64, .35); }

/* journey steps */
.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.journey__step { position: relative; padding: 24px 20px; }
.journey__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  background: var(--color-accent);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.journey__step h3 { font-size: 18px; margin-bottom: 6px; color: var(--color-navy); }
.journey__step p { font-size: 14px; color: rgba(var(--color-base-rgb), .8); }

/* checklist rows */
.checkrow { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--color-border-soft); }
.checkrow:last-child { border-bottom: none; }
.checkrow__icon {
  flex: 0 0 26px; height: 26px;
  border-radius: 50%;
  background: rgba(15, 128, 64, .12);
  color: var(--color-accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  margin-top: 2px;
}
.checkrow strong { color: var(--color-navy); }

/* quote */
.pullquote {
  border-left: 3px solid var(--color-accent);
  padding: 6px 0 6px 24px;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
  color: var(--color-navy);
  font-weight: 600;
  max-width: 760px;
}

/* table-ish mapping rows */
.maprow {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  align-items: baseline;
}
.maprow:last-child { border-bottom: none; }
.maprow__channel { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: #fff; }
.maprow p { font-size: 15px; }

/* roadmap */
.phase { position: relative; padding: 28px; }
.phase__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-base);
  border-radius: var(--radius-badge);
  padding: 4px 10px;
  margin-bottom: 16px;
}
.phase h3 { color: var(--color-navy); margin-bottom: 8px; }
.phase p { font-size: 15px; }

/* ---------- Festival calendar ---------- */

.fest-days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fest-day {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 22px;
}
.fest-day__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--color-cream-text);
  margin-bottom: 8px;
}
.fest-day h3 { font-size: 19px; }
.fest-day p { font-size: 14px; color: rgba(255, 255, 255, .75); margin-top: 6px; }

/* guinness block */
.guinness {
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  background: rgba(255, 255, 255, .05);
}
.guinness h3 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
}
.guinness .guinness__theme {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--color-cream-text);
  font-weight: 600;
  margin: 18px 0 8px;
}

/* finale media */
.finale__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .35);
  margin: 56px 0;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, .8);
  padding: 56px 0;
  font-size: 14px;
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer img { height: 44px; width: auto; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-large) var(--ease), transform var(--duration-large) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 989px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .maprow { grid-template-columns: 1fr; gap: 6px; padding: 24px 0; }
}

@media (max-width: 749px) {
  .hero__grid, .split { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .fest-days { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .nav__tag { display: none; }
  .guinness { padding: 32px 20px; }
  .hero { padding-top: 48px; }
  .split--reverse-mobile .split__media { order: -1; }
}
