:root {
  --ink: #172338;
  --muted: #5b6572;
  --gold: #f2b733;
  --gold-dark: #8d681a;
  --gold-soft: #fff3d2;
  --sand: #f7ead2;
  --surface: #f5f6f7;
  --line: #e2e5e8;
  --content: 1120px;
  --header-height: 88px;
  --space-section: 128px;
  --title: 2.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}
body {
  margin: 0;
  color: var(--ink);
  background: white;
  font:
    400 1rem/1.625 "Inter",
    Arial,
    sans-serif;
  letter-spacing: 0;
}
body.dialog-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a,
summary {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #bb8100;
  outline-offset: 5px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Sora", "Inter", Arial, sans-serif;
  font-weight: 600;
}
p {
  color: var(--muted);
}
.container {
  width: min(var(--content), calc(100% - 64px));
  margin-inline: auto;
}
.section-pad {
  padding-block: var(--space-section);
}
.icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.skip-link {
  position: fixed;
  left: 24px;
  top: -80px;
  z-index: 100;
  padding: 12px 20px;
  background: white;
}
.skip-link:focus {
  top: 12px;
}

/* The same content grid aligns the header, hero and sections. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled {
  box-shadow: 0 3px 16px #1723380a;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--header-height);
}
.brand {
  display: block;
  flex-shrink: 0;
}
.brand img {
  width: 116px;
  height: 77px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.site-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 240ms;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: #ae8431;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}
.site-nav a[aria-current="page"] {
  color: #8d681a;
}
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.btn {
  --button-fill: var(--gold);
  --button-active-ink: var(--ink);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  transition:
    color 260ms var(--ease),
    border-color 260ms var(--ease);
}
.btn::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--button-fill);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 340ms var(--ease);
}
.btn-primary {
  color: var(--ink);
  background: transparent;
  border-color: #c29b49;
}
.btn-dark {
  --button-fill: var(--ink);
  --button-active-ink: white;
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}
.btn-outline {
  color: white;
  border-color: #ffffff8c;
  background: transparent;
}
.hero .btn-primary,
.page-hero .btn-primary,
.contact .btn-primary {
  color: white;
  border-color: var(--gold);
}
.btn:is(:focus-visible, :active, .is-pressed) {
  color: var(--button-active-ink);
  border-color: var(--button-fill);
}
.btn:is(:focus-visible, :active, .is-pressed)::before {
  transform: scaleX(1);
}
.btn:is(:active, .is-pressed)::before {
  transition-duration: 120ms;
}
.lucide-arrow-right {
  --arrow-x: 8px;
  --arrow-y: 0px;
}
.lucide-arrow-up-right {
  --arrow-x: 6px;
  --arrow-y: -6px;
}
.lucide-arrow-up {
  --arrow-x: 0px;
  --arrow-y: -8px;
}
.header-cta {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.8125rem;
}
.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 540px;
  height: min(720px, calc(100svh - 160px));
  color: white;
  background: #374139;
  isolation: isolate;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, 50% 49%);
  opacity: 0;
}
.hero-media img:first-child {
  opacity: 1;
}
.hero-shade {
  background: linear-gradient(
    90deg,
    #10191de6 0%,
    #10191db8 33%,
    #10191d47 65%,
    #10191d0d 100%
  );
}
.hero-content {
  padding-block: 64px;
}
.hero-copy {
  max-width: 610px;
}
.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
}
.eyebrow {
  color: #f3f3ee;
}
.hero h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: 3.5rem;
  line-height: 1.125;
  font-weight: 600;
}
.hero h1 span {
  color: var(--gold);
}
.hero-description {
  max-width: 490px;
  color: #f0f1ef;
  font-size: 1rem;
  line-height: 1.625;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hero-caption {
  position: absolute;
  right: max(32px, calc((100% - var(--content)) / 2));
  bottom: 24px;
  color: white;
  font-size: 0.75rem;
  text-shadow: 0 1px 6px #000;
}
.hero-dots {
  position: absolute;
  left: max(32px, calc((100% - var(--content)) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #ffffffa8;
  border-radius: 999px;
  background: #ffffff52;
  box-shadow: 0 1px 8px #00000042;
}
.hero-dots span:first-child {
  width: 22px;
  border-color: var(--gold);
  background: var(--gold);
}
.service-strip {
  border-bottom: 1px solid #dfe7e4;
  background: #fffaf0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-grid a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  font-size: 0.875rem;
  font-weight: 500;
}
.service-grid a + a {
  justify-content: center;
}
.service-grid a:last-child {
  justify-content: flex-end;
}
.service-grid .icon {
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  padding: 9px;
  color: #7a570d;
  background: #ffe8a8;
}
.service-grid a:nth-child(2) .icon {
  color: #7a570d;
  background: #fff3d2;
}
.service-grid a:nth-child(3) .icon {
  color: #7a570d;
  background: #f7ead2;
}

.about {
  position: relative;
  isolation: isolate;
  background: linear-gradient(90deg, #fff 0%, #fff 72%, #fff8e8 72%, #fff8e8 100%);
}
.about::before {
  position: absolute;
  top: 64px;
  right: max(24px, calc((100% - var(--content)) / 2));
  z-index: -1;
  width: min(220px, 18vw);
  height: 10px;
  background: var(--gold);
  content: "";
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}
.about-copy h2,
.section-head h2,
.contact-copy h2 {
  margin-bottom: 20px;
  font-size: var(--title);
  line-height: 1.22;
}
.about-copy h2 {
  max-width: 420px;
}
.about-copy > p:not(.section-kicker) {
  margin-bottom: 16px;
}
.about-media {
  position: relative;
  isolation: isolate;
  padding: 0 0 18px 18px;
}
.about-media::before {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 58%;
  height: 68%;
  background: #f3c45a;
  content: "";
}
.about-media::after {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: -1;
  width: 34%;
  height: 40%;
  background: #fff3d2;
  content: "";
}
.about-media img {
  width: 100%;
  height: 384px;
  object-fit: cover;
  object-position: center 60%;
}
.about-media figcaption {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted);
}
.history {
  margin-top: 28px;
}
.history summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  list-style: none;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.history summary::-webkit-details-marker {
  display: none;
}
.history[open] summary .icon {
  transform: rotate(90deg);
}
.history p {
  padding-top: 16px;
  font-size: 0.9375rem;
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.section-head {
  position: relative;
  margin-bottom: 56px;
  max-width: 650px;
}
.section-head::after {
  display: block;
  width: 96px;
  height: 4px;
  margin-top: 22px;
  background: var(--gold);
  content: "";
}
.section-head .section-kicker {
  margin-bottom: 16px;
}
.section-head h2 {
  margin-bottom: 14px;
}
.section-head-row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.section-head-row > p {
  max-width: 370px;
  padding-bottom: 4px;
}
.section-head-row .compact-link {
  margin-top: 0;
  margin-left: auto;
  white-space: nowrap;
}
.section-head-row h2 {
  margin-bottom: 0;
}
.section-head-row::after {
  align-self: flex-end;
  order: 2;
  margin: 0 0 9px;
}

.fleet {
  background: linear-gradient(180deg, #fff 0%, #fff 38%, #fbf7ee 100%);
}
.fleet-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 24px;
}
.fleet-card {
  min-width: 0;
  display: flex;
}
.fleet-card:nth-child(3n + 1) {
  --card-accent: var(--gold);
}
.fleet-card:nth-child(3n + 2) {
  --card-accent: #d79a18;
}
.fleet-card:nth-child(3n) {
  --card-accent: #8d681a;
}
.fleet-button {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  text-align: left;
  background: white;
  color: var(--ink);
  transition: border-color 300ms var(--ease);
}
.fleet-button::before {
  position: absolute;
  top: 8px;
  right: 8px;
  left: 8px;
  z-index: 1;
  height: 3px;
  background: var(--card-accent, var(--gold));
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 340ms var(--ease);
}
.fleet-button::after {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--card-accent, #ae8431);
  border-radius: inherit;
  pointer-events: none;
  content: "";
  clip-path: inset(0 100% 100% 0);
  transition: clip-path 420ms var(--ease);
}
.fleet-button:is(:focus-visible, :active, .is-pressed)::after {
  clip-path: inset(0);
}
.fleet-button:is(:focus-visible, :active, .is-pressed)::before {
  transform: scaleX(1);
}
.fleet-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  overflow: hidden;
  background: #e2e5e1;
  flex-shrink: 0;
}
.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, 50% 57%);
}
.fleet-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
  width: 100%;
  min-height: 88px;
  padding: 16px 8px 8px;
}
.fleet-caption strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
}
.fleet-caption > .icon {
  color: #7b5c19;
}
.cta-band {
  position: relative;
  isolation: isolate;
  color: white;
  background: var(--ink);
}
.cta-band::before,
.cta-band::after {
  position: absolute;
  z-index: -1;
  content: "";
}
.cta-band::before {
  right: max(24px, calc((100% - var(--content)) / 2));
  bottom: 0;
  width: 180px;
  height: 44px;
  background: #f2b733;
}
.cta-band::after {
  top: 0;
  right: calc(max(24px, (100% - var(--content)) / 2) + 160px);
  width: 86px;
  height: 100%;
  border-inline: 1px solid #ffffff18;
}
.cta-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 72px;
}
.cta-band h2 {
  margin-bottom: 18px;
  font-size: var(--title);
  line-height: 1.15;
}
.cta-band p:not(.section-kicker) {
  max-width: 540px;
  color: #d9dde4;
}
.cta-panel {
  display: grid;
  gap: 14px;
  min-width: 260px;
}
.cta-panel .btn {
  width: 100%;
}
.cta-band .btn-primary {
  color: white;
  border-color: var(--gold);
}
.mini-facts {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}
.mini-facts span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  max-width: 430px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ffffff29;
  color: #cbd0d7;
  font-size: 0.875rem;
}
.mini-facts strong {
  color: white;
  font-size: 1.125rem;
}
.operations {
  background: linear-gradient(90deg, #fff 0%, #fff 66%, #fffaf0 66%, #fffaf0 100%);
}
.operation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.operation-card {
  position: relative;
  min-width: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.operation-card::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--card-accent, var(--gold));
  content: "";
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}
.operation-card:nth-child(1) {
  --card-accent: var(--gold);
}
.operation-card:nth-child(2) {
  --card-accent: #d79a18;
}
.operation-card:nth-child(3) {
  --card-accent: #8d681a;
}
.operation-image {
  width: 100%;
  aspect-ratio: 1.45;
  overflow: hidden;
}
.operation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center 60%);
}
.operation-copy {
  padding-top: 24px;
}
.operation-copy h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.35;
}
.operation-copy p {
  font-size: 0.9375rem;
  line-height: 1.65;
}
.operation-copy > span {
  display: block;
  margin-bottom: 12px;
  color: #98701a;
  font-size: 0.75rem;
  font-weight: 500;
}
.operation-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}
.differentials {
  padding-block: 96px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #f5f6f7 0%, #f5f6f7 56%, #fff7e9 100%);
}
.diff-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.diff-item > .icon {
  box-sizing: content-box;
  width: 26px;
  height: 26px;
  margin-bottom: 20px;
  padding: 10px;
  color: #88621a;
  background: #ffe8a8;
}
.diff-item:nth-child(2) > .icon,
.diff-item:nth-child(4) > .icon {
  color: #7a570d;
  background: #fff3d2;
}
.diff-item:nth-child(3) > .icon {
  color: #7a570d;
  background: #f7ead2;
}
.diff-item h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.4;
}
.diff-item p {
  font-size: 0.875rem;
  line-height: 1.65;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
  color: white;
  background: var(--ink);
  isolation: isolate;
}
.page-hero-photo {
  min-height: 560px;
}
.page-hero-media,
.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  opacity: 0;
}
.page-hero-media img:first-child,
.page-hero-media img:only-child {
  opacity: 1;
}
.page-hero-shade {
  background:
    linear-gradient(90deg, #111928f2 0%, #111928d6 40%, #11192869 100%),
    linear-gradient(0deg, #11192880, transparent 45%);
}
.page-hero-content {
  max-width: var(--content);
  padding-block: 96px;
}
.page-hero h1,
.page-intro h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 3.25rem;
  line-height: 1.08;
}
.page-hero p:not(.eyebrow) {
  max-width: 560px;
  color: #e2e5e8;
  font-size: 1.0625rem;
}
.page-intro {
  background: white;
}
.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 72px;
}
.page-intro-text {
  padding-bottom: 8px;
  font-size: 1.0625rem;
}
.detail-grid,
.story-grid,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 72px;
}
.detail-copy h2,
.story-copy h2,
.process-grid h2,
.contact-compact h2 {
  margin-bottom: 20px;
  font-size: var(--title);
  line-height: 1.2;
}
.detail-copy p + p,
.story-copy p + p {
  margin-top: 16px;
}
.fact-panel,
.mission-card,
.route-card,
.segment-card {
  position: relative;
  border: 1px solid var(--line);
  background: white;
}
.fact-panel {
  padding: 8px 32px;
}
.fact-panel dl {
  margin: 0;
}
.fact-panel div {
  display: grid;
  grid-template-columns: 0.95fr 1.3fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.fact-panel div:last-child {
  border-bottom: 0;
}
.fact-panel dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.fact-panel dd {
  margin: 0;
  font-weight: 600;
}
.story-section,
.process-section {
  background: var(--surface);
}
.story-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 50% 57%;
}
.mission-section {
  background: white;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.mission-card {
  padding: 40px;
}
.mission-card span,
.segment-card span {
  display: block;
  margin-bottom: 14px;
  color: #98701a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.mission-card h2 {
  margin-bottom: 16px;
  font-size: 1.65rem;
  line-height: 1.22;
}
.route-section {
  padding-top: 0;
  background: linear-gradient(180deg, #fff 0%, #fff 56%, #fffaf0 100%);
}
.dredge-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.route-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  --card-accent: var(--gold);
}
button.route-card {
  width: 100%;
  padding: 0;
  color: var(--ink);
  text-align: left;
}
.route-card:nth-child(3n + 1) {
  --card-accent: var(--gold);
}
.route-card:nth-child(3n + 2) {
  --card-accent: #d79a18;
}
.route-card:nth-child(3n) {
  --card-accent: #8d681a;
}
.route-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 3px;
  background: var(--card-accent);
  content: "";
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 340ms var(--ease);
}
.route-card::after,
.segment-card::after {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--card-accent, #ae8431);
  border-radius: inherit;
  pointer-events: none;
  content: "";
  clip-path: inset(0 100% 100% 0);
  transition: clip-path 420ms var(--ease);
}
.route-card:is(:focus-visible, :active, .is-pressed)::after {
  clip-path: inset(0);
}
.route-card:is(:focus-visible, :active, .is-pressed)::before {
  transform: scaleX(1);
}
.route-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  object-position: 50% 56%;
}
.route-card > div {
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.route-card h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.3;
}
.route-card p {
  font-size: 0.9375rem;
}
.route-card-feature {
  background: var(--ink);
  --card-accent: var(--gold);
}
.route-card-feature h2,
.route-card-feature .card-link {
  color: white;
}
.route-card-feature p {
  color: #d9dde4;
}
.card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}
.card-link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: #f2b733;
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}
.card-link:is(:focus-visible, :active, .is-pressed)::after {
  transform: scaleX(1);
}
.segments-section {
  background: white;
}
.segment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.segment-card {
  min-height: 170px;
  padding: 28px;
}
.segment-card .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
  color: #88621a;
}
.segment-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}
.process-grid {
  align-items: start;
}
.process-grid p {
  max-width: 450px;
}
.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.process-list li {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.process-list span {
  color: #98701a;
  font-size: 0.75rem;
}
.contact-compact {
  padding-block: 64px;
  color: white;
  background: var(--ink);
}
.contact-compact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.contact-compact .section-kicker {
  color: #c6ccd3;
}
.contact-compact h2 {
  max-width: 520px;
  margin-bottom: 0;
}
.contact-compact .btn-primary {
  color: white;
  border-color: var(--gold);
}

.contact {
  padding-block: 104px;
  color: white;
  background: var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
}
.contact .section-kicker {
  color: #c6ccd3;
}
.contact-copy h2 {
  max-width: 420px;
}
.contact-copy > p:not(.section-kicker) {
  max-width: 430px;
  color: #cbd0d7;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.contact-channels {
  padding-top: 2px;
}
.contact-channels dl {
  display: grid;
  gap: 24px;
  margin: 0;
}
.contact-channels dl > div {
  position: relative;
  padding-left: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff26;
}
.contact-channels dl > div::before {
  position: absolute;
  top: 3px;
  bottom: 22px;
  left: 0;
  width: 3px;
  background: var(--gold);
  content: "";
}
.contact-channels dl > div:nth-child(2)::before {
  background: #d79a18;
}
.contact-channels dl > div:nth-child(3)::before {
  background: #8d681a;
}
.contact-channels dt {
  margin-bottom: 8px;
  color: #c6ccd3;
  font-size: 0.75rem;
}
.contact-channels dd {
  margin: 0;
  font-size: 0.9375rem;
}
.contact-channels dd + dd {
  margin-top: 6px;
}
.contact-channels a {
  overflow-wrap: anywhere;
}
.contact-channels a:hover {
  color: var(--gold);
}
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.whatsapp-link .icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}
.location {
  padding-block: 96px;
  background: linear-gradient(90deg, #fff 0%, #fff 58%, #fffaf0 58%, #fffaf0 100%);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 64px;
  align-items: center;
}
.location h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.3;
}
.location address {
  color: var(--muted);
  font-size: 0.9375rem;
  font-style: normal;
}
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.text-link::after,
.history summary::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: #ae8431;
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 340ms var(--ease);
}
:is(.text-link, .history summary):is(:focus-visible, :active, .is-pressed)::after,
.history[open] summary::after {
  transform: scaleX(1);
}
.map-frame {
  display: block;
  width: 100%;
  height: 256px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  background: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand img {
  width: 104px;
  height: 69px;
  object-fit: contain;
}
.footer-brand p {
  max-width: 240px;
  font-size: 0.8125rem;
}
.footer-grid nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 8px 20px;
  font-size: 0.8125rem;
}
.footer-contact {
  align-self: center;
  font-size: 0.8125rem;
}
.footer-contact a {
  display: block;
  overflow-wrap: anywhere;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}
.footer-bottom a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.photo-dialog {
  width: min(980px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: auto;
  color: var(--ink);
  background: white;
}
.photo-dialog::backdrop {
  background: #0a111bd9;
}
.dialog-top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: white;
  border-bottom: 1px solid var(--line);
  border-radius: 4px 4px 0 0;
}
.dialog-top h2 {
  font-size: 1.25rem;
}
.dialog-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: white;
  color: var(--ink);
  transition: background 220ms, border-color 220ms;
}
.dialog-image {
  display: block;
  width: 100%;
  height: clamp(280px, 48svh, 520px);
  object-fit: cover;
  object-position: center;
  background: var(--surface);
}
.dialog-bottom {
  display: block;
  padding: 24px 24px 28px;
}
.dialog-story {
  max-width: 760px;
}
.dialog-copy p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
}
.dialog-copy p + p {
  margin-top: 12px;
}
.dialog-footer {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 24px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px rgba(10, 17, 27, 0.07);
  border-radius: 0 0 4px 4px;
}
/* Hover only on pointing devices; touch feedback uses the same visual states. */
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    color: var(--button-active-ink);
    border-color: var(--button-fill);
  }
  .btn:hover::before {
    transform: scaleX(1);
  }
  .fleet-button:hover::after {
    clip-path: inset(0);
  }
  .fleet-button:hover::before {
    transform: scaleX(1);
  }
  :is(.route-card, .segment-card):hover::after {
    clip-path: inset(0);
  }
  .route-card:hover::before {
    transform: scaleX(1);
  }
  .operation-card:hover::after {
    transform: scaleX(1);
  }
  .site-nav a:hover {
    color: #986706;
  }
  .site-nav a:hover::after,
  :is(.text-link, .card-link, .history summary):hover::after {
    transform: scaleX(1);
  }
  :is(.menu-toggle, .dialog-close):hover {
    background: #faf3e2;
    border-color: #c29b49;
  }
}
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}
:is(.menu-toggle, .dialog-close):is(:focus-visible, :active, .is-pressed) {
  background: #faf3e2;
  border-color: #c29b49;
}

