
/* ---------- Striped SVG placeholders ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background: var(--navy-700);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  isolation: isolate;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 14px,
    rgba(255, 255, 255, 0.035) 14px 15px
  );
  z-index: 0;
}
.ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(36, 58, 86, 0.5), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(16, 35, 57, 0.6), transparent 60%);
  z-index: 0;
}
.ph__label {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-400);
  padding: 12px 14px;
  background: rgba(6, 15, 31, 0.6);
  backdrop-filter: blur(6px);
  border-top-right-radius: 2px;
}
.ph__label::before {
  content: '[ ';
  color: var(--steel-500);
}
.ph__label::after {
  content: ' ]';
  color: var(--steel-500);
}
.ph--ivory {
  background: var(--steel-100);
  border-color: var(--line-dark);
}
.ph--ivory::before {
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 14px,
    rgba(10, 26, 47, 0.06) 14px 15px
  );
}
.ph--ivory::after {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(217, 223, 230, 0.6), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(184, 194, 206, 0.4), transparent 60%);
}
.ph--ivory .ph__label {
  color: var(--steel-500);
  background: rgba(255, 255, 255, 0.7);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-1000);
  border-top: 1px solid var(--line);
  padding: var(--space-3xl) 0 var(--space-lg);
  margin-top: 0;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .footer__top { display: grid; grid-template-columns: auto auto; gap: 40px; }
  .footer__bottom-links{
    order: -1;
  }
}
@media (max-width: 540px) {
  .footer__brand{grid-column: -1 / 1;}
  .footer__col:last-child:nth-child(even){
    grid-column: 1 / -1;
  }
   .footer__col:last-child:nth-child(even) br{
    display: none;
   }
}
.footer__brand h3 {
  font-weight: 200;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 18ch;
}
.footer__brand p {
  color: var(--steel-400);
  font-size: 13px;
  max-width: 36ch;
  line-height: 1.6;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  color: var(--steel-200);
  font-size: 13.5px;
  transition: color 200ms;
}
.footer__col a:hover { color: var(--white); }
.footer__col p {
  font-size: 13.5px;
  color: var(--steel-200);
  line-height: 1.6;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__bottom{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-500);
  white-space: nowrap;
}
.footer__bottom-links {
  display: flex; gap: 28px;
  list-style-type: none;
}
.footer__bottom a {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-400);
  transition: color 200ms;
  white-space: nowrap;
}
.footer__bottom a:hover { color: var(--white); }
.footer__dev {
  display: inline-flex;
  align-items: center;
  transition: opacity 400ms var(--ease-out);
  flex-shrink: 0;
  gap: .6em;
}
.footer__dev img { display: block; }

/* ---------- Marquee ticker ---------- */
.ticker {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerScroll 60s linear infinite;
  gap: 0;
  padding-left: 64px;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-300);
  white-space: nowrap;
}
.ticker__sep {
  display: inline-flex;
  align-self: center;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(134, 187, 99, 0.5);
  flex-shrink: 0;
  margin: 0 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker__item strong {
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

/* ---------- Stat counters ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.stats__cell {
  padding: var(--space-xl) var(--gutter);
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.stats__cell:last-child { border-right: 0; }
.stats__cell .meta {
  display: block;
  font-size: clamp(9px, 1.5vw, 11px);
}
.stats__num {
  font-weight: 200;
  font-size: clamp(36px, 4.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: nowrap;
}
.stats__num .unit {
  font-size: clamp(11px, 1.6vw, 13px);
  font-weight: 400;
  color: var(--steel-400);
  margin-left: 2px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.stats__desc {
  font-size: clamp(12px, 2vw, 15px);
  color: var(--steel-300);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stats__cell { padding: var(--space-lg) var(--gutter); gap: var(--space-xs); }
  .stats__cell:nth-child(2) { border-right: 0; }
  .stats__cell:nth-child(1), .stats__cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .stats { grid-template-columns: 1fr; }
  .stats__cell { padding: var(--space-md) var(--gutter); border-right: 0; border-bottom: 1px solid var(--line); gap: var(--space-2xs); }
  .stats__cell:last-child { border-bottom: 0; }
}






/* Mapbox map markers — shared by home and fleet maps */
.map-pin {
  position: relative;
  width: 10px;
  height: 10px;
  cursor: pointer;
}
.map-pin__dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px 2px rgba(134, 187, 99, 0.55);
}
.map-pin__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: pinPulse 2s ease-out infinite;
}

