:root {
  --navy-950: #061525;
  --navy-900: #091e33;
  --navy-850: #0d2842;
  --navy-800: #123654;
  --sea-700: #0b6c7d;
  --sea-500: #20a2b4;
  --gold-500: #d8aa4f;
  --gold-400: #edc36c;
  --cream: #f7f3e9;
  --mist: #eef5f5;
  --paper: #ffffff;
  --ink: #10263a;
  --muted: #5d6d7d;
  --line: #d9e3e8;
  --success: #087c66;
  --error: #b13b3b;
  --shadow-sm: 0 12px 30px rgba(6, 26, 43, 0.1);
  --shadow-lg: 0 28px 72px rgba(4, 18, 32, 0.22);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --content: 1180px;
  --header-height: 94px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--navy-950);
  background: var(--gold-400);
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 7px;
  color: var(--navy-950);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  position: fixed;
  height: 76px;
  background: rgba(6, 21, 37, 0.96);
  box-shadow: 0 12px 30px rgba(2, 12, 22, 0.24);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--content), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.2vw, 18px);
  min-width: 0;
}

.brand img {
  width: clamp(68px, 5vw, 80px);
  height: clamp(68px, 5vw, 80px);
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.26));
  transition: width 0.25s ease, height 0.25s ease;
}

.is-scrolled .brand img {
  width: 54px;
  height: 54px;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-link::after {
  content: "↗";
  font-size: 15px;
  line-height: 1;
}

.header-link:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.quick-nav {
  position: fixed;
  z-index: 35;
  top: 50%;
  right: 22px;
  display: grid;
  gap: 9px;
  width: 268px;
  transform: translateY(-50%);
}

.quick-nav-link {
  min-height: 54px;
  display: grid;
  grid-template-columns: 36px 1fr 18px;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 10px;
  color: #fff;
  background: rgba(5, 25, 43, 0.78);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateX(80px);
  backdrop-filter: blur(16px);
  animation: quick-nav-in 0.7s cubic-bezier(0.18, 0.78, 0.2, 1) forwards;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.quick-nav-link:nth-child(1) {
  animation-delay: 0.35s;
}

.quick-nav-link:nth-child(2) {
  animation-delay: 0.48s;
}

.quick-nav-link:nth-child(3) {
  animation-delay: 0.61s;
}

.quick-nav-link:nth-child(4) {
  animation-delay: 0.74s;
}

.quick-nav-link:hover,
.quick-nav-link.is-active {
  border-color: rgba(237, 195, 108, 0.9);
  color: var(--navy-950);
  background: var(--gold-400);
  transform: translateX(-4px);
}

.quick-nav-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  opacity: 0.88;
}

.quick-nav-label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.quick-nav-arrow {
  font-size: 20px;
  line-height: 1;
}

@keyframes quick-nav-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero {
  --hero-image: url("nbs-login-day.jpg");
  --hero-fill-color: #10283b;
  --hero-fill-opacity: 0.9;
  --hero-scene-position: 68% center;
  --hero-overlay:
    linear-gradient(90deg, rgba(5, 20, 36, 0.88) 0%, rgba(7, 32, 51, 0.7) 40%, rgba(7, 34, 53, 0.2) 70%, rgba(4, 20, 35, 0.25) 100%),
    linear-gradient(180deg, rgba(3, 15, 29, 0.12) 0%, rgba(4, 19, 34, 0.05) 62%, rgba(4, 18, 31, 0.62) 100%);
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

html.nbs-time-morning .hero {
  --hero-image: url("nbs-login-day.jpg");
  --hero-fill-color: #16344a;
  --hero-fill-opacity: 0.92;
  --hero-scene-position: 68% center;
  --hero-overlay:
    linear-gradient(90deg, rgba(5, 20, 36, 0.88) 0%, rgba(7, 32, 51, 0.7) 40%, rgba(7, 34, 53, 0.17) 70%, rgba(4, 20, 35, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 15, 29, 0.08) 0%, rgba(4, 19, 34, 0.03) 62%, rgba(4, 18, 31, 0.58) 100%);
}

html.nbs-time-day .hero {
  --hero-image: url("nbs-login-noon.jpg");
  --hero-fill-color: #173f49;
  --hero-fill-opacity: 0.94;
  --hero-scene-position: 66% center;
  --hero-overlay:
    linear-gradient(90deg, rgba(4, 22, 36, 0.89) 0%, rgba(4, 35, 49, 0.68) 40%, rgba(5, 47, 58, 0.15) 70%, rgba(3, 30, 42, 0.19) 100%),
    linear-gradient(180deg, rgba(1, 15, 25, 0.08) 0%, rgba(2, 24, 34, 0.02) 58%, rgba(2, 22, 32, 0.58) 100%);
}

html.nbs-time-night .hero {
  --hero-image: url("nbs-login-lighthouse.png");
  --hero-fill-color: #07192d;
  --hero-fill-opacity: 0.86;
  --hero-scene-position: 67% center;
  --hero-overlay:
    linear-gradient(90deg, rgba(2, 13, 28, 0.91) 0%, rgba(4, 23, 42, 0.72) 40%, rgba(3, 24, 43, 0.2) 70%, rgba(2, 14, 28, 0.28) 100%),
    linear-gradient(180deg, rgba(1, 8, 20, 0.18) 0%, rgba(1, 10, 24, 0.06) 54%, rgba(1, 9, 21, 0.7) 100%);
}

.hero-backdrop {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  background: var(--hero-fill-color);
}

.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-backdrop::before {
  inset: -8%;
  background: var(--hero-image) var(--hero-scene-position) / cover no-repeat;
  filter: blur(18px) saturate(1.08);
  opacity: var(--hero-fill-opacity);
  transform: scale(1.08);
  animation: hero-fill-drift 24s ease-in-out infinite alternate;
}

.hero-backdrop::after {
  inset: 0;
  background: var(--hero-image) var(--hero-scene-position) / contain no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--hero-overlay);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(3, 15, 27, 0.28));
  pointer-events: none;
}

