/* ===========================================================
   SWAPRO v2 — design tokens
   Type: Fraunces (display, characterful serif w/ wonky optical sizing)
         + Inter (body/UI) + JetBrains Mono (data/captions)
   Palette: deep kelp, seafoam, sand, amber-coral, ink
=========================================================== */
:root{
  --kelp-deep:   #0A352A;
  --kelp-mid:    #11604A;
  --seafoam:     #3E9C72;
  --seafoam-lt:  #5FC795;
  --sand:        #F6F1E4;
  --sand-card:   #EFEAE0;
  --ink:         #0D1411;
  --ink-soft:    #4A564F;
  --accent:      #1E7A8C;
  --accent-hover:#15596B;
  --accent-soft: #6BC4D4;
  --white:       #FFFFFF;
  --ease-roll:   cubic-bezier(0.25,0.1,0.25,1);
  --ease-sheet:  cubic-bezier(0.32,0.72,0,1);
  --ease-out:    cubic-bezier(0.16,1,0.3,1);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--sand);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  cursor:default;
}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;border:none;background:none;cursor:pointer;}
img,svg{display:block;max-width:100%;}
img{width:100%;height:100%;object-fit:cover;}
.container{max-width:1440px;margin:0 auto;padding:0 1.25rem;position:relative;z-index:2;}
@media(min-width:640px){.container{padding:0 2rem;}}
@media(min-width:1024px){.container{padding:0 3rem;}}
.container-narrow{max-width:760px;}

.br-desktop{display:none;}
.sp-mobile{display:inline;}
@media(min-width:640px){
  .br-desktop{display:block;}
  .sp-mobile{display:none;}
}

em{
  font-family:'Fraunces',serif;
  font-style:italic;
  font-weight:500;
  color:var(--accent);
}

/* ===========================================================
   SCROLL PROGRESS BAR
=========================================================== */
.scroll-progress{position:fixed;top:0;left:0;width:100%;height:3px;z-index:100;background:transparent;pointer-events:none;}
#scroll-progress-bar{height:100%;width:0%;background:linear-gradient(90deg,var(--seafoam),var(--accent));transition:width 0.1s linear;}

