@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&family=Newsreader:opsz,wght@6..72,600;6..72,700&display=swap');

:root {
  --white: #ffffff;
  --black: #000000;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --primary: #13537e;
  --primary-hover: #175f8d;
  --primary-border: #10486f;
  --primary-border-hover: #0d3f63;

  --navy-600: #17407f;
  --navy-700: #0f2e59;

  --text: #0b1220;
  --heading: #374151;
  --muted: #585f6b;
  --muted-2: #555f6d;

  --bg: var(--white);
  --bg-soft: var(--slate-50);
  --bg-hover: var(--slate-100);
  --bg-dark: #0b1a2b;

  --line: var(--slate-200);
  --line-strong: var(--slate-300);

  --cta-grad-a: #082449;
  --cta-grad-b: #0e3368;
  --cta-text: var(--slate-200);
  --cta-btn-text: #0b2a54;
  --cta-btn-hover: #06203a;
  --cta-btn-border: #dbe5ff;

  --nav-hover-bg: #edf6fb;
  --nav-hover-border: #cfe3ee;
  --nav-active-bg: #e6f1f7;
  --nav-active-border: #c3dceb;
  --nav-text: var(--slate-900);

  --btn-bg: var(--white);
  --btn-text: var(--heading);
  --btn-border: var(--line);
  --btn-bg-hover: var(--bg-hover);

  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 10px;

  --shadow-color: 2, 6, 23;
  --shadow-alpha-sm: 0.06;
  --shadow-alpha-md: 0.08;
  --shadow-alpha-lg: 0.10;
  --shadow-sm: 0 2px 6px rgba(var(--shadow-color), var(--shadow-alpha-sm));
  --shadow: 0 6px 18px rgba(var(--shadow-color), var(--shadow-alpha-md));
  --shadow-lg: 0 10px 28px rgba(var(--shadow-color), var(--shadow-alpha-lg));
  --shadow-card: var(--shadow);
  --shadow-nav: 0 10px 20px rgba(var(--shadow-color), var(--shadow-alpha-md));

  --maxw: 1200px;
  --header-h: 100px;

  --s-1: 0.5rem;
  --s-2: 0.75rem;
  --s-3: 1rem;
  --s-4: 1.25rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 2.75rem;
  --section-y: clamp(2rem, 3.6vw, 3.75rem);

  --font-sm: 0.95rem;
  --font-xs: 0.9rem;
  --icon: 20px;

  --nav-link-pad-y: 0.55rem;
  --nav-link-pad-x: 1rem;
  --nav-link-radius: 8px;

  --transition: 0.15s ease;
  --backdrop: saturate(160%) blur(8px);

  --success-color: #1f7a3e;
  --success-bg-color: #e8f5ed;
  --success-border-color: #c9e8d3;


  --error-text: #8b1a34;
  --error-border: #d9a2b0;
  --error-bg: #fef7f8;
  --error-strong: #a61f3d;

  --control-h: 46px;
  --control-pad-x: 0.9rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(#ffffff, #fafcff);
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-family: "Newsreader", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--primary);
}

h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

h3 {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
}

p {
  margin: 0;
  line-height: 1.5;
  color: var(--muted);
}

p+p {
  margin-top: 0.25rem;
}

ul,
ul li {
  color: var(--muted);
}

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color 0.15s ease;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--navy-600);
}

a:not([class*="btn"]):not(.nav__link):hover {
  text-decoration: underline;
}

img,
video {
  max-width: 100%;
  display: block;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

address {
  font-style: normal;
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--s-4);
}

.container>p:last-of-type {
  margin-bottom: 1.1rem;
}

.grid {
  display: grid;
  gap: var(--s-4);
}

.grid--3 {
  grid-template-columns: 1fr;
}

.stack>*+* {
  margin-top: var(--stack-gap, 0.7rem);
}

.stack--tight {
  --stack-gap: 0.4rem;
}

.mt-5 {
  margin-top: var(--s-5);
}

.section {
  padding-block: var(--section-y);
}

.section[id] {
  scroll-margin-top: var(--header-h);
}

