@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 {
  --green: #177a61;
  --green-dark: #0d5745;
  --green-light: #dff1eb;
  --ink: #141917;
  --ink-soft: #4f5b57;
  --line: #dfe6e3;
  --paper: #ffffff;
  --off-white: #f4f7f5;
  --warm: #eef2ef;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(14, 46, 37, 0.12);
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

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

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

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

h1,
h2,
h3,
.brand__text {
  font-family: "Manrope", Arial, sans-serif;
}

h1,
h2 {
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4.2vw, 4.5rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

::selection {
  color: white;
  background: var(--green);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--green-dark);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  color: white;
  background: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.announcement p {
  margin: 0;
}

.announcement__mobile {
  display: none;
}

.announcement a {
  opacity: 0.9;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  background: #79dabd;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(121, 218, 189, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(16, 47, 38, 0.06);
}

.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 12px 12px 12px 4px;
  transform: rotate(-4deg);
}

.brand__mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__text {
  font-size: 1.27rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.brand__text span {
  color: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 35px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #37413e;
  font-size: 0.88rem;
  font-weight: 600;
}

.mobile-nav-actions {
  display: none;
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-picker {
  position: relative;
  width: 62px;
  height: 38px;
  flex: 0 0 auto;
}

.language-picker::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--green-dark);
  border-bottom: 1.5px solid var(--green-dark);
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.language-picker select {
  width: 100%;
  height: 100%;
  padding: 0 25px 0 12px;
  color: var(--green-dark);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  appearance: none;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.language-picker select:hover,
.language-picker select:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 122, 97, 0.1);
}

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(23, 122, 97, 0.18);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 14px 34px rgba(23, 122, 97, 0.25);
  transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button--small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 10px;
  font-size: 0.8rem;
  box-shadow: none;
}

.button--white {
  color: var(--ink);
  background: white;
  border-color: white;
  box-shadow: none;
}

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

.button--outline {
  color: var(--green-dark);
  background: transparent;
  border-color: #b9cbc5;
  box-shadow: none;
}

.button--outline:hover {
  color: white;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.hero {
  padding: clamp(70px, 8vw, 118px) 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(23, 122, 97, 0.08), transparent 30%),
    linear-gradient(180deg, #fbfcfb 0%, #fff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
}

.eyebrow {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

.eyebrow--light {
  color: #89d1bd;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 5.4vw, 5.6rem);
  font-weight: 700;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link--green {
  margin-top: 12px;
  color: var(--green);
}

.hero__proof {
  margin: 44px 0 0;
  padding: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 23px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5652;
  font-size: 0.77rem;
  font-weight: 600;
}

.hero__proof svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.2;
}

.hero__media {
  position: relative;
  padding: 0 18px 24px 0;
}

.hero__frame {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: var(--green-dark);
  border-radius: var(--radius-lg) var(--radius-lg) 10px var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__frame video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 27, 21, 0.44));
}

.hero__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  background: rgba(13, 46, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.hero__badge span {
  padding-right: 15px;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__badge p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero__route-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(330px, 80%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 15px 50px rgba(14, 52, 41, 0.14);
}

.route-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 11px;
}

.route-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero__route-card div {
  display: grid;
}

.hero__route-card small {
  color: #78827f;
  font-size: 0.7rem;
}

.hero__route-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
}

.trust-strip {
  color: white;
  background: var(--green);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
  min-height: 128px;
  padding: 25px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip__grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.trust-strip span {
  margin-top: 7px;
  font-size: 0.73rem;
  opacity: 0.76;
}

.section {
  padding: clamp(95px, 10vw, 155px) 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.split-grid--reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
}

.section-copy {
  max-width: 570px;
}

.section-copy .lead {
  color: #2f3a36;
  font-size: 1.12rem;
  line-height: 1.72;
}

.section-copy > p:not(.eyebrow):not(.lead) {
  color: var(--ink-soft);
}

.about {
  overflow: hidden;
}

.about__visual {
  position: relative;
  width: min(100%, 500px);
  padding: 0 0 32px 32px;
}

.about__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -35px;
  left: -35px;
  width: 230px;
  height: 230px;
  border: 1px solid #bcd8cf;
  border-radius: 50%;
}