/* Mapbox map UI chrome — shared by home and fleet maps */
.geo__controls {
  position: absolute;
  bottom: 50px; right: 24px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.geo__ctrl {
  width: 36px; height: 36px;
  background: rgba(6, 15, 31, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  font-weight: 400;
  transition: background 200ms;
}
.geo__ctrl:hover { background: var(--navy-700); }
.geo__ctrl--sm { font-size: 11px; }
.geo__ctrl + .geo__ctrl { border-top: 0; }
.geo__attribution {
  position: absolute;
  bottom: 12px; right: 12px;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-400);
  padding: 5px 10px;
  background: rgba(6, 15, 31, 0.75);
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .geo__controls { top: unset; bottom: 36px; right: 12px; }
  .geo__attribution { bottom: 6px; font-size: 8px; }
}

/* Timeline — full-width with media column per item */
.timeline-v {
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.timeline-v__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  transition: background 320ms var(--ease-out);
}
.timeline-v__item:hover { background: var(--navy-800); }
.timeline-v__item::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 380ms var(--ease-out);
}
.timeline-v__item:hover::after { transform: scaleY(1); }

.timeline-v__text {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-xl) var(--space-xl) var(--space-xl) var(--container-padding, 48px);
}
.timeline-v__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--navy-800);
  border-left: 1px solid var(--line);
}
.timeline-v__media img,
.timeline-v__media video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transform: scale(1.04);
  transition: filter 500ms var(--ease-out), transform 700ms var(--ease-out);
}
.timeline-v__item:hover .timeline-v__media img,
.timeline-v__item:hover .timeline-v__media video {
  filter: grayscale(0%);
  transform: scale(1);
}

.timeline-v__year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-300);
  padding-top: 6px;
  transition: color 320ms var(--ease-out);
}
.timeline-v__item:hover .timeline-v__year { color: var(--accent); }
.timeline-v__num { display: none; }
.timeline-v__label {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--steel-200);
  font-weight: 300;
  letter-spacing: -0.005em;
  line-height: 1.6;
  max-width: 56ch;
}
.timeline-v__label strong { color: var(--white); font-weight: 500; }

.timeline-v__label.simple-text p {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.timeline-v__label.simple-text p + p { margin-top: 12px; }

@media (max-width: 900px) {
  .timeline-v__item {
    grid-template-columns: 1fr;
    background: var(--navy-800);
  }
  .timeline-v__item::after { transform: scaleY(1); }
  .timeline-v__item .timeline-v__media img,
  .timeline-v__item .timeline-v__media video {
    filter: grayscale(0%);
    transform: scale(1);
  }
  .timeline-v__item .timeline-v__year { color: var(--accent); }
  .timeline-v__media {
    min-height: 220px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    order: 1;
  }
  .timeline-v__text {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: var(--space-lg) 24px;
    order: 2;
  }
}



/* Safety & standards — list-based, light cards */
.safety__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 720px) { .safety__grid { grid-template-columns: 1fr; } }
.safety__item {
  background: var(--navy-900);
  padding: var(--space-xl) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: background 240ms var(--ease-out);
}
.safety__item:hover { background: var(--navy-700); }
.safety__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--steel-400);
  margin-bottom: var(--space-xs);
}
.safety__title {
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.015em;
  color: var(--white);
}
.safety__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel-300);
  font-weight: 300;
}
.safety__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--line);
}
.safety__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-300);
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
}
@media (max-width:900px) {
  .safety__item{padding-block: var(--space-lg);}
}
/* Partners / clients — logo grid */
.partners-swiper {
  width: 100%;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.partners-swiper .swiper-wrapper{
  transition-timing-function: linear !important;
}
.partners-swiper--rev { margin-top: 0; border-top: none; }
.partners__cell {
  background: var(--navy-800);
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;justify-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--steel-400);
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out);
}
.partners__cell:hover { background: var(--navy-700); color: var(--white); }
.partners__cell svg { width: 100%; max-width: 140px; height: auto; }
.partners__logo { display: flex; align-items: center; justify-content: center; width: 100%; max-width: 140px; max-height: 80%; filter: brightness(0) invert(0.55); transition: filter 240ms var(--ease-out); }
.partners__logo img,
.partners__logo picture { width: 100%; height: auto; display: block; }
.partners__cell:hover .partners__logo { filter: brightness(0) invert(0.30) sepia(1) saturate(14) hue-rotate(-12deg); }
.partners__cell .ph__label {
  background: transparent;
  color: var(--steel-400);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-align: center;
  padding: 0;
}
.partners__cell .ph__label::before,
.partners__cell .ph__label::after { color: var(--steel-500); }

