/* =========================================================
   BMJ Forest Products — Stylesheet
   ========================================================= */

:root {
  --green-900: #11281b;
  --green-800: #1f3d2b;
  --green-700: #2c5239;
  --green-600: #3a6b4a;
  --green-500: #4f8a64;
  --green-50:  #eef3ee;

  --wood-900:  #2c1c10;
  --wood-700:  #6b3f1f;
  --wood-500:  #a06a3a;
  --wood-300:  #d6b58b;

  --cream-50:  #faf6ef;
  --cream-100: #f3ebdc;
  --cream-200: #e8dcc4;

  --ink-900:   #14181a;
  --ink-700:   #34403a;
  --ink-500:   #66766c;
  --ink-300:   #a5b1a8;

  --white:     #ffffff;
  --shadow-sm: 0 1px 2px rgba(17,40,27,.06), 0 4px 12px rgba(17,40,27,.06);
  --shadow-md: 0 10px 30px rgba(17,40,27,.10), 0 4px 10px rgba(17,40,27,.05);
  --shadow-lg: 0 30px 80px rgba(17,40,27,.18), 0 10px 30px rgba(17,40,27,.08);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-900); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); font-weight: 500; }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .9em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-sm { padding: .55em 1.1em; font-size: .85rem; }
.btn-lg { padding: 1.05em 1.9em; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--green-800);
  color: var(--cream-50);
  border-color: var(--green-800);
  box-shadow: 0 6px 18px -6px rgba(31,61,43,.55);
}
.btn-primary:hover {
  background: var(--green-900);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(17,40,27,.7);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-50);
  border-color: rgba(250,246,239,.45);
}
.btn-ghost:hover {
  background: rgba(250,246,239,.1);
  color: var(--white);
  border-color: rgba(250,246,239,.85);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(250,246,239,.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  box-shadow: 0 1px 0 rgba(17,40,27,.08), 0 8px 24px -16px rgba(17,40,27,.2);
  padding: 8px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.4));
  transition: height .3s var(--ease), filter .3s var(--ease);
}
.site-header.scrolled .brand-logo {
  height: 38px;
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--cream-50);
  font-weight: 500;
  font-size: .95rem;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.btn { text-shadow: none; }
.site-header.scrolled .nav-links a {
  color: var(--ink-700);
  text-shadow: none;
}
.site-header.scrolled .nav-links a:hover { color: var(--green-800); }
.site-header.scrolled .nav-links a.btn-primary { color: var(--cream-50); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--cream-50);
  transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease), background .3s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.site-header.scrolled .nav-toggle span { background: var(--ink-900); }
.nav-toggle[aria-expanded="true"] span { background: var(--ink-900); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  color: var(--cream-50);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,40,27,.55) 0%, rgba(17,40,27,.35) 40%, rgba(17,40,27,.82) 100%),
    linear-gradient(90deg, rgba(17,40,27,.65) 0%, rgba(17,40,27,.1) 60%);
}
.hero-inner {
  position: relative;
  max-width: 880px;
}
.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-100);
  padding: 8px 14px;
  border: 1px solid rgba(250,246,239,.35);
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.hero-title {
  color: var(--white);
  margin: 0 0 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero-title .accent {
  color: transparent;
  background: linear-gradient(120deg, #d9b97a 0%, #f0d49a 50%, #b58a4e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--cream-100);
  max-width: 640px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(250,246,239,.18);
}
.hero-stats > div:not(.divider) {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.hero-stats span {
  font-size: .85rem;
  letter-spacing: .05em;
  color: var(--cream-100);
  margin-top: 4px;
}
.hero-stats .divider {
  width: 1px; height: 32px;
  background: rgba(250,246,239,.3);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(250,246,239,.55);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  display: block;
  width: 3px; height: 8px;
  background: var(--cream-50);
  border-radius: 2px;
  animation: scrollPulse 1.8s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--green-700);
  margin-bottom: 18px;
  position: relative;
  padding-left: 32px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1.5px;
  background: var(--green-600);
}
.section-title { max-width: 22ch; }
.section-lead {
  font-size: 1.1rem;
  color: var(--ink-500);
  max-width: 60ch;
}
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-title,
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }
.section-head.center .section-eyebrow { padding-left: 0; }
.section-head.center .section-eyebrow::before { display: none; }

.section-head.light { color: var(--cream-50); }
.section-head.light .section-eyebrow { color: var(--cream-200); }
.section-head.light .section-eyebrow::before { background: var(--cream-200); }
.section-head.light .section-title { color: var(--white); }
.section-head.light .section-lead { color: var(--cream-100); }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-text { order: 2; }
.split.reverse .split-media { order: 1; }
.split-text .lead { font-size: 1.15rem; color: var(--ink-700); margin-bottom: 1em; }

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.media-frame.tall { aspect-ratio: 3/4.2; }
.media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.media-frame:hover img { transform: scale(1.04); }

.media-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--cream-50);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--green-800);
  line-height: 1;
}
.badge-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-500);
  line-height: 1.3;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--cream-100);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--green-800);
}
.pill svg { width: 16px; height: 16px; color: var(--green-700); }