/* Movement is short, one-shot and disabled for reduced-motion preferences. */
@media (prefers-reduced-motion: no-preference) {
  @keyframes arrow-pass {
    0%, 100% { opacity: 1; translate: 0 0; }
    42% { opacity: 0; translate: var(--arrow-x) var(--arrow-y); }
    43% { opacity: 0; translate: calc(0px - var(--arrow-x)) calc(0px - var(--arrow-y)); }
  }
  @keyframes panel-enter {
    from { opacity: 0; translate: 0 10px; }
    to { opacity: 1; translate: 0 0; }
  }
  @keyframes hero-fade {
    0%,
    14% {
      opacity: 1;
      transform: scale(1);
    }
    18%,
    100% {
      opacity: 0;
      transform: scale(1.018);
    }
  }
  @keyframes hero-dot {
    0%,
    14% {
      width: 22px;
      border-color: var(--gold);
      background: var(--gold);
      opacity: 1;
    }
    18%,
    100% {
      width: 8px;
      border-color: #ffffffa8;
      background: #ffffff52;
      opacity: 0.82;
    }
  }
  .hero-slide {
    animation: hero-fade 36s linear infinite;
    animation-delay: calc(var(--slide-index) * 6s);
  }
  .hero-dots span {
    animation: hero-dot 36s linear infinite;
    animation-delay: calc(var(--dot-index) * 6s);
  }
  :is(.btn, .fleet-button, .route-card, .text-link, .card-link, .history summary, .footer-bottom a):is(:focus-visible, .is-pressed)
    :is(.lucide-arrow-right, .lucide-arrow-up-right, .lucide-arrow-up) {
    animation: arrow-pass 460ms var(--ease) both;
  }
  @media (hover: hover) and (pointer: fine) {
    :is(.btn, .fleet-button, .text-link, .card-link, .history summary, .footer-bottom a):hover
      :is(.lucide-arrow-right, .lucide-arrow-up-right, .lucide-arrow-up) {
      animation: arrow-pass 460ms var(--ease) both;
    }
    .route-card:hover :is(.lucide-arrow-right, .lucide-arrow-up-right) {
      animation: arrow-pass 460ms var(--ease) both;
    }
  }
  .photo-dialog[open], .site-nav.is-open {
    animation: panel-enter 260ms var(--ease) both;
  }
  .reveal-ready {
    opacity: 0;
    translate: 0 18px;
    transition:
      opacity 640ms var(--ease),
      translate 640ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
  }
  .reveal-ready.is-visible {
    opacity: 1;
    translate: 0 0;
  }
  .reveal-ready .section-kicker::before {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms var(--ease) 160ms;
  }
  .reveal-ready.is-visible .section-kicker::before {
    transform: scaleX(1);
  }
}
@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }
  .header-inner {
    gap: 24px;
  }
  .about-grid,
  .contact-grid {
    gap: 48px;
  }
  .cta-band-grid,
  .detail-grid,
  .story-grid,
  .process-grid,
  .page-intro-grid {
    gap: 48px;
  }
  .footer-grid {
    gap: 32px;
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 80px;
    --space-section: 96px;
    --title: 2rem;
  }
  .header-inner {
    flex-wrap: wrap;
  }
  .brand img {
    width: 104px;
    height: 69px;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    order: 3;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 2px;
    background: white;
    transition: background 220ms, border-color 220ms;
  }
  .menu-toggle .icon {
    width: 22px;
    height: 22px;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 16px 32px 24px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px #1723380a;
  }
  .site-nav.is-open {
    display: grid;
    gap: 0;
  }
  .site-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-copy {
    max-width: 520px;
  }
  .service-grid a {
    font-size: 0.8125rem;
    gap: 8px;
  }
  .service-grid .icon {
    width: 18px;
    height: 18px;
  }
  .about-grid {
    gap: 32px;
  }
  .about-media img {
    height: 380px;
  }
  .fleet-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-band-grid,
  .detail-grid,
  .story-grid,
  .process-grid,
  .page-intro-grid {
    grid-template-columns: 1fr;
  }
  .page-hero h1,
  .page-intro h1 {
    font-size: 2.65rem;
  }
  .page-intro-text {
    max-width: 560px;
  }
  .cta-panel {
    width: 100%;
    max-width: 360px;
  }
  .story-media img {
    height: 420px;
  }
  .dredge-route-grid,
  .segment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .operation-grid {
    gap: 20px;
  }
  .operation-copy h3 {
    font-size: 1.125rem;
  }
  .diff-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 48px;
  }
  .contact-grid {
    gap: 32px;
  }
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .location-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  .footer-contact {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  :root {
    --space-section: 80px;
    --title: 1.875rem;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    gap: 12px;
  }
  .header-cta {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  .header-cta .icon {
    display: none;
  }
  .site-nav {
    padding-inline: 20px;
  }
  .hero {
    min-height: 520px;
    height: min(640px, calc(100svh - 136px));
  }
  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.17;
    max-width: 360px;
    margin-bottom: 20px;
  }
  .hero-copy {
    max-width: 440px;
  }
  .hero-content {
    padding-block: 56px 64px;
  }
  .hero-shade {
    background: linear-gradient(90deg, #10191de6, #10191d85);
  }
  .hero-media img {
    object-position: var(--hero-mobile-focus, var(--hero-focus, 50% 49%));
  }
  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }
  .hero-actions .btn {
    padding-inline: 16px;
  }
  .hero-caption {
    right: 20px;
    bottom: 16px;
    font-size: 0.6875rem;
  }
  .hero-dots {
    left: 20px;
    bottom: 18px;
    gap: 7px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }
  .service-grid a,
  .service-grid a + a,
  .service-grid a:last-child {
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 0;
    font-size: 0.875rem;
  }
  .service-grid a + a {
    border-top: 1px solid var(--line);
  }
  .about-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero,
  .page-hero-photo {
    min-height: 520px;
  }
  .page-hero-content {
    padding-block: 72px;
  }
  .page-hero h1,
  .page-intro h1 {
    font-size: 2.125rem;
    line-height: 1.15;
  }
  .page-hero p:not(.eyebrow),
  .page-intro-text {
    font-size: 1rem;
  }
  .page-intro-grid {
    gap: 24px;
  }
  .cta-band-grid,
  .detail-grid,
  .story-grid,
  .process-grid {
    gap: 32px;
  }
  .story-media img {
    height: auto;
    aspect-ratio: 1.15;
  }
  .mini-facts span,
  .fact-panel div {
    display: block;
  }
  .mini-facts strong,
  .fact-panel dd {
    display: block;
    margin-top: 4px;
  }
  .fact-panel,
  .mission-card {
    padding: 28px 24px;
  }
  .mission-grid,
  .dredge-route-grid,
  .segment-list {
    grid-template-columns: 1fr;
  }
  .route-card img {
    aspect-ratio: 1.45;
  }
  .route-card > div,
  .segment-card {
    padding: 24px 20px;
  }
  .segment-card {
    min-height: 150px;
  }
  .contact-compact-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-media img {
    height: auto;
    aspect-ratio: 1.2;
  }
  .about-copy h2 {
    max-width: 350px;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .section-head-row {
    display: block;
  }
  .section-head-row > p {
    margin-top: 16px;
  }
  .fleet-board {
    gap: 24px 12px;
  }
  .operation-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .operation-actions .btn,
  .section-actions .btn {
    width: 100%;
  }
  .section-actions .text-link,
  .operation-actions .text-link {
    width: fit-content;
  }
  .fleet-button {
    padding: 6px;
  }
  .fleet-image {
    aspect-ratio: 0.92;
  }
  .fleet-caption {
    padding: 12px 2px 6px;
    gap: 4px;
  }
  .fleet-caption strong {
    font-size: 1rem;
  }
  .fleet-caption > .icon {
    width: 16px;
    height: 16px;
  }
  .operation-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .operation-image {
    aspect-ratio: 1.5;
  }
  .operation-copy {
    padding-top: 20px;
  }
  .operation-copy h3 {
    font-size: 1.25rem;
  }
  .diff-list {
    gap: 32px 24px;
  }
  .diff-item h3 {
    font-size: 0.9375rem;
  }
  .contact {
    padding-block: 80px;
  }
  .differentials {
    padding-block: 80px;
  }
  .contact-actions {
    flex-direction: row;
  }
  .location {
    padding-block: 72px;
  }
  .map-frame {
    height: 260px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand p {
    max-width: 200px;
  }
  .footer-grid nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    align-items: flex-start;
  }
  .footer-bottom p {
    max-width: 225px;
  }
  .dialog-top,
  .dialog-bottom,
  .dialog-footer {
    padding: 14px 16px;
  }
  .dialog-footer .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .header-inner {
    gap: 6px;
  }
  .brand img {
    width: 80px;
    height: 53px;
  }
  .header-cta {
    min-height: 42px;
    padding-inline: 8px;
    font-size: 0.6875rem;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    padding-inline: 12px;
    font-size: 0.8125rem;
  }
  .fleet-board {
    grid-template-columns: 1fr;
  }
  .fleet-image {
    aspect-ratio: 1.45;
  }
  .diff-list {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