/* About-page CTA — replaces generic cta-band */
.about-cta {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-section-lg);
}
/* Large ghost watermark */
.about-cta::before {
  content: '→';
  position: absolute;
  right: -0.05em;
  bottom: -0.2em;
  font-size: clamp(200px, 28vw, 400px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--white);
  opacity: 0.025;
  pointer-events: none;
  font-family: var(--font-sans);
  user-select: none;
}
.about-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .about-cta__inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
}
.about-cta__headline {
  font-weight: 200;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
}
.about-cta__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--steel-300);
}
.about-cta__headline strong {
  font-weight: 200;
  color: var(--accent);
}
.about-cta__sub {
  margin-top: var(--space-lg);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--steel-300);
  max-width: 44ch;
}
.about-cta__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-cta__channel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--line);
  transition: background 200ms var(--ease-out);
}
.about-cta__channel:last-child { border-bottom: 0; }
.about-cta__channel-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-bottom: 3px;
}
.about-cta__channel-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.005em;
}
.about-cta__channel-value a {
  color: var(--white);
  transition: color 200ms;
}
.about-cta__channel-value a:hover { color: var(--accent); }
.about-cta__channel-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--steel-400);
  flex-shrink: 0;
}
.about-cta__channel-icon svg { width: 14px; height: 14px; }
.about-cta__action {
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.about-cta__note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-500);
  line-height: 1.6;
}



/* ---------- About ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.about-intro__left { position: sticky; top: var(--header-height); align-self: start; z-index: 2;background-color: var(--navy-800);}
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-intro__left{padding-block: 8px ;}
}

.about-intro__quote {
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.about-intro__quote em { font-style: italic; color: var(--steel-300); font-weight: 300; }

/* Timeline */
.timeline { padding-block: var(--space-section-lg); background: var(--navy-900); }
.timeline__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line);
}
.timeline__cell {
  padding: 36px 24px 40px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.timeline__cell:last-child { border-right: 0; }
.timeline__cell::before {
  content: '';
  position: absolute;
  top: -5px; left: 0;
  width: 9px; height: 9px;
  background: var(--white);
  border-radius: 50%;
}
.timeline__year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--steel-400);
}
.timeline__num {
  font-weight: 200;
  font-size: clamp(40px, 4vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.timeline__label {
  font-size: 14px;
  color: var(--steel-200);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .timeline__grid { grid-template-columns: 1fr 1fr; }
  .timeline__cell { border-bottom: 1px solid var(--line); }
  .timeline__cell:nth-child(2n) { border-right: 0; }
}

/* Values */
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}
@media (max-width: 900px) { .values__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .values__grid { grid-template-columns: 1fr; } }
.value {
  padding: 32px 0 0;
  border-top: 1px solid var(--line-strong);
}
.value__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--steel-400);
  margin-bottom: 56px;
  display: block;
}
.value__title {
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.value__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel-300);
}

/* Fleet page */
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; gap: 40px; } }

.page-hero__title {
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.page-hero__title em { font-style: italic; color: var(--steel-300); font-weight: 300; }

.page-hero__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--steel-200);
  max-width: 48ch;
  margin-top: var(--space-lg);
}

/* ---------- Fleet page ---------- */
.fleet-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.fleet-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.fleet-filter {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-200);
  transition: all 200ms;
}
.fleet-filter:hover { border-color: var(--steel-300); color: var(--white); }
.fleet-filter.is-active {
  background: var(--ivory);
  color: var(--navy-800);
  border-color: var(--ivory);
}
.fleet-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--steel-400);
  text-transform: uppercase;
}
.fleet-count strong { color: var(--white); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  padding-bottom: 0;
  margin-bottom: var(--space-section-lg);
}
@media (max-width: 1200px) { .fleet-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .fleet-grid { grid-template-columns: 1fr; } }

.fleet-grid .vessel-card { padding: 28px; }
.fleet-grid .vessel-card__media { aspect-ratio: 4/3; }