.section__title {
  margin-bottom: 0.5rem;
}

.band {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.lead {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  color: var(--muted-2);
}

.link--plain {
  display: block;
  color: inherit;
}

.link--plain:hover,
.link--plain:focus {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  width: auto;
  line-height: 1.5;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-text);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover,
.btn:focus {
  background: var(--btn-bg-hover);
  color: var(--btn-text);
}

.btn:disabled,
.btn[disabled],
.btn[aria-disabled="true"] {
  background: var(--bg-hover);
  color: var(--slate-500);
  border-color: var(--line);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.75;
  pointer-events: none;
}

.btn--sm {
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
}

.btn--primary {
  background-color: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary-border);
  box-shadow: none;
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--primary-hover);
  border-color: var(--primary-border-hover);
  color: #ffffff;
}

.btn--ghost {
  background: #ffffff;
  color: var(--heading);
  border-color: var(--line);
}

.btn--ghost:hover,
.btn--ghost:focus {
  background: #f1f5f9;
  color: var(--heading);
}

.btn--ghost-invert {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost-invert:hover,
.btn--ghost-invert:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-4);
  box-shadow: var(--shadow);
}

.media {
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b1a2b;
  box-shadow: var(--shadow), 0 0 0 1px var(--line) inset;
  width: 100%;
}

.media--16x9 {
  aspect-ratio: 16 / 9;
}

.media--16x10 {
  aspect-ratio: 16 / 10;
}

.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover--top {
  object-position: top;
}

.ar-16x10 {
  aspect-ratio: 16 / 10;
}

.ar-1x1 {
  aspect-ratio: 1 / 1;
}

.ar-16x9 {
  aspect-ratio: 16 / 9;
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px var(--line) inset;
  background: #eef2f7;
}

.map--16x10 {
  aspect-ratio: 16 / 10;
}

.map--16x9 {
  aspect-ratio: 16 / 9;
}

.map--large {
  aspect-ratio: 16 / 10;
  min-height: 480px;
  max-height: 640px;
  height: 100%;
  width: 100%;
}

.map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.address {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
}

.address b,
.address strong {
  color: var(--heading);
}

.address a {
  color: var(--navy-700);
}

.address a:hover {
  color: var(--navy-600);
  text-decoration: underline;
}

.contact-page {
  display: grid;
  gap: var(--s-4);
}

.contact-page__map {
  margin: 0;
}

.contact-map {
  height: clamp(220px, 30vw, 300px);
}

.contact-map__link {
  margin: 0.55rem 0 0 0;
  font-size: var(--font-sm);
}

.contact-layout {
  display: grid;
  gap: var(--s-4);
  align-items: start;
}

.contact-block {
  min-width: 0;
}

.contact-block--office {
  --stack-gap: 0.5rem;
}

.contact-block__title {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  color: var(--heading);
}

.contact-office__name {
  color: var(--heading);
}

.contact-office__hours {
  color: var(--muted);
  margin: 0.65rem 0 0.9rem 0;
}

.contact-office__hours strong {
  color: var(--heading);
}

.contact-block--channels {
  display: grid;
  gap: var(--s-4);
}

.contact-channel {
  --stack-gap: 0.35rem;
  padding-top: 0;
}

.contact-channel__title {
  margin: 0;
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--heading);
}