/* ===========================================================
   SCROLL REVEAL
=========================================================== */
.reveal-up{
  opacity:0;
  transform:translateY(44px);
  transition:opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal-up.in-view{opacity:1;transform:translateY(0);}

/* hero line mask reveal */
.line-mask{display:block;overflow:hidden;}
.line-inner{
  display:block;
  transform:translateY(110%);
  opacity:0;
  animation:lineUp 0.9s var(--ease-out) forwards;
  animation-delay:calc(var(--d) * 0.12s + 0.2s);
}
@keyframes lineUp{
  to{transform:translateY(0);opacity:1;}
}
.hero-eyebrow.reveal-up{transition-delay:0s;}

/* ===========================================================
   HERO
=========================================================== */
.hero{
  position:relative;
  min-height:100vh;
  width:100%;
  background:var(--sand);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.hero-canvas{
  position:absolute;
  inset:0;
  z-index:1;
  width:100%;
  height:100%;
}
.hero-bg-images{
  position:absolute;
  inset:0;
  z-index:1;
  width:100%;
  height:100%;
}
.hero-bg-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.2s var(--ease-out);
}
.hero-bg-image.is-active{opacity:1;}
.hero-vignette{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:radial-gradient(ellipse at 50% 100%, rgba(10,53,42,0.06) 0%, rgba(10,53,42,0) 55%);
}
.hero-text-scrim{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(180deg, rgba(10,53,42,0) 0%, rgba(10,53,42,0) 35%, rgba(10,53,42,0.32) 100%);
}
.hero-grain{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  opacity:0.045;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner{
  position:relative;
  z-index:3;
  display:flex;
  flex-direction:column;
  flex:1;
  min-height:100vh;
}

/* NAV */
.nav-wrap{padding:0;}
.navbar{
  max-width:100%;
  margin:0;
  background:var(--white);
  border-radius:0;
  padding:0.85rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  border-top:4px solid var(--kelp-deep);
  box-shadow:0 2px 10px rgba(10,53,42,0.08);
  transition:box-shadow 0.3s, transform 0.3s;
}
@media(min-width:640px){.navbar{padding:1rem 2.5rem;}}
.navbar.scrolled{box-shadow:0 6px 24px rgba(10,53,42,0.14);}
.nav-left{display:flex;align-items:center;gap:1.5rem;}
.logo-mark{
  display:flex;align-items:center;
  flex-shrink:0;
}
.logo-mark img{
  display:block;
  height:4.5rem;width:auto;
  object-fit:contain;
}
.logo-mark.logo-fallback{
  font-family:'Fraunces',serif;
  font-size:34px;font-weight:600;letter-spacing:-0.02em;
  color:var(--kelp-deep);
  line-height:1;
}
@media(min-width:640px){
  .logo-mark img{height:5.25rem;}
  .logo-mark.logo-fallback{font-size:38px;}
}
.nav-links{display:none;align-items:center;gap:1.75rem;}
@media(min-width:1180px){
  .nav-links{
    display:flex;
  }
}
.nav-links a{font-size:13px;font-weight:600;letter-spacing:0.03em;text-transform:uppercase;color:var(--ink);transition:color 0.3s;position:relative;}
.nav-links a::after{
  content:'';position:absolute;left:0;bottom:-4px;width:0;height:1px;background:var(--accent);
  transition:width 0.3s var(--ease-out);
}
.nav-links a:hover{color:var(--ink-soft);}
.nav-links a:hover::after{width:100%;}
.nav-links a.active::after{width:100%;background:var(--seafoam);}
.nav-right{display:none;align-items:center;gap:1.25rem;}
@media(min-width:1180px){.nav-right{display:flex;}}
.nav-status{font-size:13px;color:var(--ink-soft);display:none;}
@media(min-width:1024px){.nav-status{display:inline;}}
.nav-clock{display:flex;align-items:center;gap:0.35rem;font-size:13px;color:var(--ink-soft);font-family:'JetBrains Mono',monospace;}
.icon-clock{width:14px;height:14px;}

/* roll button */
.btn-roll{
  display:inline-flex;align-items:center;gap:0;
  border-radius:9999px;
  font-size:13px;font-weight:500;
  padding:0.5rem 0.5rem 0.5rem 1.25rem;
  position:relative;
  isolation:isolate;
  transition:transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.btn-roll:hover{transform:scale(1.045);}
@media(min-width:640px){.btn-roll{font-size:14px;padding:0.5rem 0.5rem 0.5rem 1.5rem;}}
.btn-dark{background:var(--kelp-deep);color:var(--white);}
.btn-accent{background:var(--accent);color:var(--white);transition:background 0.3s, box-shadow 0.25s, transform 0.3s var(--ease-out);}
.btn-accent:hover{background:var(--accent-hover);box-shadow:0 10px 24px rgba(30,122,140,0.38);}
.btn-dark:hover{box-shadow:0 10px 24px rgba(10,53,42,0.38);}
.btn-dark{transition:box-shadow 0.25s, transform 0.3s var(--ease-out);}
.roll-track{
  display:flex;flex-direction:column;
  overflow:hidden;height:20px;
  margin-right:0.75rem;
}
.roll-line{
  height:20px;line-height:20px;
  white-space:nowrap;
}
.arrow-circle{
  width:1.5rem;height:1.5rem;
  border-radius:9999px;
  display:flex;align-items:center;justify-content:center;
  transition:transform 0.4s var(--ease-out);
  flex-shrink:0;
}
.arrow-circle svg{width:13px;height:13px;}
.arrow-circle-light{background:var(--white);color:var(--kelp-deep);}
.arrow-circle-accent{background:var(--white);color:var(--accent);}
.btn-roll:hover .arrow-circle{transform:translateX(3px);}

@media(min-width:640px){
  .hero-cta-row .arrow-circle{width:1.75rem;height:1.75rem;}
  .hero-cta-row .arrow-circle svg{width:14px;height:14px;}
}

/* mobile menu toggle */
.menu-toggle{
  display:flex;align-items:center;justify-content:center;
  width:2.25rem;height:2.25rem;
  background:var(--kelp-deep);
  color:var(--white);
  border-radius:9999px;
  margin-right:0.25rem;
  position:relative;
  z-index:60;
}
@media(min-width:1180px){.menu-toggle{display:none;}}
.menu-toggle svg{width:18px;height:18px;}

/* mobile menu overlay */
.mobile-menu{
  position:fixed;inset:0;z-index:50;
  visibility:hidden;
}
.mobile-menu.open{visibility:visible;}
.mobile-menu-backdrop{
  position:absolute;inset:0;
  background:rgba(10,53,42,0.6);
  opacity:0;
  transition:opacity 0.4s var(--ease-sheet);
}
.mobile-menu.open .mobile-menu-backdrop{opacity:1;}
.mobile-menu-sheet{
  position:absolute;left:0;right:0;bottom:0;
  margin:0.75rem;
  background:var(--white);
  border-radius:1.25rem;
  padding:1.75rem 1.5rem 2rem;
  display:flex;flex-direction:column;gap:1.1rem;
  transform:translateY(110%);
  transition:transform 0.5s var(--ease-sheet);
}
.mobile-menu.open .mobile-menu-sheet{transform:translateY(0);}
.mobile-time-badge{
  display:inline-flex;align-items:center;gap:0.4rem;
  font-size:13px;color:var(--ink-soft);
  font-family:'JetBrains Mono',monospace;
  background:var(--sand);
  border-radius:9999px;
  padding:0.4rem 0.8rem;
  width:fit-content;
  margin-bottom:0.5rem;
}
.mobile-link{font-family:'Fraunces',serif;font-size:28px;font-weight:500;color:var(--ink);}
@media(min-width:400px){.mobile-link{font-size:32px;}}
.mobile-start-btn{margin-top:0.75rem;align-self:flex-start;}

/* hero content */
.hero-content{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  max-width:1440px;
  width:100%;
  margin:0 auto;
  padding:0 1.25rem 3.5rem;
}
@media(min-width:640px){.hero-content{padding:0 2rem 4rem;}}
@media(min-width:1024px){.hero-content{padding:0 3rem 5rem;}}


.hero-eyebrow{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  color:#fff;
  letter-spacing:0.08em;
  margin-bottom:1.25rem;
  text-transform:uppercase;
  text-shadow:0 1px 10px rgba(10,53,42,0.5);
}
@media(min-width:640px){.hero-eyebrow{font-size:13px;margin-bottom:2rem;}}

.hero-headline{
  font-family:'Fraunces',serif;
  font-size:clamp(2rem,7.5vw,4.6rem);
  font-weight:420;
  line-height:1.06;
  letter-spacing:-0.02em;
  color:var(--ink);
  max-width:52rem;
  text-shadow:0 2px 24px rgba(246,241,228,0.55), 0 1px 3px rgba(246,241,228,0.6);
}
@media(min-width:640px){.hero-headline{font-size:clamp(2.6rem,5.2vw,4.6rem);}}

.hero-headline-rotator{
  position:relative;
  width:100%;
  max-width:52rem;
  font-size:clamp(2rem,7.5vw,4.6rem);
  min-height:calc(3 * 1.06em);
}
@media(min-width:640px){.hero-headline-rotator{font-size:clamp(2.6rem,5.2vw,4.6rem);min-height:calc(3 * 1.06em);}}
.hero-headline-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transform:translateY(14px);
  transition:opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), visibility 0s;
  pointer-events:none;
}
.hero-headline-slide.is-active{
  position:relative;
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
  transition:opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.hero-headline-slide h1{
  font-family:'Poppins','Inter',sans-serif;
  font-size:clamp(1.9rem,7vw,4.2rem);
  font-weight:600;
  line-height:1.18;
  letter-spacing:-0.01em;
  color:#fff;
  max-width:52rem;
  margin:0;
  text-shadow:0 2px 18px rgba(10,53,42,0.45), 0 1px 3px rgba(10,53,42,0.5);
}
@media(min-width:640px){.hero-headline-slide h1{font-size: clamp(1.25rem, 4vw, 2.8rem);}}
.hero-headline-slide em{
  color:#fff;
  font-style:normal;
  font-weight:700;
  background:linear-gradient(180deg, rgba(95,224,160,0.95), rgba(62,180,128,0.95));
  padding:0.05em 0.3em;
  border-radius:0.3em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}

.hero-rotator-dots{
  display:flex;align-items:center;gap:0.5rem;
  margin-top:1rem;
}
.hero-rotator-dot{
  width:6px;height:6px;border-radius:50%;
  background:rgba(255,255,255,0.4);
  border:none;padding:0;cursor:pointer;
  transition:background 0.3s, width 0.3s;
}
.hero-rotator-dot.is-active{background:var(--seafoam);width:18px;border-radius:3px;}

.hero-cta-row{
  margin-top:2rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
}
@media(min-width:640px){
  .hero-cta-row{flex-direction:row;align-items:center;gap:1.25rem;margin-top:3rem;}
}

.partner-badge{
  display:inline-flex;align-items:center;gap:0.6rem;
  background:var(--white);
  border-radius:4px;
  padding:0.5rem 0.9rem;
  box-shadow:0 2px 8px rgba(10,53,42,0.10);
  transition:box-shadow 0.3s, transform 0.3s var(--ease-out);
  width:fit-content;
}
.partner-badge:hover{box-shadow:0 6px 18px rgba(10,53,42,0.18);transform:translateY(-2px);}
.partner-icon{width:1.25rem;height:1.25rem;color:var(--accent);}
@media(min-width:640px){.partner-icon{width:1.5rem;height:1.5rem;}}
.partner-text{font-size:13px;font-weight:500;color:var(--ink);}
@media(min-width:640px){.partner-text{font-size:14px;}}
.partner-tag{
  font-size:10px;background:var(--kelp-deep);color:var(--white);
  padding:0.15rem 0.4rem;border-radius:3px;font-weight:600;
  font-family:'JetBrains Mono',monospace;
}
@media(min-width:640px){.partner-tag{font-size:11px;padding:0.15rem 0.5rem;}}

/* scroll cue */
.scroll-cue{
  position:absolute;
  left:50%;
  bottom:1.5rem;
  transform:translateX(-50%);
  z-index:4;
  display:none;
  flex-direction:column;
  align-items:center;
  gap:0.35rem;
  color:rgba(255,255,255,0.85);
  font-family:'JetBrains Mono',monospace;
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  opacity:0.7;
  transition:opacity 0.3s;
  animation:bobDown 2.2s ease-in-out infinite;
}
.scroll-cue:hover{opacity:1;}
.scroll-cue svg{width:16px;height:16px;}
@media(min-width:768px) and (min-height:700px){.scroll-cue{display:flex;}}
@keyframes bobDown{
  0%,100%{transform:translate(-50%,0);}
  50%{transform:translate(-50%,6px);}
}

/* ===========================================================
   SECTION SHARED
=========================================================== */
.section{padding-top:4rem;padding-bottom:3rem;overflow:hidden;position:relative;}
@media(min-width:640px){.section{padding-top:5rem;padding-bottom:4rem;}}
@media(min-width:1024px){.section{padding-top:8rem;padding-bottom:6rem;}}
.section-white{background:var(--white);}
.section-tint{background:var(--sand);}
.section-dark{background:var(--kelp-deep);color:var(--sand);}

/* PAGE BANNER — lightweight hero strip for subpages (no video) */
.page-banner{
  position:relative;
  background:linear-gradient(165deg,var(--kelp-deep) 0%,#0A352A 100%);
  padding-bottom:3.5rem;
  overflow:hidden;
}
@media(min-width:640px){.page-banner{padding-bottom:4.5rem;}}
.page-banner-text{margin-top:4.5rem;}
@media(min-width:640px){.page-banner-text{margin-top:5.5rem;}}
.page-banner-eyebrow{
  font-family:'JetBrains Mono',monospace;font-size:12px;letter-spacing:0.08em;text-transform:uppercase;
  color:var(--seafoam);margin-bottom:0.75rem;
}
.page-banner-title{
  font-family:'Fraunces',serif;font-weight:500;color:var(--sand);
  font-size:2.2rem;line-height:1.1;letter-spacing:-0.01em;max-width:38rem;
}
@media(min-width:640px){.page-banner-title{font-size:3rem;}}
@media(min-width:1024px){.page-banner-title{font-size:3.6rem;}}
.page-banner-sub{
  margin-top:1rem;font-size:16px;line-height:1.6;color:rgba(244,237,225,0.78);max-width:36rem;
}
.page-banner .nav-wrap{position:relative;z-index:3;}

/* Tighter padding for sections that sit back-to-back on the same background */
.section-tight-bottom{padding-bottom:1.5rem;}
@media(min-width:640px){.section-tight-bottom{padding-bottom:2rem;}}
@media(min-width:1024px){.section-tight-bottom{padding-bottom:2.5rem;}}
.section-tight-top{padding-top:1.5rem;}
@media(min-width:640px){.section-tight-top{padding-top:2rem;}}
@media(min-width:1024px){.section-tight-top{padding-top:2.5rem;}}

.badge-row{display:flex;align-items:center;gap:0.75rem;margin-bottom:1.5rem;}
@media(min-width:640px){.badge-row{margin-bottom:2rem;}}
.badge-num{
  width:1.5rem;height:1.5rem;
  border-radius:9999px;
  background:var(--kelp-deep);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;font-weight:500;
  flex-shrink:0;
}
@media(min-width:640px){.badge-num{width:1.75rem;height:1.75rem;font-size:12px;}}
.badge-num-on-dark{background:var(--sand);color:var(--kelp-deep);}
.badge-pill{
  font-size:12px;font-weight:500;
  border-radius:9999px;
  padding:0.3rem 0.9rem;
}
@media(min-width:640px){.badge-pill{font-size:13px;padding:0.4rem 1rem;}}
.badge-pill-light{border:1px solid #E3DFD3;color:var(--ink-soft);}
.badge-pill-dark{border:1px solid #D8D2C2;color:var(--ink-soft);}
.badge-pill-on-dark{border:1px solid rgba(246,241,228,0.3);color:var(--sand);}

.section-heading{
  font-family:'Fraunces',serif;
  font-size:clamp(1.6rem,4.2vw,3.4rem);
  font-weight:440;
  line-height:1.1;
  letter-spacing:-0.015em;
  color:var(--ink);
  margin-bottom:1.75rem;
}
@media(min-width:640px){.section-heading{margin-bottom:2.25rem;}}
@media(min-width:1024px){.section-heading{margin-bottom:2.75rem;}}
.heading-on-dark{color:var(--sand);}

/* ===========================================================
   FUSS SECTION
=========================================================== */
.fuss-grid{
  display:grid;grid-template-columns:1fr;gap:2.5rem;
  margin-bottom:3.5rem;
  align-items:start;
}
@media(min-width:900px){.fuss-grid{grid-template-columns:1.1fr 0.9fr;gap:3rem;}}
.fuss-grid-single{grid-template-columns:1fr !important;margin-bottom:0;}
.fuss-stack{display:flex;flex-direction:column;align-items:flex-start;gap:1.75rem;max-width:36rem;}
.fuss-paragraph{
  font-size:16px;line-height:1.7;font-weight:400;color:var(--ink);
}
@media(min-width:640px){.fuss-paragraph{font-size:18px;}}

.intro-image-wrap-full{margin:1.75rem 0 2.5rem;}
.fuss-list{
  display:flex;flex-direction:column;gap:0.6rem;
  margin:0.25rem 0 0;
  padding-left:0;
  list-style:none;
}
.fuss-list li{
  font-size:15px;line-height:1.5;font-weight:600;color:var(--kelp-deep);
  background:rgba(30,122,140,0.08);
  border-left:3px solid var(--accent);
  padding:0.6rem 0.9rem;
  border-radius:0.4rem;
}
@media(min-width:640px){.fuss-list li{font-size:16.5px;}}
.fuss-photo{
  border-radius:1.25rem;overflow:hidden;
  aspect-ratio:4/3;
  box-shadow:0 20px 50px -10px rgba(10,53,42,0.25);
}
.fuss-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.7s var(--ease-out);}
.fuss-photo:hover img{transform:scale(1.05);}
.fuss-photo-placeholder{
  width:100%;height:100%;
  background:var(--sand-card);
  border:1.5px dashed #C9C2AE;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:0.6rem;color:var(--ink-soft);
}
.fuss-photo-placeholder svg{width:32px;height:32px;opacity:0.45;}
.fuss-photo-placeholder span{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;letter-spacing:0.05em;text-transform:uppercase;
  opacity:0.6;text-align:center;padding:0 1rem;
}

.activity-list{
  display:flex;flex-direction:column;gap:1.1rem;
  margin-top:0.25rem;
}
.activity-item{
  display:flex;align-items:flex-start;gap:0.85rem;
  font-size:15.5px;line-height:1.65;color:var(--ink);
}
@media(min-width:640px){.activity-item{font-size:16.5px;}}
.activity-dot{
  flex-shrink:0;margin-top:0.5em;
  width:8px;height:8px;border-radius:50%;
  background:var(--accent);
}


.stat-grid{
  display:grid;grid-template-columns:1fr;gap:1.25rem;
}
@media(min-width:640px){.stat-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem;}}
@media(min-width:1024px){.stat-grid{grid-template-columns:repeat(3,1fr);gap:1.75rem;}}
.stat-card{
  border-top:1px solid #E3DFD3;
  padding-top:1.25rem;
  transition:transform 0.4s var(--ease-out);
}
.stat-card:hover{transform:translateY(-4px);}
.stat-number{
  font-family:'Fraunces',serif;
  font-size:clamp(2.1rem,4.2vw,2.9rem);
  font-weight:480;
  letter-spacing:-0.02em;
  color:var(--accent);
  margin-bottom:0.6rem;
  font-variant-numeric:tabular-nums;
}
.stat-label{font-size:14px;line-height:1.5;color:var(--ink-soft);max-width:22rem;}

/* ===========================================================
   NEWS — featured story + compact feed list
=========================================================== */
.news-feature{
  background:var(--kelp-deep);
  color:var(--sand);
  border-radius:1.25rem;
  padding:2rem 1.75rem;
  margin-bottom:1.5rem;
  display:flex;flex-direction:column;gap:1.5rem;
  transition:transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position:relative;
  overflow:hidden;
}
@media(min-width:640px){.news-feature{flex-direction:row;align-items:center;gap:2rem;}}
.news-feature::before{
  content:'';
  position:absolute;top:0;right:0;
  width:40%;height:100%;
  background:radial-gradient(circle at 100% 0%, rgba(95,199,149,0.18), transparent 60%);
  pointer-events:none;
}
.news-feature:hover{transform:translateY(-4px);box-shadow:0 20px 44px rgba(10,53,42,0.25);}
@media(min-width:768px){.news-feature{padding:2rem 2.5rem;}}
.news-feature-thumb{
  flex-shrink:0;
  width:100%;max-width:11rem;
  aspect-ratio:1/1;
  border-radius:0.85rem;
  overflow:hidden;
  position:relative;z-index:1;
}
@media(min-width:640px){.news-feature-thumb{width:7.5rem;max-width:none;}}
@media(min-width:1024px){.news-feature-thumb{width:9rem;}}
.news-feature-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.news-feature-placeholder{
  width:100%;height:100%;
  background:rgba(246,241,228,0.05);
  border:1.5px dashed rgba(246,241,228,0.28);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:0.35rem;color:rgba(246,241,228,0.45);
}
.news-feature-placeholder svg{width:22px;height:22px;opacity:0.6;}
.news-feature-placeholder span{
  font-family:'JetBrains Mono',monospace;
  font-size:9px;letter-spacing:0.04em;text-transform:uppercase;
  opacity:0.75;text-align:center;padding:0 0.4rem;
}
.news-feature-text{display:flex;flex-direction:column;gap:0.75rem;flex:1;}
.news-feature-title{
  font-family:'Fraunces',serif;font-size:clamp(1.25rem,2.6vw,1.7rem);font-weight:500;
  line-height:1.35;color:var(--sand);max-width:42rem;position:relative;z-index:1;
}
.news-feature-body{
  font-size:14px;line-height:1.65;color:rgba(246,241,228,0.78);max-width:38rem;position:relative;z-index:1;
}
@media(min-width:640px){.news-feature-body{font-size:15px;}}

.news-feed-grid{
  display:grid;grid-template-columns:1fr;gap:1px;
  background:#E3DFD3;
  border-radius:1rem;
  overflow:hidden;
}
@media(min-width:768px){
  .news-feed-grid{grid-template-columns:repeat(2,1fr);}
  .news-feed-item:last-child:nth-child(odd){grid-column:1 / -1;}
}
.news-feed-item{
  background:var(--white);
  padding:1.1rem 1.6rem;
  display:flex;align-items:center;gap:1rem;
  transition:background 0.3s, padding-left 0.3s var(--ease-out);
}
.news-feed-item:hover{background:#FBF9F4;padding-left:2rem;}
.news-feed-thumb{
  flex-shrink:0;
  width:3.5rem;height:3.5rem;
  border-radius:0.6rem;
  overflow:hidden;
}
.news-feed-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.news-feed-placeholder{
  width:100%;height:100%;
  background:var(--sand-card);
  border:1.5px dashed #C9C2AE;
  display:flex;align-items:center;justify-content:center;
  color:var(--ink-soft);
}
.news-feed-placeholder svg{width:16px;height:16px;opacity:0.45;}
.news-feed-text{display:flex;flex-direction:column;gap:0.3rem;min-width:0;}
.news-kicker{font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:0.06em;text-transform:uppercase;color:var(--accent);font-weight:500;}
.news-feature .news-kicker{color:var(--accent-soft);}
.news-feed-title{font-family:'Fraunces',serif;font-size:16px;font-weight:500;line-height:1.4;color:var(--ink);}

/* ===========================================================
   INTRO / WHAT WE DO GRID
=========================================================== */
.intro-grid{display:flex;flex-direction:column;gap:1.25rem;}
@media(min-width:640px){.intro-grid{flex-direction:row;gap:1.25rem;align-items:stretch;}}
@media(min-width:1024px){
  .intro-grid{
    display:grid;grid-template-columns:26% 1fr 48%;
    align-items:end;gap:2rem;
  }
}
.intro-image-wrap{order:2;}
.intro-image-wrap-offset{margin-top:-1.5rem;}
@media(min-width:640px){
  .intro-image-wrap{width:45%;order:0;}
  .intro-image-wrap-offset{margin-top:-1.5rem;align-self:stretch;}
}
@media(min-width:1024px){
  .intro-image-wrap{width:auto;align-self:end;}
  .intro-image-wrap-offset{align-self:stretch;}
}
.intro-image-large{}
@media(min-width:640px){.intro-image-large{width:55%;}}
@media(min-width:1024px){.intro-image-large{width:auto;align-self:end;}}
.intro-text-wrap{order:1;display:flex;flex-direction:column;align-items:flex-start;gap:1.5rem;}
@media(min-width:1024px){
  .intro-text-wrap{align-self:start;align-items:flex-end;text-align:right;}
}
.intro-paragraph{font-size:16px;line-height:1.7;color:var(--ink);}
@media(min-width:1024px){.intro-paragraph{font-size:18px;}}

.photo-frame{
  border-radius:1rem;
  overflow:hidden;
  aspect-ratio:438/346;
  box-shadow:0 16px 40px -8px rgba(10,53,42,0.2);
}
.intro-image-wrap-offset .photo-frame{aspect-ratio:auto;height:100%;}
.intro-image-large .photo-frame{aspect-ratio:3/2;}
.photo-frame-wide{aspect-ratio:16/7;}
@media(max-width:640px){.photo-frame-wide{aspect-ratio:4/3;}}
@media(min-width:1024px){.photo-frame{border-radius:1.25rem;}}
.photo-frame img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.7s var(--ease-out);}
.photo-frame video{width:100%;height:100%;object-fit:cover;display:block;}
.photo-frame-placeholder{
  width:100%;height:100%;
  background:var(--sand-card);
  border:1.5px dashed #C9C2AE;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:0.6rem;color:var(--ink-soft);
}
.photo-frame-placeholder svg{width:32px;height:32px;opacity:0.45;}
.photo-frame-placeholder span{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;letter-spacing:0.05em;text-transform:uppercase;
  opacity:0.6;text-align:center;padding:0 1rem;
}
.photo-frame:hover img{transform:scale(1.06);}

.milestone-row{
  display:grid;grid-template-columns:1fr;gap:1.5rem;
  margin-top:3.5rem;
  border-top:1px solid #E3DFD3;
  padding-top:2.5rem;
}
@media(min-width:640px){.milestone-row{grid-template-columns:repeat(3,1fr);}}
.milestone{transition:transform 0.4s var(--ease-out);}

/* ===========================================================
   SEAWEED CULTIVATION
=========================================================== */
.cultivation-grid{
  display:grid;grid-template-columns:1fr;gap:2.5rem;
  align-items:start;
  margin-bottom:0;
}
@media(min-width:900px){.cultivation-grid{grid-template-columns:1.15fr 0.85fr;gap:3rem;}}
.cultivation-text{max-width:38rem;display:flex;flex-direction:column;}
.cultivation-photos{
  display:grid;grid-template-columns:1fr 1fr;gap:1rem;
  max-width:24rem;
  margin:0 auto;
}
@media(min-width:900px){.cultivation-photos{max-width:none;margin:0;}}
.cultivation-photo-frame{
  border-radius:1.25rem;
  overflow:hidden;
  aspect-ratio:4/5;
  box-shadow:0 16px 40px -8px rgba(10,53,42,0.2);
}
.cultivation-photo-frame:nth-child(2){margin-top:1.5rem;}
.cultivation-photo-frame img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform 0.6s var(--ease-out);
}
.cultivation-photo-frame:hover img{transform:scale(1.06);}
.cultivation-photo-placeholder{
  width:100%;height:100%;
  background:var(--sand-card);
  border:1.5px dashed #C9C2AE;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:0.6rem;color:var(--ink-soft);
}
.cultivation-photo-placeholder svg{width:32px;height:32px;opacity:0.45;}
.cultivation-photo-placeholder span{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;letter-spacing:0.05em;text-transform:uppercase;
  opacity:0.6;text-align:center;padding:0 1rem;
}
.cultivation-stat-row{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  margin-top:2.25rem;
  padding-top:1.75rem;
  border-top:1px solid #E3DFD3;
}
.cultivation-stat-num{
  font-family:'Fraunces',serif;font-weight:480;
  font-size:clamp(1.5rem,3vw,1.9rem);color:var(--accent);
  font-variant-numeric:tabular-nums;
}
.cultivation-stat-label{font-size:12.5px;line-height:1.4;color:var(--ink-soft);margin-top:0.3rem;}

/* ===========================================================
   JALTARU — PRODUCT SECTION
=========================================================== */
.jaltaru-grid{
  display:grid;grid-template-columns:1fr;gap:3rem;
  align-items:start;
}
@media(min-width:980px){.jaltaru-grid{grid-template-columns:0.95fr 1.05fr;gap:3.5rem;}}

.jaltaru-gallery{
  display:grid;grid-template-columns:1fr;gap:1rem;
}
.jaltaru-gallery-main{
  border-radius:1.25rem;
  overflow:hidden;
  aspect-ratio:1/1;
  background:var(--sand-card);
  box-shadow:0 20px 50px -10px rgba(10,53,42,0.22);
}
.jaltaru-gallery-main img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform 0.6s var(--ease-out), opacity 0.2s ease;
}
.jaltaru-gallery-main:hover img{transform:scale(1.05);}
.jaltaru-gallery-thumbs{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;
}
.jaltaru-thumb{
  border-radius:1rem;overflow:hidden;
  aspect-ratio:1/1;
  background:var(--sand-card);
  cursor:pointer;
  border:2px solid transparent;
  transition:border-color 0.3s, transform 0.3s var(--ease-out);
}
.jaltaru-thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.jaltaru-thumb:hover{transform:translateY(-3px);}
.jaltaru-thumb.is-active{border-color:var(--accent);}
.jaltaru-thumb:last-child:nth-child(odd){
  grid-column:1 / -1;
  justify-self:center;
  width:calc(50% - 0.5rem);
}

.jaltaru-content{display:flex;flex-direction:column;gap:1.5rem;}
.jaltaru-name-row{display:flex;align-items:baseline;gap:0.6rem;flex-wrap:wrap;}
.jaltaru-name{
  font-family:'Fraunces',serif;font-weight:600;
  font-size:clamp(1.6rem,3vw,2.1rem);
  color:var(--accent);letter-spacing:-0.01em;
}
.jaltaru-tagline{
  font-family:'JetBrains Mono',monospace;
  font-size:13px;letter-spacing:0.04em;color:var(--ink-soft);
}
.jaltaru-paragraph{font-size:15.5px;line-height:1.75;color:var(--ink);}
@media(min-width:640px){.jaltaru-paragraph{font-size:16.5px;}}

.jaltaru-benefits{
  display:grid;grid-template-columns:1fr;gap:0.75rem;
  margin-top:0.25rem;
}
@media(min-width:560px){.jaltaru-benefits{grid-template-columns:repeat(2,1fr);}}
.jaltaru-benefit{
  display:flex;align-items:flex-start;gap:0.65rem;
  font-size:14px;line-height:1.5;color:var(--ink);
  background:var(--sand-card);
  border-radius:0.85rem;
  padding:0.85rem 1rem;
}
.jaltaru-benefit svg{
  width:17px;height:17px;flex-shrink:0;margin-top:1px;
  color:var(--accent);
}

.jaltaru-stat-row{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;
  border-top:1px solid #E3DFD3;border-bottom:1px solid #E3DFD3;
  padding:1.5rem 0;
}
.jaltaru-stat-num{
  font-family:'Fraunces',serif;font-weight:480;
  font-size:clamp(1.5rem,3vw,2rem);color:var(--accent);
  font-variant-numeric:tabular-nums;
}
.jaltaru-stat-label{font-size:12.5px;line-height:1.4;color:var(--ink-soft);margin-top:0.3rem;}

.jaltaru-credit{
  font-size:14px;line-height:1.65;color:var(--ink-soft);
  border-left:3px solid var(--accent-soft);
  padding-left:1rem;
}
.milestone:hover{transform:translateY(-4px);}
.milestone-num{font-family:'Fraunces',serif;font-size:1.7rem;font-weight:500;color:var(--kelp-deep);margin-bottom:0.5rem;font-variant-numeric:tabular-nums;}
.milestone-text{font-size:1.3rem;}
.milestone-label{font-size:13px;line-height:1.55;color:var(--ink-soft);max-width:18rem;}

/* ===========================================================
   ABOUT (dark)
=========================================================== */
.about-bg-canvas-wrap{position:absolute;inset:0;z-index:0;opacity:0.22;}
.about-bg-canvas-wrap canvas{width:100%;height:100%;}

.about-layout{
  display:grid;grid-template-columns:1fr;gap:2.5rem;
  align-items:start;
}
@media(min-width:980px){.about-layout{grid-template-columns:1fr 1fr;gap:3rem;}}
.about-layout-single{grid-template-columns:1fr !important;}

.about-grid{display:flex;flex-direction:column;align-items:flex-start;gap:1.75rem;max-width:46rem;}
.about-paragraph{font-size:16px;line-height:1.75;}
@media(min-width:640px){.about-paragraph{font-size:17px;}}
.section-dark .about-paragraph{color:rgba(246,241,228,0.85);}
.section-white .about-paragraph{color:#1a1a1a;}

.about-photo-frame-full{
  border-radius:1.25rem;
  overflow:hidden;
  aspect-ratio:16/8;
  box-shadow:0 20px 50px -10px rgba(0,0,0,0.35);
  margin:1.75rem 0 2.5rem;
}
.about-photo-frame-full img{
  width:100%;height:100%;object-fit:cover;display:block;
}
@media(max-width:640px){.about-photo-frame-full{aspect-ratio:4/3;}}

.about-photo-frame{
  border-radius:1.25rem;
  overflow:hidden;
  box-shadow:0 20px 50px -10px rgba(0,0,0,0.35);
  justify-self:end;
  width:100%;
}
.about-photo-frame-offset{align-self:stretch;margin-top:-1.5rem;}
.about-photo-frame img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform 0.6s var(--ease-out);
}
.about-photo-frame:hover img{transform:scale(1.05);}
.about-photo-placeholder{
  width:100%;height:100%;
  background:rgba(246,241,228,0.04);
  border:1.5px dashed rgba(246,241,228,0.28);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:0.6rem;color:rgba(246,241,228,0.45);
}
.about-photo-placeholder svg{width:32px;height:32px;opacity:0.6;}
.about-photo-placeholder span{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;letter-spacing:0.05em;text-transform:uppercase;
  opacity:0.75;text-align:center;padding:0 1rem;
}

/* ===========================================================
   GALLERY
=========================================================== */
.gallery-grid{
  display:grid;grid-template-columns:1fr;gap:1.25rem;
}
@media(min-width:768px){.gallery-grid{grid-template-columns:repeat(2,1fr);gap:1.5rem;}}
@media(min-width:1024px){.gallery-grid{gap:1.75rem;}}

.gallery-media{
  position:relative;
  border-radius:1rem;
  overflow:hidden;
  cursor:pointer;
  transform-style:preserve-3d;
  transition:transform 0.25s var(--ease-out), box-shadow 0.25s;
  will-change:transform;
}
.gallery-media:hover{box-shadow:0 24px 50px -12px rgba(10,53,42,0.35);}
.gallery-card-wide .gallery-media{aspect-ratio:329/246;background:#0A352A;}
.gallery-card-square .gallery-media{aspect-ratio:1/1;background:var(--kelp-deep);}
.gallery-media img{transition:transform 0.6s var(--ease-out);}
.gallery-media:hover img{transform:scale(1.08);}
.gallery-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(10,53,42,0) 40%, rgba(10,53,42,0.55) 100%);
  pointer-events:none;
}

