:root {
  --navy: #052f45;
  --deep: #032536;
  --teal: #17bdc1;
  --aqua: #72e1dc;
  --sand: #f3eee4;
  --cream: #fbfaf6;
  --green: #6ba765;
  --ink: #0b3446;
  --muted: #5b7480;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.svb-skip-link {
  background: white;
  color: var(--deep);
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: -80px;
  z-index: 100000;
}

.svb-skip-link:focus {
  top: 16px;
}

.svb-noscript {
  background: white;
  margin: 24px;
  padding: 20px;
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  align-items: center;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 27px clamp(24px, 4.4vw, 76px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  width: max-content;
}

.brand img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 190px;
}

.site-header nav {
  display: flex;
  font-size: 13px;
  gap: clamp(22px, 2.7vw, 48px);
}

.site-header nav a {
  opacity: .82;
  position: relative;
}

.site-header nav a::after {
  background: var(--aqua);
  bottom: -9px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  width: 100%;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.lang-switch {
  align-items: center;
  display: flex;
  gap: 7px;
  justify-self: end;
}

.header-tools {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-self: end;
}

.lang-switch button {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  opacity: .55;
  padding: 5px;
}

.lang-switch button.active {
  color: var(--aqua);
  opacity: 1;
}

.menu-toggle {
  align-items: center;
  background: rgba(3, 37, 54, .35);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 6px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: white;
  display: block;
  height: 1px;
  transition: transform .2s ease;
  width: 18px;
}

.menu-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  align-items: center;
  background: var(--deep) url("./vlycha-bay.jpg") center 45% / cover no-repeat;
  color: white;
  display: flex;
  min-height: 960px;
  overflow: hidden;
  padding: 140px clamp(24px, 4.4vw, 76px) 255px;
  position: relative;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(1, 35, 52, .96) 0%, rgba(1, 37, 54, .8) 30%, rgba(1, 35, 52, .24) 65%, rgba(1, 35, 52, .12) 100%),
    linear-gradient(0deg, rgba(1, 35, 52, .58) 0%, transparent 55%);
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .23em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.standards h2,
.partner-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(56px, 6.1vw, 96px);
  letter-spacing: -.045em;
  line-height: .95;
  margin: 0;
}

.hero h1 span {
  display: block;
}

