/*
Theme Name: GOES Ocean
Theme URI: https://goesfoundation.com
Author: GOES Foundation
Author URI: https://goesfoundation.com
Description: A modern, fast, accessible WordPress theme for the GOES Foundation — built for ocean-conservation storytelling, citizen-science results, and donations. Mobile-first, SEO-ready, no page builder required.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: goes-ocean
Tags: nonprofit, ocean, environment, conservation, responsive, accessibility-ready, custom-menu, featured-images, threaded-comments
*/

/* =========================================================
   GOES Ocean — Design Tokens
   ========================================================= */
:root {
  /* Brand palette — ocean depth to surface light */
  --goes-abyss:      #03263b;   /* darkest navy */
  --goes-deep:       #084563;   /* deep ocean */
  --goes-ocean:      #0d6e87;   /* mid ocean teal */
  --goes-teal:       #14a3b8;   /* bright teal */
  --goes-aqua:       #4fd1c5;   /* aqua highlight */
  --goes-foam:       #e6f4f6;   /* pale foam */
  --goes-mist:       #f4fafb;   /* near-white wash */

  /* Action / warmth — used for donate + key CTAs */
  --goes-coral:      #ff6a4d;
  --goes-coral-dark: #e9512f;
  --goes-sand:       #f6e9d8;

  /* Neutrals */
  --goes-ink:        #0e2230;   /* body text */
  --goes-slate:      #4a5e69;   /* muted text */
  --goes-line:       #d8e6ea;   /* borders */
  --goes-white:      #ffffff;

  /* Typography */
  --font-head: "Space Grotesk", "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --maxw-narrow: 760px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(8, 69, 99, 0.08);
  --shadow-md: 0 12px 36px rgba(8, 69, 99, 0.14);
  --space: clamp(3rem, 6vw, 6rem);
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--goes-ink);
  background: var(--goes-white);
  line-height: 1.7;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--goes-ocean); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--goes-coral-dark); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--goes-abyss);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 1.05rem + 1vw, 1.6rem); }
p { margin: 0 0 1.1em; }
blockquote {
  margin: 1.6em 0;
  padding: 1.2em 1.6em;
  border-left: 5px solid var(--goes-teal);
  background: var(--goes-foam);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.1em;
  color: var(--goes-deep);
}
blockquote p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.3em; }
li { margin-bottom: .4em; }
code { background: var(--goes-foam); padding: .15em .4em; border-radius: 5px; font-size: .9em; }

/* Accessibility */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--goes-abyss); color: #fff; padding: .8em 1.2em; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color:#fff; }
:focus-visible { outline: 3px solid var(--goes-teal); outline-offset: 2px; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

/* =========================================================
   Layout helpers
   ========================================================= */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.container--narrow { width: min(100% - 2.5rem, var(--maxw-narrow)); margin-inline: auto; }
.section { padding-block: var(--space); }
.section--mist { background: var(--goes-mist); }
.section--foam { background: var(--goes-foam); }
.section--deep { background: var(--goes-deep); color: var(--goes-foam); }
.section--deep h1, .section--deep h2, .section--deep h3 { color: #fff; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--goes-teal);
  margin-bottom: .8rem;
  display: block;
}
.lead { font-size: 1.2rem; color: var(--goes-slate); }
.text-center { text-align: center; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600;
  padding: .85em 1.5em; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  font-size: 1rem; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--goes-coral); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--goes-coral-dark); color:#fff; box-shadow: var(--shadow-md); }
