@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --navy: #071a2f;
  --navy-soft: #0d2946;
  --blue: #0f5dbd;
  --blue-bright: #2b7de9;
  --sky: #dcecff;
  --orange: #f39a38;
  --paper: #f6f8fb;
  --white: #ffffff;
  --ink: #102033;
  --muted: #627084;
  --line: #dce3ec;
  --shadow: 0 24px 70px rgba(7, 26, 47, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.scrolled,
.page-inner .site-header {
  height: 72px;
  background: rgba(7, 26, 47, 0.96);
  box-shadow: 0 10px 30px rgba(7, 26, 47, 0.14);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  flex: 0 0 auto;
}

.brand-logo {
  width: 220px;
  height: auto;
}

.brand-name {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  padding: 10px 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 16px !important;
  color: var(--navy) !important;
  background: var(--white);
  border-radius: 999px;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 20, 37, 0.98) 0%, rgba(5, 20, 37, 0.82) 42%, rgba(5, 20, 37, 0.18) 78%),
    linear-gradient(0deg, rgba(5, 20, 37, 0.8), transparent 45%),
    url("images/hero-flota.webp") center / cover;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -380px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.02);
  content: "";
}

.hero-content {
  align-self: center;
  max-width: 750px;
  padding-top: 100px;
  padding-bottom: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue-bright);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero .eyebrow {
  color: #8dbfff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.1;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: #8dbfff;
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: #0b4fa3;
  border-color: #0b4fa3;
  transform: translateY(-2px);
}

.button.light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-facts {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-fact {
  padding-left: 16px;
  border-left: 2px solid var(--orange);
}

.hero-fact strong,
.hero-fact span {
  display: block;
}

.hero-fact strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.hero-fact span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
}

.section.compact {
  padding: 80px 0;
}

.section.white {
  background: var(--white);
}

.section.navy {
  color: var(--white);
  background: var(--navy);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-head > div:first-child {
  max-width: 740px;
}

.section-head h2,
.split-copy h2,
.closing-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  letter-spacing: -0.045em;
}

.section-head p,
.split-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.section.navy .section-head p,
.section.navy .split-copy > p {
  color: rgba(255, 255, 255, 0.65);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.text-link:hover {
  gap: 13px;
}

.service-grid,
.feature-grid,
.team-grid,
.fleet-grid,
.org-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  color: var(--white);
  background: var(--navy-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.service-number {
  display: block;
  margin-bottom: 90px;
  color: #7db4f7;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.service-card.accent {
  color: var(--navy);
  background: var(--sky);
}

.service-card.accent p {
  color: #415a73;
}

.service-card.accent .service-number {
  color: var(--blue);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -28px;
  bottom: 28px;
  width: 220px;
  padding: 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 93, 189, 0.28);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
}

.floating-note span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.check-list li::before {
  display: grid;
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  color: var(--blue);
  background: var(--sky);
  border-radius: 50%;
  content: "\2713";
  font-size: 13px;
  place-items: center;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 510px;
  padding: 150px 0 82px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  top: -240px;
  right: -120px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.012);
  content: "";
}

.page-hero.with-image::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 47, 0.98) 0%, rgba(7, 26, 47, 0.78) 52%, rgba(7, 26, 47, 0.35)), var(--page-image) center 38% / cover;
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 780px;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.crumb {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.crumb a {
  color: #8dbfff;
}

.story-intro {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
}

.story-year {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.story-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  letter-spacing: -0.04em;
}

.story-copy p {
  color: var(--muted);
  font-size: 17px;
}

.history-photo {
  position: relative;
  margin: 80px 0;
}

.history-photo img {
  width: 100%;
  max-height: 670px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.82) contrast(1.04);
}

.history-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 340px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(7, 26, 47, 0.9);
  border-radius: 12px;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.timeline {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 0 0 56px;
}

.timeline-year {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.timeline-content {
  position: relative;
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.timeline-content::before {
  position: absolute;
  top: 4px;
  left: -6px;
  width: 11px;
  height: 11px;
  background: var(--orange);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--orange);
  content: "";
}

.timeline-content h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
}