@keyframes hero-fill-drift {
  from {
    transform: scale(1.08) translate3d(-0.4%, -0.2%, 0);
  }

  to {
    transform: scale(1.12) translate3d(0.6%, 0.45%, 0);
  }
}

.hero-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 70px) 310px 108px 0;
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.hero-intro {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(244, 251, 252, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.3);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  color: var(--navy-950);
  background: #fff;
  box-shadow: 0 16px 36px rgba(1, 12, 24, 0.22);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(1, 12, 24, 0.3);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.15);
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-400);
  box-shadow: 0 16px 36px rgba(4, 21, 37, 0.2);
}

.button-gold:hover {
  background: #f4cd7a;
}

.button-outline-dark {
  border-color: rgba(10, 34, 56, 0.28);
  color: var(--navy-900);
  background: transparent;
}

.button-outline-dark:hover {
  border-color: var(--navy-900);
  background: rgba(9, 30, 51, 0.05);
}

.button-arrow::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.hero-proof {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-proof span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(237, 195, 108, 0.14);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--gold-400), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  50% {
    opacity: 0.35;
    transform: scaleY(0.7);
    transform-origin: top;
  }
}

.ship-lane {
  --ship-cycle: 54s;
  --ship-delay: 1.5s;
  --ship-hull: #d6e1e3;
  --ship-deck: #eef3f2;
  --ship-bridge: #c6d3d6;
  --ship-stack: #51606a;
  --ship-edge: rgba(255, 255, 255, 0.46);
  --ship-shadow: rgba(1, 11, 20, 0.44);
  --ship-wake: rgba(238, 248, 250, 0.52);
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 10.5%;
  left: 0;
  height: 82px;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
}