.contact-kv {
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.contact-kv > div {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  gap: 0.2rem 0.45rem;
  align-items: baseline;
}

.contact-kv dt {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
}

.contact-kv dd {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
}

.contact-kv dd a {
  color: var(--navy-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.contact-kv dd a:hover {
  color: var(--navy-600);
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}

.site-header:has(.nav--open) {
  border-bottom-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-block: 0.75rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 85px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.menu-toggle__icon {
  width: 22px;
  height: 2px;
  background: #0f172a;
  position: relative;
  display: inline-block;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #0f172a;
}

.menu-toggle__icon::before {
  top: -6px;
}

.menu-toggle__icon::after {
  top: 6px;
}

.nav {
  display: block;
}

.nav__list {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav__link {
  position: relative;
  white-space: nowrap;
  padding: var(--nav-link-pad-y) var(--nav-link-pad-x);
  border-radius: var(--nav-link-radius);
  color: #0f172a;
  font-weight: 500;
  background: transparent;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.nav__link:hover {
  background: var(--nav-hover-bg);
  border-color: var(--nav-hover-border);
  color: #0b1220;
}

.nav__link:active {
  background: #e6f1f7;
  border-color: #c3dceb;
}

.nav__link[aria-current="page"] {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 1px 0 var(--nav-active-shadow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

a.nav__link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: none;
}

.nav__link--special {
  background: #ffffff;
  border-color: var(--line-strong);
  box-shadow: none;
}

.nav__link--special:hover,
.nav__link--special:active {
  background: var(--nav-hover-bg);
  border-color: var(--nav-hover-border);
  box-shadow: none;
  color: #0b1220;
}

.nav__link--special[aria-current="page"] {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: none;
}

a.nav__link--special:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 0;
}

.hero__stage {
  position: relative;
  z-index: 0;
  width: 100%;
  background: #0a1a2a;
  overflow: hidden;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: clamp(420px, 58vw, 680px);
  object-fit: cover;
  display: block;
}

.hero__video {
  display: block;
}

.hero__image {
  display: block;
}

.hero__motion {
  position: absolute;
  inset: 0;
  visibility: hidden;
}

.hero.is-playing .hero__motion {
  visibility: visible;
  z-index: 1;
}

.hero__shade {
  z-index: 2;
}

[data-hero-toggle][hidden] {
  display: none;
}

.hero__media-toggle {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hero__media-toggle:hover {
  background: rgba(0, 0, 0, 0.2);
}

.hero__media-toggle svg {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.85));
}

.hero__media-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero__media-toggle[data-playing="true"] .hero__play-icon,
.hero__media-toggle[data-playing="false"] .hero__pause-icon {
  display: none;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero__copy {
  pointer-events: auto;
}

.hero__copy {
  max-width: 760px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
  padding-block: clamp(1rem, 5vw, 3rem);
}

.hero__copy .eyebrow,
.hero__copy h1,
.hero__copy p {
  color: #ffffff;
}

.eyebrow {
  color: var(--navy-600);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.hero__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.2rem 0 0.6rem;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: underline;
}

.breadcrumbs .sep {
  opacity: 0.6;
}

.page-header {
  padding-block: calc(var(--section-y) * 0.65);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.page-lead {
  color: var(--muted-2);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.vessel-hero {
  padding-top: var(--section-y);
  padding-bottom: var(--s-2);
}

.features {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-4);
  grid-template-columns: repeat(2, 1fr);
}

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  display: grid;
  gap: 0.2rem;
  align-content: center;
  box-shadow: var(--shadow), 0 0 0 1px var(--line) inset;
}

.feature b {
  display: block;
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.feature span {
  color: var(--muted);
  line-height: 1.35;
}

.about-text p {
  color: var(--muted-2);
}

.combo {
  --col-left: 1fr;
  --col-right: 1fr;
  --combo-gap: var(--s-4);
  display: grid;
  gap: var(--combo-gap);
  align-items: start;
  grid-template-columns: 1fr;
}

.combo__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.combo__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
}

.combo__media img,
.combo__media video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.actions--end {
  margin-top: auto;
}

.services {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}

.service {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  height: 100%;
}

.service .media {
  margin-bottom: 0.25rem;
}

.service__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.cta {
  background: linear-gradient(90deg, var(--cta-grad-a), var(--cta-grad-b));
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}

.cta h2 {
  color: #ffffff;
  margin: 0 0 0.15rem 0;
}

.cta p {
  color: #e2e8f0;
  margin: 0;
}

.cta .btn {
  background: #ffffff;
  color: #0b2a54;
  border: 1px solid #dbe5ff;
  box-shadow: none;
}

.cta .btn:hover,
.cta .btn:focus {
  background: #f3f8ff;
  color: #06203a;
}

.fleet-intro {
  width: 100%;
}

.fleet-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: var(--s-6);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}

.view-table .fleet-toolbar {
  margin-bottom: calc(var(--s-6) + 0.5rem);
}

.segments {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
}

.icon-btn {
  border: none;
  background: transparent;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: var(--icon);
  height: var(--icon);
  display: block;
  stroke: currentColor;
}

.segments [aria-pressed="true"] {
  background: var(--primary);
  color: #ffffff;
}

.fleet-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}

.cards-wrap .section__title {
  margin-bottom: var(--s-4);
}

.cards-wrap section+section {
  margin-top: var(--s-6);
}

.vessel-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  height: 100%;
}

.vessel-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.vessel-meta-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.vessel-meta-line span {
  white-space: nowrap;
}

.vessel-meta-line span strong {
  color: var(--heading);
  font-weight: 600;
  margin-right: 0.25rem;
}

.vessel-meta-line span+span::before {
  content: "•";
  margin: 0 0.5rem;
  color: #94a3b8;
}

.vessel-actions {
  margin-top: auto;
}

.table-wrap {
  display: none;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}

thead th {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--table-head-bg);
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

thead th[aria-sort="ascending"]::after,
thead th[aria-sort="descending"]::after,
thead th[aria-sort="none"]::after {
  content: "";
  border: 5px solid transparent;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

thead th[aria-sort="ascending"]::after {
  border-bottom-color: #64748b;
  margin-top: -4px;
}

thead th[aria-sort="descending"]::after {
  border-top-color: #64748b;
  margin-top: 4px;
}

thead th[aria-sort="none"]::after {
  display: none;
}

tbody td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  color: var(--muted);
}

tbody td:first-child a {
  font-weight: 700;
  text-decoration: none;
}

.view-grid .cards-wrap {
  display: block;
}

.view-grid .table-wrap {
  display: none;
}

.view-table .cards-wrap {
  display: none;
}

.view-table .table-wrap {
  display: block;
}

.particulars-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}

.particulars-group h3 {
  margin: 0.2rem 0 0.3rem;
  color: var(--heading);
}

.particulars-group p {
  margin: 0.25rem 0;
  color: var(--muted);
  line-height: 1.5;
}

.particulars-group p strong {
  color: var(--heading);
  font-weight: 700;
}

.logo-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 92px;
  min-width: 0;
}

.logo-item img {
  width: 100%;
  max-width: clamp(110px, 20vw, 150px);
  max-height: 56px;
  height: auto;
  object-fit: contain;
}

footer {
  border-top: 1px solid var(--line);
  padding-block: var(--s-5);
  background: #ffffff;
}

.footer__grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
  align-items: start;
}

