:root {
  --navy: #0d3f55;
  --teal: #0b6470;
  --teal-dark: #084f5a;
  --teal-soft: #e9f6f6;
  --coral: #f27d67;
  --ink: #17313c;
  --muted: #60737a;
  --line: #d8e6e7;
  --paper: #ffffff;
  --soft: #f5f9f8;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,63,85,.09);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 178px; max-height: 60px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 650; }
.nav a { text-decoration: none; color: #2b4c59; }
.nav a:hover { color: var(--teal); }
.nav-cta { background: var(--navy); color: #fff !important; padding: 10px 17px; border-radius: 999px; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 26px; color: var(--navy); }
.hero { min-height: 650px; position: relative; display: grid; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,42,55,.88) 0%, rgba(7,42,55,.72) 47%, rgba(7,42,55,.15) 78%, rgba(7,42,55,.06) 100%); }
.hero-content { position: relative; z-index: 2; color: white; padding-block: 100px; }
.eyebrow { margin: 0 0 12px; letter-spacing: .16em; font-size: 12px; font-weight: 800; color: #c7f0f0; }
.eyebrow.teal { color: var(--teal); }
.eyebrow.coral { color: var(--coral); }
h1, h2, h3 { line-height: 1.1; margin-top: 0; }
h1 { max-width: 760px; font-size: clamp(42px, 6.1vw, 76px); letter-spacing: -.035em; margin-bottom: 22px; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -.025em; margin-bottom: 20px; color: var(--navy); }
h3 { color: var(--navy); }
.hero-copy { max-width: 680px; font-size: 19px; color: #edf7f7; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.button { display: inline-flex; text-decoration: none; padding: 13px 20px; border-radius: 999px; font-weight: 750; transition: .2s ease; }
.button.primary { background: var(--coral); color: #fff; }
.button.secondary { border: 1px solid rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.05); }
.button:hover { transform: translateY(-1px); }
.facts { background: var(--navy); color: white; }
.facts-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.fact { padding: 28px 22px; border-right: 1px solid rgba(255,255,255,.16); }
.fact:last-child { border-right: 0; }
.fact strong { display: block; font-size: 30px; color: #fff; }
.fact span { color: #cfe2e5; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.section { padding: 96px 0; }
.soft { background: var(--soft); }
.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
.split p, .section-heading p { font-size: 17px; color: #4c626b; }
.text-link { display: inline-block; margin-top: 8px; color: var(--teal); font-weight: 750; text-decoration: none; }
.image-card { margin: 0; border-radius: 24px; overflow: hidden; background: #edf6f6; box-shadow: 0 22px 60px rgba(15,56,65,.12); }
.image-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-card figcaption { padding: 14px 17px; color: var(--muted); font-size: 13px; }
.shrimp-card img { aspect-ratio: 16 / 10; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.cards.three { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 28px; min-height: 215px; }
.card .icon { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); font-size: 22px; margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 0; }
.wide-photo { margin-top: 22px; position: relative; border-radius: 20px; overflow: hidden; min-height: 390px; }
.wide-photo img { width: 100%; height: 430px; object-fit: cover; }
.photo-caption { position: absolute; left: 18px; bottom: 18px; background: rgba(6,48,60,.86); color: white; border-radius: 12px; padding: 12px 15px; backdrop-filter: blur(6px); }
.photo-caption strong, .photo-caption span { display: block; }
.photo-caption span { font-size: 12px; color: #d9ebed; }
.growth { background: var(--navy); color: white; }
.growth h2 { color: white; }
.growth p { color: #d7e8ea; max-width: 680px; }
.growth-wrap { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; }
.growth-visual { display: flex; gap: 24px; align-items: center; }
.number-block { min-width: 150px; padding: 24px; text-align: center; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.06); }
.number-block span, .number-block small { display: block; color: #cfe2e5; text-transform: uppercase; font-size: 11px; letter-spacing: .1em; }
.number-block strong { display: block; font-size: 56px; line-height: 1; margin: 8px 0; }
.number-block.future { background: rgba(242,125,103,.13); border-color: rgba(242,125,103,.5); }
.arrow { font-size: 38px; color: var(--coral); }
.contact { background: linear-gradient(180deg, #fff, #f4f9f8); }
.contact-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 70px; align-items: start; }
.contact-card { border: 1px solid var(--line); border-radius: 20px; padding: 30px; background: white; box-shadow: 0 16px 50px rgba(15,56,65,.08); }
.contact-card h3 { font-size: 24px; margin-bottom: 3px; }
.contact-card .role { margin: 0 0 18px; color: var(--teal); font-weight: 700; }
.contact-card a { display: block; text-decoration: none; color: var(--navy); margin: 8px 0; word-break: break-word; }
.contact-card a:hover { color: var(--teal); }
.contact-card .location { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); }
footer { background: #062f3e; color: #dbeaec; padding: 30px 0; font-size: 13px; }
.footer-wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px; }
.footer-wrap > div:last-child { text-align: right; }
.footer-wrap strong, .footer-wrap span { display: block; }
.footer-domain { color: white; font-weight: 700; letter-spacing: .04em; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 78px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; background: white; padding: 18px; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 50px rgba(5,43,55,.12); }
  .nav.open { display: flex; }
  .hero { min-height: 590px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,42,55,.89), rgba(7,42,55,.55)); }
  .facts-grid { grid-template-columns: repeat(2,1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .split, .contact-grid, .growth-wrap { grid-template-columns: 1fr; gap: 38px; }
  .cards.three { grid-template-columns: 1fr; }
  .growth-visual { justify-content: flex-start; }
  .footer-wrap { grid-template-columns: 1fr; text-align: left; }
  .footer-wrap > div:last-child { text-align: left; }
}
@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-wrap { height: 70px; }
  .brand img { width: 150px; max-height: 54px; }
  .nav { top: 70px; left: 14px; right: 14px; }
  .hero { min-height: 620px; }
  .hero-content { padding-block: 78px; }
  h1 { font-size: 45px; }
  .hero-copy { font-size: 17px; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact { padding: 22px 14px; }
  .fact strong { font-size: 25px; }
  .section { padding: 70px 0; }
  h2 { font-size: 36px; }
  .wide-photo img { height: 320px; }
  .growth-visual { gap: 10px; }
  .number-block { min-width: 120px; padding: 18px 12px; }
  .number-block strong { font-size: 46px; }
  .arrow { font-size: 26px; }
}