html.nbs-time-morning .ship-lane {
  --ship-hull: #d6e1e3;
  --ship-deck: #eef3f2;
  --ship-bridge: #c6d3d6;
  --ship-stack: #51606a;
  --ship-edge: rgba(255, 255, 255, 0.46);
  --ship-shadow: rgba(1, 11, 20, 0.44);
  --ship-wake: rgba(255, 233, 206, 0.48);
}

html.nbs-time-day .ship-lane {
  --ship-hull: #f1f5f6;
  --ship-deck: #ffffff;
  --ship-bridge: #dce5e8;
  --ship-stack: #5b6870;
  --ship-edge: rgba(4, 35, 48, 0.24);
  --ship-shadow: rgba(1, 13, 21, 0.55);
  --ship-wake: rgba(245, 252, 253, 0.7);
}

html.nbs-time-night .ship-lane {
  --ship-hull: #061321;
  --ship-deck: #071827;
  --ship-bridge: #0a1e30;
  --ship-stack: #061321;
  --ship-edge: rgba(137, 187, 211, 0.2);
  --ship-shadow: rgba(0, 7, 14, 0.68);
  --ship-wake: rgba(226, 243, 250, 0.42);
}

.sailing-ship {
  position: absolute;
  bottom: 13px;
  left: 0;
  width: 150px;
  height: 58px;
  filter: drop-shadow(0 9px 7px var(--ship-shadow));
  transform: translate3d(22px, 0, 0);
  will-change: transform;
  animation: ship-patrol var(--ship-cycle) linear var(--ship-delay) infinite;
}

.ship-visual {
  position: relative;
  width: 150px;
  height: 58px;
  transform: scaleX(1);
  transform-origin: 50% 50%;
  will-change: transform;
  animation: ship-heading var(--ship-cycle) steps(1, end) var(--ship-delay) infinite;
}

.ship-hull {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 23px;
  background: var(--ship-hull);
  box-shadow: inset 0 1px 0 var(--ship-edge);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 4% 100%);
}

.ship-deck {
  position: absolute;
  left: 26px;
  bottom: 21px;
  width: 78px;
  height: 14px;
  border-radius: 2px 2px 0 0;
  background: var(--ship-deck);
  box-shadow: 0 0 0 1px var(--ship-edge);
}

.ship-bridge {
  position: absolute;
  left: 38px;
  bottom: 34px;
  width: 32px;
  height: 17px;
  border-radius: 2px 2px 0 0;
  background: var(--ship-bridge);
  box-shadow: 0 0 0 1px var(--ship-edge);
}

.ship-stack {
  position: absolute;
  left: 49px;
  bottom: 49px;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--gold-400);
  background: var(--ship-stack);
}

.ship-aftmast,
.ship-foremast {
  position: absolute;
  z-index: 2;
  width: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(var(--ship-edge), var(--ship-stack));
}

.ship-aftmast {
  bottom: 49px;
  left: 42px;
  height: 15px;
}

.ship-foremast {
  right: 28px;
  bottom: 23px;
  height: 27px;
}

.ship-nav-light {
  position: absolute;
  z-index: 4;
  width: 4px;
  height: 4px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
}

.ship-nav-light::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: currentColor;
  opacity: 0.11;
  filter: blur(4px);
}

html.nbs-time-morning .ship-nav-light::after {
  opacity: 0.09;
}

html.nbs-time-day .ship-nav-light::after {
  opacity: 0.07;
}

html.nbs-time-night .ship-nav-light::after {
  opacity: 0.16;
}

.ship-nav-light--stern {
  bottom: 20px;
  left: 6px;
  color: #f4fbff;
  background: #f4fbff;
  box-shadow: 0 0 4px #fff, 0 0 10px rgba(224, 244, 255, 0.58);
}

.ship-nav-light--port {
  bottom: 34px;
  left: 70px;
  color: #ff4252;
  background: #ff4252;
  opacity: 0;
  box-shadow: 0 0 4px #ff5260, 0 0 11px rgba(255, 36, 54, 0.62);
  animation: show-red-when-moving-left var(--ship-cycle) steps(1, end) var(--ship-delay) infinite;
}

