/* First Nation Food Sovereignty — sister site to loveya.food
   Palette, type and component language mirror the live Love Ya site. */
:root {
  --ink: #103534;          /* headings, dark pills */
  --ink-deep: #0f2c2b;     /* footer */
  --body: #3d5f5e;         /* paragraph text */
  --teal: #1f7c7c;         /* primary button */
  --teal-dark: #2b6568;
  --accent: #4cb5b5;       /* eyebrows, highlights */
  --mint: #5ec4c4;         /* mint button on dark */
  --mint-50: #dff6f7;      /* chips */
  --grad-a: #75c7c8;
  --grad-b: #1b8d9b;
  --white: #ffffff;
  --paper: #fbfdfd;
  --paper-2: #f4f8f8;
  --line: rgba(16, 53, 52, .09);
  --shadow: 0 10px 20px rgba(16, 53, 52, .10);
  --radius: 22px;
  --radius-lg: 28px;
  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --text: "Readex Pro", "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--body); font-family: var(--text); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--head); color: var(--ink); letter-spacing: -.025em; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .5rem 1rem; border-radius: 999px; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* header: floating white pill */
.top { position: sticky; top: 0; z-index: 50; padding: .9rem var(--gutter) 0; pointer-events: none; }
.top-inner { pointer-events: auto; max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem .6rem .55rem 1.2rem; background: var(--white); border-radius: 999px; box-shadow: var(--shadow); }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-text { font-family: var(--head); font-weight: 700; font-size: .9rem; line-height: 1.05; color: var(--ink); letter-spacing: -.01em; }
.nav { display: flex; gap: 1.5rem; align-items: center; }
.nav a { text-decoration: none; font-size: .9rem; font-weight: 500; color: var(--ink); transition: color .15s; }
.nav a:hover { color: var(--teal); }
.nav-cta { padding: .6rem 1.2rem; background: var(--ink); border-radius: 999px; color: #fff !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--teal); }
.menu { display: none; background: var(--ink); border: 0; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; padding: 0; }
.menu span { display: block; height: 2px; background: #fff; margin: 5px auto; width: 18px; border-radius: 2px; }
.mobile-nav[hidden] { display: none; }
.mobile-nav { display: flex; flex-direction: column; position: sticky; top: 0; z-index: 49; margin: .6rem var(--gutter) 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: .5rem; }
.mobile-nav a { padding: .85rem 1rem; text-decoration: none; font-weight: 500; color: var(--ink); border-radius: 12px; }
.mobile-nav a:hover { background: var(--paper-2); color: var(--teal); }
@media (max-width: 860px) { .nav { display: none; } .menu { display: block; } }

/* hero */
.hero { position: relative; margin-top: calc(-1 * (44px + 1.8rem)); padding-top: calc(44px + 1.8rem); background: linear-gradient(180deg, var(--grad-a) 0%, var(--grad-b) 100%); color: #fff; overflow: hidden; text-align: center; }
.hero-bg { position: absolute; inset: 0; color: rgba(255,255,255,.35); }
.hero-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-inner { position: relative; max-width: 52rem; margin: 0 auto; padding: clamp(3rem, 8vh, 6rem) var(--gutter) 2.5rem; }
.eyebrow { font-family: var(--head); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.9); margin: 0 0 1.4rem; font-weight: 600; }
.hero h1 { color: #fff; font-weight: 700; font-size: clamp(2.4rem, 6.5vw, 4.4rem); line-height: 1.08; margin: 0 0 1.4rem; overflow-wrap: anywhere; }
.hero h1 em { font-style: normal; color: var(--ink); }
.lede { max-width: 40rem; margin: 0 auto 2rem; font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.6; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.6rem; border-radius: 999px; text-decoration: none; font-family: var(--head); font-weight: 600; font-size: .95rem; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--ink); }
.hero .btn-primary { background: var(--ink); }
.hero .btn-primary:hover { background: var(--teal-dark); }
.btn-ghost { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.hero-foot { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) 2.2rem; }
.hero-media { position: relative; max-width: 1000px; margin: 0 auto; padding: 0 var(--gutter) clamp(2.5rem, 6vw, 4.5rem); }
.hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); border: 5px solid #fff; box-shadow: 0 24px 50px rgba(15,44,43,.28); }
.hero-foot p { max-width: 44rem; margin: 0 auto; font-size: .9rem; color: rgba(255,255,255,.85); }
.hero-foot p::before { content: "— "; } .hero-foot p::after { content: " —"; }

/* sections */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-head { text-align: center; max-width: 44rem; margin: 0 auto 2.5rem; }
.kicker { font-family: var(--head); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 0 0 .9rem; }
.kicker::before { content: "— "; } .kicker::after { content: " —"; }
h2 { font-weight: 700; font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.15; margin: 0 0 1rem; }
h2 span { color: var(--accent); display: block; }
h3 { font-weight: 600; font-size: 1.3rem; line-height: 1.3; margin: 1rem 0 .2rem; }
.section-lede { color: var(--body); max-width: 40rem; margin: 0 auto; font-size: 1.15rem; }
.two-col { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.two-col .section-head { text-align: left; margin: 0; }
.two-col .kicker::before, .two-col .kicker::after { content: none; }
.two-col .section-lede { margin: 0; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.prose p { margin: 0 0 1.1rem; color: var(--body); font-size: 1.05rem; line-height: 1.7; }
.prose strong { color: var(--ink); font-weight: 600; }

/* the film */
.story { background: var(--white); }
.story .prose { max-width: 44rem; margin: 0 auto; text-align: center; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.stats div { display: flex; flex-direction: column; gap: .3rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; }
.num { font-family: var(--head); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--teal); line-height: 1; letter-spacing: -.03em; }
.lbl { font-size: .9rem; color: var(--body); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

/* voices */
.voices { background: var(--paper-2); }
.cards { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 960px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; padding: .6rem .6rem 1.4rem; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card > h3, .card > p { padding: 0 .9rem; }
.card h3 { font-size: 1.2rem; margin-top: 1rem; }
.card p { margin: .4rem 0 0; color: var(--body); font-size: .95rem; }
.card .role { display: inline-block; margin: .5rem .9rem 0; padding: .3rem .75rem; border-radius: 999px; background: var(--mint-50); color: var(--teal); font-family: var(--head); font-size: .74rem; font-weight: 600; letter-spacing: .04em; }
.card-art { aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; }
.card-art img { width: 100%; height: 100%; object-fit: cover; }
.card-art span { display: none; }
.card-art[data-tone="ochre"] { background: linear-gradient(135deg, #75c7c8, #1b8d9b); }
.card-art[data-tone="clay"]  { background: linear-gradient(135deg, #4cb5b5, #103534); }
.card-art[data-tone="moss"]  { background: linear-gradient(135deg, #8fd6cf, #2b6568); }
.card-art[data-tone="bark"]  { background: linear-gradient(135deg, #1f7c7c, #0f2c2b); }
.card-art[data-tone="sand"]  { background: linear-gradient(135deg, #a9e2e2, #4cb5b5); }
.card-art[data-tone="river"] { background: linear-gradient(135deg, #2b6568, #103534); }
.note { margin: 2rem auto 0; text-align: center; color: var(--body); font-size: .95rem; max-width: 40rem; }

/* country */
.country { background: var(--white); }
.places { list-style: none; margin: 0; padding: .4rem 1.4rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.places li { display: grid; grid-template-columns: 1fr 1.6fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.places li:last-child { border-bottom: 0; }
.place { font-family: var(--head); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.detail { color: var(--body); align-self: center; font-size: .95rem; }
@media (max-width: 600px) { .places li { grid-template-columns: 1fr; gap: .2rem; } }

/* trailer */
.trailer { background: var(--paper-2); }
.player { max-width: 900px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); background: radial-gradient(60% 70% at 50% 40%, rgba(94,196,196,.35), transparent 70%), var(--ink); display: grid; place-items: center; color: #fff; }
.player-inner { text-align: center; max-width: 30rem; padding: 1rem; }
.play { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--mint); position: relative; }
.play::after { content: ""; border-left: 20px solid var(--ink); border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }
.player p { color: rgba(255,255,255,.85); margin: 0; }

/* about */
.about { background: var(--white); }
.iff-logo { width: 190px; height: auto; margin-top: 1.5rem; }

/* partner: dark rounded band */
.partner { padding-top: 0; background: var(--white); }
.partner .band { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem); }
.partner h2 { color: #fff; }
.partner .kicker { color: var(--mint); }
.partner .section-lede, .partner .prose p { color: rgba(255,255,255,.82); }
.partner .prose strong { color: #fff; }
.partner .btn-primary { background: var(--mint); color: var(--ink); margin-top: .5rem; }
.partner .btn-primary:hover { background: #fff; }

/* follow */
.follow { background: var(--paper-2); }
.follow-form { margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; max-width: 46rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); }
.follow-form label { display: flex; flex-direction: column; gap: .4rem; font-family: var(--head); font-size: .82rem; font-weight: 600; color: var(--ink); }
.follow-form .wide, .follow-form button, .form-note { grid-column: 1 / -1; }
.follow-form input, .follow-form select { font: inherit; font-family: var(--text); font-size: 1rem; padding: .8rem 1rem; border: 1px solid rgba(16,53,52,.18); border-radius: 14px; background: var(--paper); color: var(--ink); }
.follow-form input:focus, .follow-form select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.follow-form button { justify-self: start; }
.form-note { font-size: .9rem; color: var(--body); margin: 0; }
.form-note a { color: var(--teal); }
@media (max-width: 600px) { .follow-form { grid-template-columns: 1fr; } }

/* footer */
.footer { background: var(--ink-deep); color: rgba(255,255,255,.7); padding: 3.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
.ack { font-size: .92rem; margin: 0 0 1rem; max-width: 40rem; line-height: 1.65; }
.ack strong { color: var(--mint); font-family: var(--head); font-weight: 600; display: block; margin-bottom: .3rem; }
.warn { color: rgba(255,255,255,.6); }
.funder { font-size: .92rem; margin: 0 0 1rem; }
.small { font-size: .82rem; color: rgba(255,255,255,.5); margin: 0; }
.small a { color: rgba(255,255,255,.75); }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn, .card { transition: none; } }

/* photography */
.feature { margin: 1.8rem 0 0; }
.feature img, .photo-strip img, .follow-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.feature img { aspect-ratio: 4 / 3; }
.photo-strip { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.photo-strip figure { margin: 0; }
@media (min-width: 900px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }
.photo-strip img { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); }
.follow-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 1.6rem; align-items: stretch; max-width: 1060px; margin: 0 auto; }
.follow-media { margin: 0; min-height: 320px; }
.follow-media img { aspect-ratio: auto; border-radius: var(--radius-lg); }
@media (max-width: 860px) { .follow-grid { grid-template-columns: 1fr; } .follow-media { min-height: 0; } .follow-media img { aspect-ratio: 16 / 10; } }
