:root {
  --navy: #061f3d;
  --navy-2: #0a2d55;
  --blue: #0b4c86;
  --gold: #c69328;
  --ink: #071b36;
  --muted: #5f6f82;
  --line: rgba(7, 27, 54, 0.16);
  --paper: #f7f9fb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 27, 54, 0.16);
  --font-title: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-ui: "Montserrat", Arial, Helvetica, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 18px clamp(20px, 4.5vw, 76px) 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(7, 27, 54, 0.06);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.at-top {
  padding-top: 28px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header:not(.at-top) {
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  min-width: 0;
}

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  transition:
    width 180ms ease,
    height 180ms ease;
}

.site-header.at-top .brand-mark {
  width: 100px;
  height: 100px;
}

.brand-text {
  display: grid;
  gap: 1px;
  color: var(--navy);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 1.85vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text small {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: clamp(0.7rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.09em;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 44px);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-menu a {
  position: relative;
  padding: 10px 0;
}

.site-menu a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--navy);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: 180ms ease;
}

.site-menu a:hover::after,
.site-menu a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.primary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  min-height: 46px;
  border-radius: 3px;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.header-end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  color: var(--navy);
  opacity: 0.45;
  transition: opacity 180ms ease;
}

.lang-switch a:hover {
  opacity: 0.8;
}

.lang-switch a.lang-active {
  opacity: 1;
}

.lang-switch a + a {
  border-left: none;
}

.lang-switch a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

:root[lang="en"] .lang-switch a.lang-active::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0%2C0 L60%2C30 M60%2C0 L0%2C30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0%2C0 L60%2C30 M60%2C0 L0%2C30' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30%2C0 V30 M0%2C15 H60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30%2C0 V30 M0%2C15 H60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}

:root[lang="en"] .lang-switch a:not(.lang-active)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='1' height='2' fill='%23002395'/%3E%3Crect x='1' width='1' height='2' fill='%23EFEFEF'/%3E%3Crect x='2' width='1' height='2' fill='%23ED2939'/%3E%3C/svg%3E");
}

:root[lang="fr"] .lang-switch a.lang-active::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='1' height='2' fill='%23002395'/%3E%3Crect x='1' width='1' height='2' fill='%23EFEFEF'/%3E%3Crect x='2' width='1' height='2' fill='%23ED2939'/%3E%3C/svg%3E");
}

:root[lang="fr"] .lang-switch a:not(.lang-active)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0%2C0 L60%2C30 M60%2C0 L0%2C30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0%2C0 L60%2C30 M60%2C0 L0%2C30' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30%2C0 V30 M0%2C15 H60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30%2C0 V30 M0%2C15 H60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}

.lang-switch--menu {
  display: none;
}

.header-cta {
  padding: 0 24px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(6, 31, 61, 0.2);
}

.primary-button {
  padding: 0 24px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(6, 31, 61, 0.18);
}

.outline-button {
  min-height: 42px;
  padding: 0 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.header-cta svg,
.primary-button svg,
.outline-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 24%,
      rgba(255, 255, 255, 0.38) 39%,
      rgba(255, 255, 255, 0) 54%
    ),
    url("assets/BG Bateau.png");
  background-position: left center;
  background-size: cover;
}