.ship-nav-light--starboard {
  bottom: 34px;
  left: 70px;
  color: #39f09b;
  background: #39f09b;
  opacity: 1;
  box-shadow: 0 0 4px #57ffac, 0 0 11px rgba(29, 255, 143, 0.62);
  animation: show-green-when-moving-right var(--ship-cycle) steps(1, end) var(--ship-delay) infinite;
}

.ship-nav-light--masthead-forward,
.ship-nav-light--masthead-aft {
  width: 5px;
  height: 5px;
  color: #fff7d1;
  background: #fff7d1;
  box-shadow: 0 0 5px #fff, 0 0 13px rgba(255, 238, 169, 0.72);
}

.ship-nav-light--masthead-forward {
  right: 26px;
  bottom: 49px;
}

.ship-nav-light--masthead-aft {
  bottom: 61px;
  left: 40px;
}

.ship-wake {
  position: absolute;
  right: 112px;
  bottom: -4px;
  width: 120px;
  height: 8px;
  border-top: 2px solid var(--ship-wake);
  border-radius: 50%;
  transform: skewX(-34deg);
}

@keyframes ship-patrol {
  0%,
  3% {
    transform: translate3d(22px, 0, 0);
  }

  48%,
  52% {
    transform: translate3d(calc(100vw - 172px), -1px, 0);
  }

  97%,
  100% {
    transform: translate3d(22px, 0, 0);
  }
}