.btn--ocean { background: var(--goes-teal); color: #fff; }
.btn--ocean:hover { background: var(--goes-ocean); color:#fff; }
.btn--ghost { background: transparent; color: var(--goes-deep); border-color: var(--goes-line); }
.btn--ghost:hover { border-color: var(--goes-teal); color: var(--goes-ocean); }
.btn--light { background:#fff; color: var(--goes-deep); }
.btn--light:hover { background: var(--goes-foam); color: var(--goes-abyss); }

/* =========================================================
   Header / navigation
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--goes-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .7rem;
}
.site-brand { display: flex; align-items: center; gap: .7rem; }
.site-brand img { width: auto; height: 52px; }
.site-brand .brand-text { font-family: var(--font-head); font-weight: 700; color: var(--goes-abyss); font-size: 1.15rem; line-height: 1; }
.site-brand .brand-text small { display:block; font-weight: 500; font-size: .62rem; letter-spacing:.12em; text-transform: uppercase; color: var(--goes-teal); margin-top:.3em; }

.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .25rem; align-items: center; }
.primary-nav a {
  display: block; padding: .55em .8em; border-radius: 8px;
  font-family: var(--font-head); font-weight: 500; font-size: .94rem;
  color: var(--goes-ink);
}
.primary-nav a:hover, .primary-nav .current-menu-item > a { background: var(--goes-foam); color: var(--goes-ocean); }

/* dropdown submenus */
.primary-nav .menu-item-has-children { position: relative; }
.primary-nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--goes-line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: .4rem; flex-direction: column; gap: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s ease; display: flex;
}
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-nav .sub-menu a { font-size: .9rem; }

.header-actions { display: flex; align-items: center; gap: .6rem; }

/* mobile toggle */
.nav-toggle {
  display: none; background: var(--goes-abyss); color:#fff; border: none;
  width: 44px; height: 44px; border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: #fff; position: relative;
  transition: .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: #fff; box-shadow: var(--shadow-md);
    transform: translateX(100%); transition: transform .25s ease;
    padding: 5rem 1.2rem 2rem; overflow-y: auto; z-index: 99;
  }
  .nav-open .primary-nav { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: .1rem; }
  .primary-nav .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding-left: 1rem; background: var(--goes-mist);
  }
  .header-actions .btn--ghost { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(160deg, var(--goes-abyss) 0%, var(--goes-deep) 55%, var(--goes-ocean) 100%);
}
.hero::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(60% 50% at 80% 10%, rgba(79,209,197,.22), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; padding-block: clamp(4rem, 9vw, 8rem); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .hero-motto { font-style: italic; color: var(--goes-aqua); font-size: 1.05rem; margin-bottom: 1.2rem; }
.hero .lead { color: rgba(255,255,255,.9); max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1.5rem; margin-top: 3rem; max-width: 760px; }
.hero-stat .num { font-family: var(--font-head); font-size: clamp(2rem, 1.2rem + 3vw, 3rem); font-weight: 700; color: var(--goes-aqua); line-height: 1; }
.hero-stat .label { font-size: .92rem; color: rgba(255,255,255,.82); margin-top: .4rem; }

/* wave divider */
.wave-divider { display:block; width:100%; height: 60px; color: var(--goes-white); }
.section--mist + * .wave-divider { color: var(--goes-mist); }

/* =========================================================
   Cards / grids
   ========================================================= */
.grid { display: grid; gap: 1.6rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--goes-line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--goes-foam); color: var(--goes-ocean); margin-bottom: 1rem;
}
.card .card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--goes-slate); margin-bottom: 0; font-size: .98rem; }

/* media split */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } }

/* stat callouts */
.statbar { display:grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap:1.4rem; }
.statbar .stat { text-align:center; padding: 1.4rem 1rem; background:#fff; border-radius: var(--radius); border:1px solid var(--goes-line); }
.statbar .stat .num { font-family: var(--font-head); font-weight:700; font-size: clamp(1.8rem,1.2rem+2.4vw,2.6rem); color: var(--goes-coral); line-height:1; }
.statbar .stat .label { color: var(--goes-slate); font-size:.9rem; margin-top:.5rem; }

/* finding list (expected vs found) */
.findings { display: grid; gap: 1rem; }
.finding {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background:#fff; border:1px solid var(--goes-line); border-left: 5px solid var(--goes-coral);
  border-radius: var(--radius-sm); padding: 1.2rem 1.4rem;
}
.finding .badge { font-family: var(--font-head); font-weight:700; color: var(--goes-coral); font-size:1.4rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--goes-ocean), var(--goes-deep));
  color:#fff; border-radius: var(--radius); padding: clamp(2rem,5vw,3.5rem);
  text-align:center; box-shadow: var(--shadow-md);
}
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin-inline:auto; }
.cta-band .hero-cta { justify-content:center; }

