
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --navy:   #040d1a;
  --navy2:  #071220;
  --ocean:  #0a2440;
  --teal:   #00a3cc;
  --sky:    #38bdf8;
  --ice:    #93d4e8;
  --white:  #ffffff;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--navy); color: var(--white); overflow-x: hidden; }

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 76px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(4,13,26,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,163,204,0.15);
}
.nav-logo-wrap { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.nav-logo-img { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; letter-spacing: 0.06em; color: var(--white); }
.nav-logo-sub { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); margin-top: 2px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.25s; position: relative; }
.nav-links a::after { content:''; position: absolute; bottom: -4px; left:0; right:0; height: 1px; background: var(--teal); transform: scaleX(0); transition: transform 0.3s; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity:1; pointer-events:all; transform: translateX(-50%) translateY(0); }
.dropdown-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px); background: rgba(4,13,26,0.97); border: 0.5px solid rgba(0,163,204,0.2); list-style: none; min-width: 190px; padding: 0.5rem 0; opacity: 0; pointer-events: none; transition: all 0.25s; }
.dropdown-menu li a { display:block; padding:0.6rem 1.3rem; white-space:nowrap; }
.nav-cta { background: var(--teal); color: var(--navy) !important; padding: 0.5rem 1.2rem; font-weight: 600 !important; letter-spacing: 0.12em; }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background: var(--sky); color: var(--navy) !important; }

/* ── HERO with parallax ─────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}

/* The parallax bg layer */
.hero-bg {
  position: absolute; inset: -15% 0;
  will-change: transform;
  background:
    url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?w=1920&q=85') center 60% / cover no-repeat;
  transform: translateY(0px);
}

/* Dark overlay that gets stronger on scroll via JS */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,13,26,0.30) 0%,
    rgba(4,13,26,0.10) 35%,
    rgba(4,13,26,0.55) 75%,
    rgba(4,13,26,0.88) 100%
  );
  transition: background 0.1s;
}

/* Animated shimmer on the water */
.hero-shimmer {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,163,204,0.03) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  will-change: transform, opacity;
}

.hero-logo {
  width: 90px; height: 90px; border-radius: 50%;
  object-fit: contain;
  border: 1.5px solid rgba(0,163,204,0.45);
  box-shadow: 0 0 50px rgba(0,163,204,0.25);
  background: rgba(4,13,26,0.45);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { box-shadow: 0 0 30px rgba(0,163,204,0.2), 0 0 0 0 rgba(0,163,204,0.15); }
  50%      { box-shadow: 0 0 60px rgba(0,163,204,0.35), 0 0 0 12px rgba(0,163,204,0.0); }
}

.hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--teal); font-weight: 500; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: 0.04em; color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  animation: fadeUp 1s ease both;
}
.hero-title em { font-style: italic; color: var(--ice); }

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.88); letter-spacing: 0.02em;
  animation: fadeUp 1s 0.15s ease both;
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-strip {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 0.6rem;
  border: 0.5px solid rgba(0,163,204,0.3);
  padding: 0.55rem 2rem;
  font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  animation: fadeUp 1s 0.25s ease both;
}
.hero-strip b { color: var(--teal); font-weight: 500; }

.hero-btns {
  display: flex; gap: 1rem; margin-top: 1.5rem;
  flex-wrap: wrap; justify-content: center;
  animation: fadeUp 1s 0.35s ease both;
}
.btn-primary { background: var(--teal); color: var(--navy); padding: 0.75rem 2rem; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: background 0.25s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--sky); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(0,163,204,0.5); color: var(--ice); padding: 0.75rem 2rem; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; text-decoration: none; transition: border-color 0.25s, color 0.25s, transform 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--teal); color: var(--white); transform: translateY(-2px); }

/* Wave bottom of hero */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
  line-height: 0;
}

.hero-scroll {
  position: absolute; bottom: 3.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 4; animation: float 2.4s ease-in-out infinite;
  cursor: pointer; text-decoration: none;
}
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll span { font-size:0.6rem; letter-spacing:0.22em; text-transform:uppercase; color:rgba(255,255,255,0.5); }
.hero-scroll svg { width:20px; height:20px; stroke:var(--teal); fill:none; }