.hover-pill{
  position:absolute;left:1rem;bottom:1rem;
  height:2.25rem;width:2.25rem;
  border-radius:9999px;
  display:flex;align-items:center;justify-content:center;
  gap:0.5rem;
  overflow:hidden;
  transition:width 0.3s ease-in-out;
  z-index:2;
}
.hover-pill-light{background:var(--white);color:var(--ink);}
.hover-pill-dark{background:var(--kelp-deep);color:var(--white);}
.hover-pill-text{
  font-size:13px;font-weight:500;white-space:nowrap;
  opacity:0;transition:opacity 0.3s ease-in-out 0.1s;
  padding-left:0.5rem;
}
.hover-pill-icon{width:14px;height:14px;flex-shrink:0;transform:rotate(-45deg);transition:transform 0.3s ease-in-out;}
.gallery-media:hover .hover-pill{width:148px;}
.gallery-card-square .gallery-media:hover .hover-pill{width:168px;}
.gallery-media:hover .hover-pill-text{opacity:1;}
.gallery-media:hover .hover-pill-icon{transform:rotate(0deg);}

.gallery-desc{font-size:13px;line-height:1.6;color:var(--ink-soft);margin-top:1rem;}

.gallery-placeholder-row{
  display:grid;grid-template-columns:repeat(2,1fr);gap:0.85rem;
  margin-top:1.5rem;
}
@media(min-width:640px){.gallery-placeholder-row{grid-template-columns:repeat(3,1fr);gap:1rem;}}
@media(min-width:1024px){.gallery-placeholder-row{grid-template-columns:repeat(6,1fr);}}
.gallery-ph-card{display:block;}
.gallery-ph-placeholder{
  aspect-ratio:1/1;
  border-radius:0.75rem;
  background:var(--sand-card);
  border:1.5px dashed #C9C2AE;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:0.4rem;color:var(--ink-soft);
}
.gallery-ph-placeholder svg{width:20px;height:20px;opacity:0.45;}
.gallery-ph-placeholder span{
  font-family:'JetBrains Mono',monospace;
  font-size:9.5px;letter-spacing:0.04em;text-transform:uppercase;
  opacity:0.65;text-align:center;padding:0 0.5rem;
}