.portrait-frame {
  height: 650px;
  overflow: hidden;
  background: #071832;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 8px;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: -34px;
  bottom: 0;
  width: min(360px, 85%);
  padding: 21px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(16, 48, 39, 0.15);
}

.floating-note__icon {
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 12px;
}

.floating-note svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-note p {
  margin: 0;
  display: grid;
  line-height: 1.4;
}

.floating-note strong {
  font-size: 0.82rem;
}

.floating-note span:last-child {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.mission-list {
  margin: 36px 0 25px;
}

.platform-brief {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 4px 14px 14px 4px;
}

.platform-brief > span {
  display: block;
  margin-bottom: 5px;
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.platform-brief p {
  margin: 0;
  color: #40524c;
  font-size: 0.86rem;
  line-height: 1.6;
}

.mission-list > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  border-top: 1px solid var(--line);
}

.mission-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.mission-list > div > span {
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

.mission-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.mission-list strong {
  display: block;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}

.services {
  color: white;
  background: var(--ink);
}

.section-heading {
  margin-bottom: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}

.section-heading > div {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading > p {
  max-width: 395px;
  margin-bottom: 8px;
  color: #aeb8b4;
  font-size: 0.9rem;
}

.section-heading--dark > p,
.why-us .section-heading > p {
  color: var(--ink-soft);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 325px;
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #1d2321;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.service-card:hover {
  background: #252d2a;
  border-color: rgba(255, 255, 255, 0.17);
  transform: translateY(-4px);
}

.service-card--featured {
  color: var(--ink);
  background: var(--green-light);
  border-color: var(--green-light);
}

.service-card--featured > div:nth-child(2) {
  padding-right: 48px;
}

.service-card--featured:hover {
  background: #cfebe2;
  border-color: #cfebe2;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-card__top > span {
  color: #77817e;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.service-card__top svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: #8ed7c2;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card--featured .service-card__top svg {
  stroke: var(--green);
}

.service-card h3 {
  margin-bottom: 11px;
  font-size: 1.5rem;
}

.service-card p {
  margin: 0;
  color: #aeb8b4;
  font-size: 0.87rem;
}

.service-card--featured p {
  color: #50605a;
}

.card-link {
  width: 44px;
  height: 44px;
  position: absolute;
  right: 26px;
  bottom: 26px;
  margin: 0;
  align-self: flex-end;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.card-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.service-card--image {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
}

.service-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 19, 15, 0.83));
}

.service-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-card--image:hover img {
  transform: scale(1.04);
}

.service-card--image > div {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 25px;
  left: 28px;
}

.service-card--image span {
  color: #8ed7c2;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card--image p {
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.team {
  background: var(--off-white);
}

.team__visual {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: var(--radius-lg) 10px var(--radius-lg) var(--radius-lg);
}

.team__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 17px 19px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: white;
  background: rgba(14, 29, 24, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  backdrop-filter: blur(10px);
}

.team__caption span {
  color: #9fe0cc;
  font-size: 0.75rem;
}

.team__caption strong {
  font-size: 0.8rem;
}

.team__chips {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team__chips span {
  padding: 10px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.team__chips svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
}

.fleet {
  padding-bottom: 75px;
}

.fleet__gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 14px;
}

.fleet-card {
  height: 510px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--warm);
  border-radius: 20px;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet-card:first-child img {
  object-position: 55% center;
}

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

.fleet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 18, 13, 0.76));
}

.fleet-card figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  color: white;
}

.fleet-card figcaption > span {
  color: #a3dccc;
  font-size: 0.7rem;
  font-weight: 700;
}

.fleet-card figcaption p {
  margin: 0;
  display: grid;
  font-size: 0.73rem;
  opacity: 0.8;
}

.fleet-card figcaption strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  opacity: 1;
}

.why-us {
  padding-top: 95px;
}

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

.benefit {
  min-height: 280px;
  position: relative;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease;
}

.benefit:hover {
  background: var(--off-white);
}

.benefit > span {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #aab4b0;
  font-size: 0.68rem;
  font-weight: 700;
}

.benefit > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 42px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit h3 {
  margin-bottom: 10px;
}

.benefit p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: white;
  background: var(--green);
}