.hero-subtitle {
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.55;
  margin: 34px 0 0;
  max-width: 620px;
  opacity: .88;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button {
  align-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 2px;
  display: inline-flex;
  font-size: 14px;
  gap: 38px;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 28px;
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(100deg, #12aeb8, #28cad0);
  border-color: transparent;
  color: white;
}

.button.ghost {
  background: rgba(3, 37, 54, .24);
  backdrop-filter: blur(8px);
}

.status-pill {
  align-items: center;
  background: rgba(3, 37, 54, .5);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 30px;
  display: flex;
  font-size: 11px;
  gap: 8px;
  padding: 10px 14px;
  position: absolute;
  right: clamp(24px, 4.4vw, 76px);
  top: 112px;
  z-index: 2;
}

.status-pill span {
  background: #f4bd4b;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.status-pill.live span {
  background: #67dd8a;
  box-shadow: 0 0 0 4px rgba(103,221,138,.13);
}

.metric-row {
  bottom: 62px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: clamp(24px, 4.4vw, 76px);
  position: absolute;
  right: clamp(24px, 4.4vw, 76px);
  z-index: 2;
}

.metric-card {
  background: rgba(3, 44, 61, .52);
  border: 1px solid rgba(255,255,255,.48);
  min-height: 156px;
  padding: 22px;
  backdrop-filter: blur(12px);
}

.metric-icon {
  color: var(--aqua);
  font-size: 29px;
  height: 34px;
}

.metric-card p {
  font-size: 11px;
  letter-spacing: .15em;
  margin: 17px 0 10px;
  text-transform: uppercase;
}

.metric-card strong {
  border-top: 1px solid rgba(255,255,255,.4);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
  padding-top: 12px;
}

.photo-note {
  bottom: 18px;
  font-size: 10px;
  letter-spacing: .12em;
  margin: 0;
  opacity: .7;
  position: absolute;
  right: clamp(24px, 4.4vw, 76px);
  z-index: 2;
}

.section {
  margin: 0 auto;
  max-width: 1340px;
  padding: 120px clamp(24px, 5vw, 80px);
}

.intro {
  display: grid;
  gap: 50px 80px;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
}

.section-heading h2,
.standards h2,
.partner-panel h2 {
  font-size: clamp(40px, 4.2vw, 66px);
  letter-spacing: -.035em;
  line-height: 1.04;
  margin: 0;
}

.section-heading .kicker {
  color: #008993;
  margin-bottom: 22px;
}

.large-copy,
.section-heading > p:last-child,
.standards-inner > div > p:last-child,
.partner-panel > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 49px 0 0;
}

.pillar-grid {
  display: grid;
  gap: 1px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.pillar-grid article {
  border-top: 1px solid #c7d2d3;
  padding: 35px 45px 15px 0;
}

.pillar-grid article + article {
  border-left: 1px solid #c7d2d3;
  padding-left: 45px;
}

.pillar-grid span {
  color: #0aa6af;
  font-size: 12px;
  letter-spacing: .18em;
}

.pillar-grid h3,
.monitoring-grid h3,
.action-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  margin: 20px 0 14px;
}

.pillar-grid p,
.monitoring-grid p,
.action-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.observatory {
  background:
    radial-gradient(circle at 87% 12%, rgba(30, 199, 199, .24), transparent 23%),
    linear-gradient(135deg, #062f42, #031f2f 70%);
  color: white;
  overflow: hidden;
  position: relative;
}

.conditions-feature {
  background:
    radial-gradient(circle at 12% 18%, rgba(30, 199, 199, .2), transparent 24%),
    linear-gradient(135deg, #062f42, #031f2f 70%);
  color: white;
}

.conditions-feature-inner {
  max-width: 1440px;
  padding-bottom: 86px;
  padding-top: 86px;
}

.conditions-feature .conditions-title {
  margin-top: 0;
}

.observatory-inner {
  max-width: 1440px;
}

.section-heading.light {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
}

.section-heading.light .kicker {
  grid-column: 1 / -1;
  margin: 0 0 -24px;
}

.section-heading.light > p:last-child {
  color: rgba(255,255,255,.68);
  margin: 0;
}

.flag-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.2);
  display: grid;
  gap: 28px;
  grid-template-columns: 150px minmax(280px, .9fr) minmax(350px, 1.1fr);
  margin-top: 66px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.flag-panel::before {
  background: currentColor;
  content: "";
  height: 3px;
  inset: 0 0 auto;
  position: absolute;
}

.flag-panel.green {
  color: #6cde8a;
}

.flag-panel.yellow {
  color: #f5c85a;
}

.flag-panel.red {
  color: #ff6d68;
}

.flag-panel.unavailable {
  color: #91a7af;
}

.flag-visual {
  height: 132px;
  position: relative;
  width: 122px;
}

.flag-pole {
  background: rgba(255,255,255,.78);
  border-radius: 2px;
  bottom: 0;
  left: 12px;
  position: absolute;
  top: 0;
  width: 4px;
}

.flag-cloth {
  background: currentColor;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  clip-path: polygon(0 0, 100% 13%, 84% 61%, 0 50%);
  height: 88px;
  left: 15px;
  position: absolute;
  top: 7px;
  width: 105px;
}

.flag-copy .kicker {
  color: var(--aqua);
  margin: 0 0 12px;
}

.flag-copy h3 {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  margin: 0 0 16px;
}

.flag-copy strong {
  color: currentColor;
  display: block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.flag-copy > p:not(.kicker) {
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.65;
  margin: 16px 0 12px;
}

.flag-copy small {
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.flag-legend {
  border-left: 1px solid rgba(255,255,255,.16);
  display: grid;
  padding-left: 28px;
}

.flag-legend > span {
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: grid;
  gap: 4px 10px;
  grid-template-columns: 10px 78px 1fr;
  padding: 10px 0;
}

.flag-legend > span:last-child {
  border-bottom: 0;
}

.flag-legend i {
  border-radius: 50%;
  height: 8px;
  margin-top: 3px;
  width: 8px;
}

.flag-legend i.green {
  background: #62d784;
}

.flag-legend i.yellow {
  background: #f5c85a;
}

.flag-legend i.red {
  background: #ff6d68;
}

.flag-legend b {
  color: white;
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.flag-legend small {
  color: rgba(255,255,255,.57);
  font-size: 11px;
  line-height: 1.45;
}

.flag-disclaimer {
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.58);
  font-size: 11px;
  grid-column: 1 / -1;
  line-height: 1.6;
  margin: 0;
  padding-top: 18px;
}

.conditions-title {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  margin: 68px 0 24px;
}

.conditions-panel {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .65fr);
}

.conditions-panel .flag-panel {
  grid-template-columns: 110px 1fr;
  margin-top: 0;
}

.conditions-panel .flag-legend {
  border-left: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  grid-column: 1 / -1;
  padding: 18px 0 0;
}

.weather-panel {
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.2);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
}

.weather-panel div {
  border-bottom: 1px solid rgba(255,255,255,.13);
  min-height: 88px;
  padding: 17px 14px;
}

.weather-panel div:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,.13);
}

.weather-panel div:last-child {
  border-bottom: 0;
  grid-column: 1 / -1;
}

.weather-panel small {
  color: var(--aqua);
  display: block;
  font-size: 9px;
  letter-spacing: .13em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.weather-panel strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.monitoring-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
}

.monitoring-grid article {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.18);
  min-height: 250px;
  padding: 30px;
}

.monitoring-grid article > span {
  color: var(--aqua);
  font-size: 30px;
}

.monitoring-grid article p {
  color: rgba(255,255,255,.65);
}

.monitoring-grid small {
  color: #f0c06c;
  display: block;
  font-size: 10px;
  letter-spacing: .09em;
  margin-top: 24px;
  text-transform: uppercase;
}

.ais-panel {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.2);
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  margin-top: 18px;
  min-height: 360px;
  overflow: hidden;
}

