/* Production responsive and accessibility layer loaded by public-site.js. */
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 96px;
}

body {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
section,
header,
footer,
nav,
div,
article {
  min-width: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-media,
.page-hero img,
.feature-band img,
.responsibility img,
.model-image img,
.service-tile img,
.vessel-card img,
.detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card,
.inquiry-form,
.contact-details,
.detail-card,
.service-tile,
.vessel-card,
.info-box,
.team-card {
  min-width: 0;
  border-radius: 6px;
}

.contact-card a,
.contact-details a,
.footer-contact p,
.spec-table td,
.vessel-specs span {
  overflow-wrap: anywhere;
}

.main-nav a {
  white-space: nowrap;
}

.main-nav a[aria-current="page"] {
  color: var(--teal);
}

.main-nav a[aria-current="page"]:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 20px;
  left: 15px;
  height: 2px;
  background: var(--copper);
}

.main-nav > a {
  position: relative;
}

.menu-toggle {
  position: relative;
  z-index: 80;
  flex: 0 0 44px;
  border-radius: 4px;
}

.menu-toggle span {
  transform-origin: center;
  transition: transform 200ms ease, opacity 160ms ease;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(3, 15, 27, 0.72);
  backdrop-filter: blur(8px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.menu-backdrop.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.metrics {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.split-list,
.fleet-detail-grid,
.policy-strip {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.vessel-card,
.detail-card {
  overflow: hidden;
  border: 1px solid rgba(19, 33, 42, 0.14);
  box-shadow: 0 14px 32px rgba(10, 25, 47, 0.1);
}

.spec-table {
  table-layout: fixed;
}

.spec-table th,
.spec-table td {
  vertical-align: top;
}

.hero-support {
  max-width: 650px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.65;
}

.particulars-note {
  margin-top: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--copper);
  font-size: 13px;
  line-height: 1.6;
}

.form-status {
  min-height: 1.6em;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #176b4d;
}

.form-status[data-state="error"] {
  color: #a3342d;
}

.inquiry-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 1040px) {
  .site-header {
    z-index: 70;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 70;
    width: min(420px, calc(100% - 28px));
    height: 100dvh;
    display: none;
    gap: 0;
    padding: 104px 24px 32px;
    flex-direction: column;
    align-items: stretch;
    color: #fff;
    background: #0a192f;
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.28);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .main-nav.is-open {
    display: flex;
    animation: mobile-nav-in 220ms ease both;
  }

  .main-nav > a,
  .nav-item > a {
    min-height: 58px;
    padding: 0 4px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 16px;
  }

  .main-nav a[aria-current="page"] {
    color: #f0c98c;
  }

  .main-nav a[aria-current="page"]:not(.nav-contact)::after {
    right: auto;
    bottom: 12px;
    left: 4px;
    width: 32px;
    background: #c5a059;
  }

  .nav-contact {
    min-height: 50px;
    justify-content: center;
    margin: 20px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    background: #0d6f73;
  }

  .menu-active .menu-toggle {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.56);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .service-mosaic,
  .insight-grid,
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }

  .team-card.lead {
    grid-column: 1 / -1;
  }

  .service-tile.large,
  .service-tile.image {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-logo {
    width: min(150px, calc(100vw - 88px));
  }

  .main-nav {
    width: 100%;
    padding: 90px 20px 28px;
  }

  .hero-content,
  .page-hero-content,
  .section,
  .feature-panel,
  .responsibility > div {
    width: calc(100% - 32px);
  }

  h1,
  .page-hero-content h1 {
    max-width: 100%;
    font-size: clamp(40px, 13vw, 54px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(32px, 9.5vw, 42px);
    line-height: 1.08;
  }

  h3 {
    font-size: clamp(22px, 6.5vw, 27px);
  }

  .hero-copy,
  .page-hero-content p,
  .fleet-copy p,
  .model-content p {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .contact-card,
  .inquiry-form,
  .contact-details,
  .detail-card-body,
  .vessel-body {
    width: 100%;
    padding: 22px;
  }

  .service-mosaic,
  .service-tile.large,
  .service-tile.image {
    grid-column: auto;
  }

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

  .vessel-specs div {
    min-width: 0;
    padding: 16px;
  }

  .spec-table {
    display: table;
    width: 100%;
    overflow: visible;
    font-size: 14px;
  }

  .spec-table th {
    width: 36%;
    padding-right: 12px;
  }

  .spec-table th,
  .spec-table td {
    word-break: break-word;
  }

  .detail-card {
    overflow-x: hidden;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand-logo {
    width: min(138px, calc(100vw - 82px));
  }

  .hero-content,
  .page-hero-content,
  .section,
  .feature-panel,
  .responsibility > div {
    width: calc(100% - 24px);
  }

  .vessel-specs {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .inquiry-form,
  .contact-details,
  .detail-card-body,
  .vessel-body {
    padding: 18px;
  }
}


@keyframes mobile-nav-in {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

.vessel-profile-section {
  display: grid;
  gap: 72px;
}

.vessel-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
}

.vessel-profile-media {
  position: sticky;
  top: 112px;
  min-width: 0;
}

.vessel-profile-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.image-caption {
  margin: 12px 0 0;
  color: #627084;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vessel-profile-content {
  min-width: 0;
}

.vessel-profile-content h2 {
  margin-bottom: 18px;
}

.vessel-lede {
  max-width: 62ch;
  color: #526174;
  font-size: 18px;
  line-height: 1.7;
}

.particulars-group {
  margin-top: 34px;
}

.particulars-group h3 {
  margin-bottom: 12px;
  color: #0a192f;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.particulars-list {
  margin: 0;
  border-top: 1px solid #d8e0e8;
}

.particulars-list > div {
  display: grid;
  grid-template-columns: minmax(128px, 0.78fr) minmax(0, 1.22fr);
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #d8e0e8;
}

.particulars-list dt,
.particulars-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.particulars-list dt {
  color: #68768a;
  font-size: 13px;
  font-weight: 700;
}

.particulars-list dd {
  color: #0a192f;
  font-size: 14px;
  font-weight: 700;
}

.vessel-download {
  margin-top: 32px;
}

.vessel-gallery-section {
  min-width: 0;
}

.section-head.compact {
  margin-bottom: 24px;
}

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

.vessel-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #0a192f;
}

.vessel-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 240ms ease;
}

.vessel-gallery figure:hover img {
  transform: scale(1.02);
}

.vessel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .vessel-profile {
    grid-template-columns: 1fr;
  }

  .vessel-profile-media {
    position: static;
  }

  .vessel-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .particulars-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .vessel-actions {
    flex-direction: column;
  }

  .vessel-actions .button,
  .vessel-download {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav.is-open {
    animation: none;
  }

  .vessel-gallery img {
    transition: none;
  }
}


.legal-shell a {
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* Final mobile-first production polish */
body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

h1,
h2,
h3,
.mega-panel strong,
.metric strong {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1.1;
}

h3 {
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.2;
}

p {
  line-height: 1.7;
}

.hero {
  min-height: 74svh;
}

.hero-content {
  padding-bottom: 58px;
}

.section {
  padding-block: clamp(64px, 8vw, 104px);
}

.intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.section-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--teal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.section-link::after {
  content: ">";
  margin-left: 10px;
}

.section-link-spaced {
  margin-top: 26px;
}

.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-summary-item {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-summary-item > span {
  display: block;
  margin-bottom: 36px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
}

.service-summary-item h3 {
  margin-bottom: 14px;
}

.vessel-card-compact img {
  height: auto;
  aspect-ratio: 16 / 9;
}

.vessel-card-compact .vessel-body {
  padding: clamp(24px, 3vw, 34px);
}

.vessel-card-compact .button.secondary {
  color: var(--teal);
  background: transparent;
  border-color: rgba(13, 111, 115, 0.5);
}

.responsibility {
  min-height: 500px;
}

.responsibility-link {
  width: fit-content;
  margin-top: 28px;
  color: #fff;
}

.contact-band {
  align-items: center;
  padding-block: clamp(56px, 7vw, 84px);
}

.contact-band > div > p {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-band-action {
  width: fit-content;
  justify-self: end;
}

.page-hero {
  min-height: 470px;
}

.page-hero-content h1 {
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.04;
}

@media (max-width: 1040px) {
  .site-header {
    position: absolute;
  }

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

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

  .fleet {
    gap: 34px;
  }

  .contact-band-action {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 24px;
  }

  .site-header {
    height: 72px;
    padding-inline: 14px;
    background: rgba(255, 255, 255, 0.98);
  }

  .hero {
    min-height: 68svh;
  }

  .hero-content {
    padding: 108px 0 38px;
  }

  .hero .kicker {
    margin-bottom: 12px;
  }

  h1,
  .page-hero-content h1 {
    font-size: clamp(38px, 11.5vw, 46px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(29px, 8.4vw, 37px);
    line-height: 1.12;
  }

  h3 {
    font-size: 22px;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-support {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .section {
    width: calc(100% - 32px);
    padding-block: 56px;
  }

  .intro-grid,
  .section-head,
  .fleet {
    gap: 24px;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .service-summary-grid {
    grid-template-columns: 1fr;
  }

  .service-summary-item > span {
    margin-bottom: 20px;
  }

  .vessel-card-compact img,
  .vessel-profile-media img {
    aspect-ratio: 4 / 3;
  }

  .vessel-actions {
    gap: 10px;
  }

  .vessel-actions .button,
  .hero-actions .button,
  .contact-band-action,
  .responsibility-link {
    width: 100%;
  }

  .responsibility {
    min-height: 470px;
  }

  .responsibility > div {
    width: calc(100% - 32px);
    padding-bottom: 46px;
  }

  .responsibility p {
    margin-top: 16px;
    font-size: 16px;
  }

  .contact-band {
    gap: 26px;
    padding: 52px 16px;
  }

  .page-hero {
    min-height: 390px;
    padding-top: 72px;
  }

  .page-hero-content {
    padding-bottom: 38px;
  }

  .page-hero-content p {
    margin-top: 16px;
    font-size: 16px;
  }

  .site-footer {
    gap: 30px;
    padding: 42px 16px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

  .footer-contact,
  .footer-contact p,
  .contact-card,
  .contact-card a {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .particulars-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .particulars-list dd {
    font-size: 13px;
  }

  .vessel-download {
    width: 100%;
  }
}