/* ---------- Contacts ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-section-lg);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-blocks { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.contact-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 540px) { .contact-block { grid-template-columns: 1fr; gap: 8px; } }
.contact-block__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.contact-block__body {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--steel-200);
}
.contact-block__body strong { color: var(--white); font-weight: 500; display: block; margin-bottom: 4px; font-size: 17px; }
.contact-block__body a { color: var(--white); border-bottom: 1px solid var(--line-strong); }
.contact-block__body a:hover { border-color: var(--white); }

.offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offices--two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .offices--two { grid-template-columns: 1fr; } }




@media (max-width: 900px) { .offices { grid-template-columns: 1fr; } }
.office {
  padding: var(--space-md) var(--gutter);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.office:last-child { border-right: 0; }
@media (max-width: 900px) {
  .office { border-right: 0; border-bottom: 1px solid var(--line); }
  .office:last-child { border-bottom: 0; }
}
.office__city {
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.02em;
}
.office__country {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-400);
  margin-bottom: 20px;
}
.office address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel-200);
}
.office__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ---------- Privacy ---------- */
.legal {
  padding-block: var(--space-section-md);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-2xl);
}
@media (max-width: 900px) { .legal { grid-template-columns: 1fr; gap: 32px; } }
.legal__toc {
  position: sticky;
  top: 120px;
  align-self: start;
}
.legal__toc h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--steel-500);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.legal__toc ul { display: flex; flex-direction: column; gap: 6px; }
.legal__toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 8px 0;
  color: var(--steel-300);
  transition: color 200ms;
}
.legal__toc a:hover { color: var(--white); }
.legal__toc .num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--steel-500);
  letter-spacing: 0.1em;
}
.legal__body { max-width: 100ch;margin-inline: auto; }
.legal__body h2 {
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.015em;
  margin: 56px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.legal__body h2:first-child { padding-top: 0; border-top: 0; margin-top: 0; }
.legal__body h2 .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--steel-500);
  letter-spacing: 0.16em;
}
.legal__body h3 {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel-200);
  margin: 24px 0 12px;
}
.legal__body p, .legal__body li {
  font-size: 15px;
  color: var(--steel-200);
  line-height: 1.65;
  font-weight: 300;
}
.legal__body p + p { margin-top: 16px; }
.legal__body ul { margin-top: 12px; padding-left: 0; }
.legal__body li { padding-left: 24px; position: relative; margin-bottom: 8px; }
.legal__body li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 1px;
  background: var(--steel-400);
}

/* ---------- 404 ---------- */
.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.not-found__inner {
  position: relative;
  z-index: 2;
  padding: 48px var(--gutter);
  max-width: 720px;
}
.not-found__code {
  font-weight: 200;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin-bottom: 32px;
  background: linear-gradient(180deg, var(--white) 0%, var(--steel-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.not-found__title {
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.not-found__sub {
  font-size: 16px;
  color: var(--steel-300);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 44ch;
  margin-inline: auto;
  line-height: 1.55;
}
.not-found__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.not-found__meta {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--steel-500);
  text-transform: uppercase;
  text-align: center;
  z-index: 2;
}
.not-found__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 60px, var(--line) 60px 61px),
    repeating-linear-gradient(90deg, transparent 0 60px, var(--line) 60px 61px);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 70%);
}



/* ---------- Services tiles ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.service {
  padding: var(--space-xl) var(--gutter);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 280ms var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.services__grid .service:nth-child(3n+1) { border-left: 1px solid var(--line); }
.services__grid--4 .service:nth-child(4n+1) { border-left: 1px solid var(--line); }
.services__grid--4 .service:nth-child(4n) { border-right: 1px solid var(--line); }
.service:hover { background: var(--navy-700); }
.service__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--steel-500);
  display: block;
}
.service__icon {
  width: 56px;
  height: 56px;
  background-color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: border-color 280ms, background 280ms;
}

.service__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.service__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel-300);
  max-width: 30ch;
  flex-grow: 1;
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.service__list li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-300);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service__list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--steel-400);
  border-radius: 50%;
}
/* 4-column variant */
.services__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .services__grid--4 { grid-template-columns: 1fr 1fr; }
  .service { padding-block: var(--space-lg); gap: var(--space-xs); }
}
@media (max-width:767px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Advantages — interactive tabs (home page)
   ========================================================= */
.advantages__layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 1.5fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

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

.advantages__list {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 var(--gutter);
  border-right: 1px solid var(--line);
}
@media (max-width: 900px) {
  .advantages__list {
    padding: 0 var(--gutter-sm);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

.adv-item {
  display: grid;
  grid-template-columns: 36px 1fr 32px;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  position: relative;
  color: var(--steel-300);
  transition: color 240ms var(--ease-out);
}
.adv-item:last-child { border-bottom: 0; }

.adv-item:hover { color: var(--white); }
.adv-item:hover .adv-item__title { transform: translateX(6px); }
.adv-item:hover .adv-item__indicator { width: 16px; opacity: 0.6; }

.adv-item__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--steel-500);
  transition: color 240ms;
}
.adv-item.is-active .adv-item__num { color: #86BB63; }

.adv-item__title {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.005em;
  line-height: 1.25;
  transition: transform 320ms var(--ease-out), font-weight 200ms;
}
.adv-item.is-active {
  color: var(--white);
}
.adv-item.is-active .adv-item__title {
  transform: translateX(6px);
  font-weight: 500;
}

.adv-item__indicator {
  width: 0;
  height: 1px;
  background: var(--steel-500);
  display: block;
  opacity: 0;
  justify-self: end;
  transition: width 320ms var(--ease-out), opacity 240ms, background 240ms;
}
.adv-item.is-active .adv-item__indicator {
  width: 28px;
  background: var(--accent);
  opacity: 1;
  box-shadow: 0 0 10px rgba(134, 187, 99, 0.5);
}

.advantages__detail {
  display: grid;
  position: relative;
  padding: 40px var(--gutter) 40px;
  min-height: 520px;
}

.adv-panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 380ms var(--ease-out), transform 480ms var(--ease-out), visibility 0s linear 380ms;
  display: flex;
  flex-direction: column;
}
.adv-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 480ms var(--ease-out) 60ms, transform 580ms var(--ease-out) 60ms, visibility 0s;
}