.reviews::before,
.reviews::after {
  content: "“";
  position: absolute;
  color: rgba(255, 255, 255, 0.07);
  font-family: Georgia, serif;
  font-size: 34rem;
  line-height: 1;
}

.reviews::before {
  top: -80px;
  left: -40px;
}

.reviews::after {
  right: -20px;
  bottom: -300px;
  transform: rotate(180deg);
}

.reviews__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  align-items: center;
  gap: 50px;
}

.reviews__inner .eyebrow {
  margin: 0;
}

.reviews h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.reviews__inner > p:not(.eyebrow) {
  display: none;
}

.contact {
  background: var(--off-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(55px, 9vw, 120px);
}

.contact__intro > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--ink-soft);
}

.contact__image {
  height: 265px;
  margin-top: 42px;
  overflow: hidden;
  border-radius: 18px;
}

.contact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.contact-card {
  padding: clamp(28px, 4vw, 50px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 70px rgba(13, 48, 37, 0.08);
}

.contact-card__header {
  padding-bottom: 27px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-card__header p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.contact-card__header > span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-list {
  margin: 10px 0 30px;
}

.contact-list > a,
.contact-list > div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 43px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #edf0ef;
}

.contact-list > a > span,
.contact-list > div > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-light);
  border-radius: 10px;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list p {
  margin: 0;
  display: grid;
  line-height: 1.4;
}

.contact-list small {
  color: #7c8582;
  font-size: 0.67rem;
}

.contact-list strong {
  font-size: 0.84rem;
}

.contact-arrow {
  color: #a0aaa6;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-list a:hover .contact-arrow {
  color: var(--green);
  transform: translateX(4px);
}

.contact-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.location {
  padding: clamp(78px, 8vw, 118px) 0 0;
  overflow: hidden;
  background: white;
}

