:root {
  --ink: #16181b;
  --muted: #5e6670;
  --line: #d9dde3;
  --paper: #f6f4ef;
  --white: #ffffff;
  --copper: #b9814e;
  --copper-dark: #7f573a;
  --teal: #0f5e67;
  --blue: #203f62;
  --shadow: 0 22px 70px rgba(14, 19, 26, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.en :lang(hr) {
  display: none;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 14px clamp(16px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 15, 18, 0.8), rgba(13, 15, 18, 0.25) 72%, rgba(13, 15, 18, 0));
}

.brand img {
  width: 174px;
  height: auto;
}

.nav-links,
.header-actions,
.hero-cta,
.pill-row,
.footer-links,
.route-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.footer-links a,
.ghost-link {
  text-decoration: none;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover,
.footer-links a:hover {
  color: #f0b274;
}

.ghost-link,
.lang-toggle {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
}

.lang-toggle {
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 116px clamp(18px, 5vw, 70px) clamp(24px, 5vw, 54px);
  overflow: clip;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 12, 17, 0.84), rgba(7, 12, 17, 0.56) 46%, rgba(7, 12, 17, 0.18)),
    linear-gradient(0deg, rgba(9, 12, 16, 0.75), rgba(9, 12, 16, 0.08) 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  color: var(--white);
  padding-bottom: 154px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #f0b274;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--copper-dark);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.button,
.booking-strip button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.booking-strip button {
  background: var(--copper);
  color: #101214;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

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

.booking-strip {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(18px, 5vw, 54px);
  left: clamp(18px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr auto;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.booking-strip label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-strip input,
.booking-strip select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfbfb;
  font: inherit;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
}

.proof-band div {
  min-height: 138px;
  padding: 28px clamp(18px, 4vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-band strong {
  display: block;
  margin-bottom: 8px;
  color: #f0b274;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.proof-band span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.split-section,
.route-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 70px);
}

.section-text p,
.route-section p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.pill-row {
  flex-wrap: wrap;
  margin-top: 24px;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  font-weight: 800;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 14px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 3;
  margin-bottom: 58px;
}

.service-grid {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 70px);
  background: var(--white);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.section-heading {
  grid-column: 1 / -1;
}

.service-grid article {
  overflow: hidden;
  border: 1px solid #e7e2da;
  border-radius: 8px;
  background: #fbfaf7;
}

.service-grid article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-grid article div {
  padding: 22px;
}

.service-grid article p {
  color: var(--muted);
  line-height: 1.65;
}

.route-section {
  grid-template-columns: minmax(0, 1fr) auto;
  background: linear-gradient(135deg, #eef3f4, #f9f6ef);
}

.route-actions {
  flex-direction: column;
  align-items: stretch;
  min-width: min(360px, 100%);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 70px) 96px;
  background: #101214;
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.72);
}

.mobile-actions {
  display: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    padding-bottom: 232px;
  }

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

  .booking-strip button {
    grid-column: 1 / -1;
  }

  .proof-band,
  .split-section,
  .service-grid,
  .route-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 12px 14px;
  }

  .brand img {
    width: 132px;
  }

  .ghost-link {
    display: none;
  }

  .hero {
    min-height: 100svh;
    display: block;
    padding: 94px 16px 92px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4.15rem);
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .proof-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .split-section,
  .service-grid,
  .route-section {
    padding: 62px 16px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img:first-child {
    margin-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 92px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-actions {
    position: fixed;
    z-index: 30;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  }

  .mobile-actions a {
    min-height: 52px;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
  }

  .mobile-actions a:last-child {
    background: var(--copper);
    color: #101214;
  }
}