.footer__links {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr 1fr;
}

.footer__links h3 {
  color: var(--heading);
  margin: 0 0 0.35rem 0;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin: 0.22rem 0;
}

.credit {
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.timeline-intro {
  margin-bottom: var(--s-3);
}

.timeline {
  position: relative;
  list-style: none;
  margin: var(--s-4) 0 0;
  padding: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline__item {
  position: relative;
  padding-left: 3.6rem;
  margin-bottom: var(--s-4);
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__item:first-child::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0;
  bottom: calc(100% - 1.7rem);
  width: 4px;
  background: var(--bg);
  transform: translateX(-50%);
}

.timeline__item:last-child::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 1.7rem;
  bottom: 0;
  width: 4px;
  background: var(--bg);
  transform: translateX(-50%);
}

.timeline__marker {
  position: absolute;
  left: 1.35rem;
  top: 1.7rem;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(19, 83, 126, 0.18);
  z-index: 1;
}

.timeline__card {
  background: var(--bg-soft);
  border-radius: var(--radius, 12px);
  border: 1px solid var(--line);
  padding: var(--s-3);
}

.timeline__year {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.timeline__title {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  color: var(--heading);
}

.timeline__body {
  margin: 0;
  font-size: var(--font-sm);
  color: var(--muted-2);
}

.timeline__content {
  display: grid;
  gap: var(--s-2);
  align-items: flex-start;
}

.timeline__media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.timeline__media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.timeline__media figcaption {
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.resume {
  padding-block: var(--section-y);
}

.resume .card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-5);
  box-shadow: var(--shadow);
}

.resume .grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.resume .col-12 {
  grid-column: span 12;
}

.resume .col-6 {
  grid-column: span 6;
}

.resume .grid>.col-12,
.resume .grid>.col-6 {
  min-width: 0;
}

.resume label {
  display: block;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.resume label small {
  font-weight: 400;
  font-size: 0.9em;
  color: var(--muted);
}

.resume input,
.resume select,
.resume textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  outline: none;
}

.resume textarea {
  min-height: 240px;
  resize: vertical;
}

.resume input:focus,
.resume select:focus,
.resume textarea:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.resume .hint {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.35rem;
}

.resume .section__title {
  margin: 0.25rem 0 0.25rem;
}

.error {
  display: block;
  width: 100%;
  margin-top: var(--s-1);
  padding: 0.6rem 0.85rem;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--error-text);
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  border-radius: var(--radius-sm);
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--error-strong);
}