.adv-panel__metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  margin-bottom: 14px;
  line-height: 0.9;
}
.adv-panel__sign {
  font-weight: 200;
  font-size: clamp(56px, 6vw, 96px);
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 0.9;
  margin-right: 4px;
}
.adv-panel__num {
  font-weight: 200;
  font-size: clamp(68px, 7.5vw, 120px);
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 0.9;
}
.adv-panel__num--text {
  letter-spacing: -0.02em;
}
.adv-panel__num--text .slash {
  color: var(--steel-500);
  font-weight: 200;
  margin: 0 -2px;
}
.adv-panel__unit {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--steel-400);
  text-transform: uppercase;
  margin-left: 4px;
}

.adv-panel__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-400);
  display: block;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.adv-panel__title {
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
  max-width: 22ch;
}
.adv-panel__desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--steel-200);
  font-weight: 300;
  max-width: 56ch;
  margin-bottom: 40px;
}

.adv-panel__viz {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.adv-panel__viz-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-top: 18px;
}
@media (max-width: 900px) {
  .advantages__detail { padding: 40px var(--gutter-sm) 40px;min-height: unset; }
  .adv-item { padding: 16px 0; }

  .adv-panel {
    grid-area: unset;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .adv-panel.is-active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
}
@media (max-width: 540px) {
  .advantages__detail { min-height: auto; padding-bottom: var(--space-xl); }
  .adv-panel__num { font-size: clamp(48px, 14vw, 80px); }
  .adv-pills { max-width: 100%; }
  .adv-hours { max-width: 100%; }
  .adv-hours-axis { max-width: 100%; }
  .adv-regions, .adv-segments { max-width: 100%; }
}
.adv-pills {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  max-width: 360px;
}
.adv-pills span {
  display: block;
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 500ms var(--ease-out), background 240ms;
}
.adv-panel.is-active .adv-pills span {
  background: var(--white);
  transform: scaleX(1);
}
.adv-panel.is-active .adv-pills span:nth-child(1) { transition-delay: 80ms; }
.adv-panel.is-active .adv-pills span:nth-child(2) { transition-delay: 140ms; }
.adv-panel.is-active .adv-pills span:nth-child(3) { transition-delay: 200ms; }
.adv-panel.is-active .adv-pills span:nth-child(4) { transition-delay: 260ms; }
.adv-panel.is-active .adv-pills span:nth-child(5) { transition-delay: 320ms; }
.adv-panel.is-active .adv-pills span:nth-child(6) { transition-delay: 380ms; }
.adv-panel.is-active .adv-pills span:nth-child(7) { transition-delay: 440ms; }
.adv-panel.is-active .adv-pills span:nth-child(8) { transition-delay: 500ms; }
.adv-panel.is-active .adv-pills span:nth-child(9) { transition-delay: 560ms; }
.adv-panel.is-active .adv-pills span:nth-child(10) { transition-delay: 620ms; }

.adv-hours {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 4px;
  height: 36px;
  max-width: 420px;
}
.adv-hours span {
  background: rgba(255, 255, 255, 0.16);
  display: block;
  height: 100%;
  transform: scaleY(0.4);
  transform-origin: bottom;
  transition: transform 320ms var(--ease-out), background 240ms;
}
.adv-panel.is-active .adv-hours span {
  background: var(--white);
  transform: scaleY(1);
}
.adv-panel.is-active .adv-hours span.is-now {
  background: var(--accent);
  animation: advNowPulse 1.6s ease-in-out infinite;
}
@keyframes advNowPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(134, 187, 99, 0); }
  50% { opacity: 0.7; box-shadow: 0 0 12px 2px rgba(134, 187, 99, 0.5); }
}
.adv-panel.is-active .adv-hours span:nth-child(odd) { transition-delay: calc(var(--i, 0) * 12ms); }
.adv-hours span { --i: 0; }
.adv-hours span:nth-child(1) { --i: 1; } .adv-hours span:nth-child(2) { --i: 2; }
.adv-hours span:nth-child(3) { --i: 3; } .adv-hours span:nth-child(4) { --i: 4; }
.adv-hours span:nth-child(5) { --i: 5; } .adv-hours span:nth-child(6) { --i: 6; }
.adv-hours span:nth-child(7) { --i: 7; } .adv-hours span:nth-child(8) { --i: 8; }
.adv-hours span:nth-child(9) { --i: 9; } .adv-hours span:nth-child(10) { --i: 10; }
.adv-hours span:nth-child(11) { --i: 11; } .adv-hours span:nth-child(12) { --i: 12; }
.adv-hours span:nth-child(13) { --i: 13; } .adv-hours span:nth-child(14) { --i: 14; }
.adv-hours span:nth-child(15) { --i: 15; } .adv-hours span:nth-child(16) { --i: 16; }
.adv-hours span:nth-child(17) { --i: 17; } .adv-hours span:nth-child(18) { --i: 18; }
.adv-hours span:nth-child(19) { --i: 19; } .adv-hours span:nth-child(20) { --i: 20; }
.adv-hours span:nth-child(21) { --i: 21; } .adv-hours span:nth-child(22) { --i: 22; }
.adv-hours span:nth-child(23) { --i: 23; } .adv-hours span:nth-child(24) { --i: 24; }
.adv-panel.is-active .adv-hours span {
  transition-delay: calc(var(--i) * 18ms);
}

