:root {
  --ink: #10201c;
  --muted: #5d6c66;
  --paper: #f8fbf7;
  --mist: #e6f0eb;
  --river: #0f766e;
  --river-dark: #07443f;
  --sun: #f0b44c;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 31, 28, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.site-header[data-scrolled="true"] {
  color: var(--ink);
  background: rgba(248, 251, 247, 0.92);
  box-shadow: 0 1px 20px rgba(12, 44, 39, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  font-size: 0.72rem;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-toggle,
.menu-toggle {
  border: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
}

.language-toggle {
  min-width: 44px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 68, 63, 0.96), rgba(15, 118, 110, 0.64)),
    radial-gradient(circle at 70% 30%, rgba(240, 180, 76, 0.28), transparent 32%);
}

.hero-slider,
.slide,
.slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 4s ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 22, 19, 0.76) 0%, rgba(4, 22, 19, 0.46) 42%, rgba(4, 22, 19, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 22, 19, 0.46), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) clamp(80px, 12vh, 132px);
  animation: rise 760ms ease both;
}

.eyebrow,
.section-kicker,
.price-label {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border: 1px solid var(--sun);
  color: #1d1608;
  background: var(--sun);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.slider-dots {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(28px, 7vh, 70px);
  z-index: 3;
  display: flex;
  gap: 9px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
}

.slider-dots button.is-active {
  background: var(--white);
}

.section-band {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 7vw, 86px);
}

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

.section-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.flow p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.flow p + p {
  margin-top: 18px;
}

.photo-band {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(420px, 62vw, 680px);
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(4, 22, 19, 0.72), rgba(4, 22, 19, 0.12) 58%),
    url("./assets/neretva-vodopad-kanjon.jpg") center / cover no-repeat;
}

.photo-band-content {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 8vw, 82px) 0;
}

.photo-band p {
  margin: 0 0 12px;
  color: var(--sun);
  font-weight: 950;
  text-transform: uppercase;
}

.photo-band h2 {
  max-width: 780px;
}

.experience {
  padding: 82px 0;
  background: var(--river-dark);
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.timeline article {
  min-height: 240px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.timeline article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.timeline span {
  color: var(--sun);
  font-weight: 900;
}

.timeline h3 {
  margin: 48px 0 12px;
  font-size: 1.25rem;
}

.timeline p,
.price-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.gallery {
  background: var(--paper);
}

.gallery .section-kicker {
  color: var(--river);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  background: var(--mist);
  box-shadow: 0 1px 0 rgba(7, 68, 63, 0.08);
}

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

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.12);
  filter: saturate(1.1);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.34);
  outline-offset: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(4, 22, 19, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  line-height: 1;
}

.prices {
  background: var(--mist);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.single-price {
  grid-template-columns: minmax(0, 1fr);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 68, 63, 0.08);
}

.price-card.featured {
  color: var(--white);
  background: var(--river);
  box-shadow: var(--shadow);
}

.request-card {
  min-height: 360px;
  padding: clamp(32px, 6vw, 62px);
}

.price-card .price-label {
  color: var(--river);
}

.price-card.featured .price-label {
  color: var(--sun);
}

.price-card h3 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
}

.request-card h3 {
  font-size: clamp(3.8rem, 12vw, 8.5rem);
  line-height: 0.92;
}

.request-card p {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.price-card p {
  color: var(--muted);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.price-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: var(--river);
  font-weight: 900;
}

.price-card.featured a {
  color: var(--sun);
}

.contact {
  padding: clamp(76px, 10vw, 132px) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.contact .section-kicker {
  color: var(--river);
}

.contact p {
  max-width: 620px;
  margin-top: 24px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--river-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

.map-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(7, 68, 63, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 31, 28, 0.08);
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 7px;
  background: var(--mist);
}

.map-actions {
  display: grid;
  gap: 12px;
}

.whatsapp {
  text-align: center;
  color: var(--river);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #071f1c;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sun);
  font-weight: 800;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    color: var(--ink);
    background: rgba(248, 251, 247, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .site-nav a,
  .language-toggle {
    width: 100%;
    min-height: 44px;
    padding: 12px;
    text-align: left;
  }

  .language-toggle {
    text-align: center;
  }

  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .timeline,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 82px;
  }

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

  .slider-dots {
    right: auto;
    left: 16px;
    bottom: 30px;
  }

  .timeline,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .timeline article {
    min-height: 190px;
  }

  .map-panel {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }
}