.is-error {
  border-color: var(--error-strong) !important;
  background-color: color-mix(in srgb, var(--error-bg) 18%, transparent);
}

.is-error:focus {
  outline: none;
  border-color: var(--error-strong);
  background-color: color-mix(in srgb, var(--error-bg) 24%, transparent);
}

[data-error-target].is-error {
  border: 1px solid var(--error-border);
  border-radius: var(--radius);
  background-color: color-mix(in srgb, var(--error-bg) 50%, transparent);
  padding: 0.75rem;
}

[data-error-target].is-error label,
[data-error-target].is-error .dz-title {
  color: var(--error-text);
}

#notification-container {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.notification-message {
  padding: var(--s-4);
  font-size: var(--font-sm);
  border-radius: var(--radius-sm);
  text-align: center;
  opacity: 0;
  display: flex;
  align-items: center;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-bottom: 10px;
}

.notification-message--visible {
  opacity: 1;
  transform: translateY(0);
}

.notification-success {
  color: var(--success-color);
  background-color: var(--success-bg-color);
  border: 1px solid var(--success-border-color);
}

.notification-error {
  color: var(--error-text);
  background-color: var(--error-bg);
  border: 1px solid var(--error-border);
}

.notification-success::before,
.notification-error::before {
  margin-right: 8px;
}

.notification-success::before {
  content: "✓";
}

.notification-error::before {
  content: "✖";
}

:root {
  --control-h: 46px;
  --control-pad-x: 0.9rem;
}

.resume input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.resume select {
  height: var(--control-h);
  padding: 0 var(--control-pad-x);
  border-radius: var(--radius);
  line-height: 1;
}

.resume textarea {
  padding: 0.75rem var(--control-pad-x);
  border-radius: var(--radius);
}

.resume select,
.resume input[type="date"],
.resume input[type="time"],
.resume input[type="datetime-local"] {
  padding-right: calc(var(--control-pad-x) + 1.2rem);
  vertical-align: middle;
}

.segmented {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
  max-width: 100%;
  vertical-align: middle;
}

.segmented input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.segmented label {
  margin: 0;
  padding: 0.55rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 100;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.segmented input:checked+label {
  background: var(--primary);
  color: #fff;
}

.segmented input:focus-visible+label {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.segmented label:first-of-type {
  border-top-left-radius: var(--radius-sm);
  border-bottom-left-radius: var(--radius-sm);
}

.segmented label:last-of-type {
  border-top-right-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
}

.dropzone {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  min-height: 140px;
  padding: var(--s-4);
  text-align: center;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.15s, background 0.15s;
}

.dropzone.drag {
  border-color: var(--primary);
  background: #edf6fb;
}

.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dz-title {
  font-weight: 600;
  color: var(--heading);
}

.dz-sub {
  color: var(--muted);
}

.file-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  width: min(680px, 100%);
}

.file-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.consent-wrap {
  display: grid;
  grid-template-columns: 1.25rem auto;
  column-gap: 0.75rem;
  align-items: start;
  margin-top: var(--s-4);
}

.consent-wrap input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}

.consent-wrap label {
  font-weight: 400;
  color: var(--muted-2);
  line-height: 1.5;
  margin: 0;
}