/* ── TICKER ─────────────────── */
.ticker { background: var(--teal); padding: 0.7rem 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-block; animation: ticker 28s linear infinite; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: inline-block; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); font-weight: 600; margin: 0 2.5rem; }
.ticker-dot { color: rgba(4,13,26,0.35); margin: 0 0.5rem; }

/* ── SECTION SHARED ──────────── */
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 5vw; }
.section-label { font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.7rem; display: block; }
.section-heading { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15; color: var(--white); }
.section-heading em { font-style: italic; color: var(--ice); }
.divider { width: 48px; height: 1.5px; background: var(--teal); margin: 1.5rem 0; }

/* ── ABOUT ──────────────────── */
.about { background: var(--navy2); padding: 8rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text p { font-size: 1.0rem; line-height: 1.9; color: rgba(255,255,255,0.68); margin-top: 1.4rem; font-weight: 300; }
.about-link { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 2.2rem; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ice); text-decoration: none; border-bottom: 1px solid rgba(0,163,204,0.35); padding-bottom: 3px; transition: color 0.25s, border-color 0.25s; }
.about-link:hover { color: var(--white); border-color: var(--teal); }
.about-link svg { width:13px; height:13px; stroke:currentColor; fill:none; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: rgba(0,163,204,0.08); border: 0.5px solid rgba(0,163,204,0.12); }
.stat-box { background: var(--navy2); padding: 2.5rem 1.8rem; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.55rem; }