/* ---------- Supply / Species ---------- */
.supply { background: var(--white); }
.species-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.species-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.species-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(31,61,43,.04));
  pointer-events: none;
}
.species-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-500);
}
.species-card .dot {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c, var(--wood-500));
  box-shadow: 0 0 0 4px rgba(0,0,0,.04), inset 0 -3px 6px rgba(0,0,0,.18);
  margin-bottom: 14px;
}
.species-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--ink-900);
}
.species-card p {
  font-size: .9rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.5;
}
.species-card.more {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--cream-50);
}
.species-card.more h3 { color: var(--white); font-style: italic; font-weight: 500; }
.species-card.more p { color: var(--cream-100); }
.species-card.more::after { display: none; }

/* ---------- Markets ---------- */
.markets {
  color: var(--cream-50);
  overflow: hidden;
}
.markets-media {
  position: absolute; inset: 0;
  z-index: -1;
}
.markets-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.markets-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(17,40,27,.88) 0%, rgba(17,40,27,.72) 100%);
}
.markets-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.markets-left .section-head { margin-bottom: 40px; }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.market {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(250,246,239,.06);
  border: 1px solid rgba(250,246,239,.16);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.market:hover {
  transform: translateY(-3px);
  background: rgba(250,246,239,.12);
  border-color: rgba(250,246,239,.35);
}
.market .flag {
  font-size: 1.8rem;
  line-height: 1;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', 'Segoe UI Symbol', emoji, sans-serif;
}
.market .name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}
.market.more { grid-column: span 2; justify-content: center; }
.market.more .name { font-style: italic; color: var(--cream-100); font-size: 1rem; }

/* ---------- Gallery ---------- */
.markets-right .gallery-head { margin-bottom: 22px; }
.markets-right .section-eyebrow.light {
  color: var(--cream-200);
  padding-left: 32px;
}
.markets-right .section-eyebrow.light::before { background: var(--cream-200); }
.gallery-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin: 8px 0 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(0,0,0,.2);
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .35s;
  display: block;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,40,27,.5));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:focus-visible {
  outline: 2px solid var(--cream-100);
  outline-offset: 3px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 18, 12, .94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lb-stage {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .35s var(--ease), transform .45s var(--ease);
}
.lb-img.loaded {
  opacity: 1;
  transform: scale(1);
}
.lb-count {
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-200);
  opacity: .8;
}
.lb-btn {
  position: absolute;
  background: rgba(250,246,239,.08);
  border: 1px solid rgba(250,246,239,.18);
  color: var(--cream-50);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s var(--ease);
  z-index: 2;
}
.lb-btn:hover {
  background: rgba(250,246,239,.18);
  border-color: rgba(250,246,239,.4);
  transform: scale(1.05);
}
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.05); }
.lb-next:hover { transform: translateY(-50%) scale(1.05); }

