:root {
  --ink: #07111f;
  --ink-2: #0b1a2c;
  --navy: #10243b;
  --ivory: #f7f2e9;
  --paper: #fbf8f1;
  --muted: #6d7480;
  --line: rgba(185, 154, 95, 0.28);
  --gold: #b99a5f;
  --gold-soft: #d6c39a;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(7, 17, 31, 0.18);
  --radius: 8px;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--gold);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(185, 154, 95, 0.18);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.97), rgba(16, 36, 59, 0.94)),
    rgba(7, 17, 31, 0.94);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 154, 95, 0.55), transparent);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  pointer-events: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  gap: 22px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
  padding: 7px 12px 7px 7px;
  border-radius: calc(var(--radius) + 4px);
  transition: background 180ms ease, transform 180ms ease;
}

.brand:hover {
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  transform: translateY(-1px);
}

.brand img {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 0;
  border: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand > span > span {
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.nav-menu > a:not(.button) {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-menu > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-menu > a:not(.button):hover {
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-menu > a:not(.button):hover::after,
.nav-menu > a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-menu a[aria-current="page"] {
  color: var(--gold-soft);
  background: rgba(185, 154, 95, 0.09);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.button-icon svg {
  width: 18px;
  height: 18px;
}

.button-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

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

.button-primary {
  background:
    linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(185, 154, 95, 0.2);
}

.button-primary:hover {
  background: var(--gold-soft);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(185, 154, 95, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.7) 46%, rgba(7, 17, 31, 0.52)),
    radial-gradient(circle at 78% 20%, rgba(185, 154, 95, 0.12), transparent 34%),
    url("../img/hero-world-map.png") center / cover no-repeat,
    var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 154, 95, 0.62), transparent);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  width: min(100% - 32px, var(--max));
  min-height: clamp(430px, calc(100vh - 250px), 500px);
  margin: 0 auto;
  padding: 44px 0 30px;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-eyebrow span + span::before {
  content: " | ";
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
}

h1,
.page-title {
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 6vw, 5.35rem);
  font-weight: 500;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(2.65rem, 4.25vw, 4.45rem);
  line-height: 1.1;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  color: rgba(255, 255, 255, 0.96);
}

.hero-title span:last-child {
  color: rgba(255, 255, 255, 0.92);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
}

h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.section .lead,
.page-intro .lead {
  color: var(--muted);
}

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

.hero-panel {
  border: 1px solid rgba(185, 154, 95, 0.34);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.58);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  min-height: 172px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(135deg, #10243b, #07111f);
}

.hero-panel-logo {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.78), rgba(7, 17, 31, 0.98)),
    radial-gradient(circle at 70% 20%, rgba(185, 154, 95, 0.18), transparent 36%);
}

.via-ships-logo-link {
  display: block;
  color: inherit;
}

.via-ships-logo-link:hover {
  color: inherit;
}

.hero-panel-logo .via-ships-logo {
  width: 100%;
  height: clamp(230px, 18vw, 280px);
  min-height: 0;
  padding: clamp(16px, 2.2vw, 24px);
  object-fit: contain;
  border-bottom: 1px solid rgba(185, 154, 95, 0.2);
  background:
    linear-gradient(135deg, rgba(5, 11, 20, 0.96), rgba(16, 36, 59, 0.76)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 46%);
}

@media (min-width: 981px) {
  .hero-panel-logo {
    transform: translateY(3px);
  }
}

@media (min-width: 1400px) {
  .hero-panel-logo {
    transform: translateY(10px);
  }
}

@media (min-width: 1700px) {
  .hero-panel-logo {
    transform: translateY(17px);
  }
}

