/* Fowl Facts — Chicken Road Landing
   landingpulselynx.com */

:root {
  --gold: #e2b12c;
  --gold-light: #f3d36a;
  --gold-deep: #b8860b;
  --olive: #3d4a2e;
  --olive-deep: #2a3320;
  --olive-soft: #5a6b45;
  --asphalt: #2c3036;
  --asphalt-light: #5c6068;
  --cream-warm: #f3efe6;
  --ink: #14161a;
  --ink-soft: #3e4238;
  --white: #ffffff;
  --fog: rgba(243, 239, 230, 0.92);
  --shadow: 0 18px 50px rgba(26, 28, 24, 0.18);
  --radius: 2px;
  --font-display: "Syne", "Arial Narrow", sans-serif;
  --font-body: "Literata", Georgia, serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-warm);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(212, 160, 23, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(90, 107, 69, 0.1), transparent),
    linear-gradient(180deg, #efe6d4 0%, var(--cream-warm) 40%, #ebe3d2 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--olive);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 0.85rem 1.25rem;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(20, 22, 26, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: none;
  gap: 1.35rem;
  align-items: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--gold-light);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: var(--radius);
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 1px;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Compact legal-page header: always show primary links on desktop; wrap on small screens */
.nav--legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .nav--legal {
    gap: 0.65rem;
    font-size: 0.85rem;
  }

  .nav--legal .nav-cta {
    min-height: 40px;
    padding: 0.4rem 0.85rem;
  }
}

.nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--asphalt);
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-content: end;
  color: var(--white);
  overflow: hidden;
  background: var(--asphalt);
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(20, 22, 26, 0.88) 0%,
      rgba(20, 22, 26, 0.55) 38%,
      rgba(20, 22, 26, 0.2) 62%,
      rgba(20, 22, 26, 0.45) 100%
    ),
    linear-gradient(180deg, rgba(20, 22, 26, 0.35) 0%, transparent 28%, rgba(20, 22, 26, 0.82) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6.5rem 1.25rem 5.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 6.75rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  color: var(--white);
}

.hero-lane {
  width: min(100%, 22rem);
  height: 6px;
  margin-bottom: 1.35rem;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 28px,
    transparent 28px 44px
  );
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 3.4vw, 2.05rem);
  font-weight: 500;
  font-style: italic;
  max-width: 16ch;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}

.hero-lead {
  max-width: 34ch;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}

.hero-text-link {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
}

.hero-text-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.hero-continue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.hero-continue:hover {
  color: var(--gold-light);
}

.hero .btn-primary {
  box-shadow: none;
  background: var(--gold);
  color: var(--ink);
  border-radius: 0;
  min-width: 10.5rem;
}

.hero .btn-primary:hover {
  background: var(--gold-light);
  transform: none;
}

@media (min-width: 900px) {
  .hero-panel {
    padding: 7.5rem 1.5rem 6rem;
  }
}

/* ——— Sections ——— */
.section {
  padding: 5rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.65rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--olive-deep);
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.section-intro {
  max-width: 52ch;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

/* ——— Facts ——— */
.facts {
  background:
    linear-gradient(180deg, transparent, rgba(61, 74, 46, 0.04)),
    var(--cream-warm);
}

.facts-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .facts-layout {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
    gap: 3.5rem;
  }
}

.facts-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.facts-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.fact-item {
  padding-left: 1.15rem;
  border-left: 3px solid var(--gold);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fact-item.is-visible {
  opacity: 1;
  transform: none;
}

.fact-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--olive-deep);
  margin-bottom: 0.3rem;
}

.fact-item p {
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ——— Feature split (Chicken Road / CR2) ——— */
.feature {
  position: relative;
}

.feature--road {
  background: var(--olive-deep);
  color: var(--cream-warm);
}

.feature--road .section-label {
  color: var(--gold-light);
}

.feature--road h2 {
  color: var(--white);
}

.feature--road .section-intro {
  color: rgba(247, 240, 228, 0.82);
}

.feature--sequel {
  background:
    linear-gradient(135deg, #1e2228 0%, #2a3320 55%, #3a3d42 100%);
  color: var(--cream-warm);
}

.feature--sequel .section-label {
  color: var(--gold);
}

.feature--sequel h2 {
  color: var(--white);
}

.feature--sequel .section-intro {
  color: rgba(247, 240, 228, 0.82);
}

.feature-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .feature-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3rem;
  }

  .feature-grid--reverse {
    direction: rtl;
  }

  .feature-grid--reverse > * {
    direction: ltr;
  }
}

.feature-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.feature-media:hover img {
  transform: scale(1.04);
}

.feature-body p {
  margin-bottom: 1rem;
  color: rgba(247, 240, 228, 0.88);
}

.feature-points {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.feature-points li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.98rem;
}

.feature-points li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

/* ——— How it works ——— */
.how {
  background: var(--cream-warm);
}

.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.step {
  position: relative;
  padding: 1.75rem 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(61, 74, 46, 0.12);
  border-radius: var(--radius);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--olive-deep);
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ——— FAQ ——— */
.faq {
  background: linear-gradient(180deg, #e8e0d0, var(--cream-warm));
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid rgba(61, 74, 46, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--olive-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 48px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-deep);
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .answer {
  padding: 0 1.25rem 1.2rem;
  color: var(--ink-soft);
}

/* ——— CTA band ——— */
.cta-band {
  background: var(--olive);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 1.25rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--white);
  max-width: 18ch;
  margin: 0 auto 0.75rem;
}

.cta-band p {
  max-width: 42ch;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}

.cta-band .btn-group {
  justify-content: center;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(247, 240, 228, 0.75);
  padding: 3rem 1.25rem 2rem;
  font-size: 0.92rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(247, 240, 228, 0.8);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-title {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ——— Legal pages ——— */
.legal-page {
  padding-top: 5.5rem;
}

.legal-hero {
  background: var(--asphalt);
  color: var(--white);
  padding: 3rem 1.25rem 2.5rem;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--olive-deep);
  margin: 2rem 0 0.75rem;
}

.legal-body p,
.legal-body li {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

.legal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--asphalt-light);
  margin-bottom: 1.5rem;
}

/* ——— Cookie banner ——— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.15rem 1.25rem;
  background: rgba(26, 28, 24, 0.96);
  color: var(--cream-warm);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}

.cookie-banner.is-visible {
  transform: none;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-inner a {
  color: var(--gold-light);
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  font-size: 0.95rem;
}

.btn-secondary {
  background: transparent;
  color: var(--cream-warm);
  border: 1px solid rgba(247, 240, 228, 0.4);
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .fact-item {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
