:root {
  --ink: #0b1b2b;
  --muted: #5e6b78;
  --line: rgba(11, 27, 43, 0.12);
  --blue: #00247D;
  --blue-2: #1A52A8;
  --cyan: #FFD100;
  --ocean: #00247D;
  --warning: #bf0a30;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --soft-2: #eaf0f7;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(0, 36, 125, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--blue);
  border-bottom: 2px solid var(--cyan);
}

.top-alert {
  color: #fff;
  background: var(--blue);
  border-bottom: 2px solid var(--cyan);
  overflow: hidden;
}

.top-alert__inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  font-size: 0.9rem;
}

.top-alert__inner span {
  color: rgba(255, 255, 255, 0.78);
}

.top-alert__inner strong {
  color: var(--cyan);
  font-weight: 700;
}

/* ── Scrolling ticker ── */
.ticker-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.ticker-item::before {
  content: "·";
  margin-right: 28px;
  color: var(--cyan);
  opacity: 0.6;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.nav-shell {
  width: min(1160px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 800;
  background: var(--cyan);
  box-shadow: 0 14px 30px rgba(0, 36, 125, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-item > a {
  padding: 8px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 160ms, color 160ms;
}

.nav-links a:hover,
.nav-item > a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-links a[aria-current="page"] {
  color: var(--cyan);
  background: rgba(255, 209, 0, 0.1);
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 0;
  width: 250px;
  margin-top: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-menu a {
  display: block;
  border-radius: 12px;
  white-space: normal;
  color: var(--ink);
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: rgba(0, 36, 125, 0.07);
  color: var(--blue);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
}

.page-hero {
  padding: 86px 0 78px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 209, 0, 0.18), transparent 30%),
    linear-gradient(135deg, #00247D, var(--blue-2) 58%, #1A52A8);
}

.page-hero h1 {
  max-width: 900px;
  margin: 18px 0;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    url("../clean-rebuild-assets/uploads-safe/2024/06/main-banner-2048x1536.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 209, 0, 0.15), transparent 28%),
    linear-gradient(105deg, rgba(0, 36, 125, 0.94), rgba(0, 36, 125, 0.74) 52%, rgba(0, 36, 125, 0.44)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 16px);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
  padding: 72px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 209, 0, 0.45);
  border-radius: 999px;
  color: var(--blue-2);
  background: rgba(255, 209, 0, 0.14);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff3b0;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 209, 0, 0.35);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.hero__copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--light {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button--dark {
  color: #fff;
  background: var(--blue);
}

.current-card,
.notice-card,
.panel,
.metric-card,
.service-card,
.external-card,
.quick-card {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.current-card {
  padding: 26px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
    linear-gradient(145deg, rgba(0, 36, 125, 0.92), rgba(26, 82, 168, 0.76));
  backdrop-filter: blur(18px);
}

.current-card__top,
.metric-card__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.current-card__top strong {
  color: #fff3b0;
}

.current-temp {
  margin: 26px 0;
  font-size: 6rem;
  line-height: 0.9;
  font-weight: 900;
}

.current-temp span {
  font-size: 2rem;
}

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

.current-grid div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.current-grid small,
.current-grid strong {
  display: block;
}

.current-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.quick-links {
  margin-top: -64px;
  position: relative;
  z-index: 5;
  padding-top: 0;
}

.quick-grid,
.dashboard-grid,
.service-grid,
.gallery-grid,
.link-grid {
  display: grid;
  gap: 18px;
}

.quick-grid {
  grid-template-columns: repeat(4, 1fr);
}

.quick-card {
  min-height: 170px;
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 36, 125, 0.20);
}

.quick-card strong,
.quick-card small {
  display: block;
}

.quick-card small {
  color: var(--muted);
}

.quick-card--warning {
  color: #fff;
  background: linear-gradient(145deg, #8d061f, var(--warning));
}

.quick-card--warning small {
  color: rgba(255, 255, 255, 0.74);
}

.icon-sun,
.icon-cloud,
.icon-alert,
.icon-wave {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: block;
  background: linear-gradient(145deg, var(--blue), #1A52A8);
}

.icon-cloud {
  border-radius: 50% 50% 18px 18px;
}

.icon-alert {
  background: rgba(255,255,255,0.24);
  clip-path: polygon(50% 0, 100% 90%, 0 90%);
}

.icon-wave {
  border-radius: 24px 24px 14px 14px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.dashboard {
  background:
    linear-gradient(180deg, var(--soft), #fff);
}

.dashboard-grid {
  grid-template-columns: repeat(6, 1fr);
}

.metric-card {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
}

.metric-card:nth-child(1),
.metric-card:nth-child(2) {
  grid-column: span 2;
}

.metric-card:nth-child(n+3) {
  grid-column: span 1;
}

.metric-card--primary {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent),
    linear-gradient(145deg, var(--blue), #1A52A8);
}

.metric-card:not(.metric-card--primary) .metric-card__label {
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 26px 0 6px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.metric-card small {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-2);
  font-weight: 800;
}

.metric-card--primary .text-link {
  color: rgba(255, 255, 255, 0.9);
}

.metric-card--primary small {
  color: rgba(255, 255, 255, 0.72);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
  background: #6effc4;
  box-shadow: 0 0 0 6px rgba(110, 255, 196, 0.16);
}

.forecast-strip {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.forecast-strip article {
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(145deg, #00247D, #1A52A8);
}

.forecast-strip small,
.forecast-strip strong,
.forecast-strip span {
  display: block;
}

.forecast-strip span {
  color: rgba(255,255,255,0.72);
}

.split-section {
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 24px;
  align-items: stretch;
}

.split--reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.panel,
.notice-card {
  border-radius: 28px;
  padding: 30px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.tab.is-active {
  color: #fff;
  background: var(--blue);
}

.tab--warning.is-active {
  background: var(--warning);
}

.tab-panel {
  display: none;
  padding: 22px;
  border-radius: 18px;
  background: var(--soft);
}

.tab-panel.is-active {
  display: block;
}

.notice-card {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), transparent),
    linear-gradient(145deg, #74091d, var(--warning));
}

.notice-card span,
.notice-card p {
  color: rgba(255,255,255,0.76);
}

.notice-card strong {
  display: block;
  margin: 24px 0;
  font-size: 2rem;
  line-height: 1.08;
}

.climate {
  background:
    linear-gradient(180deg, var(--soft), #eef5fb);
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius);
}

.service-card p {
  color: var(--muted);
}

.service-card--form {
  grid-column: span 2;
}

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

.data-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.data-form input,
.data-form select,
.data-form textarea {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
}

.data-form textarea {
  min-height: 110px;
  padding: 12px;
  resize: vertical;
}

.field-wide {
  grid-column: 1 / -1;
}

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

.data-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.nav-card {
  display: block;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 36, 125, 0.20);
}

.data-panel--wide {
  grid-column: 1 / -1;
}

.data-table {
  display: grid;
  gap: 10px;
}

.data-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.data-table span {
  color: var(--muted);
  font-weight: 700;
}

.empty-state {
  padding: 28px;
  border: 1px dashed rgba(0, 36, 125, 0.28);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(0, 36, 125, 0.05);
  font-weight: 800;
}

.empty-state--warning {
  border-color: rgba(191, 10, 48, 0.32);
  color: #8d061f;
  background: rgba(191, 10, 48, 0.06);
}

.forecast-strip--embedded {
  margin-top: 0;
}

.about {
  background: #fff;
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 14px;
}

.image-collage img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-collage img:last-child {
  height: 300px;
  margin-top: 70px;
}

.content-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.content-list span {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 700;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.about-mini-card {
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(0, 36, 125, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(244,247,251,0.92));
  box-shadow: 0 18px 46px rgba(0, 36, 125, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 64px rgba(0, 36, 125, 0.16);
}

.about-mini-card strong,
.about-mini-card small {
  display: block;
}

.about-mini-card strong {
  margin-top: 18px;
  font-size: 1.05rem;
}

.about-mini-card small {
  margin-top: 6px;
  color: var(--muted);
}

.mini-icon {
  position: relative;
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.24), transparent 46%),
    linear-gradient(145deg, var(--blue), #1A52A8);
  box-shadow: 0 14px 28px rgba(0, 36, 125, 0.2);
}

.mini-icon::before,
.mini-icon::after {
  content: "";
  position: absolute;
}

.mini-icon--history::before {
  width: 20px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.mini-icon--history::after {
  width: 12px;
  height: 2px;
  background: #fff;
  box-shadow: 0 6px 0 #fff;
}

.mini-icon--team::before {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: -10px 16px 0 -2px #fff, 10px 16px 0 -2px #fff;
  top: 10px;
}

.mini-icon--team::after {
  width: 26px;
  height: 12px;
  border-radius: 999px 999px 6px 6px;
  background: #fff;
  bottom: 9px;
}

.mini-icon--contact::before {
  width: 22px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.mini-icon--contact::after {
  width: 14px;
  height: 14px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  top: 14px;
}

.mini-icon--partners::before {
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 999px;
}

.mini-icon--partners::after {
  width: 30px;
  height: 2px;
  background: #fff;
  transform: rotate(-35deg);
}

.mini-icon--forecast::before {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 9px 7px 0 -5px rgba(255,255,255,0.82);
}

.mini-icon--warning::before {
  width: 26px;
  height: 24px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.mini-icon--warning::after {
  width: 3px;
  height: 12px;
  top: 17px;
  background: var(--warning);
  box-shadow: 0 15px 0 -1px var(--warning);
}

.mini-icon--marine::before {
  width: 28px;
  height: 14px;
  border-bottom: 3px solid #fff;
  border-radius: 0 0 999px 999px;
  transform: translateY(-2px);
}

.mini-icon--marine::after {
  width: 30px;
  height: 8px;
  border-bottom: 3px solid rgba(255,255,255,0.74);
  border-radius: 0 0 999px 999px;
  transform: translateY(9px);
}

.about-copy {
  display: grid;
  gap: 20px;
}

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

.timeline-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

.timeline-grid strong,
.timeline-grid span {
  display: block;
}

.timeline-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.gallery {
  background: var(--soft);
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.links {
  background: #fff;
}

.link-grid {
  grid-template-columns: repeat(3, 1fr);
}

.external-card {
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.external-card:hover {
  transform: translateY(-4px);
}

.external-card strong,
.external-card span {
  display: block;
}

.external-card strong {
  font-size: 1.6rem;
}

.external-card span {
  margin-top: 10px;
  color: var(--muted);
}

.site-footer {
  padding: 48px 0;
  color: #fff;
  background: var(--blue);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p,
.site-footer span {
  color: rgba(255,255,255,0.72);
}

.site-footer span {
  display: block;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 116px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: var(--blue);
    box-shadow: 0 8px 32px rgba(0, 36, 125, 0.30);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-item > a {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: auto;
    margin: 4px 0 8px 12px;
    padding: 4px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu a {
    color: rgba(255, 255, 255, 0.7);
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .hero__content,
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .service-grid,
  .gallery-grid,
  .link-grid,
  .data-layout {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .metric-card:nth-child(n) {
    grid-column: span 1;
  }

  .forecast-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell,
  .top-alert__inner,
  .hero__content {
    width: min(100% - 28px, 1160px);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: auto;
    padding: 64px 0 96px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .quick-grid,
  .dashboard-grid,
  .service-grid,
  .gallery-grid,
  .link-grid,
  .data-form,
  .data-layout,
  .about-card-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .service-card--form {
    grid-column: auto;
  }

  .data-panel--wide,
  .field-wide {
    grid-column: auto;
  }

  .current-temp {
    font-size: 4.6rem;
  }

  .image-collage {
    grid-template-columns: 1fr;
  }

  .image-collage img,
  .image-collage img:last-child {
    height: 260px;
    margin-top: 0;
  }

  .footer-grid {
    display: grid;
  }
}