@keyframes ship-heading {
  0%,
  49.999% {
    transform: scaleX(1);
  }

  50%,
  99.999% {
    transform: scaleX(-1);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes show-red-when-moving-left {
  0%,
  49.999% {
    opacity: 0;
  }

  50%,
  99.999% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes show-green-when-moving-right {
  0%,
  49.999% {
    opacity: 1;
  }

  50%,
  99.999% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 138px) 0;
  scroll-margin-top: 28px;
}

.section-shell {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-lead h2,
.authorisation-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-heading p,
.about-lead > p,
.authorisation-copy > p,
.contact-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-kicker {
  color: var(--sea-700);
}

.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(27, 150, 168, 0.09), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fafb 100%);
}

.about::after {
  content: "NBS";
  position: absolute;
  z-index: 0;
  top: 40px;
  right: -16px;
  color: rgba(8, 38, 61, 0.028);
  font-size: clamp(180px, 28vw, 430px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.about-lead {
  position: sticky;
  top: 112px;
}

.about-statement {
  margin-top: 34px;
  padding: 24px 26px;
  border-left: 3px solid var(--gold-500);
  color: var(--navy-800);
  background: rgba(216, 170, 79, 0.09);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.6;
}

.about-detail {
  display: grid;
  gap: 28px;
}

.about-detail > p {
  margin: 0;
  color: #4d6070;
  font-size: 17px;
  line-height: 1.82;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.fact {
  min-height: 126px;
  padding: 22px 20px;
  background: #fff;
}

.fact strong {
  display: block;
  color: var(--navy-800);
  font-size: 27px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.fact span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
}

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

.service-card {
  position: relative;
  min-height: 240px;
  padding: 28px 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(9, 35, 55, 0.06);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: rgba(11, 108, 125, 0.45);
  box-shadow: 0 20px 42px rgba(9, 35, 55, 0.11);
  transform: translateY(-4px);
}

.service-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  color: var(--gold-400);
  background: var(--navy-900);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin: 22px 0 0;
  color: var(--navy-850);
  font-size: 18px;
  line-height: 1.3;
}

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

.authorisation {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 5%, rgba(32, 162, 180, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-850) 58%, #104a60 100%);
}

.authorisation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.authorisation .section-kicker,
.circulars .section-kicker {
  color: var(--gold-400);
}

.authorisation-copy h2,
.authorisation-copy > p {
  color: #fff;
}

.authorisation-copy > p {
  color: rgba(235, 247, 249, 0.76);
}

.flag-card {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.flag-frame {
  padding: 6px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(1, 12, 24, 0.24);
}

.flag-frame img {
  width: 114px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 5px;
}

.flag-copy strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
}

.flag-copy span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.flag-copy a {
  color: var(--gold-400);
  text-decoration: underline;
  text-decoration-color: rgba(237, 195, 108, 0.45);
  text-underline-offset: 3px;
}

.certificate-facts {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.certificate-fact {
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.certificate-fact dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.certificate-fact dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 750;
}

.certificate-stage {
  position: relative;
}

.certificate-stage::before,
.certificate-stage::after {
  content: "";
  position: absolute;
  border-radius: var(--radius-lg);
  transform: rotate(3deg);
}

.certificate-stage::before {
  z-index: 0;
  inset: 20px -22px -18px 30px;
  border: 1px solid rgba(237, 195, 108, 0.34);
}

.certificate-stage::after {
  z-index: 0;
  inset: -18px 24px 26px -18px;
  background: rgba(255, 255, 255, 0.055);
  transform: rotate(-2deg);
}

.certificate-backdrop {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 500px);
  aspect-ratio: 1488 / 2103;
  margin-left: auto;
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc url("/documents/certificate-of-authorisation-bmsr-ro-26-001-preview.png?v=20260722") center top / cover no-repeat;
  box-shadow: 0 36px 80px rgba(1, 12, 24, 0.42);
  pointer-events: none;
  user-select: none;
}

.circulars {
  color: #fff;
  background: #071a2b;
}

.circulars::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.circulars .section-shell {
  position: relative;
}

.circulars .section-heading {
  max-width: 860px;
}

.circulars .section-heading h2,
.circulars .section-heading p {
  color: #fff;
}

.circulars .section-heading p {
  color: rgba(233, 244, 247, 0.7);
}

.circular-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(210px, 0.42fr);
  gap: 12px;
  margin-bottom: 28px;
}

.search-field,
.select-field {
  position: relative;
}

.search-field::before {
  content: "⌕";
  position: absolute;
  top: 50%;
  left: 18px;
  color: var(--gold-400);
  font-size: 23px;
  line-height: 1;
  transform: translateY(-54%);
  pointer-events: none;
}

.circular-toolbar input,
.circular-toolbar select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.circular-toolbar input {
  padding: 0 18px 0 50px;
}

.circular-toolbar select {
  padding: 0 42px 0 17px;
}

.circular-toolbar select option {
  color: var(--ink);
  background: #fff;
}

.circular-toolbar input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.circular-toolbar input:focus,
.circular-toolbar select:focus {
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.11);
}

.circular-status {
  min-height: 36px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.circular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.circular-card {
  min-height: 268px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.circular-card:hover {
  border-color: rgba(237, 195, 108, 0.48);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.circular-card-open {
  width: 100%;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.circular-card-open:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 7px;
  border-radius: 7px;
}

.circular-card-top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.source-badge {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--gold-400);
  background: rgba(216, 170, 79, 0.1);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.circular-date {
  color: rgba(255, 255, 255, 0.49);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.circular-number {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.circular-card h3 {
  margin: 9px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
}

.circular-revision {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.circular-read-more {
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.circular-read-more::after {
  content: "  +";
}

.circular-files {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.circular-file-link {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.circular-file-link::before {
  content: "PDF";
  color: var(--gold-400);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.circular-file-link:hover {
  border-color: var(--gold-400);
  color: var(--navy-950);
  background: var(--gold-400);
}

.circular-file-link:hover::before {
  color: var(--navy-950);
}

.circular-no-file {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.circular-dialog {
  width: min(900px, calc(100% - 32px));
  max-width: none;
  max-height: min(90vh, 960px);
  padding: 0;
  border: 1px solid rgba(237, 195, 108, 0.42);
  border-radius: 18px;
  color: #fff;
  background: var(--navy-950);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.circular-dialog::backdrop {
  background: rgba(2, 13, 23, 0.82);
  backdrop-filter: blur(5px);
}

.circular-dialog-shell {
  position: relative;
  padding: 34px;
}

.circular-dialog-close {
  position: absolute;
  top: 22px;
  right: 24px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.circular-dialog-close:hover,
.circular-dialog-close:focus-visible {
  border-color: var(--gold-400);
  color: var(--navy-950);
  background: var(--gold-400);
}

.circular-dialog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 80px;
}

.circular-dialog .circular-number {
  margin-top: 22px;
}

.circular-dialog h2 {
  margin: 9px 0 0;
  padding-right: 32px;
  color: #fff;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
}

.circular-dialog .circular-revision {
  color: rgba(255, 255, 255, 0.62);
}

.circular-content {
  margin-top: 26px;
  padding: 28px;
  border-radius: 10px;
  color: #25282b;
  background: #fff;
  font-size: 16px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.circular-content > :first-child {
  margin-top: 0;
}

.circular-content > :last-child {
  margin-bottom: 0;
}

.circular-content ul,
.circular-content ol {
  padding-left: 2em;
}

.circular-content li + li {
  margin-top: 0.65em;
}

.circular-content a {
  color: #075b98;
  text-decoration: underline;
}

.circular-content table {
  width: 100%;
  border-collapse: collapse;
}

.circular-content th,
.circular-content td {
  padding: 8px;
  border: 1px solid #d4d8dc;
  text-align: left;
  vertical-align: top;
}

.circular-content-empty {
  color: #60666b;
}

.circular-dialog-files {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.circular-dialog-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.045);
}

.circular-dialog-file > span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.circular-dialog-file-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.circular-file-download {
  border-color: rgba(237, 195, 108, 0.62);
}

.circular-empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
}

.circular-footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.show-more {
  min-width: 190px;
}

.show-more[hidden] {
  display: none;
}

.contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 95%, rgba(11, 108, 125, 0.1), transparent 30%),
    var(--mist);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.contact-copy {
  padding-top: 12px;
}

.contact-cards {
  margin-top: 38px;
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold-400);
  background: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 22px;
}

.contact-card strong {
  display: block;
  color: var(--navy-850);
  font-size: 14px;
}

.contact-card span,
.contact-card address,
.contact-card a {
  display: block;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.contact-card a:hover {
  color: var(--sea-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-shell {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(10, 42, 66, 0.09);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.contact-form-heading {
  margin-bottom: 28px;
}

.contact-form-heading span {
  display: block;
  color: var(--sea-700);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form-heading h3 {
  margin: 7px 0 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy-850);
  font-size: 12px;
  font-weight: 800;
}

.form-field label span {
  color: var(--error);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #ccd9df;
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcfd;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-field input {
  min-height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 154px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--sea-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(32, 162, 180, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #98a7b2;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-submit {
  min-width: 164px;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.66);
  background: var(--navy-950);
}

.footer-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 13px;
}

.footer-brand span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  font-size: 12px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.18, 0.78, 0.2, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-js .reveal-delay-1 {
  transition-delay: 0.08s;
}

.has-js .reveal-delay-2 {
  transition-delay: 0.16s;
}

.has-js .reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1260px) {
  .quick-nav {
    right: 14px;
    width: 228px;
  }

  .quick-nav-link {
    grid-template-columns: 32px 1fr 16px;
    min-height: 50px;
  }

  .quick-nav-index {
    width: 30px;
    height: 30px;
  }

  .hero-inner {
    padding-right: 245px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 84px;
  }

  .site-header.is-scrolled {
    height: 70px;
  }

  .quick-nav {
    position: absolute;
    top: calc(var(--header-height) + 18px);
    right: 24px;
    left: 24px;
    width: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    transform: none;
  }

  .quick-nav-link {
    min-height: 48px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    padding: 9px 8px;
    text-align: center;
  }

  .quick-nav-link:hover,
  .quick-nav-link.is-active {
    transform: translateY(-2px);
  }

  .quick-nav-index,
  .quick-nav-arrow {
    display: none;
  }

  .quick-nav-label {
    font-size: 9px;
  }

  .hero-inner {
    padding: calc(var(--header-height) + 128px) 0 100px;
  }

  .about-grid,
  .authorisation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-lead {
    position: static;
  }

  .authorisation-grid {
    gap: 70px;
  }

  .certificate-backdrop {
    margin-right: auto;
  }

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

  .contact-grid {
    gap: 56px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 76px;
  }

  .header-inner,
  .hero-inner,
  .section-shell,
  .footer-inner {
    width: min(100% - 30px, var(--content));
  }

  .header-inner {
    gap: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-copy strong {
    font-size: 11.5px;
  }

  .brand-copy small {
    display: none;
  }

  .header-link {
    min-height: 40px;
    padding: 0 12px;
    font-size: 11px;
  }

  .quick-nav {
    top: calc(var(--header-height) + 12px);
    right: 15px;
    left: 15px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .quick-nav-link {
    min-height: 42px;
    border-radius: 8px;
  }

  .hero-backdrop {
    background-position: 58% 50%;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 20, 36, 0.93), rgba(5, 25, 42, 0.69)),
      linear-gradient(180deg, rgba(3, 15, 29, 0.2), rgba(4, 18, 31, 0.76));
  }

  .hero-inner {
    padding: calc(var(--header-height) + 154px) 0 92px;
  }

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

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

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 9px 16px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading,
  .section-heading p {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about-lead h2,
  .authorisation-copy h2,
  .contact-copy h2 {
    font-size: clamp(37px, 11vw, 50px);
  }

  .about-grid {
    gap: 44px;
  }

  .fact-row,
  .service-grid,
  .certificate-facts,
  .circular-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: auto;
  }

  .service-card {
    min-height: 0;
  }

  .flag-card {
    grid-template-columns: 92px 1fr;
    padding: 18px;
  }

  .flag-frame img {
    width: 80px;
  }

  .certificate-stage::before,
  .certificate-stage::after {
    display: none;
  }

  .certificate-backdrop {
    width: min(100%, 420px);
    padding: 8px;
    border-radius: 12px;
  }

  .circular-toolbar {
    grid-template-columns: 1fr;
  }

  .circular-card {
    min-height: 245px;
  }

  .circular-dialog-shell {
    padding: 24px 18px;
  }

  .circular-dialog-close {
    top: 16px;
    right: 16px;
  }

  .circular-dialog-meta {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 72px;
  }

  .circular-dialog h2 {
    padding-right: 0;
  }

  .circular-content {
    padding: 20px 17px;
    font-size: 14px;
  }

  .circular-dialog-file {
    align-items: stretch;
    flex-direction: column;
  }

  .circular-dialog-file-actions {
    flex-wrap: wrap;
  }

  .contact-form-shell {
    padding: 27px 20px;
    border-radius: 20px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit {
    width: 100%;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    max-width: 125px;
  }

  .header-link::after {
    display: none;
  }

  .quick-nav-label {
    font-size: 8px;
  }

  .hero-proof {
    display: grid;
  }

  .flag-card {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .quick-nav-link,
  .has-js .reveal {
    opacity: 1;
    transform: none;
  }

  .sailing-ship {
    right: auto;
    left: clamp(20px, 8vw, 120px);
    animation: none !important;
    transform: none !important;
  }

  .ship-visual {
    animation: none !important;
    transform: scaleX(1) !important;
  }

  .ship-nav-light--port,
  .ship-nav-light--starboard {
    animation: none !important;
  }

  .ship-nav-light--port {
    opacity: 0 !important;
  }

  .ship-nav-light--starboard {
    opacity: 1 !important;
  }

  .hero-backdrop::before {
    animation: none !important;
    transform: scale(1.08) !important;
  }
}