.hero-content {
  width: min(500px, calc(100% - 40px));
  padding-top: 202px;
  margin-left: clamp(20px, 4.5vw, 76px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1,
.about h2,
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero h1 {
  max-width: 500px;
  font-size: clamp(2.45rem, 3.25vw, 4rem);
}

.hero h1 span {
  color: var(--gold);
}

.gold-line {
  width: 54px;
  height: 3px;
  margin: 24px 0 18px;
  background: var(--gold);
}

.hero-copy {
  max-width: 485px;
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
}

.services {
  padding: 28px 0;
  background: linear-gradient(180deg, #fff, var(--paper));
}

.services .section-heading.compact {
  padding: 0 clamp(20px, 4.5vw, 76px);
}

.section-heading.compact {
  display: block;
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading.compact .eyebrow {
  display: none;
}

.section-heading h2 {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-heading h2::after {
  display: block;
  width: 42px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--gold);
  content: "";
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 76px);
}

.service-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 190px;
  padding: 8px clamp(12px, 1.5vw, 28px) 10px;
  text-align: center;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-child(n+4) {
  border-top: 1px solid var(--line);
}

.service-card:hover,
.service-card:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(7, 27, 54, 0.08);
  outline: 0;
  transform: translateY(-2px);
}

.service-card h3 {
  max-width: 210px;
  min-height: 48px;
  margin: 12px 0 8px;
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  line-height: 1.2;
}

.service-card p {
  max-width: 230px;
  min-height: 66px;
  margin: 0 0 14px;
  color: #1f2e42;
  font-size: 0.88rem;
}

.service-action {
  color: var(--blue);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.metric-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: var(--navy);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.ship-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 6v12M22 18h20M16 28l16-8 16 8 6 16H10l6-16Z'/%3E%3Cpath d='M6 50c6 0 6-4 12-4s6 4 12 4 6-4 12-4 6 4 16 4'/%3E%3C/g%3E%3C/svg%3E");
}

.shield-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6 52 14v17c0 13-8 22-20 27C20 53 12 44 12 31V14l20-8Z' fill='none' stroke='%23000' stroke-width='3'/%3E%3Cpath d='m23 32 6 6 13-15' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cargo-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='3' stroke-linejoin='round'%3E%3Cpath d='M10 22h44v30H10zM18 22v30M28 22v30M38 22v30M46 22v30M25 22l7-10 7 10'/%3E%3Ccircle cx='32' cy='10' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.audit-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 8h26v48H19zM26 8h12l2 6H24l2-6ZM27 26l3 3 6-7M27 40l3 3 6-7M42 27h4M42 41h4'/%3E%3C/g%3E%3C/svg%3E");
}

.legal-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 8v44M18 52h28M24 14h16M14 20l-9 18h18l-9-18ZM50 20l-9 18h18l-9-18ZM14 20h36'/%3E%3C/g%3E%3C/svg%3E");
}

/* About */
.about {
  padding: clamp(44px, 6vw, 72px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 50%, rgba(9, 72, 120, 0.75), rgba(6, 31, 61, 0) 40%),
    linear-gradient(120deg, var(--navy), #003b6a);
}

.about-top {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 76px);
}

.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-photo-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(100%);
}

.about-name {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  margin: 14px 0 3px;
}

.about-role {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.about-copy h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.about-copy p:not(.eyebrow) {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.93);
}

.about-stats.sp-stats {
  background:
    radial-gradient(circle at 80% 50%, rgba(9, 72, 120, 0.75), rgba(6, 31, 61, 0) 40%),
    linear-gradient(120deg, var(--navy), #003b6a);
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  padding: clamp(20px, 4vw, 48px) clamp(20px, 4.5vw, 76px);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: clamp(36px, 5vw, 60px) auto 0;
  padding: 0 clamp(20px, 4.5vw, 76px);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-carousel {
  max-width: 1200px;
  margin: clamp(44px, 6vw, 72px) auto 0;
  padding: 0 clamp(20px, 4.5vw, 76px);
}

.experience-carousel {
  position: relative;
  min-width: 0;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

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

.carousel-slide {
  position: relative;
  min-height: clamp(160px, 18vw, 240px);
  margin: 0;
  overflow: hidden;
  opacity: 0.72;
  transform: scale(0.96);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: clamp(160px, 18vw, 240px);
  object-fit: cover;
}

.carousel-slide figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(6, 31, 61, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 0 3px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-button.prev {
  left: -20px;
  padding-right: 2px;
}

.carousel-button.next {
  right: -20px;
  padding-left: 2px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--gold);
}

.approach {
  background: var(--white);
  padding: clamp(52px, 7vw, 88px) 0;
}
.approach-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 76px);
}

.approach article {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 100px;
  padding: 12px clamp(16px, 2vw, 30px);
  border-right: 1px solid var(--line);
}

.approach article:last-child {
  border-right: 0;
}

.metric-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}