/* ── PRODUCTS ──────────────── */
.products { background: var(--navy); padding: 8rem 0; }
.products-header { margin-bottom: 3.5rem; }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.product-card { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; }
.product-card::after { content:''; position: absolute; inset:0; background: linear-gradient(to top, rgba(4,13,26,0.92) 0%, rgba(4,13,26,0.05) 60%); transition: background 0.4s; }
.product-card:hover::after { background: linear-gradient(to top, rgba(4,13,26,0.85) 0%, rgba(4,13,26,0.3) 100%); }
.product-img-bg { width:100%; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; font-size:5rem; transition: transform 0.7s cubic-bezier(.25,.46,.45,.94); }
.product-card:hover .product-img-bg { transform: scale(1.06); }
.ph-shrimp { background: linear-gradient(155deg, #0a2240 0%, #051525 100%); }
.ph-fish   { background: linear-gradient(155deg, #071a30 0%, #04101e 100%); }
.ph-squid  { background: linear-gradient(155deg, #0d1f35 0%, #060e1e 100%); }
.ph-crab   { background: linear-gradient(155deg, #1a1008 0%, #100a04 100%); }
.product-info { position: absolute; bottom:0; left:0; right:0; padding: 2rem 1.6rem; z-index:2; }
.product-name { font-family: var(--serif); font-size: 1.65rem; font-weight: 300; color: var(--white); line-height: 1.15; }
.product-sub { font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-top: 0.4rem; opacity: 0.85; }
.product-cta { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ice); opacity:0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
.product-cta svg { width:12px; height:12px; stroke:currentColor; fill:none; }
.product-card:hover .product-cta { opacity:1; transform:translateY(0); }

/* ── QUALITY ────────────────── */
.quality { background: var(--navy2); padding: 9rem 0; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.quality-text p { font-size: 0.98rem; line-height: 1.9; color: rgba(255,255,255,0.68); font-weight: 300; margin-top: 1rem; }
.quality-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: rgba(0,163,204,0.07); }
.qpanel { background: var(--navy2); padding: 2rem 1.6rem; border-left: 2px solid var(--teal); }
.qpanel-icon { font-size: 1.5rem; margin-bottom: 0.9rem; }
.qpanel-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: 0.6rem; }
.qpanel p { font-size: 0.8rem; line-height: 1.7; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ════════════════════════════════════════════════════
   CERTIFICATIONS – animated hover
══════════════════════════════════════════════════════ */
.certs { background: var(--navy); padding: 7rem 0; }
.certs-header { text-align: center; margin-bottom: 4.5rem; }

.certs-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 2.5rem 3rem;
  max-width: 900px; margin: 0 auto;
}

.cert-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.8rem;
  cursor: pointer;
  position: relative;
}

/* Glow ring behind each cert */
.cert-item::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,163,204,0.18) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s, transform 0.4s;
}
.cert-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.cert-img-wrap {
  position: relative;
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
}

/* Spinning ring on hover */
.cert-img-wrap::after {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--teal);
  border-right-color: rgba(0,163,204,0.3);
  opacity: 0;
  transition: opacity 0.3s;
  animation: certSpin 1.4s linear infinite;
  animation-play-state: paused;
}
.cert-item:hover .cert-img-wrap::after {
  opacity: 1;
  animation-play-state: running;
}
@keyframes certSpin {
  to { transform: rotate(360deg); }
}

.cert-img {
  height: 76px; width: 76px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), filter 0.3s;
  filter: saturate(0.8) brightness(0.95);
  position: relative; z-index: 1;
}

/* Bounce-up + saturate on hover */
.cert-item:hover .cert-img {
  transform: translateY(-6px) scale(1.1);
  filter: saturate(1.3) brightness(1.1) drop-shadow(0 8px 20px rgba(0,163,204,0.4));
}

.cert-name {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  transition: color 0.3s;
  text-align: center;
}
.cert-item:hover .cert-name {
  color: var(--teal);
}

/* Badge pop that appears on hover */
.cert-badge {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  opacity: 0;
  transform: scale(0.6) translateY(4px);
  transition: opacity 0.25s, transform 0.3s cubic-bezier(.34,1.56,.64,1);
  z-index: 2;
  white-space: nowrap;
}
.cert-item:hover .cert-badge {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── NEWS ───────────────────── */
.news { background: var(--navy2); padding: 8rem 0; }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.news-all-link { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ice); text-decoration: none; border-bottom: 1px solid rgba(0,163,204,0.3); padding-bottom: 3px; transition: color 0.25s, border-color 0.25s; }
.news-all-link:hover { color: var(--white); border-color: var(--teal); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.news-card { background: #071220; text-decoration: none; display: block; transition: background 0.3s; }
.news-card:hover { background: #091828; }
.news-img-ph { width:100%; aspect-ratio:16/9; display:flex; align-items:center; justify-content:center; font-size:3rem; }
.phn1 { background: linear-gradient(135deg,#071a30,#040d1a); }
.phn2 { background: linear-gradient(135deg,#071a20,#040d14); }
.phn3 { background: linear-gradient(135deg,#0d1a10,#060e08); }
.news-body { padding: 1.8rem 1.6rem; }
.news-date { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.8rem; }
.news-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; line-height: 1.3; color: var(--white); margin-bottom: 0.8rem; }
.news-excerpt { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ── CONTACT STRIP ──────────── */
.contact-strip { background: linear-gradient(90deg, #071220 0%, #0a2440 50%, #071220 100%); border-top: 0.5px solid rgba(0,163,204,0.15); border-bottom: 0.5px solid rgba(0,163,204,0.15); padding: 4.5rem 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 2px 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; padding: 0 5vw; align-items: start; }
.contact-div { background: rgba(0,163,204,0.15); }
.contact-col h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--white); margin-bottom: 1rem; }
.contact-col p { font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.55); font-weight: 300; }
.contact-col a { display: block; font-size: 0.85rem; color: var(--teal); text-decoration: none; margin-top: 0.5rem; letter-spacing: 0.04em; transition: color 0.2s; }
.contact-col a:hover { color: var(--sky); }

/* ── FOOTER ─────────────────── */
footer { background: #020910; padding-top: 0; }
.footer-wave { display: block; width: 100%; line-height: 0; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 4.5rem 5vw 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; }
.footer-brand-logo { width: 56px; height: 56px; border-radius: 50%; object-fit: contain; margin-bottom: 1rem; border: 1px solid rgba(0,163,204,0.25); }
.footer-brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: 0.08em; color: var(--ice); }
.footer-brand-sub { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem; display: block; }
.footer-address { font-size: 0.8rem; line-height: 2; color: rgba(255,255,255,0.38); font-style: normal; }
.footer-address a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; display:block; }
.footer-address a:hover { color: var(--teal); }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.3rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.25s; }
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom-wrap { max-width:1160px; margin: 0 auto; }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.06); padding: 1.5rem 5vw; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p, .footer-bottom a { font-size: 0.7rem; color: rgba(255,255,255,0.22); text-decoration: none; letter-spacing: 0.08em; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ── SCROLL REVEAL ──────────── */
.reveal { opacity:0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ── RESPONSIVE ─────────────── */
@media (max-width: 920px) {
  .about-grid, .quality-grid { grid-template-columns: 1fr; gap: 3rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-div { display: none; }
  nav .nav-links { display: none; }
}
@media (max-width: 580px) {
  .products-grid { grid-template-columns: 1fr; }
  .quality-panels { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS  (same navy/teal design language)
══════════════════════════════════════════════════════ */

/* Active nav link */
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

/* Mobile hamburger */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; z-index: 250; }
.nav-toggle span { position: absolute; left: 0; right: 0; height: 2px; background: var(--white); transition: transform .3s, opacity .3s, top .3s; }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* Sub-page banner (smaller hero for interior pages) */
.page-banner { position: relative; height: 56vh; min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.page-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); }
.page-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(4,13,26,0.55) 0%, rgba(4,13,26,0.45) 40%, rgba(4,13,26,0.92) 100%); }
.page-banner-content { position: relative; z-index: 2; padding: 0 5vw; }
.page-banner .hero-eyebrow { margin-bottom: 0.8rem; display: block; }
.page-banner h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; letter-spacing: 0.04em; color: var(--white); text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.page-banner h1 em { font-style: italic; color: var(--ice); }
.page-banner p { margin-top: 1rem; font-family: var(--serif); font-style: italic; font-size: clamp(1rem,2vw,1.3rem); color: rgba(255,255,255,0.85); max-width: 640px; }
.breadcrumb { margin-top: 1.4rem; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb a:hover { color: var(--sky); }

/* Generic page section spacing */
.page-section { padding: 6rem 0; }
.page-section.alt { background: var(--navy2); }
.intro-lead { font-size: 1.05rem; line-height: 1.9; color: rgba(255,255,255,0.72); font-weight: 300; max-width: 820px; }
.intro-lead + .intro-lead { margin-top: 1.3rem; }

/* Category cards (Products landing) */
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 3.5rem; }
.cat-card { position: relative; overflow: hidden; text-decoration: none; display: block; min-height: 420px; }
.cat-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
.cat-card:hover .cat-card-bg { transform: scale(1.07); }
.cat-card::after { content:''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,13,26,0.94) 0%, rgba(4,13,26,0.25) 70%); transition: background .4s; }
.cat-card:hover::after { background: linear-gradient(to top, rgba(4,13,26,0.9) 0%, rgba(4,13,26,0.45) 100%); }
.cat-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.4rem 2rem; z-index: 2; }
.cat-card-name { font-family: var(--serif); font-size: 1.9rem; font-weight: 300; color: var(--white); }
.cat-card-desc { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.6); margin-top: 0.6rem; font-weight: 300; }
.cat-card-cta { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.1rem; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ice); }
.cat-card-cta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }

/* Sub-category heading (e.g. Shrimp, Cephalopods, Fish) */
.subcat-head { margin: 4.5rem 0 2.5rem; display: flex; align-items: center; gap: 1.2rem; }
.subcat-head:first-of-type { margin-top: 1rem; }
.subcat-head h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--ice); white-space: nowrap; }
.subcat-head .line { flex: 1; height: 1px; background: rgba(0,163,204,0.2); }