/* newsletter inline */
.subscribe-box { background: var(--goes-sand); border-radius: var(--radius); padding: clamp(1.5rem,4vw,2.5rem); }

/* responsive embeds */
.embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-md); }
.embed iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }

/* =========================================================
   Content / single / page
   ========================================================= */
.page-hero {
  background: linear-gradient(160deg, var(--goes-deep), var(--goes-ocean));
  color:#fff; padding-block: clamp(3rem, 7vw, 5rem);
}
.page-hero h1 { color:#fff; }
.page-hero .breadcrumbs { color: rgba(255,255,255,.8); font-size:.9rem; margin-bottom:.6rem; }
.page-hero .breadcrumbs a { color: var(--goes-aqua); }

.entry-content { font-size: 1.06rem; }
.entry-content > * { max-width: var(--maxw-narrow); margin-inline:auto; }
.entry-content > .alignwide,
.entry-content > figure,
.entry-content > .wp-block-image { max-width: 980px; }
.entry-content img { border-radius: var(--radius-sm); }
.entry-content h2 { margin-top: 1.8em; }
.entry-content h2::after {
  content:""; display:block; width: 64px; height:4px; border-radius: 2px;
  background: var(--goes-teal); margin-top:.5rem;
}
.entry-content figure { margin: 1.6em auto; }
.entry-content figcaption { font-size:.85rem; color: var(--goes-slate); text-align:center; margin-top:.5em; }

/* posts list */
.post-card { display:flex; flex-direction:column; height:100%; overflow:hidden; padding:0; }
.post-card .thumb { aspect-ratio: 16/10; overflow:hidden; }
.post-card .thumb img { width:100%; height:100%; object-fit:cover; }
.post-card .body { padding: 1.4rem; display:flex; flex-direction:column; flex:1; }
.post-card .meta { font-size:.8rem; color: var(--goes-slate); text-transform: uppercase; letter-spacing:.08em; }
.post-card h3 { margin:.4em 0 .5em; font-size:1.25rem; }
.post-card .excerpt { color: var(--goes-slate); font-size:.96rem; flex:1; }
.read-more { font-family: var(--font-head); font-weight:600; margin-top:1rem; display:inline-flex; gap:.4em; }

/* pagination */
.pagination { display:flex; gap:.5rem; justify-content:center; margin-top:3rem; flex-wrap:wrap; }
.pagination .page-numbers {
  padding:.55em .95em; border-radius:10px; border:1px solid var(--goes-line);
  font-family: var(--font-head); font-weight:600; color: var(--goes-deep);
}
.pagination .current { background: var(--goes-teal); color:#fff; border-color: var(--goes-teal); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--goes-abyss); color: rgba(255,255,255,.78); padding-block: clamp(3rem,6vw,4.5rem) 2rem; margin-top: 0; }
.site-footer a { color: var(--goes-aqua); }
.site-footer a:hover { color:#fff; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 2rem; }
.site-footer h4 { color:#fff; font-size:1rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:1rem; }
.footer-menu ul { list-style:none; margin:0; padding:0; }
.footer-menu li { margin-bottom:.5em; }
.footer-brand img { height:64px; margin-bottom:1rem; }
.footer-motto { font-style:italic; color: var(--goes-aqua); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.12); margin-top:2.5rem; padding-top:1.5rem;
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.85rem;
}
.footer-newsletter input[type=email]{
  width:100%; padding:.8em 1em; border-radius:10px; border:1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06); color:#fff; margin-bottom:.7rem;
}
.footer-newsletter input::placeholder{ color: rgba(255,255,255,.55); }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   WP core alignments / utilities
   ========================================================= */
.aligncenter { margin-inline:auto; }
.alignright { float:right; margin: 0 0 1rem 1.5rem; }
.alignleft { float:left; margin: 0 1.5rem 1rem 0; }
.sticky, .bypostauthor { display:block; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.mt-2{margin-top:2rem}.mt-3{margin-top:3rem}

/* =========================================================
   MOTION LAYER (v1.1) — reveal, counters, animated hero
   ========================================================= */

/* Sticky header: shrink + deepen shadow on scroll */
.site-header { transition: padding .25s ease, box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(8,69,99,.12); }
.site-header.is-scrolled .header-inner { padding-block: .35rem; }
.site-header.is-scrolled .site-brand img { height: 42px; transition: height .25s ease; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.reveal--left { transform: translateX(-32px); }
.reveal.reveal--right { transform: translateX(32px); }
.reveal.reveal--zoom { transform: scale(.94); }
.reveal.is-visible.reveal--left,
.reveal.is-visible.reveal--right,
.reveal.is-visible.reveal--zoom { transform: none; }
/* staggered children */
.reveal-group.is-visible > * { animation: goesFadeUp .7s cubic-bezier(.2,.7,.2,1) both; }
.reveal-group.is-visible > *:nth-child(2){ animation-delay:.08s; }
.reveal-group.is-visible > *:nth-child(3){ animation-delay:.16s; }
.reveal-group.is-visible > *:nth-child(4){ animation-delay:.24s; }
.reveal-group.is-visible > *:nth-child(5){ animation-delay:.32s; }
.reveal-group.is-visible > *:nth-child(6){ animation-delay:.40s; }
@keyframes goesFadeUp { from{opacity:0; transform:translateY(26px);} to{opacity:1; transform:none;} }

/* Animated hero gradient + depth */
.hero { background-size: 180% 180%; animation: goesDrift 22s ease-in-out infinite; }
@keyframes goesDrift { 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }

/* Floating plankton bubbles in hero */
.hero-bubbles { position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.hero-bubbles span {
  position:absolute; bottom:-60px; display:block;
  width:14px; height:14px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(79,209,197,.18));
  box-shadow: 0 0 16px rgba(79,209,197,.25);
  animation: goesRise linear infinite;
}
.hero-bubbles span:nth-child(1){ left:8%;  width:10px;height:10px; animation-duration:15s; animation-delay:0s; }
.hero-bubbles span:nth-child(2){ left:22%; width:18px;height:18px; animation-duration:20s; animation-delay:3s; }
.hero-bubbles span:nth-child(3){ left:38%; width:8px; height:8px;  animation-duration:13s; animation-delay:1s; }
.hero-bubbles span:nth-child(4){ left:53%; width:22px;height:22px; animation-duration:24s; animation-delay:5s; }
.hero-bubbles span:nth-child(5){ left:67%; width:12px;height:12px; animation-duration:17s; animation-delay:2s; }
.hero-bubbles span:nth-child(6){ left:80%; width:16px;height:16px; animation-duration:21s; animation-delay:4s; }
.hero-bubbles span:nth-child(7){ left:90%; width:9px; height:9px;  animation-duration:14s; animation-delay:6s; }
@keyframes goesRise {
  0%   { transform: translateY(0) translateX(0) scale(.7); opacity:0; }
  10%  { opacity:.8; }
  90%  { opacity:.6; }
  100% { transform: translateY(-110vh) translateX(30px) scale(1.1); opacity:0; }
}
.hero-inner { position: relative; z-index: 1; }

/* Count-up numbers pop slightly when they land */
.is-counting { display:inline-block; }
.counted { animation: goesPop .5s ease; }
@keyframes goesPop { 0%{transform:scale(1);} 40%{transform:scale(1.12);} 100%{transform:scale(1);} }

/* Card lift gets a sheen */
.card { position: relative; overflow: hidden; }
.card::before {
  content:""; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s ease; pointer-events:none;
}
.card:hover::before { left:130%; }

/* Buttons: gentle press + glow on primary */
.btn:active { transform: translateY(0) scale(.98); }
.btn--primary { position: relative; }
.btn--primary::after {
  content:""; position:absolute; inset:0; border-radius:inherit;
  box-shadow: 0 0 0 0 rgba(255,106,77,.45); transition: box-shadow .4s ease;
}
.btn--primary:hover::after { box-shadow: 0 0 0 8px rgba(255,106,77,0); }

/* Findings slide in with accent grow */
.finding { transition: transform .2s ease, box-shadow .2s ease, border-left-width .2s ease; }
.finding:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-left-width: 8px; }

/* Section eyebrow underline draw */
.eyebrow { position: relative; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 200;
  background: linear-gradient(90deg, var(--goes-teal), var(--goes-aqua), var(--goes-coral));
  transition: width .1s linear;
}

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