/* Uniform photo-grid gallery (card-in-card, equal squares) */
.gallery-frame{
  background:var(--white);
  border-radius:1.5rem;
  padding:1.5rem;
  box-shadow:0 30px 70px -20px rgba(10,53,42,0.18);
}
@media(min-width:640px){.gallery-frame{padding:2rem;}}
.gallery-uniform-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;
}
@media(min-width:640px){.gallery-uniform-grid{grid-template-columns:repeat(3,1fr);gap:1.25rem;}}
.gallery-uniform-tile{
  position:relative;
  border-radius:0.85rem;
  overflow:hidden;
  aspect-ratio:1/1;
  cursor:pointer;
  background:var(--sand-card);
  transition:transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.gallery-uniform-tile:hover{transform:translateY(-3px);box-shadow:0 16px 32px -10px rgba(10,53,42,0.25);}
.gallery-uniform-tile img,
.gallery-uniform-tile .illus-svg{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform 0.6s var(--ease-out);
}
.gallery-uniform-tile:hover img,
.gallery-uniform-tile:hover .illus-svg{transform:scale(1.08);}
.gallery-uniform-tile .gallery-overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(10,53,42,0) 55%, rgba(10,53,42,0.45) 100%);pointer-events:none;}
.gallery-uniform-tile .hover-pill{position:absolute;left:0.85rem;bottom:0.85rem;}
.gallery-uniform-tile[data-lightbox]{cursor:zoom-in;}
.gallery-uniform-placeholder{
  width:100%;height:100%;
  background:var(--sand-card);
  border:1.5px dashed #C9C2AE;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:0.5rem;color:var(--ink-soft);
}
.gallery-uniform-placeholder svg{width:26px;height:26px;opacity:0.45;}
.gallery-uniform-placeholder span{
  font-family:'JetBrains Mono',monospace;
  font-size:10.5px;letter-spacing:0.04em;text-transform:uppercase;
  opacity:0.65;text-align:center;padding:0 0.5rem;
}
@media(min-width:640px){.gallery-desc{font-size:14px;}}
.gallery-title{font-family:'Fraunces',serif;font-size:16px;font-weight:500;color:var(--ink);margin-top:0.25rem;}
@media(min-width:640px){.gallery-title{font-size:17px;}}