.adv-hours-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--steel-500);
  margin-top: 8px;
  max-width: 420px;
}

.adv-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(134, 187, 99, 0.6);
  animation: advLivePulse 1.6s ease-in-out infinite;
}
@keyframes advLivePulse { 50% { opacity: 0.4; } }

.adv-regions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 460px;
}
.adv-region__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-300);
  margin-bottom: 8px;
}
.adv-region__label strong {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.adv-region__bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}
.adv-region__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--white);
  transition: width 900ms var(--ease-out) 200ms;
}
.adv-region__fill--mute  { background: rgba(255, 255, 255, 0.5); }
.adv-region__fill--mute2 { background: rgba(255, 255, 255, 0.28); }
.adv-panel.is-active .adv-region__fill { width: var(--w, 0); }
.adv-panel.is-active .adv-region:nth-child(1) .adv-region__fill { transition-delay: 200ms; }
.adv-panel.is-active .adv-region:nth-child(2) .adv-region__fill { transition-delay: 320ms; }
.adv-panel.is-active .adv-region:nth-child(3) .adv-region__fill { transition-delay: 440ms; }

.adv-segments {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 460px;
}
.adv-segment {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.adv-segment:last-child { border-bottom: 0; padding-bottom: 0; }
.adv-segment__name {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.adv-segment__count {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.adv-segment__bar {
  grid-column: 1 / -1;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  margin-top: 4px;
}
.adv-segment__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--white);
  transition: width 900ms var(--ease-out) 200ms;
}
.adv-segment__fill--mute  { background: rgba(255, 255, 255, 0.5); }
.adv-segment__fill--mute2 { background: rgba(255, 255, 255, 0.28); }
.adv-panel.is-active .adv-segment__fill { width: var(--w, 0); }
.adv-panel.is-active .adv-segment:nth-child(1) .adv-segment__fill { transition-delay: 200ms; }
.adv-panel.is-active .adv-segment:nth-child(2) .adv-segment__fill { transition-delay: 320ms; }
.adv-panel.is-active .adv-segment:nth-child(3) .adv-segment__fill { transition-delay: 440ms; }

.adv-ring {
  position: relative;
  width: 140px;
  height: 140px;
}
.adv-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.adv-ring__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 3;
}
.adv-ring__fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 314.16;
  stroke-dashoffset: 314.16;
  transition: stroke-dashoffset 1300ms var(--ease-out) 200ms;
}
.adv-panel.is-active .adv-ring__fill {
  stroke-dashoffset: calc(314.16 * (1 - var(--pct, 0)));
}
.adv-ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.adv-ring__center strong {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.adv-ring__center em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-400);
}

/* =========================================================
   Geography/Map (home page variant)
   ========================================================= */
.geo {
  position: relative;
  background: #062812;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  border-bottom: solid 1px var(--line);
  overflow: clip;
}
@media (max-width: 900px) { .geo { min-height: 1080px; } }
.geo__map {
  position: absolute;
  top: -8%;
  right: -22%;
  width: 130%;
  height: 116%;
  z-index: 0;
}

