:root {
  --ink: #123242;
  --muted: #627585;
  --sea: #027d9f;
  --sea-dark: #035a78;
  --aqua: #19b9c7;
  --sun: #f5a623;
  --coral: #e85f4f;
  --sand: #f6f1e7;
  --surface: #ffffff;
  --line: rgba(18, 50, 66, 0.12);
  --shadow: 0 22px 60px rgba(13, 71, 92, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: #fbfdfd;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 138px;
  height: 56px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a,
.tour-body a {
  text-decoration: none;
}

.desktop-nav a:hover,
.tour-body a:hover {
  color: var(--sea);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle {
  display: grid;
  grid-template-columns: repeat(2, 42px);
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #eef8fa;
}

.lang-btn {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  color: var(--sea-dark);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.active {
  color: #fff;
  background: var(--sea-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--sea-dark);
  box-shadow: 0 12px 28px rgba(3, 90, 120, 0.22);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--sea);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button-ghost {
  color: var(--sea-dark);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.button-ghost:hover {
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 42, 58, 0.86), rgba(3, 90, 120, 0.45)),
    linear-gradient(145deg, #056f90 0%, #19b9c7 48%, #f6f1e7 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.water-layer,
.sun-disc,
.boat-line {
  position: absolute;
  pointer-events: none;
}

.water-layer {
  left: -8%;
  right: -8%;
  bottom: -18%;
  height: 45%;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.18);
}

.water-layer-two {
  bottom: -27%;
  height: 52%;
  background: rgba(255, 255, 255, 0.25);
}

.sun-disc {
  right: 10%;
  top: 18%;
  width: clamp(120px, 20vw, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe58b, var(--sun) 64%, #e86c3f);
  opacity: 0.82;
}

.boat-line {
  right: 8%;
  bottom: 28%;
  width: min(420px, 44vw);
  height: 120px;
  border-bottom: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 0 0 60% 60%;
  transform: rotate(-4deg);
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: auto auto auto clamp(18px, 7vw, 96px);
  padding: 72px 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe28c;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  min-height: 118px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.trust-strip span,
.section p,
.tour-body p,
.benefit-item p,
.contact-intro p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.section,
.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

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

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tour-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(18, 50, 66, 0.08);
}

.tour-card.featured {
  border-color: rgba(2, 125, 159, 0.32);
  box-shadow: var(--shadow);
}

.tour-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #d9eef3;
  cursor: pointer;
}

.tour-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 42, 58, 0), rgba(3, 42, 58, 0.16));
  pointer-events: none;
}

.tour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.tour-media span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(3, 42, 58, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.tour-media:hover img,
.tour-media:focus-visible img {
  transform: scale(1.03);
}

.tour-media:focus-visible {
  outline: 4px solid rgba(25, 185, 199, 0.38);
  outline-offset: -4px;
}

.tour-media-snorkel img {
  object-position: center 42%;
}

.tour-media-catamaran img {
  object-position: center 58%;
}

.tour-media-kuza img {
  object-position: center 52%;
}

.tour-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.price {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #123242;
  background: #ffe8a8;
  font-size: 0.88rem;
  font-weight: 900;
}

.tour-details {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.tour-details li::marker {
  color: var(--sea);
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--sea-dark);
  background: #e7f7fa;
  font-size: 0.78rem;
  font-weight: 800;
}

.tour-body a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  color: var(--sea-dark);
  font-weight: 800;
}

.reviews-section {
  padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 72px);
  background: #fff;
}

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

.review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fcfc;
  box-shadow: 0 14px 38px rgba(18, 50, 66, 0.07);
}

.stars {
  margin-bottom: 14px;
  color: var(--sun);
  font-size: 1rem;
  letter-spacing: 0;
}

.review-card p {
  color: var(--muted);
  line-height: 1.65;
}

.review-card strong {
  color: var(--ink);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 27, 38, 0.82);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-dialog {
  display: grid;
  gap: 16px;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  padding: 18px;
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.gallery-header,
.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gallery-header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.gallery-close,
.gallery-nav,
.gallery-thumbs button {
  border: 0;
  cursor: pointer;
}

.gallery-close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--ink);
  background: #eef8fa;
  font-size: 2rem;
  line-height: 1;
}

.gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: #082d3b;
}

.gallery-stage img {
  width: 100%;
  max-height: min(66vh, 620px);
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 42, 58, 0.74);
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.gallery-footer {
  align-items: flex-start;
}

#galleryCount {
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 800;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.gallery-thumbs button {
  width: 64px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  padding: 0;
  background: #d9eef3;
  opacity: 0.62;
}

.gallery-thumbs button.active {
  outline: 3px solid var(--aqua);
  opacity: 1;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  background: var(--sand);
}

.split-copy {
  max-width: 620px;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(18, 50, 66, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.benefit-item span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: var(--sea-dark);
  font-weight: 800;
}

.benefit-item p {
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(231, 247, 250, 0.65), rgba(255, 255, 255, 0.96)),
    #fff;
}

.contact-intro {
  position: sticky;
  top: 110px;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(25, 185, 199, 0.24);
  border-color: var(--aqua);
}

.form-submit {
  width: 100%;
}

.whatsapp-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(25, 185, 199, 0.35);
  border-radius: 8px;
  background: #ecfbf8;
}

.whatsapp-panel p {
  margin: 0;
  color: var(--sea-dark);
  font-weight: 700;
}

.whatsapp-button {
  background: #148b57;
}

.whatsapp-button:hover {
  background: #0d7447;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer img {
  width: 96px;
  height: 52px;
  object-fit: contain;
}

.site-footer p {
  margin: 4px 0 0;
}

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

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin: auto 18px 0;
    padding-bottom: 92px;
  }

  .trust-strip,
  .tour-grid,
  .split-section,
  .contact-section,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .tour-media {
    aspect-ratio: 16 / 10;
  }

  .contact-intro {
    position: static;
  }
}

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

  .brand img {
    width: 104px;
    height: 46px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-toggle {
    grid-template-columns: repeat(2, 36px);
  }

  .button-small {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-actions,
  .form-grid,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section,
  .contact-section,
  .reviews-section {
    padding: 58px 16px;
  }

  .tour-media {
    aspect-ratio: 4 / 5;
  }

  .tour-media-catamaran,
  .tour-media-kuza {
    aspect-ratio: 4 / 3;
  }

  .tour-media-snorkel img {
    object-position: center 38%;
  }

  .tour-body,
  .review-card,
  .benefit-item,
  .lead-form {
    padding: 18px;
  }

  .gallery-modal {
    padding: 10px;
  }

  .gallery-dialog {
    max-height: calc(100vh - 20px);
    padding: 12px;
  }

  .gallery-header,
  .gallery-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-stage {
    min-height: 220px;
  }

  .gallery-nav {
    width: 38px;
    height: 38px;
    font-size: 2rem;
  }

  .gallery-thumbs {
    justify-content: flex-start;
  }

  .benefit-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .benefit-item span {
    width: 42px;
    height: 42px;
  }
}