.hero-panel-body {
  padding: 18px 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section-after-hero {
  padding-top: clamp(34px, 3.8vw, 48px);
  border-top: 1px solid rgba(185, 154, 95, 0.16);
  background:
    linear-gradient(180deg, #f1eadf 0, var(--ivory) 42px, var(--paper) 100%);
}

.section-after-hero .split {
  align-items: start;
}

.section-after-hero h2 {
  max-width: 720px;
  font-size: clamp(1.68rem, 3.2vw, 3.05rem);
  line-height: 1.12;
}

.section-dark {
  background:
    radial-gradient(circle at 14% 16%, rgba(185, 154, 95, 0.12), transparent 32%),
    linear-gradient(135deg, var(--ink), #09182a 54%, var(--ink));
  color: var(--white);
}

.section-navy {
  background:
    radial-gradient(circle at 84% 12%, rgba(185, 154, 95, 0.13), transparent 30%),
    linear-gradient(135deg, var(--ink-2), var(--ink) 58%, #0d2035);
  color: var(--white);
}

.section-ivory {
  background:
    linear-gradient(180deg, var(--ivory), var(--paper));
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.section-dark .section-head p,
.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  border: 1px solid rgba(185, 154, 95, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(7, 17, 31, 0.06);
}

.section-dark .card,
.section-navy .card {
  background: rgba(255, 255, 255, 0.045);
}

.card-body {
  padding: 26px;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-dark .card p,
.section-navy .card p {
  color: rgba(255, 255, 255, 0.68);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(185, 154, 95, 0.18);
  background: linear-gradient(135deg, #10243b, #07111f);
}

.section-head-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 56px;
  margin-bottom: 42px;
}

.section-head-carousel > p,
.section-head-carousel .section-note {
  justify-self: end;
  max-width: 540px;
}

.section-note {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(185, 154, 95, 0.24);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(185, 154, 95, 0.1);
}

.section-note p {
  margin: 0;
}

.section-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(213, 186, 128, 0.52);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(213, 186, 128, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.section-note-icon svg {
  width: 20px;
  height: 20px;
}

.section-note-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commodity-carousel {
  position: relative;
}

.carousel-shell {
  position: relative;
  margin-inline: -38px;
  overflow: visible;
}

.carousel-shell::before,
.carousel-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 88px;
  pointer-events: none;
}

.carousel-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.92), transparent);
}

.carousel-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 17, 31, 0.92), transparent);
}

.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: -10px;
  padding: 10px 38px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  position: relative;
  z-index: 1;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  overflow: hidden;
  border-color: rgba(185, 154, 95, 0.26);
  background: rgba(255, 255, 255, 0.05);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-shadow: inset 0 0 0 1px rgba(185, 154, 95, 0), 0 22px 52px rgba(0, 0, 0, 0.14);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.carousel-card:hover {
  z-index: 4;
  transform: translateY(-3px);
  border-color: rgba(185, 154, 95, 0.36);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(213, 186, 128, 0.45), 0 24px 56px rgba(0, 0, 0, 0.22);
}

.carousel-card .card-body {
  min-height: 190px;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.carousel-controls {
  position: absolute;
  inset: 0 -86px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(213, 186, 128, 0.38);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.8);
  color: var(--gold-soft);
  cursor: pointer;
  opacity: 0.95;
  pointer-events: auto;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, opacity 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.carousel-button:hover {
  transform: scale(1.06);
  color: var(--gold);
  border-color: rgba(213, 186, 128, 0.66);
  background: rgba(12, 28, 48, 0.92);
  opacity: 1;
}

.carousel-button svg {
  width: 34px;
  height: 34px;
}

.carousel-button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  grid-column: 2;
  gap: 8px;
  justify-content: center;
}