/* ===========================================================
   CONTACT FORM
=========================================================== */
.contact-grid{
  display:grid;grid-template-columns:1fr;gap:1.5rem;
}
@media(min-width:900px){
  .contact-grid{grid-template-columns:1.15fr 0.85fr;gap:1.75rem;align-items:stretch;}
}
.contact-form-panel{
  background:var(--sand-card);
  border-radius:1.25rem;
  padding:1.75rem;
  display:flex;
}
@media(min-width:640px){.contact-form-panel{padding:2rem;}}
.contact-form{display:flex;flex-direction:column;gap:1.25rem;width:100%;}
.contact-form-email-note{font-size:13.5px;color:var(--ink-soft);margin:0;padding-bottom:0.25rem;border-bottom:1px solid rgba(10,53,42,0.1);}
.form-row{display:flex;flex-direction:column;gap:1.25rem;}
@media(min-width:640px){.form-row{flex-direction:row;gap:1.25rem;}}
.form-row .form-field{flex:1;}
.form-field{display:flex;flex-direction:column;gap:0.5rem;}
.form-label{font-size:13px;font-weight:500;color:var(--ink-soft);}
.form-field input,.form-field textarea{
  font:inherit;font-size:15px;
  border:1px solid #DAD4C5;
  border-radius:0.65rem;
  padding:0.75rem 1rem;
  background:var(--white);
  color:var(--ink);
  resize:vertical;
  transition:border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.form-field textarea{flex:1;min-height:6rem;}
.form-field input:focus,.form-field textarea:focus{
  outline:none;
  border-color:var(--seafoam);
  box-shadow:0 0 0 3px rgba(62,156,114,0.15);
  transform:translateY(-1px);
}
.submit-btn{align-self:flex-start;margin-top:0.5rem;}
.form-success{
  font-size:14px;color:var(--seafoam);
  opacity:0;height:0;overflow:hidden;
  transition:opacity 0.3s;
  font-weight:500;
}
.form-success.visible{opacity:1;height:auto;margin-top:-0.5rem;}
.form-success.error{color:#C0392B;}

/* contact info panel */
.contact-info{
  background:var(--sand-card);
  border-radius:1.25rem;
  padding:1.75rem;
  display:flex;flex-direction:column;gap:1.5rem;
}
@media(min-width:640px){.contact-info{padding:2rem;}}
.contact-info-illustration{
  border-radius:0.9rem;
  overflow:hidden;
  aspect-ratio:4/3;
  box-shadow:0 14px 32px -8px rgba(10,53,42,0.22);
}
.raft-svg{width:100%;height:100%;display:block;}
.ci-kelp-strand path{
  transform-origin:bottom center;
  animation:ciSway 4.5s ease-in-out infinite;
}
.ci-kelp-strand path:nth-child(2){animation-delay:-1.1s;animation-duration:5.2s;}
.ci-kelp-strand path:nth-child(3){animation-delay:-2.3s;animation-duration:4.8s;}
.ci-kelp-strand path:nth-child(4){animation-delay:-0.6s;animation-duration:5.6s;}
@keyframes ciSway{
  0%,100%{transform:rotate(-2.5deg);}
  50%{transform:rotate(2.5deg);}
}
.contact-info-block{
  border-top:1px solid #E3DFD3;
  padding-top:1.1rem;
}
.contact-info-block:first-of-type{border-top:none;padding-top:0;}
.contact-info-kicker{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;letter-spacing:0.06em;text-transform:uppercase;
  color:var(--accent);font-weight:500;margin-bottom:0.5rem;
}
.contact-info-text{font-size:14px;line-height:1.6;color:var(--ink-soft);}
.contact-info-text + .contact-info-text{margin-top:0.6rem;}
.contact-info-link{color:var(--accent);font-weight:600;text-decoration:underline;text-decoration-color:rgba(30,122,140,0.3);transition:color 0.25s, text-decoration-color 0.25s;}
.contact-info-link:hover{color:var(--kelp-deep);text-decoration-color:var(--kelp-deep);}

@media (prefers-reduced-motion: reduce){
  .ci-kelp-strand path{animation:none;}
}

/* ===========================================================
   FOOTER
=========================================================== */
.footer{background:var(--kelp-deep);padding:3rem 0;}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
.logo-footer{
  display:flex;align-items:center;
  flex-shrink:0;
}
.logo-footer img{
  display:block;
  height:5.6rem;width:auto;
  object-fit:contain;
}
.logo-footer.logo-fallback{
  font-family:'Fraunces',serif;
  font-size:28px;font-weight:600;
  color:var(--sand);
}
.footer-copy{font-size:13px;color:rgba(246,241,228,0.6);}
.back-to-top{
  width:2.25rem;height:2.25rem;
  border-radius:9999px;
  background:rgba(246,241,228,0.1);
  color:var(--sand);
  display:flex;align-items:center;justify-content:center;
  transition:background 0.3s, transform 0.3s var(--ease-out);
}
.back-to-top:hover{background:var(--sand);color:var(--kelp-deep);transform:translateY(-3px);}
.back-to-top svg{width:16px;height:16px;}

/* ===========================================================
   SVG ILLUSTRATION STYLES & ANIMATIONS
=========================================================== */

/* shared illustration container */
.illus-svg{display:block;width:100%;height:100%;}
.fuss-photo .illus-svg{border-radius:1.25rem;}
.photo-frame .illus-svg{border-radius:1rem;}
.gallery-media .illus-svg{border-radius:0;}

/* ── UNDERWATER: kelp strand sway ── */
.uw-strand{
  transform-origin:50% 100%;
  animation:uwSway 5s ease-in-out infinite;
}
.uw-strand:nth-child(2){animation-delay:-1.4s;animation-duration:5.8s;}
.uw-strand:nth-child(3){animation-delay:-2.9s;animation-duration:4.7s;}
.uw-strand:nth-child(4){animation-delay:-0.7s;animation-duration:6.2s;}
.uw-strand:nth-child(5){animation-delay:-3.5s;animation-duration:5.3s;}
.uw-strand:nth-child(6){animation-delay:-1.9s;animation-duration:4.9s;}
@keyframes uwSway{
  0%,100%{transform:rotate(-4deg) skewX(2deg);}
  50%{transform:rotate(4deg) skewX(-2deg);}
}

/* light rays drift */
.uw-rays line{
  animation:rayDrift 7s ease-in-out infinite;
}
.uw-rays line:nth-child(2){animation-delay:-2.3s;}
.uw-rays line:nth-child(3){animation-delay:-4.7s;}
@keyframes rayDrift{
  0%,100%{opacity:0.1;}
  50%{opacity:0.28;}
}

/* bubble float-up */
.uw-bubbles circle{
  animation:bubbleRise 6s ease-in infinite;
  transform-box:fill-box;
}
.uw-bubbles circle:nth-child(2){animation-delay:-2s;animation-duration:7.5s;}
.uw-bubbles circle:nth-child(3){animation-delay:-1s;animation-duration:5.5s;}
.uw-bubbles circle:nth-child(4){animation-delay:-3.5s;animation-duration:8s;}
.uw-bubbles circle:nth-child(5){animation-delay:-0.5s;animation-duration:6.5s;}
@keyframes bubbleRise{
  0%{transform:translateY(0);opacity:0.5;}
  80%{opacity:0.4;}
  100%{transform:translateY(-340px);opacity:0;}
}

/* ── RAFT: kelp strands sway on ropes ── */
.raft-strand{
  transform-origin:50% 0%;
  animation:raftSway 4.2s ease-in-out infinite;
}
.raft-strand:nth-child(2){animation-delay:-0.9s;animation-duration:5s;}
.raft-strand:nth-child(3){animation-delay:-2.1s;animation-duration:4.6s;}
.raft-strand:nth-child(4){animation-delay:-1.5s;animation-duration:5.4s;}
.raft-strand:nth-child(5){animation-delay:-3.2s;animation-duration:4.3s;}
@keyframes raftSway{
  0%,100%{transform:rotate(-3.5deg);}
  50%{transform:rotate(3.5deg);}
}

/* shimmer lines pulse */
.illus-shimmer line{
  animation:shimmerPulse 3.8s ease-in-out infinite;
  transform-box:fill-box;
}
.illus-shimmer line:nth-child(even){animation-delay:-1.9s;}
@keyframes shimmerPulse{
  0%,100%{opacity:0.15;}
  50%{opacity:0.35;}
}

/* ── HARVEST: strands + subtle float ── */
.hv-strand{
  transform-origin:50% 0%;
  animation:hvSway 3.8s ease-in-out infinite;
}
.hv-strand:nth-child(2){animation-delay:-0.7s;}
.hv-strand:nth-child(3){animation-delay:-1.6s;}
.hv-strand:nth-child(4){animation-delay:-2.4s;}
.hv-strand:nth-child(5){animation-delay:-0.4s;}
.hv-strand:nth-child(6){animation-delay:-3.1s;}
@keyframes hvSway{
  0%,100%{transform:rotate(-3deg);}
  50%{transform:rotate(3deg);}
}

/* ── LAB: molecule slow spin ── */
.lab-molecule{
  transform-origin:165px 178px;
  animation:molSpin 28s linear infinite;
}
.lab-molecule-2{
  transform-origin:348px 318px;
  animation:molSpin 36s linear infinite reverse;
}
@keyframes molSpin{
  to{transform:rotate(360deg);}
}

/* lab bubble float */
.illus-lab .gallery-media circle,
.illus-lab circle{
  /* only target flask bubbles, not molecule atoms */
}

/* ── CONTACT INFO: kelp sway already in contact section CSS ── */

/* ── GENERAL: fuss-photo and photo-frame img hover zoom ── */
.fuss-photo:hover .illus-svg,
.photo-frame:hover .illus-svg{
  transform:scale(1.035);
  transition:transform 0.7s var(--ease-out);
}
.fuss-photo .illus-svg,
.photo-frame .illus-svg{
  transition:transform 0.7s var(--ease-out);
}

/* gallery illus inner hover handled by gallery-media:hover img rule;
   since it's an SVG not img we need to re-target */
.gallery-media:hover .illus-svg{transform:scale(1.06);}
.gallery-media .illus-svg{transition:transform 0.6s var(--ease-out);}

/* ===========================================================
   STATS TICKER (draggable marquee)
=========================================================== */
.stats-ticker-wrap{
  background:var(--kelp-deep);
  overflow:hidden;
  border-top:1px solid rgba(246,241,228,0.08);
  border-bottom:1px solid rgba(246,241,228,0.08);
}
.stats-ticker{
  overflow-x:auto;
  overflow-y:hidden;
  cursor:grab;
  scrollbar-width:none;
  -ms-overflow-style:none;
  user-select:none;
}
.stats-ticker::-webkit-scrollbar{display:none;}
.stats-ticker.dragging{cursor:grabbing;}
.ticker-inner{
  display:flex;
  align-items:center;
  gap:1.5rem;
  padding:0.85rem 1.5rem;
  white-space:nowrap;
  width:max-content;
  animation:tickerScroll 38s linear infinite;
}
.stats-ticker.dragging .ticker-inner{animation-play-state:paused;}
@keyframes tickerScroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}
.ticker-item{
  font-size:13px;
  color:rgba(246,241,228,0.82);
  flex-shrink:0;
}
.ticker-item strong{
  font-family:'Fraunces',serif;
  color:var(--accent-soft);
  font-weight:600;
  margin-right:0.3rem;
}
.ticker-sep{color:rgba(95,199,149,0.4);font-size:10px;flex-shrink:0;}

/* ===========================================================
   FACT ACCORDION CARDS
=========================================================== */
.fact-cards{
  display:flex;flex-direction:column;gap:0.75rem;
  margin-top:2rem;
  max-width:40rem;
}
.fact-card{
  border:1px solid #E3DFD3;
  border-radius:0.9rem;
  overflow:hidden;
  transition:border-color 0.3s, box-shadow 0.3s;
}
.fact-card:hover{border-color:#D2CBB5;}
.fact-card.fact-open{border-color:var(--seafoam);box-shadow:0 8px 24px -8px rgba(62,156,114,0.18);}
.fact-toggle{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1rem 1.25rem;
  text-align:left;
  background:var(--white);
  transition:background 0.25s;
}
.fact-card.fact-open .fact-toggle{background:#FBF9F4;}
.fact-toggle:hover{background:#FBF9F4;}
.fact-q{
  font-family:'Fraunces',serif;
  font-size:15px;font-weight:500;color:var(--ink);
}
.fact-icon{
  width:1.6rem;height:1.6rem;flex-shrink:0;
  border-radius:9999px;
  background:var(--sand-card);
  color:var(--ink-soft);
  display:flex;align-items:center;justify-content:center;
  transition:transform 0.35s var(--ease-out), background 0.3s, color 0.3s;
}
.fact-icon svg{width:13px;height:13px;}
.fact-card.fact-open .fact-icon{
  transform:rotate(45deg);
  background:var(--seafoam);
  color:var(--white);
}
.fact-body{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s var(--ease-out);
  background:#FBF9F4;
}
.fact-body p{
  padding:0 1.25rem 1.25rem;
  font-size:14px;line-height:1.65;
  color:var(--ink-soft);
}

/* ===========================================================
   IMPACT CALCULATOR
=========================================================== */
.calc-section{margin:3.5rem 0;}
.calc-label{display:flex;align-items:center;gap:0.75rem;margin-bottom:1.25rem;}
.calc-heading{
  font-family:'Fraunces',serif;
  font-size:clamp(1.3rem,2.6vw,1.9rem);
  font-weight:500;color:var(--ink);
  margin-bottom:1.75rem;
  max-width:34rem;
}
.calc-card{
  background:linear-gradient(150deg, var(--kelp-deep) 0%, #0D4434 100%);
  border-radius:1.5rem;
  padding:2rem 1.75rem;
  display:flex;flex-direction:column;gap:2rem;
  position:relative;
  overflow:hidden;
}
.calc-card::before{
  content:'';position:absolute;top:-30%;right:-10%;
  width:60%;height:160%;
  background:radial-gradient(circle, rgba(95,199,149,0.14), transparent 65%);
  pointer-events:none;
}
@media(min-width:768px){.calc-card{padding:2.5rem 3rem;}}
.calc-input-wrap{position:relative;z-index:1;}
.calc-input-label{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;letter-spacing:0.05em;text-transform:uppercase;
  color:var(--accent-soft);
  margin-bottom:1rem;display:block;
}
.calc-slider-wrap{display:flex;align-items:center;gap:1.5rem;}
.calc-range{
  flex:1;
  -webkit-appearance:none;
  appearance:none;
  height:6px;
  border-radius:9999px;
  background:linear-gradient(90deg, var(--seafoam) 0%, var(--seafoam) var(--fill,10%), rgba(246,241,228,0.18) var(--fill,10%), rgba(246,241,228,0.18) 100%);
  cursor:pointer;
  outline:none;
}
.calc-range::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:24px;height:24px;
  border-radius:50%;
  background:var(--sand);
  border:3px solid var(--seafoam);
  cursor:grab;
  transition:transform 0.2s, box-shadow 0.2s;
  box-shadow:0 2px 8px rgba(0,0,0,0.25);
}
.calc-range::-webkit-slider-thumb:hover{transform:scale(1.15);}
.calc-range::-webkit-slider-thumb:active{cursor:grabbing;transform:scale(1.05);box-shadow:0 0 0 8px rgba(95,199,149,0.18);}
.calc-range::-moz-range-thumb{
  width:24px;height:24px;border-radius:50%;
  background:var(--sand);border:3px solid var(--seafoam);
  cursor:grab;
}
.calc-range::-moz-range-track{
  height:6px;border-radius:9999px;background:rgba(246,241,228,0.18);
}
.calc-range-val{
  font-family:'Fraunces',serif;
  font-size:1.4rem;font-weight:500;
  color:var(--sand);
  min-width:5.5rem;text-align:right;
  flex-shrink:0;
}
.calc-range-val span{color:var(--accent-soft);}
.calc-outputs{
  display:grid;grid-template-columns:1fr 1fr;gap:1.25rem 1.5rem;
  position:relative;z-index:1;
}
@media(min-width:640px){.calc-outputs{grid-template-columns:repeat(4,1fr);}}
.calc-out-num{
  font-family:'Fraunces',serif;
  font-size:clamp(1.3rem,2.4vw,1.7rem);
  font-weight:500;color:var(--accent-soft);
  margin-bottom:0.3rem;
  font-variant-numeric:tabular-nums;
}
.calc-out-label{font-size:12px;line-height:1.4;color:rgba(246,241,228,0.65);}

/* ===========================================================
   LIGHTBOX
=========================================================== */
.lightbox{
  position:fixed;inset:0;z-index:200;
  display:flex;align-items:center;justify-content:center;
  padding:1.5rem;
  background:rgba(7,26,16,0.88);
  backdrop-filter:blur(6px);
  opacity:0;visibility:hidden;
  transition:opacity 0.35s var(--ease-out), visibility 0.35s;
}
.lightbox.lb-open{opacity:1;visibility:visible;}
.lb-inner{
  max-width:900px;width:100%;
  display:flex;flex-direction:column;gap:1.25rem;
  transform:scale(0.94) translateY(12px);
  transition:transform 0.4s var(--ease-out);
}
.lightbox.lb-open .lb-inner{transform:scale(1) translateY(0);}
.lb-content{
  border-radius:1.25rem;overflow:hidden;
  aspect-ratio:16/10;
  box-shadow:0 30px 70px -15px rgba(0,0,0,0.5);
}
.lb-content svg{width:100%;height:100%;display:block;}
.lb-meta{color:var(--sand);text-align:center;}
.lb-title{font-family:'Fraunces',serif;font-size:1.4rem;font-weight:500;margin-bottom:0.5rem;}
.lb-desc{font-size:14px;line-height:1.6;color:rgba(246,241,228,0.75);max-width:36rem;margin:0 auto;}
.lb-close{
  position:absolute;top:1.5rem;right:1.5rem;
  width:2.5rem;height:2.5rem;
  border-radius:9999px;
  background:rgba(246,241,228,0.1);
  color:var(--sand);
  display:flex;align-items:center;justify-content:center;
  transition:background 0.25s, transform 0.25s var(--ease-out);
  z-index:1;
}
.lb-close:hover{background:rgba(246,241,228,0.2);transform:rotate(90deg);}
.lb-close svg{width:18px;height:18px;}

/* ===========================================================
   RIPPLE CLICK EFFECT
=========================================================== */
/* ===========================================================
   FLOATING FORM LABELS
=========================================================== */
.form-field{position:relative;}
.form-label{
  transition:color 0.25s, transform 0.25s var(--ease-out);
}
.form-label.label-focus{color:var(--seafoam);}

/* ===========================================================
   GALLERY HOVER PILL — clickable hint cursor
=========================================================== */
.gallery-media[data-lightbox]{cursor:zoom-in;}

/* ===========================================================
   ABOUT — HERITAGE STRIP & FOUNDER CARDS
=========================================================== */
.heritage-strip{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;
  margin-top:3rem;
  padding-top:2rem;
}
@media(min-width:640px){.heritage-strip{grid-template-columns:repeat(4,1fr);}}
.about-grid .heritage-strip{grid-template-columns:repeat(2,1fr) !important;width:100%;}
.section-white .heritage-strip{border-top:1px solid rgba(10,53,42,0.12);}
.section-dark .heritage-strip{border-top:1px solid rgba(246,241,228,0.15);}
.heritage-num{
  font-family:'Fraunces',serif;
  font-size:clamp(1.8rem,3.2vw,2.4rem);
  font-weight:500;
  margin-bottom:0.4rem;
  font-variant-numeric:tabular-nums;
}
.section-white .heritage-num{color:var(--accent);}
.section-dark .heritage-num{color:var(--accent-soft);}
.section-white .heritage-label{color:rgba(26,26,26,0.62);}
.section-dark .heritage-label{color:rgba(246,241,228,0.65);}
.heritage-label{font-size:13px;line-height:1.4;}

.founder-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;
  margin:3rem auto 0;max-width:84rem;
  justify-content:center;
  align-items:start;
}
@media(max-width:1180px){.founder-grid{grid-template-columns:repeat(2,1fr);max-width:44rem;}}
@media(max-width:640px){.founder-grid{grid-template-columns:1fr;max-width:26rem;}}
.founder-card{
  display:flex;flex-direction:column;align-items:center;gap:0.6rem;
  text-align:center;
  padding:2rem 1.5rem;
  border-radius:1.25rem;
  background:rgba(246,241,228,0.04);
  border:1px solid rgba(246,241,228,0.08);
  transition:background 0.3s, transform 0.3s var(--ease-out), border-color 0.3s;
}
.founder-card:hover{
  background:rgba(246,241,228,0.07);
  transform:translateY(-5px);
  border-color:rgba(107,196,212,0.3);
}
.founder-avatar{
  width:6.5rem;height:6.5rem;border-radius:9999px;overflow:hidden;
  box-shadow:0 8px 22px rgba(0,0,0,0.3);
  margin-bottom:0.25rem;
  transition:transform 0.4s var(--ease-out);
}
.founder-avatar img{width:100%;height:100%;object-fit:cover;display:block;}
.founder-avatar-placeholder{
  display:flex;align-items:center;justify-content:center;
  background:rgba(246,241,228,0.08);
  color:rgba(246,241,228,0.45);
}
.founder-avatar-placeholder svg{width:2.5rem;height:2.5rem;}
.founder-card:hover .founder-avatar{transform:scale(1.06);}
.founder-name{font-family:'Fraunces',serif;font-size:18px;font-weight:500;color:var(--sand);}
.founder-role{font-size:11.5px;color:var(--accent-soft);font-family:'JetBrains Mono',monospace;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:0.4rem;}
.founder-bio{
  font-size:13px;line-height:1.65;
  color:rgba(246,241,228,0.7);
  margin-bottom:0.6rem;
  text-align:left;
}
.founder-link{
  display:inline-flex;align-items:center;gap:0.45rem;
  font-size:12px;font-weight:500;
  color:var(--accent-soft);
  padding:0.45rem 0.9rem;
  border-radius:9999px;
  border:1px solid rgba(107,196,212,0.3);
  transition:background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}
.founder-link svg{width:14px;height:14px;flex-shrink:0;}
.founder-link:hover{
  background:rgba(107,196,212,0.12);
  border-color:rgba(107,196,212,0.6);
  transform:translateY(-2px);
}

/* ===========================================================
   WHY HDPE GRID
=========================================================== */
.why-hdpe{margin-top:4rem;}
.why-hdpe-heading{
  font-family:'Fraunces',serif;
  font-size:clamp(1.3rem,2.6vw,1.8rem);
  font-weight:500;color:var(--ink);
  margin-bottom:1.75rem;
}
.hdpe-grid{
  display:grid;grid-template-columns:1fr;gap:1rem;
}
@media(min-width:640px){.hdpe-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.hdpe-grid{grid-template-columns:repeat(3,1fr);}}
.hdpe-card{
  display:flex;gap:1rem;align-items:flex-start;
  background:var(--sand-card);
  border-radius:1rem;
  padding:1.25rem;
  transition:transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.hdpe-card:hover{transform:translateY(-3px);box-shadow:0 12px 28px -8px rgba(10,53,42,0.15);}
.hdpe-icon{
  font-family:'Fraunces',serif;
  font-size:1.1rem;font-weight:600;
  color:var(--accent);
  flex-shrink:0;
}
.hdpe-text{font-size:13.5px;line-height:1.55;color:var(--ink-soft);}

/* ===========================================================
   PROJECT CARDS
=========================================================== */
.project-cards{
  display:grid;grid-template-columns:1fr;gap:1.5rem;
  margin-bottom:3rem;
}
@media(min-width:900px){.project-cards{grid-template-columns:repeat(3,1fr);}}
.project-card{
  background:var(--white);
  border-radius:1.25rem;
  padding:1.75rem;
  display:flex;flex-direction:column;gap:0.85rem;
  transition:transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  overflow:hidden;
}
.project-card-image{
  margin:-1.75rem -1.75rem 0.25rem;
  aspect-ratio:16/10;
  overflow:hidden;
}
.project-card-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.5s var(--ease-out);}
.project-card:hover .project-card-image img{transform:scale(1.06);}
.project-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px -10px rgba(10,53,42,0.15);}
.project-tag{
  font-family:'JetBrains Mono',monospace;
  font-size:11px;letter-spacing:0.04em;text-transform:uppercase;
  color:var(--accent);font-weight:500;
}
.project-title{
  font-family:'Fraunces',serif;
  font-size:1.15rem;font-weight:500;color:var(--ink);
  line-height:1.3;
}
.project-body{font-size:13.5px;line-height:1.6;color:var(--ink-soft);}
.project-list{
  display:flex;flex-direction:column;gap:0.5rem;
  margin-top:0.25rem;
  padding-left:1.1rem;
}
.project-list li{
  font-size:13px;line-height:1.5;color:var(--ink-soft);
  position:relative;
}
.project-list li::marker{color:var(--accent);}
.project-stat-row{
  display:flex;flex-wrap:wrap;gap:0.75rem;
  margin-top:0.5rem;
  padding-top:0.85rem;
  border-top:1px solid #E3DFD3;
}
.project-stat{
  font-size:12.5px;color:var(--ink-soft);
}
.project-stat strong{
  font-family:'Fraunces',serif;
  color:var(--accent);
  font-weight:600;
  margin-right:0.25rem;
}

/* ===========================================================
   PARTNERSHIP STRIP
=========================================================== */
.partnership-strip{
  background:var(--kelp-deep);
  border-radius:1.5rem;
  padding:2rem 1.75rem;
}
@media(min-width:768px){.partnership-strip{padding:2.5rem 3rem;}}
.partnership-heading{
  font-family:'Fraunces',serif;
  font-size:clamp(1.2rem,2.4vw,1.6rem);
  font-weight:500;color:var(--sand);
  margin-bottom:1.75rem;
}
.partnership-grid{
  display:grid;grid-template-columns:1fr;gap:1.5rem;
}
@media(min-width:768px){.partnership-grid{grid-template-columns:repeat(3,1fr);}}
.partnership-item{
  display:flex;flex-direction:column;gap:0.6rem;
}
.partnership-mark{
  display:inline-flex;
  align-items:center;
  font-family:'JetBrains Mono',monospace;
  font-size:11px;font-weight:500;letter-spacing:0.04em;text-transform:uppercase;
  color:var(--kelp-deep);
  background:var(--accent-soft);
  border-radius:9999px;
  padding:0.3rem 0.8rem;
  width:fit-content;
}
.partnership-item p{
  font-size:13.5px;line-height:1.55;
  color:rgba(246,241,228,0.8);
}
.partnership-item em{color:var(--accent-soft);font-style:italic;}



/* ===========================================================
   ACCESSIBILITY
=========================================================== */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
  outline:2px solid var(--seafoam);
  outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important;transition-duration:0.001ms !important;}
  .reveal-up{opacity:1;transform:none;}
  .line-inner{animation:none;opacity:1;transform:none;}
  .ticker-inner{animation:none;}
}