/* Species / product detail card */
.spec-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.spec-card { background: var(--navy2); border: 0.5px solid rgba(0,163,204,0.12); display: flex; flex-direction: column; transition: border-color .3s, transform .3s; }
.spec-card:hover { border-color: rgba(0,163,204,0.4); transform: translateY(-4px); }
.spec-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #06121f; display:block; }
.spec-card-body { padding: 1.8rem 1.7rem 2rem; }
.spec-card-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; color: var(--white); line-height: 1.2; }
.spec-card-sci { font-size: 0.72rem; font-style: italic; color: var(--teal); margin-top: 0.25rem; letter-spacing: 0.03em; }
.spec-card-desc { font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.55); font-weight: 300; margin-top: 1rem; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 1.3rem; }
.spec-table td { padding: 0.5rem 0; border-bottom: 0.5px solid rgba(255,255,255,0.06); font-size: 0.78rem; vertical-align: top; }
.spec-table td:first-child { color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.62rem; width: 42%; padding-top: 0.62rem; }
.spec-table td:last-child { color: rgba(255,255,255,0.78); font-weight: 300; }
.tag-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin: 1.3rem 0 0.7rem; display: block; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag { font-size: 0.66rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); border: 0.5px solid rgba(0,163,204,0.28); padding: 0.32rem 0.7rem; border-radius: 2px; background: rgba(0,163,204,0.05); }