.carousel-dot {
  width: 30px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  width: 48px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.carousel-link {
  justify-self: end;
  color: var(--gold-soft);
  border: 1px solid rgba(185, 154, 95, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.carousel-link:hover {
  border-color: var(--gold-soft);
  background: rgba(185, 154, 95, 0.12);
  color: var(--gold-soft);
}

.trust-strip {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  padding: 0 0 30px;
  background: transparent;
}

@media (min-width: 1400px) {
  .trust-strip {
    margin-top: 35px;
  }
}

@media (min-width: 1700px) {
  .trust-strip {
    margin-top: 48px;
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(185, 154, 95, 0.52);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  padding: 0;
  background: rgba(7, 17, 31, 0.9);
  box-shadow:
    0 0 0 1px rgba(185, 154, 95, 0.14) inset,
    0 22px 60px rgba(7, 17, 31, 0.22);
  backdrop-filter: blur(14px);
}

.trust-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  column-gap: 15px;
  min-height: 112px;
  padding: 19px 18px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item::before {
  display: none;
}

.trust-item::after {
  display: none;
}

.trust-item:hover {
  z-index: 2;
  transform: none;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.trust-icon {
  position: relative;
  display: inline-flex;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(185, 154, 95, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-soft);
}

.trust-icon svg path,
.trust-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item strong {
  position: relative;
  grid-column: 2;
  display: block;
  max-width: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.18;
}

.trust-item span:not(.trust-icon) {
  position: relative;
  grid-column: 2;
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (min-width: 981px) and (max-height: 760px) {
  .trust-item {
    grid-template-columns: 36px 1fr;
    min-height: 88px;
    padding: 14px 16px;
    column-gap: 12px;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
  }

  .trust-item strong {
    font-size: 0.9rem;
  }

  .trust-item span:not(.trust-icon) {
    margin-top: 4px;
    font-size: 0.72rem;
    line-height: 1.34;
  }
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.rich-text p {
  margin: 16px 0 0;
  color: var(--muted);
}

.section-dark .rich-text p,
.section-navy .rich-text p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.section-dark .feature-list li,
.section-navy .feature-list li {
  color: rgba(255, 255, 255, 0.74);
}

.process-list {
  counter-reset: step;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(185, 154, 95, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 96px 0 76px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 17, 31, 0.98), rgba(16, 36, 59, 0.82)),
    radial-gradient(circle at 80% 12%, rgba(185, 154, 95, 0.22), transparent 30%),
    var(--ink);
}

.page-hero .container {
  display: grid;
  gap: 18px;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.notice {
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(185, 154, 95, 0.1);
  color: var(--ink);
}

.section-dark .notice,
.section-navy .notice {
  color: var(--white);
  background: rgba(185, 154, 95, 0.12);
}

.contact-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 17, 31, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

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

.fine-print {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  border: 1px solid rgba(185, 154, 95, 0.26);
  border-radius: var(--radius);
  padding: clamp(28px, 6vw, 54px);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(16, 36, 59, 0.94)),
    var(--ink);
  color: var(--white);
}

.cta-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  margin-top: 40px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.site-footer {
  padding: 56px 0 28px;
  background: #050b14;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr minmax(260px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-brand strong span + span::before {
  content: " | ";
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand p,
.footer-address p {
  margin: 14px 0 0;
}

.footer-address {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  justify-self: center;
  max-width: 360px;
}

.footer-address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(185, 154, 95, 0.42);
  border-radius: 50%;
  color: var(--gold-soft);
}

.footer-address-icon svg {
  width: 22px;
  height: 22px;
}

.footer-address-icon path,
.footer-address-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
}

.footer-legal a {
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-contact {
  justify-self: end;
  width: 100%;
  max-width: 310px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  word-break: break-word;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(185, 154, 95, 0.42);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-button:hover {
  transform: translateY(-1px);
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.footer-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.footer-button-icon svg {
  width: 18px;
  height: 18px;
}

.footer-button-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-button-icon .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-button-primary {
  border-color: transparent;
  background: var(--gold-soft);
  color: var(--ink);
}

.footer-button-primary:hover {
  background: var(--gold);
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

  .nav-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(7, 17, 31, 0.98);
    border-bottom: 1px solid rgba(185, 154, 95, 0.22);
  }

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

  .nav-menu a {
    padding: 13px 0;
  }

  .nav-menu > a:not(.button) {
    border-radius: var(--radius);
    padding: 13px 12px;
  }

  .nav-menu > a:not(.button)::after {
    left: 12px;
    right: auto;
    width: 34px;
    bottom: 7px;
  }

  .nav-menu .button {
    margin-top: 10px;
  }

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 54px 0 34px;
  }

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

  .trust-strip {
    margin-top: 0;
    padding: 0 0 34px;
  }

  .trust-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .trust-icon {
    grid-row: 1 / span 3;
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .trust-item strong {
    max-width: none;
    font-size: 1.02rem;
  }

  .trust-item span:not(.trust-icon) {
    margin-top: 6px;
    line-height: 1.42;
  }

  .carousel-card {
    flex-basis: calc((100% - 22px) / 2);
  }

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

  .footer-contact {
    justify-self: start;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand span {
    font-size: 0.64rem;
    letter-spacing: 0.055em;
  }

  .section {
    padding: 62px 0;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.25rem);
    line-height: 1.1;
  }

  .hero-inner > div:first-child {
    text-align: center;
  }

  .hero .eyebrow {
    flex-wrap: nowrap;
    justify-content: center;
    line-height: 1.45;
    text-align: center;
  }

  .hero .eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
  }

  .hero-eyebrow {
    display: grid;
    grid-template-columns: 34px minmax(0, auto) 34px;
    gap: 10px;
    justify-items: center;
  }

  .hero-eyebrow::before {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .hero-eyebrow::after {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .hero-eyebrow span {
    grid-column: 2;
    display: block;
    white-space: nowrap;
  }

  .hero-eyebrow span + span::before {
    content: "";
  }

  .hero .lead {
    margin-inline: auto;
  }

  .page-hero .container {
    justify-items: center;
    text-align: center;
  }

  .page-hero p {
    margin-inline: auto;
  }

  .page-hero .eyebrow {
    justify-content: center;
  }

  .page-hero .eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
  }

  .container,
  .hero-inner,
  .nav-wrap {
    width: min(100% - 24px, var(--max));
  }

  .section-head,
  .footer-bottom {
    display: grid;
  }

  .section-head {
    justify-items: center;
    text-align: center;
  }

  .section-head p {
    margin-inline: auto;
  }

  .section-head-carousel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-commodities-home .container {
    display: flex;
    flex-direction: column;
  }

  .section-commodities-home .section-head-carousel {
    display: contents;
  }

  .section-commodities-home .section-head-carousel > div:first-child {
    order: 1;
    margin-bottom: 12px;
  }

  .section-commodities-home .section-note {
    order: 2;
    margin: 0 auto 22px;
  }

  .section-commodities-home .commodity-carousel {
    order: 3;
  }

  .section-head-carousel > p,
  .section-head-carousel .section-note {
    justify-self: center;
  }

  .section-note {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 390px;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .section-note p {
    max-width: 340px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .section-note-icon {
    display: none;
  }

  .carousel-shell {
    margin-inline: -12px;
  }

  .carousel-shell::before,
  .carousel-shell::after {
    width: 34px;
  }

  .carousel-track {
    gap: 14px;
    margin-top: -8px;
    padding: 8px 12px 16px;
    scroll-padding-inline: 12px;
  }

  .carousel-card {
    flex-basis: min(86%, 330px);
  }

  .carousel-card .card-body {
    min-height: 178px;
    padding: 22px;
  }

  .carousel-controls {
    display: none;
  }

  .carousel-meta {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .carousel-dots {
    grid-column: auto;
    justify-content: center;
  }

  .carousel-link {
    justify-self: center;
  }

  .carousel-dot {
    width: 22px;
  }

  .carousel-dot.is-active {
    width: 38px;
  }

  .section .split > div,
  .section .rich-text {
    justify-items: center;
    text-align: center;
  }

  .section .lead,
  .section .rich-text p {
    margin-inline: auto;
  }

  .section .eyebrow {
    justify-content: center;
  }

  .section .eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
  }

  .section-after-hero .split {
    gap: 34px;
  }

  .section-after-hero h2,
  .section-after-hero .rich-text p {
    max-width: 340px;
    margin-inline: auto;
  }

  body[data-page="about"] main > .section:nth-of-type(2) {
    padding-bottom: 34px;
  }

  body[data-page="about"] main > .section-ivory {
    padding-top: 34px;
  }

  body[data-page="about"] .section-dark .split {
    gap: 24px;
  }

  body[data-page="about"] .section-dark .rich-text p:first-child {
    margin-top: 0;
  }

  body[data-page="commodities"] main > .section-ivory,
  body[data-page="compliance"] main > .section-ivory,
  body[data-page="contact"] main > .section-ivory {
    padding-top: 28px;
  }

  .section-navy h2,
  .section-dark h2,
  .section-ivory h2 {
    max-width: 360px;
    margin-inline: auto;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .trust-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal,
  .footer-actions {
    justify-content: center;
    gap: 10px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-grid {
    justify-items: center;
    gap: 34px;
  }

  .footer-address {
    order: 1;
  }

  .footer-brand {
    order: 2;
    display: grid;
    justify-items: center;
    gap: 18px;
  }

  .footer-contact {
    order: 3;
  }

  .footer-brand strong span {
    display: block;
  }

  .footer-brand strong span + span::before {
    content: "";
  }

  .footer-brand,
  .footer-address,
  .footer-contact {
    max-width: 340px;
  }

  .footer-address {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .footer-brand p,
  .footer-address p {
    margin: 0;
  }

  .footer-legal {
    margin-top: 0;
  }

  .footer-contact {
    display: none;
  }

  .footer-links {
    display: none;
  }

  .footer-actions {
    display: none;
  }

  .footer-button {
    flex: 1 1 140px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    width: min(100%, 360px);
    max-width: 100%;
    margin: 34px auto 0;
    padding-top: 26px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom span {
    display: inline;
  }

  .footer-bottom-brand {
    order: 1;
  }

  .footer-bottom .footer-bottom-copy {
    order: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .footer-bottom .footer-bottom-copy span {
    display: inline !important;
  }

  .trust-strip {
    margin-top: -24px;
  }

  .trust-grid {
    gap: 10px;
    overflow: hidden;
    padding: 10px;
    border-radius: var(--radius);
    border-color: rgba(185, 154, 95, 0.48);
    background:
      linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(11, 26, 44, 0.94)),
      var(--ink);
    box-shadow:
      0 0 0 1px rgba(185, 154, 95, 0.12) inset,
      0 22px 54px rgba(7, 17, 31, 0.3);
  }

  .trust-item {
    justify-items: center;
    grid-template-columns: 1fr;
    padding: 16px;
    border: 1px solid rgba(185, 154, 95, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    text-align: center;
  }

  .trust-item:hover {
    transform: none;
  }

  .trust-item::before {
    display: none;
  }

  .trust-item::after {
    display: none;
  }

  .trust-icon {
    grid-row: auto;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .trust-item strong {
    grid-column: 1;
    max-width: none;
    font-size: 1rem;
  }

  .trust-item span:not(.trust-icon) {
    grid-column: 1;
    margin-top: 5px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .card-body,
  .hero-panel-body,
  .notice,
  .cta-band,
  .contact-card,
  .process-list li {
    text-align: center;
  }

  .notice {
    border: 1px solid rgba(213, 186, 128, 0.42);
    box-shadow: inset 0 0 0 1px rgba(213, 186, 128, 0.12);
  }

  .process-list li {
    justify-items: center;
    grid-template-columns: 1fr;
  }

  .feature-list li {
    width: min(100%, 340px);
    margin-inline: auto;
    padding: 13px 16px;
    border: 1px solid rgba(185, 154, 95, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.48);
    text-align: center;
  }

  .feature-list li::before {
    display: none;
  }

  .trust-item em {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 9px;
    font-size: 0.62rem;
  }

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

  .button {
    width: 100%;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }
}