#geo-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #0A2F17;
}

.mapboxgl-marker circle {
  fill: var(--white);
  r: 3;
  filter: drop-shadow(0 0 8px rgba(134, 187, 99, 0.6));
}

@keyframes pinPulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.geo-popup .mapboxgl-popup-content {
  background: rgba(6, 15, 31, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 5px 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.geo-popup .mapboxgl-popup-tip { display: none; }
.geo__pin-label-text {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.geo__overlay {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
  min-height: 660px;
}
.geo__panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
  max-width: clamp(360px, 43.75vw, 560px);
  padding: var(--space-section-md) var(--gutter) var(--space-section-md) 0;
  position: relative;
  align-items: flex-start;
}
.geo__panel .eyebrow { display: block; }
.geo__title {
  font-weight: 200;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.geo__panel a, .geo__panel button{
  pointer-events: auto;
}
.geo__title em { font-style: italic; font-weight: 300; color: var(--steel-300); }
.geo__lede {
  color: var(--steel-200);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
  max-width: 38ch;
}
.geo__regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.geo__region {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-400);
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
}
.geo__region strong {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.geo__regions--numbers {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
}
.geo__regions--numbers .geo__region {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: none;
  padding: 0;
  max-width: 115px;
}

@media (max-width: 1200px) {
  .geo__map { right: -12%; width: 116%; }
}
@media (max-width: 900px) {
  .geo{
    display: flex;flex-direction: column;
    min-height: unset;
  }
  .geo__overlay{
    min-height: unset;
  }
  .geo__panel {
    max-width: 100%;
    padding: var(--space-section-md) 0 var(--space-xl);
    background: linear-gradient(180deg, #062812 0%, #062812 60%, rgba(6, 21, 40, 0) 100%);
  }
  .geo__map {
    order: 2;
    position: relative;
    top: auto;
    right: unset;
    bottom: unset;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .geo__regions--numbers .geo__region{
    max-width: unset;
  }
}

/* =========================================================
   Contacts map hero + offices — one viewport
   ========================================================= */
.geo-contacts-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}
.geo-contacts-wrap .geo--contacts {
  flex-grow: 1;
}
.geo--contacts {
  position: relative;
  flex-shrink: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#contacts-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #0A2F17;
}
.geo--contacts .geo__overlay { min-height: unset; }
.geo--contacts .geo__panel { padding-block: var(--space-lg); }

@media (max-width: 900px) {
  .geo--contacts .geo__map { aspect-ratio: unset; height: 100%; flex-grow: 1; min-height: 300px; }
  .geo-contacts-wrap .geo__panel { padding-top: var(--space-lg); }
}

/* =========================================================
   SEO copy band (home page)
   ========================================================= */
.seo {
  border-top: 1px solid var(--line);
}
.seo__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}

.seo__left { position: sticky; top: 120px; align-self: start; }
@media (max-width: 900px) { 
  .seo__grid { grid-template-columns: 1fr; gap: 32px; }  
  .seo__left { position: relative; top: unset; }
}
.seo__left .eyebrow { margin-bottom: var(--space-lg); display: inline-block;}
.seo__heading {
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.seo__heading em { font-style: italic; color: var(--steel-300); font-weight: 300; }
.seo__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.seo__keyword {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-300);
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  white-space: nowrap;
}
.seo__right {
  position: relative;
}

.seo__body::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--navy-900));
  pointer-events: none;
  transition: opacity 300ms var(--ease-out);
}
.seo__right.is-expanded .seo__body::after {
  opacity: 0;
}

.seo__body {
  position: relative;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--steel-200);
  font-weight: 300;
  overflow: hidden;
}

.seo__body p { margin-bottom: 18px; }
.seo__body a {
  color: var(--white);
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 200ms;
}
.seo__body a:hover { border-color: var(--white); }
.seo__body h3 {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 12px;
}
.seo__body h3:not(:first-child) { margin-top: 24px; }

.seo__toggle {
  margin-top: 20px;
}
.seo__toggle[hidden] { display: none; }

/* About page hero modifier */
.hero--compact { min-height: 75vh; }

/* =========================================================
   Vessel detail page — layout + sidebar
   ========================================================= */

.vessel-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.vessel-detail--no-sidebar {
  grid-template-columns: 1fr;
}
.vessel-detail__sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.vessel-detail__sidebar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-bottom: 20px;
}
.vessel-detail__specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.vessel-detail__spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.vessel-detail__spec dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
  flex-shrink: 0;
}
.vessel-detail__spec dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  text-align: right;
}