/* Poster gallery (use the designed infographic posters) */
.poster-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1rem; }
.poster-card { background: #fff; border: 0.5px solid rgba(0,163,204,0.12); overflow: hidden; transition: transform .35s, box-shadow .35s; display: block; }
.poster-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
.poster-card img { width: 100%; display: block; }
.poster-cap { padding: 0.9rem 1rem; background: var(--navy2); }
.poster-cap-name { font-family: var(--serif); font-size: 1.1rem; color: var(--white); font-weight: 400; }
.poster-cap-sci { font-size: 0.68rem; font-style: italic; color: var(--teal); margin-top: 0.15rem; }

/* Feature / application chips lists */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: rgba(0,163,204,0.08); margin-top: 1rem; }
.feat-box { background: var(--navy2); padding: 1.6rem 1.4rem; }
.feat-box .ck { color: var(--teal); font-weight: 700; margin-right: 0.5rem; }
.feat-box span.txt { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.5; }

/* Info panel (fish meal / value added blocks) */
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.info-split img { width: 100%; border: 0.5px solid rgba(0,163,204,0.15); }
.info-split.rev .info-media { order: 2; }
.mini-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.mini-table td { padding: 0.6rem 0; border-bottom: 0.5px solid rgba(255,255,255,0.07); font-size: 0.84rem; }
.mini-table td:first-child { color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.64rem; width: 45%; }
.mini-table td:last-child { color: rgba(255,255,255,0.8); font-weight: 300; }

/* Certifications as emblem badges */
.cert-emblem-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; max-width: 880px; margin: 0 auto; }
.cert-emblem { width: 150px; height: 150px; border-radius: 50%; border: 1px solid rgba(0,163,204,0.3); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; background: radial-gradient(circle at 50% 35%, rgba(0,163,204,0.12), transparent 70%); transition: transform .35s, border-color .35s, box-shadow .35s; }
.cert-emblem:hover { transform: translateY(-6px); border-color: var(--teal); box-shadow: 0 0 40px rgba(0,163,204,0.25); }
.cert-emblem-code { font-family: var(--serif); font-size: 1.8rem; color: var(--ice); letter-spacing: 0.05em; }
.cert-emblem-sub { font-size: 0.55rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); text-align: center; padding: 0 0.5rem; }

/* Contact cards */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 1rem; }
.contact-card { background: var(--navy2); border: 0.5px solid rgba(0,163,204,0.12); padding: 2.2rem 1.8rem; }
.contact-card h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: 0.4rem; }
.contact-card .role { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.1rem; }
.contact-card a { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.7); text-decoration: none; margin-top: 0.5rem; transition: color .2s; }
.contact-card a:hover { color: var(--teal); }
.contact-card .lbl { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 1rem; }
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 1rem; }
.office-card { background: var(--navy2); border: 0.5px solid rgba(0,163,204,0.12); padding: 2.2rem 1.8rem; }
.office-card h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--ice); margin-bottom: 0.9rem; }
.office-card p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); font-weight: 300; }
.office-card a { color: var(--teal); text-decoration: none; }

/* Home category teaser reuse products-grid as 3 */
.products-grid.three { grid-template-columns: repeat(3,1fr); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  nav .nav-links {
    display: flex; position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw,320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: rgba(4,13,26,0.98); backdrop-filter: blur(14px); padding: 2rem 2.5rem;
    transform: translateX(100%); transition: transform .35s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  nav .nav-links.open { transform: translateX(0); }
  .nav-dropdown .dropdown-menu { position: static; opacity: 1; pointer-events: all; transform: none; background: transparent; border: 0; min-width: 0; padding: 0.3rem 0 0 1rem; }
  .cat-grid, .poster-grid, .feat-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .info-split { grid-template-columns: 1fr; gap: 2rem; }
  .info-split.rev .info-media { order: 0; }
  .products-grid.three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .cat-grid, .poster-grid, .feat-grid, .contact-cards, .office-grid, .products-grid.three { grid-template-columns: 1fr; }
}