.consent-wrap a {
  color: var(--primary);
  text-decoration: none;
}

.consent-wrap a:hover {
  text-decoration: underline;
}

.data-note {
  color: var(--muted-2);
  font-size: 1rem;
  margin-top: 0.75rem;
}

.hidden {
  display: none;
}

@media (min-width: 1020px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }

  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .particulars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1000px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-nav);
    z-index: 60;
  }

  .nav--open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    gap: 0.35rem;
    padding: var(--s-2) var(--s-4);
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 0.5rem 0.85rem;
    line-height: 1.35;
    border: 1px solid transparent;
  }
}

@media (min-width: 860px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: var(--s-5);
  }
}

@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer__links {
    justify-self: end;
    width: 100%;
    max-width: 520px;
  }

  .timeline__content {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: var(--s-3);
  }
}

@media (min-width: 760px) {
  .combo {
    grid-template-columns: var(--col-left) var(--col-right);
  }

  .combo--30-70 {
    --col-left: 3fr;
    --col-right: 7fr;
  }

  .combo--40-60 {
    --col-left: 4fr;
    --col-right: 6fr;
  }

  .combo--50-50 {
    --col-left: 1fr;
    --col-right: 1fr;
  }

  .combo--60-40 {
    --col-left: 6fr;
    --col-right: 4fr;
  }

  .combo--70-30 {
    --col-left: 7fr;
    --col-right: 3fr;
  }

  .combo--80-20 {
    --col-left: 8fr;
    --col-right: 2fr;
  }

  .combo--20-80 {
    --col-left: 2fr;
    --col-right: 8fr;
  }

  .combo--flip {
    grid-template-columns: var(--col-right) var(--col-left);
  }
}

@media (min-width: 680px) and (max-width: 979px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 700px) and (max-width: 1019px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 720px) and (max-width: 1019px) {
  .particulars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .resume .col-6 {
    grid-column: span 12;
  }
}

@media (max-width: 759px) {
  .combo {
    grid-template-columns: 1fr;
  }

  .combo__media--first {
    order: -1;
  }

  .combo__media--last {
    order: 1;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 82px;
  }

  .container {
    padding-inline: calc(var(--s-4) + 0.75rem);
  }

  .map--large {
    min-height: 320px;
    max-height: 440px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.08);
    z-index: 60;
  }

  .nav--open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    gap: 0.35rem;
    padding: var(--s-2) var(--s-4);
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 0.5rem 0.85rem;
    line-height: 1.35;
    border: 1px solid transparent;
  }

  .hero__overlay {
    position: static;
    display: block;
    background: transparent;
  }

  .hero__copy {
    max-width: none;
    text-shadow: none;
    padding-block: var(--s-4);
  }

  .hero__copy .eyebrow,
  .hero__copy h1,
  .hero__copy p {
    color: var(--heading);
  }

  .hero__actions .btn--ghost-invert {
    border-color: var(--line);
    color: var(--heading);
    background: #ffffff;
  }

  .hero__actions .btn--ghost-invert:hover,
  .hero__actions .btn--ghost-invert:focus {
    background: #f1f5f9;
    color: var(--heading);
  }

  .logo img {
    height: 68px;
  }

  .hero__video {
    display: none !important;
  }

  .hero__image {
    display: block !important;
  }

  .hero__media img,
  .hero__media video {
    height: clamp(260px, 56vw, 420px);
  }
}

@media (max-width: 640px) {
  .timeline__item {
    padding-left: 3rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 74px;
  }

  .container {
    padding-inline: calc(var(--s-4) + 1rem);
  }

  .hero__media img,
  .hero__media video {
    height: clamp(240px, 56vw, 380px);
  }

  .feature {
    padding: 0.9rem;
  }

  .feature b {
    font-size: 1.35rem;
  }

  .feature span {
    font-size: 0.95rem;
  }

  .logo img {
    height: 52px;
  }

  .nav__list {
    gap: 0.3rem;
    padding: var(--s-2) var(--s-4);
  }

  .nav__link {
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__motion {
    display: none;
  }
}