.globe-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='3'%3E%3Ccircle cx='32' cy='32' r='25'/%3E%3Cpath d='M7 32h50M32 7c8 8 12 16 12 25S40 49 32 57M32 7C24 15 20 23 20 32s4 17 12 25M12 20h40M12 44h40'/%3E%3C/g%3E%3C/svg%3E");
}

.person-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='20' r='10'/%3E%3Cpath d='M14 56c2-13 9-20 18-20s16 7 18 20M22 50v6M42 50v6'/%3E%3C/g%3E%3C/svg%3E");
}

.award-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m32 6 6 6 9 1 1 9 6 6-6 6-1 9-9 1-6 6-6-6-9-1-1-9-6-6 6-6 1-9 9-1 6-6Z'/%3E%3Cpath d='m24 55-4 7 12-4 12 4-4-7M24 29l5 5 11-12'/%3E%3C/g%3E%3C/svg%3E");
}

.clock-icon {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='25'/%3E%3Cpath d='M32 16v18h13M10 32H5M59 32h-5M32 10V5M32 59v-5'/%3E%3C/g%3E%3C/svg%3E");
}

.approach h3 {
  margin: 0 0 3px;
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 0.92rem;
}

.approach p {
  margin: 0;
  color: #2b3d54;
  font-size: 0.86rem;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
  }

  .site-menu {
    position: fixed;
    top: 92px;
    right: 20px;
    display: none;
    width: min(360px, calc(100% - 40px));
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-menu.open {
    display: grid;
    justify-content: stretch;
    gap: 6px;
  }

  .lang-switch--menu {
    display: flex;
    justify-content: center;
    padding-top: 12px;
    margin-top: 6px;
    border-top: 1px solid var(--line);
  }

  .lang-switch--menu a {
    padding: 6px 12px;
    font-size: 0.82rem;
  }

  .menu-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 999px;
  }


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

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

  .approach article:nth-child(2) {
    border-right: 0;
  }

  .approach article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

}

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

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(10px, 3vw, 16px);
    padding: 18px 20px 12px;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(7, 27, 54, 0.08);
  }

  .site-header.at-top {
    background: transparent;
    box-shadow: none;
  }

  .site-header:not(.at-top) {
    backdrop-filter: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: clamp(0.86rem, 3.6vw, 1rem);
    white-space: nowrap;
  }

  .brand-text small {
    font-size: clamp(0.5rem, 2.2vw, 0.6rem);
    letter-spacing: 0.05em;
  }

  .header-end {
    display: none;
  }

  .menu-button {
    grid-column: 2;
    grid-row: 1;
  }

  .site-menu {
    top: 78px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-bg {
    background-image:
      radial-gradient(
        ellipse 110% 78% at 8% 36%,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.9) 38%,
        rgba(255, 255, 255, 0.44) 57%,
        rgba(255, 255, 255, 0) 72%
      ),
      url("assets/BG mobile Bateau.png");
    background-position: center, bottom;
    background-size:
      auto,
      125% auto;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-top: 120px;
    margin-left: 18px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(1.8rem, 7.6vw, 2.42rem);
  }

  .hero-copy {
    max-width: 305px;
    font-size: 0.92rem;
  }

  .hero .primary-button {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.66rem;
  }

  .services {
    padding-top: 34px;
  }

  .section-heading.compact {
    display: block;
    margin-bottom: 22px;
    text-align: center;
  }

  .section-heading h2 {
    font-size: clamp(1.15rem, 6vw, 1.55rem);
    line-height: 1.12;
  }

  .service-grid {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }

  .service-card,
  .service-card:nth-child(3) {
    grid-template-columns: 52px 1fr auto;
    column-gap: 14px;
    align-items: center;
    justify-items: start;
    min-height: 92px;
    padding: 18px 0;
    text-align: left;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card p,
  .service-action {
    display: none;
  }

  .service-card h3 {
    min-height: 0;
    margin: 0;
    font-size: 0.95rem;
  }

  .service-card::after {
    color: var(--navy);
    content: "›";
    font-size: 1.8rem;
  }

  .about {
    padding: 28px 0;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    width: 160px;
    height: 160px;
  }


  .carousel-track {
    grid-auto-columns: 100%;
  }

  .carousel-slide {
    display: none;
  }

  .carousel-slide.active {
    display: block;
  }

  .carousel-button.prev {
    left: 10px;
  }

  .carousel-button.next {
    right: 10px;
  }

  .approach-inner {
    grid-template-columns: 1fr;
    padding: 12px 18px;
  }

  .approach article,
  .approach article:nth-child(2),
  .approach article:nth-child(n + 3) {
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-notice {
    right: 16px;
    bottom: 82px;
    left: 16px;
    width: auto;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .brand-text small {
    font-size: 0.5rem;
  }

  .hero .primary-button {
    width: fit-content;
  }

}

/* ── GEO SECTION ── */
.geo-section {
  background: var(--navy);
  padding: clamp(52px, 7vw, 88px) 0;
  color: var(--white);
}

.geo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 76px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.geo-section .eyebrow {
  color: var(--gold);
}

.geo-title {
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.25;
}

.geo-section > .geo-inner > .geo-content > p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 24px;
}

.geo-ports {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
}

.geo-ports li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.geo-ports a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.geo-ports a:hover { color: var(--gold); }
.geo-port--hq a { color: var(--gold); }
.geo-port--secondary a { color: rgba(255, 255, 255, 0.38); }
.geo-port--secondary a:hover { color: rgba(255, 255, 255, 0.65); }

.geo-port-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.geo-port-dot.hq {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 8px rgba(198, 147, 40, 0.65);
}

.geo-port-dot.secondary {
  background: rgba(255, 255, 255, 0.35);
}

.geo-port--hq {
  color: var(--gold) !important;
}

.geo-hq-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--gold);
  color: var(--navy);
  padding: 1px 5px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 2px;
}