body.lb-open { overflow: hidden; }

/* ---------- Export ---------- */
.export { background: var(--cream-100); }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 22px;
}
.feature-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}
.feature-ico {
  width: 52px; height: 52px;
  background: var(--white);
  color: var(--green-700);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.feature-ico svg { width: 22px; height: 22px; }
.feature-list h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--ink-900);
  font-weight: 600;
}
.feature-list p {
  margin: 0;
  font-size: .95rem;
  color: var(--ink-500);
}

/* ---------- Contact ---------- */
.contact { background: var(--cream-50); }
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.info-card {
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,185,122,.18), transparent 70%);
}
.info-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.info-meta {
  font-size: .9rem;
  color: var(--cream-100);
  margin-bottom: 32px;
  opacity: .85;
}
.info-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(250,246,239,.14);
  font-size: .95rem;
}
.info-line:last-child { padding-bottom: 0; }
.info-line a { color: var(--cream-50); }
.info-line a:hover { color: var(--white); text-decoration: underline; }
.info-ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(250,246,239,.1);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-100);
}
.info-ico svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-row { margin-bottom: 18px; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: block;
}
.contact-form label > span {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.contact-form label > span em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-300);
  margin-left: 4px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  background: var(--cream-50);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(58,107,74,.12);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

.form-alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-size: .95rem;
}
.form-alert.success {
  background: #e6f2ea;
  color: #1c5031;
  border: 1px solid #b4d6c0;
}
.form-alert.error {
  background: #fcecec;
  color: #8a2727;
  border: 1px solid #efcaca;
}
.form-alert a { color: inherit; text-decoration: underline; }

.form-fineprint {
  font-size: .78rem;
  color: var(--ink-300);
  text-align: center;
  margin: 18px 0 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: var(--cream-100);
  padding: 70px 0 22px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 60px;
  margin-bottom: 48px;
}
.foot-logo {
  height: 50px;
  margin-bottom: 18px;
  filter: brightness(1.1);
}
.foot-brand p {
  font-size: .92rem;
  color: var(--cream-100);
  opacity: .75;
  max-width: 360px;
}
.foot-cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
}
.foot-cols h5 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--cream-200);
  opacity: .7;
  margin: 0 0 18px;
  font-weight: 600;
}
.foot-cols a,
.foot-cols span {
  display: block;
  color: var(--cream-100);
  font-size: .95rem;
  padding: 4px 0;
  text-decoration: none;
  opacity: .85;
}
.foot-cols a:hover { color: var(--white); opacity: 1; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(250,246,239,.12);
  font-size: .82rem;
  color: var(--cream-200);
  opacity: .7;
}
.to-top { color: var(--cream-100); }
.to-top:hover { color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse .split-text { order: 2; }
  .split.reverse .split-media { order: 1; }
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-layout { grid-template-columns: 1fr; gap: 56px; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .market.more { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero { padding: 120px 0 70px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .hero-stats { gap: 18px; }
  .hero-stats strong { font-size: 1.6rem; }
  .hero-stats .divider { display: none; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 22px;
    background: var(--cream-50);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: none; }
  .nav-links a {
    color: var(--ink-900);
    text-shadow: none;
    font-size: 1.1rem;
    font-family: 'Fraunces', serif;
  }
  .nav-links a.btn { width: 100%; margin-top: 8px; justify-content: center; }
  .nav-toggle { display: block; z-index: 60; }
  .site-header { background: rgba(250,246,239,0); }

  .contact-form { padding: 26px; }
  .form-row.two { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 44px; }
  .media-frame { aspect-ratio: 4/4.5; }
  .info-card { padding: 30px 24px; }
}

@media (max-width: 720px) {
  .lightbox { padding: 24px 12px; }
  .lb-img { max-height: calc(100vh - 140px); }
  .lb-btn { width: 44px; height: 44px; }
  .lb-close { top: 14px; right: 14px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

@media (max-width: 420px) {
  .species-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .market.more { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
