
:root {
  --ink: #0b334f;
  --deep: #073b5c;
  --blue: #095aaa;
  --cyan: #58c5db;
  --orange: #f14a24;
  --yellow: #f4cf59;
  --cream: #f8f3e7;
  --paper: #fffdf7;
  --mint: #dff1e7;
  --line: rgba(7, 59, 92, .18);
  --shadow: 0 20px 50px rgba(7, 59, 92, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 1px 1px, rgba(7, 59, 92, .045) 1px, transparent 1.2px) 0 0 / 22px 22px,
    var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: white;
  background: var(--deep);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 231, .96);
  border-top: 7px solid var(--orange);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.site-header::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 16%;
  width: 24%;
  height: 7px;
  background: var(--cyan);
}
.microsite-brand {
  position: relative;
  min-height: 82px;
  padding: .65rem max(1rem, calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--cream);
  border-top: 7px solid var(--orange);
  border-bottom: 1px solid var(--line);
}
.microsite-brand::after {
  content: "";
  position: absolute;
  top: 0;
  left: 16%;
  width: 24%;
  height: 7px;
  background: var(--cyan);
}
.microsite-brand img { width: 120px; height: 62px; object-fit: contain; }
.microsite-brand span { color: var(--deep); font-size: .75rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.nav-shell {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { flex: 0 0 auto; }
.brand img { width: 128px; height: 70px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--deep);
  font-weight: 800;
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 3px;
  background: var(--orange);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a[aria-current="page"]::after { right: 0; }
.menu-button { display: none; }

.section-inner { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.hero {
  width: min(1320px, calc(100% - 2rem));
  min-height: 670px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-label {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(4.2rem, 8.2vw, 8.7rem);
  line-height: .83;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.hero h1 span { color: var(--orange); }
.hero-lead {
  max-width: 700px;
  margin: 2rem 0 0;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  margin-top: 2rem;
  padding: .8rem 1.2rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--deep);
  border-radius: 2px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hero-actions .button { margin-top: 0; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 5px 5px 0 var(--cyan); }
.button-primary { color: white; background: var(--deep); }
.button-quiet { color: var(--deep); background: transparent; }

.program-collage, .species-art, .barton-art {
  position: relative;
  min-height: 500px;
  border: 2px solid var(--deep);
  background: var(--cyan);
  box-shadow: 18px 18px 0 var(--deep);
  overflow: hidden;
}
.program-collage::before, .species-art::before, .barton-art::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  border: 44px solid rgba(255, 255, 255, .22);
}
.collage-fish { position: absolute; object-fit: contain; filter: drop-shadow(0 8px 3px rgba(7, 59, 92, .14)); }
.fish-one { width: 72%; top: 10%; left: 4%; transform: rotate(-4deg); }
.fish-two { width: 56%; top: 42%; right: 2%; transform: rotate(3deg); }
.fish-three { width: 67%; bottom: 0; left: -4%; transform: rotate(-2deg); }
.collage-stamp {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  width: 148px;
  height: 148px;
  display: grid;
  place-content: center;
  padding: 1rem;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  transform: rotate(-7deg);
}
.collage-stamp strong { font-size: 1.05rem; }

.dark-story { color: white; background: var(--deep); }
.story-grid {
  padding-block: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: .38fr 1fr;
  gap: 3rem;
}
.dark-story .section-label { color: var(--yellow); }
.dark-story h2, .section-heading h2, .methods-section h2, .nutrition-section h2, .closing-callout h2, .microsite-exit h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: .97;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.dark-story p:not(.section-label) { max-width: 830px; margin: 1.5rem 0 0; font-size: 1.16rem; line-height: 1.7; }

.program-pillars, .barton-take { padding-block: clamp(4rem, 8vw, 7rem); }
.section-heading { max-width: 830px; }
.section-heading > p:not(.eyebrow), .split-heading > p { font-size: 1.12rem; line-height: 1.75; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .72fr; gap: 4rem; align-items: end; }
.pillar-list, .take-list { list-style: none; margin: 3rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--deep); }
.pillar-list li { min-height: 220px; padding: 1.6rem 1.4rem; border-right: 1px solid var(--line); }
.pillar-list li:first-child { border-left: 1px solid var(--line); }
.pillar-list strong, .pillar-list span { display: block; }
.pillar-list strong { color: var(--orange); font-size: 1.2rem; text-transform: uppercase; }
.pillar-list span { margin-top: .8rem; }

.catch-section { padding-block: clamp(4rem, 8vw, 7rem); background: var(--paper); border-block: 1px solid var(--line); }
.quarter-group { margin-top: 4rem; }
.quarter-heading { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.quarter-heading span { display: inline-grid; place-items: center; width: 48px; height: 48px; color: white; background: var(--orange); border-radius: 50%; font-weight: 900; }
.quarter-heading h3 { margin: 0; font-size: 1.15rem; letter-spacing: .02em; text-transform: uppercase; }
.catch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.catch-card {
  position: relative;
  min-height: 390px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  color: var(--deep);
  background: var(--cream);
  border: 1px solid var(--line);
  text-decoration: none;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.catch-card:hover, .catch-card:focus-visible { transform: translateY(-5px); border-color: var(--deep); box-shadow: var(--shadow); }
.catch-card-static:hover { transform: none; border-color: var(--line); box-shadow: none; }
.catch-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 7px; background: var(--cyan); }
.catch-quarter { align-self: flex-start; padding: .24rem .45rem; color: white; background: var(--orange); font-size: .75rem; font-weight: 900; }
.catch-card img { width: 100%; height: 190px; margin: 1rem 0; object-fit: contain; transition: transform .2s ease; }
.catch-card:hover img { transform: scale(1.03) rotate(-1deg); }
.catch-name { font-size: 1.45rem; font-weight: 900; text-transform: uppercase; }
.catch-link { margin-top: auto; color: var(--blue); font-weight: 800; }

.closing-callout { padding-block: clamp(4rem, 8vw, 7rem); background: var(--yellow); }
.closing-grid { display: grid; grid-template-columns: .45fr 1fr; gap: 4rem; align-items: center; }
.closing-grid > img { max-height: 190px; margin-inline: auto; object-fit: contain; }
.closing-callout .eyebrow { color: var(--deep); }

.barton-art { background: var(--yellow); }
.portrait-frame { position: absolute; inset: 2rem 2rem 5rem; overflow: hidden; border: 2px solid var(--deep); background: white; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.barton-fish { position: absolute; width: 52%; right: -7%; bottom: 1rem; filter: drop-shadow(0 6px 2px rgba(7, 59, 92, .12)); }
.hand-note, .art-script {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 700;
  transform: rotate(-4deg);
}
.take-list { border-top-color: var(--orange); }
.take-list li { min-height: 150px; padding: 1.4rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 1rem; }
.take-list li:first-child { border-left: 1px solid var(--line); }
.take-list span { color: var(--orange); font-size: .8rem; font-weight: 900; }
.take-list strong { font-size: 1.15rem; text-transform: uppercase; }
.barton-closing { background: var(--cyan); }

.species-art { min-height: 460px; display: grid; place-items: center; padding: 4rem 2rem; background: var(--mint); }
.species-art img { position: relative; z-index: 2; width: 100%; max-height: 310px; object-fit: contain; filter: drop-shadow(0 9px 3px rgba(7, 59, 92, .13)); }
.art-quarter { position: absolute; left: 1.2rem; top: 1.1rem; z-index: 3; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; color: white; background: var(--orange); font-weight: 900; }
.quarter-q2 .species-art { background: #fde7db; }
.quarter-q3 .species-art { background: #dceee8; }
.quarter-q4 .species-art { background: #fff0b6; }
.take-banner { color: white; background: var(--orange); }
.take-banner-inner { min-height: 128px; display: flex; align-items: center; gap: 1.3rem; }
.take-icon { flex: 0 0 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; color: var(--orange); background: white; font: italic 900 2rem Georgia, serif; }
.take-banner p { margin: 0; font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.take-banner strong { display: block; margin-top: .28rem; font-size: clamp(1.3rem, 2.8vw, 2.25rem); line-height: 1.05; text-transform: uppercase; }
.species-story { padding-block: clamp(4rem, 8vw, 7rem); display: grid; grid-template-columns: 1fr .54fr; gap: 4rem; align-items: start; }
.story-main h2 { margin: 0; max-width: 820px; font-size: clamp(2.4rem, 5vw, 5rem); line-height: .96; letter-spacing: -.04em; text-transform: uppercase; }
.story-main > p:last-child { max-width: 850px; margin-top: 1.8rem; font-size: 1.15rem; line-height: 1.75; }
.story-note { padding: 2rem; color: var(--deep); background: var(--cyan); border: 2px solid var(--deep); box-shadow: 10px 10px 0 var(--deep); }
.story-note .section-label { color: var(--deep); }
.story-note p:last-child { margin-bottom: 0; font-size: 1.05rem; line-height: 1.7; }
.methods-section { padding-block: clamp(4rem, 8vw, 6rem); color: white; background: var(--deep); }
.methods-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 4rem; align-items: center; }
.methods-section .eyebrow { color: var(--yellow); }
.method-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.method-list li { min-height: 74px; padding: 1rem; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .5); color: white; background: rgba(255, 255, 255, .06); text-align: center; font-weight: 900; text-transform: uppercase; }
.nutrition-section { padding-block: clamp(4rem, 8vw, 7rem); display: grid; grid-template-columns: .8fr 1fr; gap: 4rem; align-items: center; }
.nutrition-number { padding: 2rem; background: var(--yellow); border: 2px solid var(--deep); }
.nutrition-number .eyebrow { color: var(--deep); }
.nutrition-number h2 { color: var(--orange); font-size: clamp(2.5rem, 5vw, 4.6rem); }
.nutrition-number p:last-child { margin-bottom: 0; font-weight: 800; }
.nutrition-body { font-size: 1.2rem; line-height: 1.75; }
.catch-next { padding-bottom: clamp(4rem, 7vw, 6rem); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.catch-next a { min-height: 130px; padding: 1.25rem; display: flex; flex-direction: column; justify-content: center; text-decoration: none; border-right: 1px solid var(--line); }
.catch-next a:first-child { border-left: 1px solid var(--line); }
.catch-next a:hover, .catch-next a:focus-visible { background: var(--paper); }
.catch-next span { color: var(--orange); font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.catch-next strong { margin-top: .35rem; font-size: 1rem; text-transform: uppercase; }

.site-footer { padding: 3rem 0; color: white; background: #052d47; border-top: 7px solid var(--orange); }
.footer-inner { width: min(var(--max), calc(100% - 2rem)); margin: auto; display: grid; grid-template-columns: 1fr auto; gap: 1rem 3rem; align-items: center; }
.footer-mark { width: 170px; max-height: 74px; object-fit: contain; object-position: left center; }
.footer-inner p { margin: .6rem 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-links a { font-weight: 800; }
.copyright { grid-column: 1 / -1; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .18); font-size: .8rem; opacity: .8; }

.microsite-exit { padding-block: clamp(4rem, 8vw, 7rem); color: white; background: var(--deep); border-bottom: 10px solid var(--orange); }
.microsite-exit-inner { max-width: 900px; text-align: center; }
.microsite-exit .eyebrow { color: var(--yellow); }
.microsite-exit .button { margin-top: 2rem; color: var(--deep); background: var(--yellow); border-color: var(--yellow); }
.microsite-exit .button:hover, .microsite-exit .button:focus-visible { box-shadow: 5px 5px 0 var(--cyan); }

.error-page { min-height: 65vh; display: grid; place-items: center; padding: 4rem 1rem; text-align: center; }
.error-page h1 { margin: 0; color: var(--deep); font-size: clamp(4rem, 12vw, 9rem); line-height: .8; }
.error-page p { max-width: 560px; font-size: 1.1rem; }

:focus-visible { outline: 4px solid var(--yellow); outline-offset: 4px; }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .program-collage, .species-art, .barton-art { min-height: 430px; }
  .story-grid, .species-story, .methods-grid, .nutrition-section, .closing-grid, .split-heading { grid-template-columns: 1fr; gap: 2rem; }
  .pillar-list, .take-list { grid-template-columns: 1fr 1fr; }
  .catch-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .microsite-brand { min-height: 70px; }
  .microsite-brand img { width: 105px; height: 54px; }
  .nav-shell { min-height: 70px; }
  .brand img { width: 105px; height: 58px; }
  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border: 0;
    padding: .65rem .8rem;
    color: white;
    background: var(--deep);
    font: inherit;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
  }
  .menu-icon { width: 18px; height: 12px; border-block: 2px solid currentColor; position: relative; }
  .menu-icon::after { content: ""; position: absolute; left: 0; right: 0; top: 4px; border-top: 2px solid currentColor; }
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--deep);
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: 1rem; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .hero { width: min(100%, calc(100% - 1rem)); padding: 3.5rem 1rem 4.5rem; }
  .hero h1 { font-size: clamp(3.3rem, 17vw, 5.6rem); }
  .hero-lead { font-size: 1rem; }
  .program-collage, .species-art, .barton-art { min-height: 360px; box-shadow: 9px 9px 0 var(--deep); }
  .fish-one { width: 82%; }
  .fish-two { width: 62%; }
  .fish-three { width: 76%; }
  .collage-stamp { width: 112px; height: 112px; font-size: .63rem; }
  .collage-stamp strong { font-size: .76rem; }
  .story-grid { grid-template-columns: 1fr; }
  .pillar-list, .take-list, .catch-grid, .method-list, .catch-next { grid-template-columns: 1fr; }
  .pillar-list li, .take-list li { min-height: auto; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .catch-card { min-height: 330px; }
  .catch-card img { height: 150px; }
  .quarter-heading { align-items: flex-start; }
  .take-banner-inner { min-height: 140px; }
  .take-icon { flex-basis: 52px; height: 52px; }
  .story-note { box-shadow: 6px 6px 0 var(--deep); }
  .catch-next { border-top: 0; }
  .catch-next a { min-height: 100px; border: 1px solid var(--line); border-bottom: 0; }
  .catch-next a:last-child { border-bottom: 1px solid var(--line); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@media print {
  .site-header, .site-footer, .microsite-brand, .catch-next, .button { display: none !important; }
  body { background: white; }
  .hero { min-height: auto; }
}