@media (max-width: 900px) {
  .vessel-detail {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .vessel-detail__sidebar { position: static; }
}

/* =========================================================
   .simple-text — scoped rich text block (WordPress output)
   ========================================================= */
.simple-text + .simple-text { margin-top: 32px; }
.simple-text h1,
.simple-text h2,
.simple-text h3,
.simple-text h4,
.simple-text h5,
.simple-text h6 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.simple-text h1:first-child,
.simple-text h2:first-child,
.simple-text h3:first-child,
.simple-text h4:first-child,
.simple-text h5:first-child,
.simple-text h6:first-child {
  margin-top: 0;
}

.simple-text h1 {
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--white);
}
.simple-text h2 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--white);
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.simple-text h2:first-child {
  padding-top: 0;
  border-top: none;
}
.simple-text h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--white);
}
.simple-text h4 {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel-200);
}
.simple-text h5,
.simple-text h6 {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--steel-400);
}

.simple-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel-200);
}
.simple-text p + p { margin-top: 20px; }

.simple-text a {
  color: var(--accent);
  text-decoration: none;
}
.simple-text a:hover { text-decoration: underline; }

.simple-text strong { font-weight: 600; color: var(--white); }
.simple-text em { font-style: italic; color: var(--steel-300); }
.simple-text pre {
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--steel-200);
}
/* Lists */
.simple-text ul,
.simple-text ol {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}
.simple-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel-200);
}
.simple-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.simple-text ol {
  counter-reset: item;
}
.simple-text ol li {
  position: relative;
  counter-increment: item;
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel-200);
}
.simple-text ol li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--steel-400);
  line-height: 1.7;
}
.simple-text ul ul,
.simple-text ul ol,
.simple-text ol ul,
.simple-text ol ol {
  margin-top: 8px;
  margin-bottom: 0;
}

/* Table */
.simple-text table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}
.simple-text  th {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--steel-400);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}
.simple-text tbody td {
  font-size: 14px;
  font-weight: 300;
  color: var(--steel-200);
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}
.simple-text tbody tr:last-child td { border-bottom: none; }

/* Image / figure */
.simple-text img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.simple-text figure { margin: 32px 0; }
.simple-text figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--steel-500);
  margin-top: 10px;
}

/* iframe */
.simple-text iframe {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  margin: 32px 0;
}

/* Blockquote */
.simple-text blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
}
.simple-text blockquote p {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--steel-300);
}

@media (max-width: 720px) {
  .simple-text thead th { font-size: 9px; padding: 8px 10px; }
  .simple-text tbody td { font-size: 13px; padding: 8px 10px; }
}

/* =========================================================
   Vessel gallery grid (LightGallery)
   ========================================================= */

.vessel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 24px;
}
.vessel-gallery a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: zoom-in;
}
.vessel-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition:  500ms var(--ease-out);
}
.vessel-gallery a:hover img,
.vessel-gallery a:hover video { transform: scale(1.04);filter: grayscale(0); }

.vessel-gallery__video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--navy-1000);
}
.vessel-gallery__video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(1);
  transition: 500ms var(--ease-out);
}
.vessel-gallery__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--white);
  pointer-events: none;
  transition: transform 300ms var(--ease-out);
}
.vessel-gallery a:hover .vessel-gallery__play { transform: scale(1.15); }

@media (max-width: 720px) {
  .vessel-gallery { grid-template-columns: repeat(2, 1fr); }
}

.vessel-map-section .simple-text { margin-bottom: 24px; }
.vessel-map-wrap {
  position: relative;
  width: 100%;
}
.vessel-map {
  width: 100%;
  height: 480px;
  max-height: 60svh;
}


/* =========================================================
   GLightbox — oris skin (fc-arrow style buttons, no description)
   ========================================================= */

.gdesc-inner { display: none !important; }

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(6, 15, 31, 0.5);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  opacity: 1;
  flex-direction: unset;
  transition: all 400ms var(--ease-out);
}
.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--navy-800);
}
@media (max-width: 720px) {
  .glightbox-clean .gnext,
  .glightbox-clean .gprev { display: none; }
}
.glightbox-clean .gclose svg,
.glightbox-clean .gnext svg,
.glightbox-clean .gprev svg {
  width: 16px;
  height: 16px;
  display: block;
  margin: 0;
}
.gbtn path{fill:none!important}
.glightbox-clean .gprev { top: 45%; left: 20px; }
.glightbox-clean .gnext { top: 45%; right: 20px; }
.glightbox-clean .gclose { top: 15px; right: 15px; }

.glightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--steel-300);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(6, 15, 31, 0.5);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.glightbox-counter strong {
  color: var(--white);
  font-weight: 500;
}