.geo-port--secondary {
  color: rgba(255, 255, 255, 0.38) !important;
}

.geo-port--worldwide {
  grid-column: span 2;
  color: rgba(255, 255, 255, 0.45) !important;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.geo-port--worldwide a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.geo-port--worldwide a:hover { color: var(--gold); }

.geo-map-wrap {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #040f1e;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.geo-map-container {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.geo-map-container.geo-map--tall {
  min-height: 480px;
}

@media (max-width: 860px) {
  .geo-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .geo-map-wrap {
    aspect-ratio: 4 / 3;
  }
}

/* ── SITE-WIDE CTA ── */
.site-cta {
  background:
    radial-gradient(circle at 80% 50%, rgba(9, 72, 120, 0.75), rgba(6, 31, 61, 0) 40%),
    linear-gradient(120deg, var(--navy), #003b6a);
  padding: clamp(52px, 7vw, 88px) 0;
}
.site-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 76px);
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-cta-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.site-cta-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-cta-text {
  flex: 1;
}
.site-cta-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
  letter-spacing: 0;
}
.site-cta-text p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 560px;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .site-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .site-cta-icon {
    display: none;
  }
  .site-cta-text h2 {
    font-size: clamp(1.5rem, 5.5vw, 1.8rem);
  }
  .site-cta-inner .outline-button {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  padding: 24px 0;
}

.footer-inner {
  padding: 0 clamp(20px, 4.5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner .brand-text span { color: var(--white); }
.footer-inner .brand-text small { color: rgba(255, 255, 255, 0.45); }

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 180ms ease;
}

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

.footer-legal {
  width: 100%;
  margin: 0;
  padding-top: 16px;
  padding-right: calc(104px - clamp(20px, 4.5vw, 76px));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 180ms ease;
}

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