.location__heading {
  margin-bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.location__heading h2 {
  margin: 0;
}

.location__heading > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.location__map {
  height: clamp(390px, 33vw, 590px);
  position: relative;
  overflow: hidden;
  background: var(--warm);
  border-top: 1px solid var(--line);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.location__map iframe:not([src]) {
  display: none;
}

.location__consent {
  width: min(560px, calc(100% - 40px));
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  padding: clamp(24px, 4vw, 38px);
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.location__consent > span {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-light);
  border-radius: 50%;
}

.location__consent svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.location__consent h3 {
  margin-bottom: 8px;
}

.location__consent p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.location__consent .button {
  margin-inline: auto;
}

.location__map.is-consented .location__consent {
  display: none;
}

.location__directions {
  min-height: 58px;
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 78px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(8, 28, 21, 0.22);
  transition: background 180ms ease, transform 180ms ease;
}

.location__directions:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.location__directions svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transform: rotate(-45deg);
}

.social-section {
  padding: 70px 0;
  background: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.social-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  min-width: 145px;
  min-height: 50px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--green-dark);
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.social-links a:hover {
  color: white;
  background: var(--green);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-footer {
  color: white;
  background: var(--ink);
}

.footer__top {
  min-height: 205px;
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand--footer .brand__text span {
  color: #8dd3bf;
}

.footer__top > p {
  max-width: 370px;
  margin: 0;
  color: #9fa8a5;
  font-size: 0.86rem;
}

.footer__bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #7f8985;
  font-size: 0.7rem;
}

.footer__bottom > div {
  display: flex;
  gap: 22px;
}

.footer__bottom a:hover {
  color: white;
}

.footer-cookie-link {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.footer-cookie-link:hover {
  color: white;
}

.cookie-consent {
  width: min(1120px, calc(100% - 32px));
  position: fixed;
  z-index: 1001;
  right: 16px;
  bottom: 16px;
  left: 16px;
  margin-inline: auto;
  padding: clamp(20px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(3, 20, 15, 0.28);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent__copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.cookie-consent__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-light);
  border-radius: 50%;
}

.cookie-consent__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.cookie-consent h2 {
  margin-bottom: 5px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.cookie-consent p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.cookie-consent__actions {
  width: min(100%, 320px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cookie-consent__action {
  min-width: 150px;
  min-height: 48px;
  padding: 0 20px;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 9px;
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cookie-consent__action:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.booking-modal {
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: clamp(28px, 5vw, 52px);
  overflow-y: auto;
  background: white;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(3, 20, 15, 0.35);
}

.booking-modal[open] {
  animation: modal-in 220ms ease both;
}

.booking-modal::backdrop {
  background: rgba(8, 26, 20, 0.72);
  backdrop-filter: blur(6px);
}

.booking-modal__heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.booking-modal__heading > p:last-child {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.modal-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.modal-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

#booking-form {
  margin-top: 30px;
  display: grid;
  gap: 15px;
}

#booking-form label {
  display: grid;
  gap: 7px;
  color: #46514d;
  font-size: 0.74rem;
  font-weight: 700;
}

#booking-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

#booking-form input:focus {
  background: white;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 122, 97, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#booking-form .button {
  width: 100%;
  margin-top: 5px;
}

#booking-form > small {
  color: #7b8581;
  text-align: center;
}

.back-to-top {
  width: 46px;
  height: 46px;
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green-dark);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(7, 40, 30, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal--delay {
  transition-delay: 100ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .hero__grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .hero__frame {
    min-height: 480px;
  }

  .split-grid,
  .split-grid--reverse {
    gap: 65px;
  }

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

  .fleet__gallery {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .fleet-card:last-child {
    display: none;
  }

  .contact-card__actions {
    grid-template-columns: 1fr;
  }

  .location__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 36px, 760px);
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cookie-consent__actions {
    width: 100%;
    max-width: 360px;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 75px;
    right: 18px;
    left: 18px;
    padding: 18px;
    display: grid;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid #edf0ef;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav-actions {
    padding-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-nav-actions .button,
  .mobile-nav-actions > a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--green);
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .mobile-nav-actions > a {
    color: var(--green-dark);
    background: white;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    padding-top: 65px;
  }

  .hero__grid,
  .split-grid,
  .split-grid--reverse,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 680px;
  }

  .hero__media {
    width: min(100%, 680px);
  }

  .hero__frame {
    min-height: 500px;
  }

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

  .trust-strip__grid > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-strip__grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section-copy {
    max-width: none;
  }

  .about__visual {
    width: min(85%, 530px);
    margin-inline: auto;
  }

  .split-grid--reverse .section-copy {
    order: 2;
  }

  .team__visual {
    width: min(100%, 650px);
    height: 530px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 590px;
  }

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

  .reviews__inner {
    grid-template-columns: 1fr auto;
  }

  .reviews__inner .eyebrow {
    grid-column: 1 / -1;
  }

  .contact__intro {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: end;
    gap: 30px;
  }

  .contact__intro .eyebrow,
  .contact__intro h2 {
    grid-column: 1;
  }

  .contact__intro > p:not(.eyebrow) {
    grid-column: 1;
  }

  .contact__image {
    height: 100%;
    min-height: 300px;
    margin: 0;
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    padding-block: 55px;
  }

  .footer__top .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 28px);
  }

  .cookie-consent {
    width: calc(100% - 20px);
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-height: calc(100dvh - 20px);
    padding: 20px;
    overflow-y: auto;
    gap: 16px;
  }

  .cookie-consent__copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-consent__icon {
    width: 38px;
    height: 38px;
  }

  .cookie-consent__actions {
    max-width: none;
  }

  .cookie-consent__action {
    min-width: 0;
    padding-inline: 12px;
  }

  body {
    font-size: 15px;
  }

  .announcement {
    padding-top: env(safe-area-inset-top);
  }

  .announcement__inner {
    justify-content: center;
  }

  .announcement p {
    white-space: nowrap;
  }

  .announcement a {
    display: none;
  }

  .announcement__desktop {
    display: none;
  }

  .announcement__mobile {
    display: inline;
  }

  .nav-wrap {
    height: 72px;
  }

  .brand__mark {
    width: 35px;
    height: 35px;
  }

  .brand__text {
    font-size: 1.13rem;
  }

  .language-picker {
    width: 58px;
  }

  .main-nav {
    top: 64px;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
  }

  .hero {
    padding: 46px 0 58px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.6rem, 11vw, 3.2rem);
    line-height: 0.96;
  }

  .hero__lead {
    margin-bottom: 26px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .hero__proof {
    margin-top: 32px;
    padding-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }

  .hero__proof li:last-child {
    grid-column: 1 / -1;
  }

  .hero__media {
    padding: 0 9px 20px 0;
  }

  .hero__frame {
    min-height: 350px;
    border-radius: 24px 24px 8px 24px;
  }

  .hero__badge {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .hero__badge span {
    font-size: 1.15rem;
  }

  .hero__route-card {
    width: min(310px, 88%);
  }

  .trust-strip__grid > div {
    min-height: 106px;
    padding: 20px;
  }

  .trust-strip strong {
    font-size: 1.45rem;
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 10vw, 3.15rem);
    line-height: 1.06;
  }

  .eyebrow {
    margin-bottom: 17px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .hero__grid,
  .split-grid,
  .split-grid--reverse,
  .contact__grid {
    gap: 48px;
  }

  .about__visual {
    width: calc(100% - 15px);
    padding: 0 0 26px 0;
  }

  .about__visual::before {
    display: none;
  }

  .portrait-frame {
    height: 470px;
    border-radius: 24px 24px 24px 8px;
  }

  .floating-note {
    right: -15px;
    width: calc(100% - 18px);
    padding: 16px;
  }

  .floating-note__icon {
    width: 42px;
    height: 42px;
  }

  .mission-list {
    margin-top: 28px;
  }

  .mission-list > div {
    padding: 15px 0;
  }

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

  .service-card {
    min-height: 240px;
    padding: 24px;
  }

  .service-card--image {
    min-height: 330px;
  }

  .team__visual {
    height: 390px;
  }

  .team__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

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

  .fleet-card {
    height: 380px;
  }

  .fleet-card:last-child {
    display: block;
  }

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

  .benefit {
    min-height: 0;
    padding: 25px;
  }

  .benefit > svg {
    margin-bottom: 27px;
  }

  .benefit p {
    max-width: none;
  }

  .reviews {
    padding: 72px 0;
  }

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

  .reviews__inner > p:not(.eyebrow) {
    display: block;
    margin: 0;
    opacity: 0.78;
  }

  .reviews .button {
    width: 100%;
    justify-self: start;
  }

  .contact__intro {
    display: block;
  }

  .contact__image {
    height: 260px;
    min-height: 0;
    margin-top: 34px;
  }

  .contact-card__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-card__actions {
    gap: 9px;
  }

  .contact-card__actions .button {
    width: 100%;
  }

  .contact-list > a,
  .contact-list > div {
    grid-template-columns: 43px 1fr;
  }

  .contact-arrow {
    display: none;
  }

  .social-section__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .location {
    padding-top: 68px;
  }

  .location__heading {
    margin-bottom: 30px;
  }

  .location__map {
    height: 430px;
  }

  .location__directions {
    top: 14px;
    left: 66px;
    min-height: 52px;
    padding-inline: 18px;
    font-size: 0.72rem;
  }

  .social-section {
    padding: 58px 0;
  }

  .social-links {
    width: 100%;
  }

  .social-links a {
    min-width: 0;
    flex: 1;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__top .button {
    width: 100%;
  }

  .footer__bottom {
    padding: 26px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer__bottom > div {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

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

  .booking-modal {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 10px);
    margin: auto 0 0;
    padding: 34px 20px calc(24px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
  }

  .booking-modal__heading h2 {
    padding-right: 30px;
    font-size: 2.35rem;
  }

  .modal-close {
    top: 14px;
    right: 14px;
  }

  #booking-form {
    margin-top: 24px;
    gap: 12px;
  }

  #booking-form input {
    min-height: 49px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 380px) {
  :root {
    --container: calc(100% - 24px);
  }

  .announcement {
    font-size: 0.7rem;
  }

  .brand__text {
    font-size: 1.05rem;
  }

  .mobile-nav-actions {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .hero__proof li:last-child {
    grid-column: auto;
  }

  .hero__badge p {
    font-size: 0.75rem;
  }

  .hero__route-card {
    width: 94%;
  }

  .trust-strip__grid > div {
    min-height: 98px;
    padding: 16px;
  }

  .trust-strip span {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .contact-list strong {
    overflow-wrap: anywhere;
  }

  .social-links {
    flex-direction: column;
  }

  .social-links a {
    flex: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