.ais-map {
  background:
    linear-gradient(rgba(114,225,220,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114,225,220,.13) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(23,189,193,.25), transparent 58%);
  background-size: 48px 48px, 48px 48px, auto;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.ais-radar {
  border: 1px solid rgba(114,225,220,.45);
  border-radius: 50%;
  height: 210px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
}

.ais-radar::before,
.ais-radar::after {
  border: 1px solid rgba(114,225,220,.25);
  border-radius: 50%;
  content: "";
  inset: 25%;
  position: absolute;
}

.ais-radar::after {
  inset: -35%;
}

.ais-location {
  align-items: center;
  background: rgba(3, 37, 54, .86);
  border: 1px solid rgba(114,225,220,.7);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
  display: flex;
  gap: 8px;
  left: 50%;
  padding: 8px 13px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
}

.ais-location i {
  color: #f5c85a;
  font-size: 12px;
  font-style: normal;
  text-shadow: 0 0 12px rgba(245,200,90,.7);
}

.ais-location b {
  color: white;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vessel {
  color: #f5c85a;
  font-size: 22px;
  font-style: normal;
  position: absolute;
  text-shadow: 0 0 18px rgba(245,200,90,.7);
}

.vessel-one { left: 28%; top: 34%; transform: rotate(24deg); }
.vessel-two { left: 61%; top: 57%; transform: rotate(132deg); }
.vessel-three { left: 72%; top: 24%; transform: rotate(210deg); }

.ais-copy {
  align-self: center;
  padding: 48px;
}

.ais-copy h3 {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 16px;
}

.ais-copy > p:not(.kicker) {
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

.ais-copy .button {
  margin: 18px 0 25px;
}

.ais-copy > small {
  color: rgba(255,255,255,.52);
  display: block;
  font-size: 11px;
  line-height: 1.6;
}

.external-data-note {
  align-items: start;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.16);
  display: grid;
  gap: 24px;
  grid-template-columns: 1.25fr .75fr;
  margin-top: 18px;
  padding: 22px 24px;
}

.external-data-note p {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

.external-data-note > span {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.external-data-note a,
.external-data-note small {
  color: var(--aqua);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.external-data-note a:hover {
  text-decoration: underline;
}

.visitor-guide {
  max-width: 1440px;
}

.visitor-guide .section-heading {
  max-width: 920px;
}

.guide-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 60px;
}

.guide-grid article {
  background: white;
  border: 1px solid #dbe2e1;
  min-height: 390px;
  padding: 34px;
}

.guide-grid article > span {
  align-items: center;
  background: #e9f6f3;
  border-radius: 50%;
  color: #008b95;
  display: flex;
  font-size: 23px;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.guide-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  margin: 28px 0 22px;
}

.guide-grid ul {
  color: var(--muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.guide-grid li {
  border-top: 1px solid #e0e8e6;
  font-size: 14px;
  line-height: 1.65;
  padding: 14px 0 14px 24px;
  position: relative;
}

.guide-grid li::before {
  color: #0aa6af;
  content: "→";
  left: 0;
  position: absolute;
  top: 14px;
}

.guide-note {
  align-items: center;
  background: #e9f3f0;
  border-left: 3px solid #0aa6af;
  color: #46646e;
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  gap: 9px 18px;
  margin-top: 18px;
  padding: 20px 24px;
}

.guide-note p {
  flex: 1 0 100%;
  line-height: 1.6;
  margin: 0 0 3px;
}

.guide-note > span {
  color: #008b95;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guide-note a {
  border-bottom: 1px solid #8cbeb9;
}

.guide-note a:hover,
.guide-note a:focus-visible {
  color: #007c87;
}

.actions .section-heading {
  max-width: 900px;
}

.actions-intro {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 34px 0 0;
  max-width: 780px;
}

.action-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 62px;
}

.action-grid details {
  background: white;
  border: 1px solid #dbe2e1;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.action-grid details[open] {
  border-color: #8fc9ca;
  box-shadow: 0 18px 55px rgba(8, 59, 73, .08);
}

.action-grid summary {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 365px;
  padding: 32px;
}

.action-grid summary::-webkit-details-marker {
  display: none;
}

.action-grid summary::marker {
  content: "";
}

.action-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.action-number {
  align-items: center;
  border: 1px solid #97cfd0;
  border-radius: 50%;
  color: #008b95;
  display: flex;
  font-size: 12px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.action-tag {
  color: #008b95;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.action-grid h3 {
  font-size: 31px;
  margin: 42px 0 14px;
}

.action-grid summary > p {
  margin: 0;
}

.action-open {
  align-items: center;
  border-top: 1px solid #e2e8e7;
  color: #008b95;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: .1em;
  margin-top: auto;
  padding-top: 22px;
  text-transform: uppercase;
}

.action-open b {
  font-size: 24px;
  font-weight: 300;
  transition: transform .2s ease;
}

.close-label,
.action-grid details[open] .open-label {
  display: none;
}

.action-grid details[open] .close-label {
  display: inline;
}

.action-grid details[open] .action-open b {
  transform: rotate(45deg);
}

.action-analysis {
  background: #f3f7f5;
  border-top: 1px solid #dbe2e1;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.action-analysis > div {
  background: #f3f7f5;
  padding: 26px 24px 28px;
}

.action-analysis > div + div {
  border-left: 1px solid #dbe2e1;
}

.action-analysis small {
  color: #008b95;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.action-analysis p {
  color: #405f6b;
  font-size: 13px;
  line-height: 1.65;
  margin: 13px 0 0;
}

.roadmap {
  border-top: 1px solid #c8d5d3;
  display: grid;
  gap: 70px;
  grid-template-columns: .85fr 1.15fr;
  margin-top: 100px;
  padding-top: 70px;
}

.roadmap-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
}

.roadmap-steps {
  counter-reset: roadmap;
}

.roadmap-steps article {
  border-top: 1px solid #c8d5d3;
  padding: 24px 0;
}

.roadmap-steps article:last-child {
  border-bottom: 1px solid #c8d5d3;
}

.roadmap-steps h4 {
  color: #008b95;
  font-size: 12px;
  letter-spacing: .11em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.roadmap-steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.standards {
  background: var(--sand);
}

.standards-inner {
  display: grid;
  gap: 100px;
  grid-template-columns: .95fr 1.05fr;
}

.standards-list {
  display: grid;
}

.standards-list span {
  border-top: 1px solid #bdc8c5;
  display: grid;
  gap: 8px;
  grid-template-columns: 180px 1fr;
  padding: 27px 0;
}

.standards-list span:last-child {
  border-bottom: 1px solid #bdc8c5;
}

.standards-list b {
  color: #007c87;
  font-size: 16px;
  letter-spacing: .08em;
}

.standards-list small {
  color: var(--muted);
  font-size: 13px;
}

.partners {
  max-width: 1440px;
}

.partner-panel {
  background:
    linear-gradient(90deg, rgba(2, 41, 58, .98), rgba(2, 41, 58, .68)),
    url("./vlycha-bay.jpg") center 58% / cover;
  color: white;
  padding: clamp(48px, 8vw, 110px);
}

.partner-panel h2 {
  max-width: 800px;
}

.partner-panel > p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
}

.partner-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}

.partner-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto minmax(96px, 1fr) auto;
  min-height: 206px;
  padding: 24px;
  position: relative;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.partner-card:hover,
.partner-card:focus-visible {
  background: rgba(255,255,255,.15);
  border-color: var(--aqua);
  outline: none;
  transform: translateY(-3px);
}

.partner-card > span {
  color: var(--aqua);
  font-size: 10px;
  letter-spacing: .15em;
}

.partner-logo {
  align-self: center;
  display: block;
  grid-column: 1 / -1;
  height: 92px;
  justify-self: center;
  margin: 15px 0 12px;
  max-width: 86%;
  object-fit: contain;
  object-position: center;
  transition: transform .25s ease;
  width: 250px;
}

.partner-logo.invert-on-dark {
  filter: brightness(0) invert(1);
}

.partner-card:hover .partner-logo,
.partner-card:focus-visible .partner-logo {
  transform: scale(1.035);
}

.partner-card small {
  color: rgba(255,255,255,.64);
  font-size: 9px;
  grid-column: 1;
  grid-row: 3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.partner-card b {
  color: var(--aqua);
  font-size: 20px;
  font-weight: 400;
  grid-column: 2;
  grid-row: 1;
}

.partner-panel .button {
  margin-top: 34px;
}

.institutional-title {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  margin: 62px 0 22px;
}

.partner-subcopy {
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.65;
  margin: -8px 0 0;
  max-width: 720px;
}

.institutional-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.institutional-card {
  background: rgba(114,225,220,.09);
  border: 1px solid rgba(114,225,220,.38);
  display: grid;
  gap: 14px;
  min-height: 154px;
  padding: 22px;
  transition: background .2s ease, transform .2s ease;
}

.institutional-card:hover {
  background: rgba(114,225,220,.16);
  transform: translateY(-2px);
}

.institutional-logo-frame {
  align-items: center;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.55);
  display: flex;
  justify-content: center;
  min-height: 92px;
  padding: 16px 22px;
}

.institutional-logo-frame img {
  display: block;
  height: 58px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .25s ease;
  width: 250px;
}

.institutional-card:hover .institutional-logo-frame img,
.institutional-card:focus-visible .institutional-logo-frame img {
  transform: scale(1.025);
}

.institutional-card small {
  color: rgba(255,255,255,.58);
  font-size: 9px;
  justify-self: start;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.news-events {
  max-width: 1440px;
}

.news-events-heading {
  max-width: 900px;
}

.news-events-layout {
  display: grid;
  gap: clamp(30px, 4vw, 64px);
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  margin-top: 64px;
}

.news-column,
.events-column {
  min-width: 0;
}

.editorial-heading {
  align-items: baseline;
  border-bottom: 1px solid #bac9c9;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 17px;
}

.editorial-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  margin: 0;
}

.editorial-heading > span {
  color: #008b95;
  font-size: 10px;
  letter-spacing: .17em;
}

.news-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-card {
  background: white;
  border: 1px solid #dbe2e1;
  display: flex;
  flex-direction: column;
  min-height: 328px;
  padding: 28px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.news-card.featured {
  background:
    linear-gradient(115deg, rgba(3, 37, 54, .97), rgba(3, 58, 72, .89)),
    url("./vlycha-bay.jpg") center 52% / cover;
  color: white;
  grid-column: 1 / -1;
  min-height: 390px;
  padding: clamp(30px, 5vw, 52px);
}

.news-card:hover {
  border-color: #78bdbe;
  box-shadow: 0 20px 55px rgba(8, 59, 73, .09);
  transform: translateY(-3px);
}

.news-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 15px;
}

.news-meta time,
.news-meta span {
  color: #16838a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.news-meta span {
  border-left: 1px solid #b9c9c8;
  padding-left: 15px;
}

.news-card.featured .news-meta time,
.news-card.featured .news-meta span {
  color: var(--aqua);
}

.news-card.featured .news-meta span {
  border-color: rgba(255,255,255,.28);
}

.news-card h4,
.event-card h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin: 34px 0 16px;
}

.news-card.featured h4 {
  font-size: clamp(34px, 4vw, 52px);
  max-width: 720px;
}

.news-card p,
.event-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.news-card.featured p {
  color: rgba(255,255,255,.72);
  max-width: 720px;
}

.news-link {
  align-items: center;
  color: #008b95;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: .12em;
  margin-top: auto;
  padding-top: 30px;
  text-transform: uppercase;
}

.news-card.featured .news-link {
  color: var(--aqua);
}

.news-link b {
  font-size: 20px;
  font-weight: 400;
}

.events-column {
  background: var(--deep);
  color: white;
  padding: clamp(28px, 4vw, 42px);
}

.editorial-heading.light {
  border-color: rgba(255,255,255,.22);
}

.editorial-heading.light > span {
  color: var(--aqua);
}

.event-list {
  display: grid;
}

.event-card {
  border-bottom: 1px solid rgba(255,255,255,.17);
  padding: 26px 0 30px;
}

.event-date {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.event-date strong,
.event-type {
  color: var(--aqua);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.event-date small {
  color: rgba(255,255,255,.54);
  font-size: 11px;
}

.event-type {
  border: 1px solid rgba(114,225,220,.3);
  display: inline-block;
  margin-top: 18px;
  padding: 7px 9px;
}

.event-card h4 {
  font-size: 25px;
  margin: 22px 0 12px;
}

.event-card p {
  color: rgba(255,255,255,.62);
}

.events-cta {
  margin-top: 32px;
  width: 100%;
}

.report-section {
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  max-width: 1320px;
}

.report-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
  margin: 0 0 28px;
}

.report-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.emergency-note {
  background: #fff2d6;
  border-left: 3px solid #e3a93e;
  color: #6e5019;
  font-size: 13px;
  line-height: 1.6;
  margin: 28px 0 18px;
  padding: 17px;
}

.privacy-note {
  color: #4f777e;
  display: block;
  line-height: 1.6;
}

.report-form {
  background: white;
  border: 1px solid #dbe2e1;
  box-shadow: 0 24px 70px rgba(4,48,65,.08);
  display: grid;
  gap: 22px;
  padding: clamp(26px, 4vw, 48px);
}

.report-form label {
  display: grid;
  gap: 9px;
}

.report-form label > span {
  color: #35616d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.report-form input,
.report-form select,
.report-form textarea {
  background: #f8faf8;
  border: 1px solid #cad7d7;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  width: 100%;
}

.report-form textarea {
  resize: vertical;
}

.report-form input:focus,
.report-form select:focus,
.report-form textarea:focus {
  border-color: #07959d;
  outline: 2px solid rgba(7,149,157,.15);
}

.report-form .button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.report-form .button:disabled {
  cursor: wait;
  opacity: .6;
}

.report-honeypot {
  left: -10000px;
  position: absolute;
}

.report-result {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  min-height: 20px;
}

.report-result.success { color: #287c4d; }
.report-result.error { color: #b44743; }

footer {
  align-items: start;
  background: #032536;
  color: white;
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr 1.2fr auto auto;
  padding: 70px clamp(24px, 5vw, 80px) 35px;
}

footer p {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
}

footer > div {
  display: flex;
  font-size: 12px;
  gap: 28px;
  justify-self: end;
}

.social-block {
  align-items: flex-end;
  flex-direction: column;
  gap: 12px;
}

.social-block > strong {
  color: rgba(255,255,255,.55);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  font-size: 12px;
  height: 34px;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
  width: 34px;
}

.social-links a:hover {
  background: var(--teal);
  border-color: var(--teal);
}

footer small {
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.45);
  grid-column: 1 / -1;
  padding-top: 25px;
}

.turtle-button {
  align-items: center;
  background: linear-gradient(110deg, rgba(3, 46, 63, .98), rgba(5, 83, 91, .98));
  border: 1px solid rgba(114,225,220,.82);
  border-radius: 45px;
  bottom: 24px;
  box-shadow: 0 12px 36px rgba(0, 34, 47, .25);
  color: white;
  cursor: pointer;
  display: flex;
  gap: 10px;
  padding: 8px 18px 8px 9px;
  position: fixed;
  right: 24px;
  z-index: 20;
}

.turtle-button span {
  align-items: center;
  background: linear-gradient(145deg, #0ca2a4, #087780);
  border-radius: 50%;
  display: flex;
  font-size: 25px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.turtle-button span img {
  height: 58px;
  object-fit: contain;
  transform: translateY(-3px);
  width: 58px;
}

.turtle-button b {
  font-size: 12px;
}

.assistant-panel {
  background: linear-gradient(180deg, #ffffff, #f3faf8);
  border: 1px solid #9acfc9;
  bottom: 91px;
  box-shadow: 0 24px 70px rgba(0, 35, 49, .26);
  max-width: calc(100vw - 40px);
  overflow: hidden;
  padding: 26px;
  position: fixed;
  right: 24px;
  width: 370px;
  z-index: 21;
}

.assistant-panel > button {
  background: transparent;
  border: 0;
  color: #52707d;
  cursor: pointer;
  font-size: 25px;
  position: absolute;
  right: 14px;
  top: 10px;
}

.turtle-avatar {
  align-items: center;
  background: linear-gradient(145deg, #0ba5a6, #08757f);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(5, 119, 127, .22);
  display: flex;
  flex: 0 0 auto;
  font-size: 31px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.turtle-avatar img {
  height: 84px;
  object-fit: contain;
  transform: translateY(-7px);
  width: 84px;
}

.assistant-heading {
  align-items: center;
  display: flex;
  gap: 14px;
  padding-right: 20px;
}

.assistant-heading small {
  color: #008b95;
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.assistant-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
  margin: 0;
}

.assistant-message {
  background: white;
  border: 1px solid #d9e8e5;
  border-radius: 2px 14px 14px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 22px 0 14px;
  padding: 14px 16px;
}

.assistant-options {
  display: grid;
  gap: 8px;
}

.assistant-options a {
  align-items: center;
  background: #073d50;
  color: white;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 15px;
  transition: background .2s ease, transform .2s ease;
}

.assistant-options a:hover,
.assistant-options a:focus-visible {
  background: #07959d;
  outline: none;
  transform: translateX(2px);
}

.assistant-options b {
  color: var(--aqua);
  font-size: 17px;
}

.hero {
  min-height: 1120px;
  padding-bottom: 500px;
}

.hero-conditions {
  background: rgba(3, 37, 54, .48);
  border: 1px solid rgba(255,255,255,.4);
  bottom: 48px;
  left: clamp(24px, 4.4vw, 76px);
  padding: 22px;
  position: absolute;
  right: clamp(24px, 4.4vw, 76px);
  z-index: 3;
  backdrop-filter: blur(16px);
}

.hero-conditions h2 {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 400;
  margin: 0 0 16px;
}

.hero-conditions-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(360px, .9fr) minmax(560px, 1.1fr);
}

.hero-conditions .flag-panel {
  gap: 18px;
  grid-template-columns: 86px 1fr;
  margin: 0;
  padding: 20px;
}

.hero-conditions .flag-visual {
  height: 104px;
  width: 82px;
}

.hero-conditions .flag-cloth {
  height: 68px;
  width: 70px;
}

.hero-conditions .flag-copy h3 {
  font-size: 27px;
  margin-bottom: 10px;
}

.hero-conditions .flag-copy > p:not(.kicker) {
  margin: 10px 0 8px;
}

.hero-conditions .weather-panel {
  grid-template-columns: repeat(4, 1fr);
  padding: 10px;
}

.hero-conditions .weather-panel div {
  border-bottom: 0;
  border-right: 1px solid rgba(255,255,255,.13);
  min-height: 66px;
  padding: 12px;
}

.hero-conditions .weather-panel div:last-child {
  border-right: 0;
  grid-column: auto;
}

.hero-conditions .weather-panel strong {
  font-size: 20px;
}

.hero-conditions .weather-panel .wbgt-metric {
  background: rgba(23, 189, 193, .16);
  border-color: rgba(114, 225, 220, .36);
}

.wbgt-metric em {
  color: #bff9f4;
  display: block;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 4px;
  text-transform: uppercase;
}

.wbgt-metric span {
  color: rgba(255,255,255,.55);
  display: block;
  font-size: 8px;
  line-height: 1.2;
  margin-top: 3px;
}

.hero-data-note {
  border-top: 1px solid rgba(255,255,255,.17);
  color: rgba(255,255,255,.63);
  font-size: 10px;
  line-height: 1.5;
  margin: 14px 0 0;
  padding-top: 12px;
}

.hero-data-note p {
  margin: 0;
}

.hero-data-note .data-refresh-note {
  color: rgba(191, 249, 244, .86);
  margin-top: 5px;
}

.ais-section {
  max-width: 1440px;
}

.ais-live-panel {
  background:
    radial-gradient(circle at 15% 20%, rgba(30, 199, 199, .2), transparent 30%),
    linear-gradient(135deg, #062f42, #031f2f 70%);
  border: 1px solid #174b5b;
  margin: 48px auto 0;
  max-width: 1100px;
  overflow: hidden;
}

.ais-live-frame {
  background: #062f42;
  border: 0;
  display: block;
  height: 380px;
  width: 100%;
}

.ais-live-meta {
  align-items: center;
  color: white;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: 22px 26px;
}

.ais-live-meta > div {
  max-width: 760px;
}

.ais-live-meta p {
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  margin: 0 0 7px;
}

.ais-live-meta small {
  color: rgba(255,255,255,.52);
  display: block;
  font-size: 10px;
  line-height: 1.5;
}

.ais-live-meta .button {
  flex: 0 0 auto;
  min-height: 50px;
}

.beach-information {
  border-top: 1px solid #d8dfde;
}

.beach-information .section-heading {
  display: grid;
  gap: 30px 70px;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
}

.beach-information .section-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.beach-information .actions-intro {
  margin: 0;
}

.beach-subsection {
  border-top: 1px solid #c7d2d3;
  margin-top: 70px;
  padding-top: 38px;
}

.beach-subsection > div:first-child {
  align-items: end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.beach-subsection h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  margin: 0;
}

.beach-subsection > div:first-child p {
  color: var(--muted);
  margin: 0;
}

.business-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.business-grid a {
  align-items: center;
  background: white;
  border: 1px solid #d4dddd;
  display: flex;
  justify-content: space-between;
  min-height: 70px;
  padding: 18px 22px;
  transition: border-color .2s ease, transform .2s ease;
}

.business-grid a > span {
  display: grid;
  gap: 7px;
}

.business-grid a:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.business-grid strong {
  font-size: 14px;
}

.business-grid small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.business-grid b {
  color: #059da5;
  font-weight: 400;
}

.bay-map-section {
  border-top: 1px solid #c7d2d3;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(250px, .55fr) minmax(460px, 1.45fr);
  margin-top: 70px;
  padding-top: 38px;
}

.bay-map-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 20px;
}

.bay-map-heading > p:last-child {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.bay-map-frame {
  aspect-ratio: 1365 / 936;
  background: var(--deep);
  overflow: hidden;
  position: relative;
}

.bay-satellite-image {
  border: 0;
  display: block;
  filter: saturate(.9) contrast(1.04) brightness(.88);
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.static-map-markers {
  inset: 0;
  position: absolute;
  z-index: 1;
}

.static-map-marker {
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.45));
  height: 28px;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
}

.static-map-marker i {
  align-items: center;
  background: #047f88;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  min-width: 28px;
}

.static-map-marker b {
  background: rgba(3,37,54,.92);
  border: 1px solid rgba(255,255,255,.7);
  color: white;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  max-width: 118px;
  padding: 5px 7px;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}

.static-map-marker.safety i {
  background: #d84a3d;
}

.static-map-marker.facility i {
  background: #2257a8;
}

.static-map-marker.environment i {
  background: #438c4c;
}

.static-map-marker.safety b,
.static-map-marker.facility b,
.static-map-marker.environment b {
  display: none;
}

.static-map-marker.safety:hover b,
.static-map-marker.facility:hover b,
.static-map-marker.environment:hover b,
.static-map-marker.safety:focus-within b,
.static-map-marker.facility:focus-within b,
.static-map-marker.environment:focus-within b {
  display: block;
}

.map-open {
  background: rgba(3, 37, 54, .92);
  border: 1px solid rgba(255,255,255,.35);
  bottom: 18px;
  color: white;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 13px 16px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  z-index: 2;
}

.poi-panel {
  grid-column: 1 / -1;
}

.poi-panel h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  margin: 4px 0 16px;
}

.poi-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.poi-grid div {
  align-items: center;
  background: #edf4f2;
  border: 1px solid #d1ddda;
  display: grid;
  gap: 10px;
  grid-template-columns: 34px 1fr;
  min-height: 64px;
  padding: 12px 15px;
}

.poi-grid span {
  color: #048e98;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.poi-grid strong {
  font-size: 12px;
}

.poi-grid b {
  color: #048e98;
  font-weight: 400;
}

.team-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: minmax(280px, 600px);
  margin-top: 28px;
}

.team-grid article {
  background: #edf4f2;
  min-height: 230px;
  padding: 28px;
}

.team-grid article > span {
  color: #059da5;
  font-size: 11px;
  letter-spacing: .18em;
}

.team-grid h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  margin: 35px 0 15px;
}

.team-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    background: rgba(3, 37, 54, .98);
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 20px 24px 28px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-header nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header nav a {
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: 15px;
    min-height: 52px;
    padding: 17px 2px 13px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 1210px;
    padding-bottom: 620px;
  }

  .hero-conditions-grid {
    grid-template-columns: 1fr;
  }

  .hero-conditions .weather-panel {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bay-map-section {
    grid-template-columns: 1fr;
  }

  .poi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .monitoring-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .conditions-panel,
  .report-section {
    grid-template-columns: 1fr;
  }

  .flag-panel {
    grid-template-columns: 110px 1fr;
  }

  .flag-legend {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
    grid-column: 1 / -1;
    padding: 18px 0 0;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .institutional-grid {
    grid-template-columns: 1fr;
  }

  .news-events-layout {
    grid-template-columns: 1fr;
  }

  .events-column {
    padding: 40px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .social-block {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 20px;
  }

  .brand {
    max-width: calc(100vw - 172px);
  }

  .brand img {
    width: 138px;
  }

  .hero {
    align-items: flex-start;
    background-position: 58% center;
    min-height: 1470px;
    padding: 160px 20px 900px;
  }

  .header-tools {
    gap: 5px;
  }

  .lang-switch {
    gap: 2px;
  }

  .lang-switch button {
    min-height: 44px;
    min-width: 36px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(1,35,52,.91), rgba(1,35,52,.42)), linear-gradient(0deg, rgba(1,35,52,.77), transparent);
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .status-pill {
    left: 20px;
    right: auto;
    top: 105px;
  }

  .hero-conditions {
    bottom: 34px;
    left: 20px;
    padding: 15px;
    right: 20px;
  }

  .hero-conditions-grid {
    grid-template-columns: 1fr;
  }

  .hero-conditions .flag-panel {
    grid-template-columns: 70px 1fr;
    margin: 0;
    padding: 18px 15px;
  }

  .hero-conditions .weather-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-conditions .weather-panel div,
  .hero-conditions .weather-panel div:last-child {
    border-bottom: 1px solid rgba(255,255,255,.13);
    border-right: 1px solid rgba(255,255,255,.13);
    grid-column: auto;
  }

  .hero-conditions .weather-panel div:nth-child(even) {
    border-right: 0;
  }

  .metric-row {
    bottom: 48px;
    gap: 8px;
    grid-template-columns: 1fr;
    left: 20px;
    right: 20px;
  }

  .metric-card {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 36px 1fr;
    min-height: 79px;
    padding: 14px 17px;
  }

  .metric-card p {
    margin: 0;
  }

  .metric-card strong {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    grid-column: 2;
    padding-top: 7px;
  }

  .photo-note {
    display: none;
  }

  .section {
    padding: 85px 22px;
  }

  .intro,
  .section-heading.light,
  .standards-inner,
  .beach-information .section-heading {
    grid-template-columns: 1fr;
  }

  .beach-information .section-heading .kicker {
    grid-column: auto;
  }

  .beach-subsection > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .bay-map-section {
    grid-template-columns: 1fr;
  }

  .static-map-marker i {
    font-size: 8px;
    height: 23px;
    min-width: 23px;
  }

  .static-map-marker {
    height: 23px;
    width: 23px;
  }

  .static-map-marker b {
    display: none;
  }

  .poi-grid {
    grid-template-columns: 1fr;
  }

  .large-copy {
    margin-top: 0;
  }

  .pillar-grid,
  .monitoring-grid,
  .action-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .external-data-note,
  .roadmap,
  .flag-panel {
    grid-template-columns: 1fr;
  }

  .conditions-title {
    margin-top: 48px;
  }

  .weather-panel {
    padding: 13px;
  }

  .flag-panel {
    gap: 22px;
    margin-top: 44px;
    padding: 24px 20px;
  }

  .flag-visual {
    height: 88px;
  }

  .flag-pole {
    height: 88px;
  }

  .flag-cloth {
    height: 67px;
    width: 88px;
  }

  .flag-copy h3 {
    font-size: 29px;
  }

  .flag-legend {
    grid-column: auto;
  }

  .flag-legend > span {
    grid-template-columns: 10px 70px 1fr;
  }

  .external-data-note {
    padding: 20px;
  }

  .ais-panel {
    grid-template-columns: 1fr;
  }

  .ais-live-frame {
    height: 320px;
  }

  .ais-live-meta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .ais-live-meta .button {
    width: 100%;
  }

  .ais-map {
    min-height: 270px;
  }

  .ais-copy {
    padding: 32px 24px 36px;
  }

  .ais-copy h3 {
    font-size: 30px;
  }

  .pillar-grid article + article {
    border-left: 0;
    padding-left: 0;
  }

  .section-heading.light {
    gap: 25px;
  }

  .section-heading.light .kicker {
    margin-bottom: 0;
  }

  .monitoring-grid {
    margin-top: 45px;
  }

  .action-grid {
    gap: 12px;
    margin-top: 42px;
  }

  .guide-grid {
    margin-top: 42px;
  }

  .guide-grid article {
    min-height: 0;
    padding: 26px 22px;
  }

  .action-grid summary {
    min-height: 330px;
    padding: 25px 22px;
  }

  .action-grid h3 {
    font-size: 28px;
    margin-top: 32px;
  }

  .action-analysis {
    grid-template-columns: 1fr;
  }

  .action-analysis > div {
    padding: 22px;
  }

  .action-analysis > div + div {
    border-left: 0;
    border-top: 1px solid #dbe2e1;
  }

  .roadmap {
    gap: 38px;
    margin-top: 75px;
    padding-top: 55px;
  }

  .standards-list span {
    grid-template-columns: 1fr;
  }

  .partner-panel {
    padding: 55px 26px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .partner-card {
    min-height: 178px;
    padding: 21px;
  }

  .partner-logo {
    height: 78px;
    margin: 10px 0 8px;
  }

  .news-events-layout {
    margin-top: 44px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card.featured {
    grid-column: auto;
    min-height: 370px;
    padding: 30px 24px;
  }

  .news-card {
    min-height: 300px;
    padding: 25px 22px;
  }

  .events-column {
    padding: 30px 22px;
  }

  .report-section {
    gap: 40px;
  }

  .report-form {
    padding: 26px 20px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer > div {
    flex-wrap: wrap;
    justify-self: start;
  }

  .turtle-button {
    bottom: 16px;
    padding-right: 13px;
    right: 14px;
  }

  .turtle-button b {
    max-width: 116px;
  }

  .assistant-panel {
    bottom: 82px;
    left: 14px;
    max-width: none;
    right: 14px;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
