:root {
  --bg: #f4f8f8;
  --surface: #ffffff;
  --soft: #e7f3f2;
  --ink: #111820;
  --muted: #62747c;
  --line: #d7e5e7;
  --teal: #057b7c;
  --teal-dark: #075f68;
  --coral: #c85b4d;
  --action: #0c8f73;
  --green: #65a946;
  --shadow: 0 24px 70px rgba(10, 48, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(5, 123, 124, 0.14), transparent 34%),
    linear-gradient(180deg, #f8fbfb 0%, var(--bg) 48%, #eef5f5 100%);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header,
.hero,
.services,
.transport-modes,
.method,
.destinations,
.faq,
.quote-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  margin-top: 22px;
}

.header-stacked {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 22px;
  color: #dff4f3;
  background: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
}

.mainline {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 250px;
}

.brand img {
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #46636b;
  font-size: 14px;
  font-weight: 800;
}

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

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px !important;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--teal-dark) !important;
}

.lang-switcher a {
  display: inline-flex;
  min-width: 58px;
  height: 34px;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.lang-switcher .flag {
  font-size: 15px;
  line-height: 1;
}

.lang-switcher .is-active {
  color: #fff;
  background: var(--teal-dark);
}

.header-cta,
.primary,
.secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta {
  padding: 0 20px;
  border: 1px solid var(--teal-dark);
  color: var(--teal-dark);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 46px;
  align-items: center;
  padding: 64px 0 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.3vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary {
  padding: 0 24px;
  color: #fff;
  background: var(--action);
  box-shadow: 0 16px 30px rgba(8, 112, 94, 0.24);
}

.secondary {
  padding: 0 24px;
  border: 1px solid var(--line);
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  position: relative;
}

.main-photo {
  height: 640px;
  overflow: hidden;
  margin: 0;
  border-radius: 34px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.quote-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 300px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.quote-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-card strong {
  display: block;
  margin: 8px 0;
  color: var(--teal-dark);
  font-size: 28px;
}

.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.trust-strip span {
  padding: 22px 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.services,
.transport-modes,
.method,
.destinations,
.faq {
  padding: 94px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading > * {
  min-width: 0;
}

.section-heading h2,
.mode-layout h2,
.method h2,
.destinations h2,
.faq h2,
.quote-section h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.mode-layout p,
.quote-section p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  overflow-wrap: break-word;
}

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

.service-grid article {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.service-grid figure {
  height: 180px;
  margin: 0;
  background: var(--soft);
}

.service-grid figure img {
  transition: transform 0.35s ease;
}

.service-grid article:hover figure img {
  transform: scale(1.04);
}

.service-body {
  padding: 24px 28px 28px;
}

.service-grid span {
  display: inline-flex;
  min-width: 48px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.service-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.service-grid p,
.mode-cards p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.service-grid .accent-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.service-grid .accent-card span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.service-grid .accent-card p {
  color: #d9f3f2;
}

.mode-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 48px;
  align-items: start;
}

.mode-layout > div:first-child {
  position: sticky;
  top: 24px;
}

.mode-layout > div:first-child p {
  margin-top: 12px;
}

.mode-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.mode-cards article {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
}

.mode-cards img {
  height: 210px;
  border-radius: 18px;
}

.mode-content {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
}

.mode-content h3 {
  margin-bottom: 8px;
  font-size: 28px;
}

.mode-content p {
  margin-bottom: 18px;
}

.mode-content a {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--teal-dark);
  background: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.method {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.method figure {
  height: 620px;
  overflow: hidden;
  margin: 0;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.method-copy ol {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.method-copy li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.method-copy strong {
  color: var(--teal-dark);
  font-size: 18px;
}

.method-copy span {
  color: var(--muted);
  line-height: 1.55;
}

.destinations {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.destination-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.destination-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 24px;
}

.destination-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.faq-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.quote-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 100px;
  margin-bottom: 80px;
  padding: 42px;
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 95, 104, 0.94), rgba(5, 123, 124, 0.9)),
    url("https://images.unsplash.com/photo-1605745341112-85968b19335b?auto=format&fit=crop&w=1400&q=80")
    center / cover;
}

.quote-section .eyebrow,
.quote-section p {
  color: #d9f3f2;
}

.quote-section h2 {
  max-width: 780px;
}

.quote-section p {
  max-width: 680px;
  margin-top: 18px;
}

.site-footer {
  color: #dff4f3;
  background:
    linear-gradient(135deg, rgba(5, 78, 86, 0.98), rgba(4, 102, 104, 0.98)),
    radial-gradient(circle at top right, rgba(101, 169, 70, 0.35), transparent 36%);
}

.footer-inner {
  display: grid;
  width: min(1280px, calc(100% - 48px));
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 42px;
  margin: 0 auto;
  padding: 56px 0 42px;
}

.footer-brand img {
  width: 230px;
  height: auto;
  margin-bottom: 22px;
}

.footer-brand p,
.footer-contact p,
.footer-bottom {
  color: rgba(223, 244, 243, 0.78);
  line-height: 1.65;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.site-footer a:hover {
  color: #fff;
}

.footer-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: var(--action);
}

.footer-bottom {
  display: flex;
  width: min(1280px, calc(100% - 48px));
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    margin-top: 16px;
  }

  .site-header nav {
    display: none;
  }

  .site-header .lang-switcher {
    display: inline-flex;
  }

  .topline {
    display: none;
  }

  .mainline {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .brand {
    width: 200px;
  }

  .hero,
  .section-heading,
  .mode-layout,
  .method,
  .destinations {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .main-photo,
  .method figure {
    height: 440px;
  }

  .mode-layout > div:first-child {
    position: static;
  }

  .service-grid,
  .destination-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .services,
  .transport-modes,
  .method,
  .destinations,
  .faq,
  .quote-section {
    width: calc(100% - 32px);
    max-width: 520px;
  }

  .site-header {
    width: auto;
    max-width: none;
    margin: 16px 16px 0;
    padding: 0;
  }

  .mainline {
    width: 100%;
    display: flex;
    min-height: 72px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 8px 12px;
  }

  .header-actions {
    flex-shrink: 0;
    margin-left: 0;
  }

  .brand {
    width: 158px;
  }

  .brand img {
    height: 48px;
  }

  .lang-switcher {
    padding: 3px;
  }

  .lang-switcher a {
    min-width: 42px;
    height: 34px;
    gap: 0;
  }

  .lang-switcher .flag {
    font-size: 16px;
  }

  .lang-switcher .code {
    display: none;
  }

  .header-cta {
    display: none;
  }

  h1 {
    max-width: 12ch;
    font-size: 38px;
    line-height: 1;
    overflow-wrap: break-word;
  }

  .lead {
    max-width: 32ch;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions a {
    width: min(100%, 340px);
  }

  .main-photo {
    height: 390px;
    border-radius: 24px;
  }

  .quote-card {
    position: static;
    width: auto;
    margin: -92px 14px 0;
    overflow: hidden;
  }

  .quote-card p {
    max-width: 30ch;
    overflow-wrap: break-word;
  }

  .eyebrow,
  .section-kicker {
    max-width: 30ch;
    font-size: 10px;
    line-height: 1.45;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    padding: 17px 12px;
    border-top: 1px solid var(--line);
  }

  .services,
  .transport-modes,
  .method,
  .destinations,
  .faq {
    padding-top: 68px;
  }

  .section-heading h2,
  .mode-layout h2,
  .method h2,
  .destinations h2,
  .faq h2,
  .quote-section h2 {
    font-size: 30px;
  }

  .section-heading {
    gap: 22px;
  }

  .section-heading h2 {
    max-width: 14ch;
  }

  .section-heading p {
    max-width: 32ch;
  }

  .service-grid,
  .destination-grid,
  .mode-cards article,
  .method-copy li {
    grid-template-columns: 1fr;
  }

  .mode-cards img {
    grid-row: auto;
    height: 230px;
  }

  .mode-cards h3,
  .mode-cards p {
    grid-column: auto;
  }

  .method figure {
    height: 360px;
    border-radius: 24px;
  }

  .quote-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .quote-section .primary {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .footer-inner {
    width: min(520px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 42px;
  }

  .footer-bottom {
    width: min(520px, calc(100% - 32px));
    flex-direction: column;
  }
}