.founders {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.founders span {
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.quote-band {
  padding: 85px 0;
  color: var(--white);
  background: var(--blue);
}

.quote-band blockquote {
  max-width: 960px;
  margin: 0 auto;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.25;
  text-align: center;
}

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

.org-card {
  position: relative;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.org-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.org-card.has-photo {
  padding: 0;
  overflow: hidden;
}

.org-card-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.org-card-body {
  position: relative;
  padding: 30px 34px 34px;
}

.org-card:first-child {
  grid-column: 1 / -1;
  padding-right: 38%;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.org-card .role {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.org-card:first-child .role {
  color: #8dbfff;
}

.org-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.org-card p {
  margin: 0;
  color: var(--muted);
}

.org-card:first-child p {
  color: rgba(255, 255, 255, 0.64);
}

.org-card .card-index {
  position: absolute;
  top: 26px;
  right: 30px;
  color: var(--line);
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 800;
}

.org-card:first-child .card-index {
  color: rgba(255, 255, 255, 0.12);
  font-size: 88px;
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(7, 26, 47, 0.07);
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease;
}

.team-card:hover img {
  transform: scale(1.025);
}

.team-copy {
  padding: 25px 26px 28px;
}

.team-copy .role {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-copy h3 {
  margin: 0;
  font-size: 20px;
}

.role-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 55px;
}

.role-panel {
  padding: 35px;
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.role-panel h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.role-panel p {
  margin: 0;
  color: var(--muted);
}

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

.fleet-card {
  position: relative;
  min-height: 510px;
  border-radius: var(--radius);
  overflow: hidden;
}

.fleet-card.wide {
  grid-column: 1 / -1;
  min-height: 570px;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.fleet-card:hover img {
  transform: scale(1.025);
}

.fleet-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(7, 26, 47, 0.96), rgba(13, 41, 70, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.fleet-copy h3 {
  margin-bottom: 7px;
  font-size: 22px;
}

.fleet-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec {
  padding: 30px;
  background: var(--white);
}

.spec strong,
.spec span {
  display: block;
}

.spec strong {
  margin-bottom: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.spec span {
  color: var(--muted);
  font-size: 13px;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  padding: 0;
  background: var(--navy);
  border: 0;
  border-radius: 18px;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 8;
}

.gallery-item:nth-child(4) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 250ms ease, transform 500ms ease;
}

.gallery-item:hover img {
  opacity: 0.78;
  transform: scale(1.035);
}

.gallery-item::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(7, 26, 47, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "+";
  font-size: 22px;
  place-items: center;
}

.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  padding: 40px;
  background: rgba(4, 14, 26, 0.94);
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1200px, 90vw);
  max-height: 84vh;
  border-radius: 14px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 55px;
}

.contact-card {
  padding: 40px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.contact-card h2,
.contact-form h2 {
  margin-bottom: 16px;
  font-size: 32px;
  letter-spacing: -0.035em;
}

.contact-card > p {
  color: rgba(255, 255, 255, 0.62);
}

.contact-list {
  display: grid;
  gap: 25px;
  margin-top: 38px;
}

.contact-item {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item span,
.contact-item strong {
  display: block;
}

.contact-item span {
  margin-bottom: 5px;
  color: #8dbfff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  font-size: 15px;
  font-weight: 600;
}

.contact-form {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form > p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 93, 189, 0.1);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.map-card {
  position: relative;
  min-height: 360px;
  background: #dce5ed;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.8) contrast(1.05);
}

.map-label {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: max(24px, calc((100vw - var(--container)) / 2));
  max-width: 320px;
  padding: 20px 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.map-label strong,
.map-label span {
  display: block;
}

.map-label span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.closing-cta {
  position: relative;
  padding: 78px;
  color: var(--white);
  background: var(--blue);
  border-radius: 28px;
  overflow: hidden;
}

.closing-cta::after {
  position: absolute;
  top: -170px;
  right: -130px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.03), 0 0 0 110px rgba(255, 255, 255, 0.02);
  content: "";
}

.closing-cta > * {
  position: relative;
  z-index: 1;
}

.closing-cta p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.site-footer {
  padding: 70px 0 25px;
  color: var(--white);
  background: #041322;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-about p {
  max-width: 390px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: grid;
    align-content: center;
    width: min(88vw, 420px);
    height: 100dvh;
    padding: 90px 40px 40px;
    background: var(--navy);
    box-shadow: -30px 0 70px rgba(0, 0, 0, 0.28);
    transform: translateX(105%);
    transition: transform 250ms ease;
  }

  .menu-open .main-nav {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 12px 0;
    font-size: 18px;
  }

  .main-nav a::after {
    right: auto;
    left: 0;
    width: 30px;
  }

  .nav-cta {
    justify-self: start;
    margin: 18px 0 0;
    padding: 12px 22px !important;
    font-size: 14px !important;
  }

  .hero-facts {
    display: none;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header .brand-logo {
    width: 190px;
  }

  .site-header .brand-name {
    font-size: 12px;
  }

  .team-card img,
  .org-card-photo {
    height: 185px;
    min-height: 0;
  }

  .hero {
    min-height: 700px;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(5, 20, 37, 0.98) 8%, rgba(5, 20, 37, 0.6) 70%, rgba(5, 20, 37, 0.36)), url("images/hero-flota.webp") 62% center / cover;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-lead,
  .page-hero p {
    font-size: 16px;
  }

  .section,
  .section.compact {
    padding: 75px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 34px;
  }

  .section-head .text-link {
    margin-top: 14px;
  }

  .service-grid,
  .team-grid,
  .fleet-grid,
  .org-grid,
  .role-band,
  .contact-layout,
  .form-grid,
  .split,
  .story-intro {
    grid-template-columns: 1fr;
  }

  .service-card:last-child,
  .fleet-card.wide,
  .org-card:first-child,
  .field.full {
    grid-column: auto;
  }

  .service-card {
    min-height: 280px;
  }

  .service-number {
    margin-bottom: 60px;
  }

  .split,
  .story-intro {
    gap: 38px;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .split-media img {
    min-height: 380px;
  }

  .floating-note {
    right: 14px;
    bottom: 14px;
  }

  .page-hero {
    min-height: 450px;
    padding: 130px 0 62px;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .history-photo {
    margin: 55px 0;
  }

  .history-photo img {
    min-height: 430px;
  }

  .history-photo figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-content {
    margin-left: 5px;
    padding-left: 28px;
  }

  .org-card:first-child {
    padding-right: 34px;
  }

  .org-card:first-child .card-index {
    display: none;
  }

  .fleet-card,
  .fleet-card.wide {
    min-height: 430px;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(1) {
    grid-column: 1 / -1;
  }

  .gallery-item:nth-child(4) {
    grid-row: span 1;
  }

  .contact-card,
  .contact-form {
    padding: 28px;
  }

  .closing-cta {
    padding: 45px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 470px) {
  .button-row .button {
    width: 100%;
  }

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

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: auto;
  }

  .form-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
