﻿:root {
  --navy: #1A3A5C;
  --deep-navy: #10263D;
  --blue: #2E6E87;
  --terracotta: #C4622D;
  --terracotta-dark: #A94E22;
  --gold: #B8972A;
  --sand: #F5EFE0;
  --cream: #FFF9ED;
  --aged-paper: #EFE2C8;
  --ink: #172535;
  --muted: #64717F;
  --white: #FFFFFF;
  --border: rgba(26, 58, 92, 0.14);
  --light-border: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 70px rgba(26, 58, 92, 0.16);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  z-index: 999;
  background-image:
    radial-gradient(rgba(26,58,92,0.10) 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(16, 38, 61, 0.58);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.header-side {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-left {
  justify-content: flex-start;
  padding-left: 10px;
}

.header-right {
  justify-content: flex-end;
}

.header-side a,
.main-nav a {
  font-size: 0.9rem;
  opacity: 0.88;
}

.header-side a:hover,
.main-nav a:hover {
  opacity: 1;
}

.logo-lockup {
  display: grid;
  place-items: center;
}

.logo-circle {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(184,151,42,0.9);
  border-radius: 999px;
  background: rgba(255,249,237,0.92);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 14px 38px rgba(0,0,0,0.18);
}

.logo-circle strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.logo-top,
.logo-bottom {
  display: block;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(196,98,45,0.35);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 170px 6vw 150px;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(184,151,42,0.22), transparent 20%),
    linear-gradient(135deg, rgba(26,58,92,0.10), rgba(26,58,92,0.40)),
    linear-gradient(120deg, #7fb1c2, #1A3A5C 45%, #0B1E31);
  transform: scale(1.04);
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.hero-video-placeholder span {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  color: rgba(255,255,255,0.70);
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(rgba(10,25,42,0.40), rgba(10,25,42,0.54)),
    radial-gradient(circle at center, rgba(196,98,45,0.14), transparent 45%);
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  max-width: 1020px;
}

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

.eyebrow.light {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  line-height: 1.08;
}

.hero h1 {
  color: var(--white);
}

h1 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9.6rem);
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.journey-pill {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 920px;
  margin: 0 auto 34px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(14px);
}

.journey-pill span,
.journey-pill i {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.88rem;
}

.journey-pill span {
  background: rgba(255,255,255,0.16);
  color: var(--white);
  font-weight: 800;
}

.journey-pill i {
  color: rgba(255,255,255,0.76);
}

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

.centered-actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-large {
  min-height: 56px;
  padding: 16px 28px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(196, 98, 45, 0.34);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
}

.btn-glass {
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.btn-secondary {
  border-color: rgba(26, 58, 92, 0.22);
  color: var(--navy);
  background: rgba(255,255,255,0.58);
}

.full-width {
  width: 100%;
}

.hero-bottom-panel {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(1100px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 28px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
}

.hero-bottom-panel div {
  padding: 18px;
  background: rgba(0,0,0,0.10);
}

.hero-bottom-panel strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
}

.hero-bottom-panel span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.section {
  padding: 110px 6vw;
}

.section-sand {
  background:
    radial-gradient(circle at top left, rgba(184,151,42,0.10), transparent 28%),
    var(--sand);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 50px;
}

.section-heading p:not(.eyebrow),
.private-copy p,
.booking-copy p {
  color: #536575;
  font-size: 1.08rem;
}

.tour-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.tour-date-card {
  overflow: hidden;
  border: 1px solid rgba(26,58,92,0.14);
  border-radius: 34px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 24px 70px rgba(26,58,92,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-date-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(26,58,92,0.18);
}

.tour-card-image {
  height: 220px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.76);
  font-weight: 800;
  background:
    linear-gradient(rgba(26,58,92,0.02), rgba(26,58,92,0.28)),
    linear-gradient(135deg, #8fc2d0, #1A3A5C);
}

.placeholder-1 {
  background:
    linear-gradient(rgba(26,58,92,0.04), rgba(26,58,92,0.32)),
    linear-gradient(135deg, #8fc2d0, #1A3A5C);
}

.placeholder-2 {
  background:
    linear-gradient(rgba(26,58,92,0.04), rgba(26,58,92,0.36)),
    linear-gradient(135deg, #D8B069, #2E6E87);
}

.placeholder-3 {
  background:
    linear-gradient(rgba(26,58,92,0.04), rgba(26,58,92,0.34)),
    linear-gradient(135deg, #D38B62, #10263D);
}

.tour-card-content {
  padding: 26px;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.tour-meta-list {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.tour-meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(26,58,92,0.10);
  color: var(--muted);
  font-size: 0.93rem;
}

.tour-meta-list strong {
  color: var(--navy);
  text-align: right;
}

.muted {
  opacity: 0.75;
}

.mini-route-strip {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  max-width: 980px;
  margin: 36px auto 0;
  color: var(--navy);
  font-weight: 800;
}

.mini-route-strip div {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.notice {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.centered-text {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.organic-grid {
  align-items: start;
}

.feature-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.58));
  box-shadow: 0 20px 60px rgba(26,58,92,0.09);
}

.feature-card.raised {
  transform: translateY(-16px);
}

.feature-card.lowered {
  transform: translateY(24px);
}

.feature-number {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 800;
}

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

.route-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(196,98,45,0.08), transparent 30%),
    var(--cream);
}

.route-map-card {
  position: relative;
  min-height: 520px;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    radial-gradient(circle at 70% 30%, rgba(184,151,42,0.18), transparent 22%),
    linear-gradient(135deg, #F9F0D8, #CFE4E5 45%, #9FCBD4);
  box-shadow: var(--shadow);
}

.map-watermark {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 12rem);
  color: rgba(26,58,92,0.08);
  letter-spacing: -0.08em;
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-svg path {
  fill: none;
  stroke: rgba(26,58,92,0.62);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
}

.route-svg .return-path {
  stroke: rgba(196,98,45,0.54);
}

.route-node {
  position: absolute;
  z-index: 2;
  width: 170px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 22px;
  background: rgba(255,249,237,0.82);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(26,58,92,0.16);
}

.route-node span {
  display: block;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
}

.route-node strong {
  display: block;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.18rem;
}

.route-node small {
  display: block;
  color: var(--muted);
}

.node-start {
  left: 8%;
  bottom: 18%;
}

.node-pucisca {
  left: 43%;
  top: 34%;
}

.node-povlja {
  right: 8%;
  top: 14%;
}

.node-return {
  right: 12%;
  bottom: 16%;
}

.private-section {
  background:
    radial-gradient(circle at top left, rgba(184,151,42,0.18), transparent 30%),
    linear-gradient(135deg, #0D2136, var(--navy));
  color: var(--white);
}

.private-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.private-section h2,
.private-section h3 {
  color: var(--white);
}

.private-copy p {
  color: rgba(255,255,255,0.76);
}

.private-use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.private-use-cases article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
}

.private-use-cases strong {
  display: block;
  color: var(--white);
}

.private-use-cases span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
}

.private-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 16px;
}

.private-img {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 28px;
  color: rgba(255,255,255,0.72);
  font-weight: 800;
  background:
    linear-gradient(rgba(255,255,255,0.05), rgba(0,0,0,0.24)),
    linear-gradient(135deg, #7FAEC0, #10263D);
}

.private-img.tall {
  grid-row: span 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.gallery-item {
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    linear-gradient(rgba(26,58,92,0.04), rgba(26,58,92,0.28)),
    linear-gradient(135deg, #9CCAD7, #2E6E87);
  color: rgba(255,255,255,0.78);
  font-weight: 800;
  overflow: hidden;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  transform: translateY(28px);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

details {
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 16px 50px rgba(26,58,92,0.08);
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

details p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking-section {
  background:
    radial-gradient(circle at top right, rgba(184,151,42,0.10), transparent 28%),
    var(--cream);
}

.booking-panel {
  max-width: 1180px;
  margin: 0 auto;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 34px;
}

.booking-steps div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
}

.booking-steps span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.booking-summary,
.booking-form {
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
}

.booking-summary {
  position: sticky;
  top: 140px;
  padding: 30px;
}

.booking-summary ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.booking-summary li {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26,58,92,0.10);
}

.booking-summary li span {
  color: var(--muted);
  font-size: 0.86rem;
}

.booking-summary li strong {
  color: var(--navy);
}

.price-box {
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(184,151,42,0.18), transparent 45%),
    var(--navy);
  color: var(--white);
}

.price-box span {
  display: block;
  color: rgba(255,255,255,0.70);
}

.price-box strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 2.3rem;
}

.booking-form {
  padding: 30px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 15px 15px;
  border: 1px solid rgba(26,58,92,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(196,98,45,0.20);
  border-color: var(--terracotta);
}

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

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.hidden {
  display: none;
}

.section-contact {
  background: var(--sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.contact-grid a {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 14px 42px rgba(26,58,92,0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 6vw;
  background: var(--navy);
  color: rgba(255,255,255,0.78);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: rgba(255,255,255,0.78);
}

.simple-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 6vw;
}

.simple-page a {
  color: var(--terracotta);
  font-weight: 800;
}

.simple-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.simple-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
}

@keyframes slowDrift {
  from {
    transform: scale(1.04) translate3d(-1%, -1%, 0);
  }
  to {
    transform: scale(1.1) translate3d(1.5%, 1%, 0);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .tour-card-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .private-shell,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .private-use-cases {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: auto 1fr auto;
    border-radius: 28px;
  }

  .header-left a:not(:first-child) {
    display: none;
  }

  .header-side a {
    font-size: 0.82rem;
  }

  .logo-circle {
    width: 72px;
    height: 72px;
  }

  .logo-circle strong {
    font-size: 0.85rem;
  }

  .logo-top,
  .logo-bottom {
    font-size: 0.48rem;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .hero {
    padding: 145px 5vw 250px;
  }

  .hero-video-placeholder span {
    max-width: 280px;
    text-align: center;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .journey-pill {
    border-radius: 28px;
  }

  .hero-bottom-panel {
    grid-template-columns: 1fr 1fr;
    bottom: 18px;
  }

  .section {
    padding: 76px 5vw;
  }

  .tour-card-grid,
  .feature-grid,
  .gallery-grid,
  .contact-grid,
  .booking-steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-card.raised,
  .feature-card.lowered,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    transform: none;
  }

  .mini-route-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mini-route-strip div {
    width: 1px;
    height: 22px;
    margin: 0 auto;
  }

  .route-map-card {
    min-height: 680px;
  }

  .route-svg {
    display: none;
  }

  .route-node {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 36px);
    margin: 22px auto;
  }

  .map-watermark {
    font-size: 6rem;
  }

  .private-media-grid {
    grid-template-columns: 1fr;
  }

  .private-img.tall {
    grid-row: span 1;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* =========================
   ITERATION 2 PATCH
   Header / Hero / FAQ / Gallery / Booking
========================= */

.site-header {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  gap: 22px;
  padding: 8px 14px;
}

.header-side {
  gap: 18px;
}

.header-side a,
.main-nav a {
  font-size: 1rem;
  font-weight: 800;
}

.main-nav {
  gap: 24px;
}

.icon-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
}

.icon-link svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.logo-lockup {
  margin-top: -28px;
  margin-bottom: -28px;
}

.logo-circle {
  width: 118px;
  height: 118px;
}

.logo-circle strong {
  font-size: 1.22rem;
}

.logo-top,
.logo-bottom {
  font-size: 0.62rem;
}

.header-cta {
  padding: 14px 24px;
  font-size: 1rem;
}

h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-content {
  max-width: 1080px;
}

.hero h1 {
  font-size: clamp(3.7rem, 8.6vw, 8.4rem);
}

.btn-xl {
  min-height: 64px;
  padding: 18px 34px;
  font-size: 1.06rem;
}

.hero-route {
  display: grid;
  grid-template-columns: 1.05fr auto 1fr auto 1fr auto 1.05fr;
  align-items: center;
  gap: 10px;
  max-width: 1040px;
  margin: 0 auto 36px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 34px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
}

.hero-route-stop {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 14px 12px;
  border-radius: 24px;
  background: rgba(255,255,255,0.14);
}

.hero-route-stop strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--white);
}

.hero-route-stop span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.74);
  font-size: 0.86rem;
}

.hero-route-arrow {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.70);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-route-arrow span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
}

.route-meal {
  min-width: 100px;
}

.feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
}

.route-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 28px auto 0;
}

.route-highlight-grid article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 16px 50px rgba(26,58,92,0.08);
}

.route-highlight-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.route-highlight-grid strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.route-highlight-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.private-key-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.private-key-grid article,
.private-use-cases article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
}

.private-key-grid strong,
.private-use-cases strong {
  display: block;
  color: var(--white);
}

.private-key-grid span,
.private-use-cases span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
}

.gallery-section {
  overflow: hidden;
}

.carousel-shell {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}

.gallery-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 52%);
  gap: 20px;
  overflow-x: auto;
  padding: 12px 0 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  min-height: 420px;
  display: grid;
  place-items: end start;
  padding: 28px;
  border-radius: 34px;
  color: rgba(255,255,255,0.9);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 700;
  scroll-snap-align: center;
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(26,58,92,0.04), rgba(26,58,92,0.42)),
    linear-gradient(135deg, #9CCAD7, #2E6E87);
}

.gallery-slide:nth-child(2),
.gallery-slide:nth-child(5) {
  background:
    linear-gradient(rgba(26,58,92,0.04), rgba(26,58,92,0.42)),
    linear-gradient(135deg, #D8B069, #1A3A5C);
}

.gallery-slide:nth-child(3),
.gallery-slide:nth-child(6) {
  background:
    linear-gradient(rgba(26,58,92,0.04), rgba(26,58,92,0.42)),
    linear-gradient(135deg, #D38B62, #10263D);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 999px;
  background: rgba(26,58,92,0.78);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.carousel-prev {
  left: -18px;
}

.carousel-next {
  right: -18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.form-row.three {
  grid-template-columns: repeat(3, 1fr);
}

.price-box small {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.68);
}

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

  .main-nav a {
    font-size: 0.92rem;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .logo-lockup {
    justify-self: center;
  }

  .hero-route {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .hero-route-arrow {
    transform: rotate(90deg);
  }

  .route-meal {
    transform: none;
  }

  .route-highlight-grid,
  .faq-grid,
  .private-key-grid,
  .private-use-cases {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-left a:not(.icon-link) {
    display: none;
  }

  .logo-circle {
    width: 82px;
    height: 82px;
  }

  .logo-circle strong {
    font-size: 0.88rem;
  }

  .logo-top,
  .logo-bottom {
    font-size: 0.48rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5.6rem);
  }

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

  .gallery-carousel {
    grid-auto-columns: minmax(280px, 86%);
  }

  .carousel-prev {
    left: 6px;
  }

  .carousel-next {
    right: 6px;
  }
}

/* =========================
   HEADER POLISH PATCH
========================= */

.header-polished {
  width: min(1260px, calc(100% - 32px));
  min-height: 74px;
  padding: 9px 16px;
  grid-template-columns: 0.88fr auto 1.12fr;
  gap: 26px;
}

.header-polished .header-left,
.header-polished .header-right {
  gap: 12px;
}

.header-mini-button {
  min-width: 86px;
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-mini-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.34);
}

.header-mini-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.header-mini-button span {
  display: block;
  line-height: 1;
}

.whatsapp-button {
  color: #25D366;
}

.whatsapp-button span {
  color: var(--white);
}

.location-button svg {
  color: var(--gold);
}

.real-logo-lockup {
  margin-top: -44px;
  margin-bottom: -44px;
  align-self: center;
}

.header-logo-img {
  width: 152px;
  height: 152px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 42px rgba(0,0,0,0.28));
}

.nav-pill-group {
  gap: 10px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
}

.nav-pill-group a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.nav-pill-group a:hover {
  background: rgba(255,255,255,0.16);
}

.header-polished .header-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  font-size: 1.03rem;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .header-polished {
    grid-template-columns: auto auto auto;
  }

  .nav-pill-group {
    display: none;
  }

  .header-logo-img {
    width: 136px;
    height: 136px;
  }

  .real-logo-lockup {
    margin-top: -36px;
    margin-bottom: -36px;
  }
}

@media (max-width: 760px) {
  .header-polished {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding: 8px 10px;
    border-radius: 30px;
  }

  .header-mini-button {
    min-width: 48px;
    width: 48px;
    min-height: 48px;
    padding: 6px;
  }

  .header-mini-button span {
    display: none;
  }

  .location-button {
    display: none;
  }

  .header-logo-img {
    width: 92px;
    height: 92px;
  }

  .real-logo-lockup {
    margin-top: -22px;
    margin-bottom: -22px;
  }

  .header-polished .header-cta {
    min-height: 46px;
    padding: 11px 15px;
    font-size: 0.84rem;
  }
}

/* =========================
   HEADER CENTERING + CIRCULAR LOGO PATCH
========================= */

.header-polished {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.header-polished .header-left {
  flex: 1;
  justify-content: flex-start;
}

.header-polished .header-right {
  flex: 1;
  justify-content: flex-end;
}

.real-logo-lockup {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  margin: 0;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
  border: 2px solid rgba(184,151,42,0.95);
  box-shadow:
    0 20px 52px rgba(0,0,0,0.30),
    0 0 0 8px rgba(255,249,237,0.12);
}

.header-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
}

.header-polished .header-left,
.header-polished .header-right {
  position: relative;
  z-index: 6;
}

@media (max-width: 1180px) {
  .real-logo-lockup {
    width: 136px;
    height: 136px;
  }
}

@media (max-width: 760px) {
  .real-logo-lockup {
    width: 92px;
    height: 92px;
  }
}

/* =========================
   HEADER DROPDOWN + LOGO SIZE PATCH
========================= */

.real-logo-lockup {
  width: 144px;
  height: 144px;
}

.compact-nav {
  gap: 8px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 900;
  cursor: pointer;
}

.nav-dropdown-trigger::after {
  content: "⌄";
  margin-left: 7px;
  font-size: 0.85rem;
  opacity: 0.75;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 170px;
  transform: translateX(-50%) translateY(6px);
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(16, 38, 61, 0.92);
  box-shadow: 0 18px 46px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  min-height: 42px;
  justify-content: flex-start;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.16);
}

.header-polished .header-right {
  gap: 12px;
}

.header-polished .header-cta {
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 1180px) {
  .real-logo-lockup {
    width: 124px;
    height: 124px;
  }
}

@media (max-width: 760px) {
  .real-logo-lockup {
    width: 86px;
    height: 86px;
  }
}

/* =========================
   HEADER DROPDOWN + LOGO CROP FIX
========================= */

.header-polished {
  top: 30px;
}

.real-logo-lockup {
  width: 130px;
  height: 130px;
  background: var(--cream);
  overflow: hidden;
}

.header-logo-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 999px;
}

/* Fix dropdown disappearing when moving mouse downward */
.nav-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 16px;
}

.nav-dropdown-menu {
  top: calc(100% + 4px);
  z-index: 50;
}

@media (max-width: 1180px) {
  .real-logo-lockup {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 760px) {
  .header-polished {
    top: 16px;
  }

  .real-logo-lockup {
    width: 78px;
    height: 78px;
  }

  .header-logo-img {
    width: 90%;
    height: 90%;
  }
}

/* =========================
   HEADER ICONS + CTA POLISH PATCH
========================= */

.header-logo-img {
  width: 94%;
  height: 94%;
}

.real-logo-lockup {
  box-shadow:
    0 18px 42px rgba(0,0,0,0.28),
    0 0 0 4px rgba(255,249,237,0.10);
}

.header-mini-button {
  min-width: 104px;
  padding-left: 14px;
  padding-right: 14px;
}

.instagram-button svg {
  color: #E4405F;
}

.instagram-button span,
.location-button span,
.whatsapp-button span {
  color: var(--white);
}

.nav-dropdown-trigger::after {
  position: relative;
  top: -2px;
  margin-left: 8px;
}

.header-polished .header-cta {
  min-width: 148px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
}

@media (max-width: 1180px) {
  .header-mini-button {
    min-width: 92px;
  }
}

@media (max-width: 760px) {
  .header-mini-button {
    min-width: 48px;
    width: 48px;
  }

  .instagram-button {
    display: none;
  }

  .header-polished .header-cta {
    min-width: auto;
    font-size: 0.88rem;
  }
}

/* =========================
   HEADER MICRO POLISH PATCH
========================= */

.whatsapp-button {
  order: 1;
}

.instagram-button {
  order: 2;
}

.location-button {
  order: 3;
}

.location-button svg {
  color: #E53935;
}

.nav-dropdown-trigger::after {
  top: -4px;
  font-size: 1.08rem;
  margin-left: 9px;
}

/* =========================
   HEADER FINAL MICRO PATCH
========================= */

.header-logo-img {
  width: 104%;
  height: 104%;
}

.nav-dropdown-trigger::after {
  top: -6px;
  left: -3px;
  font-size: 1.22rem;
  margin-left: 5px;
}

/* =========================
   HEADER LOGO CENTERING + ARROW FINAL PATCH
========================= */

.header-logo-img {
  transform: translateY(3px);
}

.nav-dropdown-trigger::after {
  top: -8px;
}

/* =========================
   HEADER FINAL ALIGNMENT NUDGE
========================= */

.header-logo-img {
  transform: translateY(1px);
}

.nav-dropdown-trigger::after {
  top: -7px;
}

/* =========================
   HEADER FRAME 1PX LOWER EXTENSION
========================= */

.real-logo-lockup {
  height: 131px;
  border-radius: 999px;
}

/* =========================
   HEADER FRAME 1PX RIGHT TRIM
========================= */

.real-logo-lockup {
  width: 129px;
}

/* =========================
   MOBILE HEADER CONTAINMENT PATCH
========================= */

@media (max-width: 760px) {
  .header-polished {
    top: 14px;
    width: calc(100% - 20px);
    min-height: 62px;
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    justify-content: unset;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
  }

  .header-polished .header-left {
    grid-column: 1;
    justify-content: flex-start;
    gap: 0;
    flex: unset;
    padding-left: 0;
  }

  .header-polished .header-right {
    grid-column: 3;
    justify-content: flex-end;
    gap: 0;
    flex: unset;
  }

  .header-polished .nav-pill-group,
  .header-polished .instagram-button,
  .header-polished .location-button {
    display: none !important;
  }

  .header-polished .whatsapp-button {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
  }

  .header-polished .whatsapp-button span {
    display: none;
  }

  .header-polished .whatsapp-button svg {
    width: 24px;
    height: 24px;
  }

  .real-logo-lockup {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 84px;
    height: 85px;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .header-logo-img {
    width: 104%;
    height: 104%;
    transform: translateY(1px);
  }

  .header-polished .header-cta {
    min-width: 92px;
    min-height: 46px;
    padding: 10px 15px;
    font-size: 0.86rem;
    border-radius: 999px;
  }

  .hero {
    padding-top: 145px;
  }
}

/* =========================
   MOBILE HEADER HARD RESET
========================= */

@media (max-width: 760px) {
  .header-polished {
    top: 12px !important;
    left: 50% !important;
    width: calc(100% - 24px) !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    transform: translateX(-50%) !important;

    display: grid !important;
    grid-template-columns: 54px 1fr 92px !important;
    align-items: center !important;
    justify-content: unset !important;
    gap: 8px !important;

    padding: 6px 8px !important;
    border-radius: 999px !important;
    overflow: visible !important;
  }

  .header-polished .nav-pill-group,
  .header-polished .instagram-button,
  .header-polished .location-button {
    display: none !important;
  }

  .header-polished .header-left {
    grid-column: 1 !important;
    width: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    flex: none !important;
  }

  .header-polished .whatsapp-button {
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
  }

  .header-polished .whatsapp-button span {
    display: none !important;
  }

  .header-polished .whatsapp-button svg {
    width: 24px !important;
    height: 24px !important;
  }

  .real-logo-lockup {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    width: 76px !important;
    height: 77px !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 8 !important;
  }

  .header-logo-img {
    width: 104% !important;
    height: 104% !important;
    transform: translateY(1px) !important;
  }

  .header-polished .header-right {
    grid-column: 3 !important;
    width: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    flex: none !important;
  }

  .header-polished .header-cta {
    width: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;
    font-size: 0.82rem !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .hero {
    padding-top: 116px !important;
  }
}

/* =========================
   MOBILE HEADER TRUE CONTAINMENT PATCH
   Stop using absolute logo positioning on mobile.
========================= */

@media (max-width: 760px) {
  .header-polished {
    top: 12px !important;
    left: 50% !important;
    width: calc(100% - 24px) !important;
    height: 66px !important;
    min-height: 66px !important;
    max-height: 66px !important;
    transform: translateX(-50%) !important;

    display: grid !important;
    grid-template-columns: 54px 1fr 96px !important;
    align-items: center !important;
    justify-content: unset !important;
    gap: 8px !important;

    padding: 6px 8px !important;
    border-radius: 999px !important;
    overflow: hidden !important;
  }

  .header-polished .nav-pill-group,
  .header-polished .instagram-button,
  .header-polished .location-button {
    display: none !important;
  }

  .header-polished .header-left {
    grid-column: 1 !important;
    width: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    flex: none !important;
  }

  .header-polished .whatsapp-button {
    width: 46px !important;
    min-width: 46px !important;
    max-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
  }

  .header-polished .whatsapp-button span {
    display: none !important;
  }

  .header-polished .whatsapp-button svg {
    width: 24px !important;
    height: 24px !important;
  }

  .real-logo-lockup {
    grid-column: 2 !important;
    position: static !important;
    justify-self: center !important;
    align-self: center !important;

    width: 58px !important;
    height: 59px !important;
    min-width: 58px !important;
    min-height: 59px !important;

    transform: none !important;
    margin: 0 !important;
    z-index: 8 !important;

    border-radius: 999px !important;
    overflow: hidden !important;
    background: var(--cream) !important;
    border: 1px solid rgba(184,151,42,0.95) !important;
    box-shadow: 0 8px 22px rgba(0,0,0,0.22) !important;
  }

  .header-logo-img {
    width: 106% !important;
    height: 106% !important;
    object-fit: contain !important;
    transform: translateY(1px) !important;
    border-radius: 999px !important;
  }

  .header-polished .header-right {
    grid-column: 3 !important;
    width: 96px !important;
    min-width: 96px !important;
    max-width: 96px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    flex: none !important;
  }

  .header-polished .header-cta {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 96px !important;
    min-width: 96px !important;
    max-width: 96px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;

    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;

    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;

    font-size: 0.82rem !important;
    line-height: 1 !important;
  }

  .hero {
    padding-top: 112px !important;
  }
}

/* =========================
   HERO PASS 1 — video, width, route compression
========================= */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.38;
  filter: saturate(0.85) contrast(1.08);
  pointer-events: none;
}

.hero::before,
.hero::after {
  z-index: 1;
}

.hero > *:not(.hero-bg-video) {
  position: relative;
  z-index: 2;
}

/* Make hero feel less squeezed on desktop */
@media (min-width: 900px) {
  .hero .container,
  .hero-inner,
  .hero-content,
  .hero-copy,
  .hero-text,
  .hero-main {
    max-width: 1240px !important;
    width: min(1240px, calc(100% - 64px)) !important;
  }

  .hero h1,
  .hero-title {
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 0.92 !important;
  }

  .hero h1 br,
  .hero-title br {
    display: block !important;
  }

  .hero .lead,
  .hero p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Compact the hero route block */
.hero-route {
  max-width: 1120px !important;
  margin: 28px auto 0 !important;
  padding: 14px !important;
  gap: 10px !important;
}

/* White cards + blue text for better contrast */
.hero-route .route-card,
.hero-route .route-stop,
.hero-route .route-step,
.hero-route .route-item,
.hero-route .hero-route-card,
.hero-route .hero-route-step,
.hero-route article {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #173A56 !important;
  min-height: auto !important;
  padding: 16px 18px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(255,255,255,0.72) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,0.16) !important;
}

.hero-route .route-card *,
.hero-route .route-stop *,
.hero-route .route-step *,
.hero-route .route-item *,
.hero-route .hero-route-card *,
.hero-route .hero-route-step *,
.hero-route article * {
  color: #173A56 !important;
}

.hero-route h3,
.hero-route strong {
  margin-bottom: 4px !important;
}

.hero-route p,
.hero-route span {
  margin-top: 0 !important;
}

/* Hide repeated info below the hero CTA area */
.hero-included,
.hero-inclusions,
.hero-bottom,
.hero-bottom-panel,
.hero-detail-panel,
.hero-details,
.hero-meta,
.hero-meta-row,
.hero-summary,
.hero-info-strip,
.hero .included-panel,
.hero .hero-included-panel {
  display: none !important;
}

/* =========================
   HERO PASS 2 — structure + width correction
========================= */

/* Wider site feel — less squeezed, still premium */
.container,
.section .container,
.hero .container {
  width: min(1360px, calc(100% - 72px)) !important;
  max-width: 1360px !important;
}

/* Hero should breathe wider than before */
.hero-inner,
.hero-content,
.hero-copy,
.hero-main,
.hero-text {
  width: min(1280px, 100%) !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Kill any future-video placeholder styling if the element survived */
.hero-video-note,
.video-placeholder,
.hero-placeholder,
.hero-loop-note,
.hero .eyebrow-video,
.hero [class*="video"][class*="note"],
.hero [class*="placeholder"] {
  display: none !important;
}

/* Proper 2-line hero headline */
.hero-title-two-line {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  width: min(1280px, 100%) !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 0.9 !important;
  text-wrap: balance !important;
}

.hero-title-two-line span {
  display: block !important;
  white-space: nowrap !important;
}

/* Slightly smaller so it actually fits in 2 lines on normal desktop */
@media (min-width: 1000px) {
  .hero-title-two-line {
    font-size: clamp(4.4rem, 7vw, 8.4rem) !important;
  }
}

/* Route strip: wider, shorter, cleaner */
.hero-route {
  width: min(1180px, 100%) !important;
  max-width: 1180px !important;
  margin: 30px auto 0 !important;
  padding: 12px 16px !important;
  min-height: 0 !important;
  align-items: center !important;
}

/* Route cards: shorter, whiter, blue text */
.hero-route .route-card,
.hero-route .route-stop,
.hero-route .route-step,
.hero-route .route-item,
.hero-route .hero-route-card,
.hero-route .hero-route-step,
.hero-route article,
.hero-route > *:not(.route-arrow):not(.route-line):not(.fish-picnic-two-line) {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #143653 !important;
  min-height: 74px !important;
  padding: 14px 20px !important;
  border-radius: 20px !important;
}

.hero-route *,
.fish-picnic-two-line {
  color: #143653 !important;
}

.fish-picnic-two-line {
  display: inline-block !important;
  font-size: 0.68rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
  text-align: center !important;
  min-width: 72px !important;
}

/* Separate buttons from the route strip */
.hero-actions,
.hero-buttons,
.hero-ctas,
.hero-cta-row,
.hero .button-row,
.hero-route + div,
.hero-route + .hero-actions,
.hero-route + .hero-buttons,
.hero-route + .hero-ctas {
  margin-top: 34px !important;
}

/* Hide repeated lower hero info */
.hero-included,
.hero-inclusions,
.hero-bottom,
.hero-bottom-panel,
.hero-detail-panel,
.hero-details,
.hero-meta,
.hero-meta-row,
.hero-summary,
.hero-info-strip,
.hero .included-panel,
.hero .hero-included-panel {
  display: none !important;
}

/* Gallery / visual sections should not feel like a tiny island */
.gallery .container,
#gallery .container,
.gallery-section .container {
  width: min(1420px, calc(100% - 72px)) !important;
  max-width: 1420px !important;
}

.gallery-carousel,
.gallery-shell,
.gallery-frame,
.gallery-track-wrap,
.gallery-viewport,
.gallery-slider {
  width: min(1320px, 100%) !important;
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =========================
   HERO PASS 3 — typography + route refinement
========================= */

/* Exact two-line headline styling */
.hero-title-two-line {
  font-style: italic !important;
  text-transform: none !important;
  letter-spacing: -0.045em !important;
  line-height: 0.88 !important;
}

.hero-title-two-line span {
  white-space: nowrap !important;
}

/* Better balanced subcopy */
.hero-lead {
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

/* Remove the big background shell behind the route */
.hero-route {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  gap: 7px !important;
  padding: 0 !important;
  margin-top: 32px !important;
}

/* Make route cards softer / more transparent */
.hero-route .route-card,
.hero-route .route-stop,
.hero-route .route-step,
.hero-route .route-item,
.hero-route .hero-route-card,
.hero-route .hero-route-step,
.hero-route article,
.hero-route > *:not(.route-line) {
  background: rgba(255, 255, 255, 0.72) !important;
  min-height: 68px !important;
  padding: 12px 18px !important;
  border-radius: 18px !important;
  line-height: 1.12 !important;
}

/* Reduce line spacing inside route blocks */
.hero-route h3,
.hero-route strong {
  line-height: 1.05 !important;
  margin: 0 0 3px 0 !important;
}

.hero-route p,
.hero-route span {
  line-height: 1.1 !important;
  margin: 0 !important;
}

/* Smaller tighter arrow blocks */
.hero-route .route-arrow,
.hero-route .arrow,
.hero-route [class*="arrow"] {
  width: 46px !important;
  min-width: 46px !important;
  height: 68px !important;
  min-height: 68px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
}

/* Fish Picnic label stays compact */
.fish-picnic-two-line {
  line-height: 1.02 !important;
  letter-spacing: 0.15em !important;
}

/* Keep CTA buttons clearly separate from route */
.hero-actions,
.hero-buttons,
.hero-ctas,
.hero-cta-row,
.hero .button-row,
.hero-route + div {
  margin-top: 36px !important;
}

/* =========================
   HERO PASS 4 — fix font, overlay, subcopy, route
========================= */

/* Remove the washed-out white veil over the video */
.hero-bg-video {
  opacity: 1 !important;
  filter: none !important;
}

.hero::before,
.hero::after {
  background: transparent !important;
  opacity: 0 !important;
}

/* Add readability through text shadow instead of white overlay */
.hero h1,
.hero-title-two-line,
.hero-lead,
.hero .eyebrow {
  text-shadow: 0 3px 24px rgba(0,0,0,0.34) !important;
}

/* Restore original headline feel: no real italic font */
.hero-title-two-line {
  font-style: normal !important;
  font-family: var(--font-display, var(--font-heading, Georgia, 'Times New Roman', serif)) !important;
  letter-spacing: -0.045em !important;
  line-height: 0.9 !important;
}

/* Fake a slight italic without changing the typeface */
.hero-title-two-line span {
  display: block !important;
  white-space: nowrap !important;
  transform: skewX(-4deg) !important;
  transform-origin: center !important;
}

/* Force balanced subtext into two deliberate lines */
.hero-lead,
.hero p.hero-lead,
.hero-copy p,
.hero-text p {
  max-width: 1040px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  line-height: 1.5 !important;
}

/* Route strip: no outer shell, more breathing room, but cleaner internals */
.hero-route {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  width: min(1240px, 100%) !important;
  max-width: 1240px !important;
  padding: 0 !important;
  margin-top: 38px !important;

  gap: 12px !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Route cards: more transparent, more elegant */
.hero-route .route-card,
.hero-route .route-stop,
.hero-route .route-step,
.hero-route .route-item,
.hero-route .hero-route-card,
.hero-route .hero-route-step,
.hero-route article {
  background: rgba(255, 255, 255, 0.56) !important;
  color: #123550 !important;

  min-height: 70px !important;
  padding: 11px 24px !important;
  border-radius: 18px !important;

  line-height: 1.05 !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08) !important;
}

/* Route arrows: remove accidental card styling and space them cleanly */
.hero-route .route-arrow,
.hero-route .arrow,
.hero-route [class*="arrow"] {
  background: rgba(255,255,255,0.42) !important;
  width: 42px !important;
  min-width: 42px !important;
  height: 70px !important;
  min-height: 70px !important;
  padding: 0 !important;
  border-radius: 16px !important;
  display: grid !important;
  place-items: center !important;
  color: #123550 !important;
}

/* Tighten text inside every route block */
.hero-route h3,
.hero-route strong {
  margin: 0 0 2px 0 !important;
  line-height: 1.02 !important;
}

.hero-route p,
.hero-route span {
  margin: 0 !important;
  line-height: 1.05 !important;
}

/* Fish picnic middle block: make it readable again */
.fish-picnic-two-line {
  display: grid !important;
  place-items: center !important;
  min-width: 78px !important;
  height: 70px !important;
  line-height: 1.04 !important;
  letter-spacing: 0.13em !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  color: #123550 !important;
}

/* Buttons: slightly more separated from route */
.hero-actions,
.hero-buttons,
.hero-ctas,
.hero-cta-row,
.hero .button-row,
.hero-route + div {
  margin-top: 42px !important;
}

/* =========================
   HERO PASS 5 — spacing, typography, route cleanup
========================= */

/* More width and breathing room */
.hero-content,
.hero-inner,
.hero-copy,
.hero-main,
.hero-text {
  width: min(1380px, calc(100% - 72px)) !important;
  max-width: 1380px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Family tradition line bigger */
.hero .eyebrow,
.hero .hero-eyebrow,
.hero .eyebrow.light {
  font-size: 1rem !important;
  letter-spacing: 0.24em !important;
  margin-bottom: 18px !important;
}

/* Headline: slight italic feel, more letter spacing, more breathing room */
.hero-title-two-line,
.hero h1.hero-title-two-line {
  max-width: 1400px !important;
  margin: 0 auto 28px auto !important;
  line-height: 0.90 !important;
  letter-spacing: 0.015em !important;
  font-style: normal !important;
}

.hero-title-two-line span {
  display: block !important;
  white-space: nowrap !important;
  transform: skewX(-6deg) !important;
  transform-origin: center !important;
}

/* Hero subtext exact feel */
.hero-lead {
  max-width: 1160px !important;
  margin: 0 auto 42px auto !important;
  text-align: center !important;
  line-height: 1.55 !important;
  font-size: 1.08rem !important;
}

/* Route strip overall */
.hero-route {
  width: min(1360px, calc(100% - 96px)) !important;
  max-width: 1360px !important;
  margin: 0 auto 42px auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  gap: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
}

/* Narrower blocks */
.hero-route .route-card,
.hero-route .route-stop,
.hero-route .route-step,
.hero-route .route-item,
.hero-route .hero-route-card,
.hero-route .hero-route-step,
.hero-route article {
  min-width: 210px !important;
  max-width: 210px !important;
  min-height: 72px !important;
  padding: 10px 16px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.46) !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06) !important;
  color: #123550 !important;
}

/* Tighter type inside blocks */
.hero-route h3,
.hero-route strong {
  margin: 0 0 2px 0 !important;
  line-height: 1.02 !important;
  font-size: 0.96rem !important;
}

.hero-route p,
.hero-route span {
  margin: 0 !important;
  line-height: 1.04 !important;
  font-size: 0.74rem !important;
}

/* Arrows become plain white arrows, no pills */
.hero-route .route-arrow,
.hero-route .arrow,
.hero-route [class*="arrow"] {
  width: 34px !important;
  min-width: 34px !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255,255,255,0.96) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  display: grid !important;
  place-items: center !important;
}

/* Middle fish picnic label: no frame, white text over center */
.hero-route .route-meal,
.hero-route .fish-picnic-two-line {
  min-width: 82px !important;
  max-width: 82px !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255,255,255,0.96) !important;
  text-align: center !important;
}

.fish-picnic-two-line,
.hero-route .route-meal span {
  color: rgba(255,255,255,0.96) !important;
  font-size: 0.74rem !important;
  line-height: 1.02 !important;
  letter-spacing: 0.16em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

/* More air between route and buttons */
.hero-actions,
.hero-buttons,
.hero-ctas,
.hero-cta-row,
.hero .button-row,
.hero-route + div {
  margin-top: 18px !important;
}

/* Make hero buttons breathe a bit more */
.hero .btn,
.hero .btn-xl,
.hero .btn-large {
  min-width: 190px !important;
}

/* Slightly more vertical air overall */
.hero {
  padding-top: 150px !important;
  padding-bottom: 110px !important;
}

/* =========================
   HERO PASS 6 — final text + route cleanup + dark overlay
========================= */

/* Low-opacity black screen over the video */
.hero {
  position: relative !important;
}

.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.18) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.hero-bg-video {
  z-index: 0 !important;
}

.hero > *:not(.hero-bg-video) {
  position: relative !important;
  z-index: 2 !important;
}

/* Headline: more italic */
.hero-title-two-line,
.hero h1.hero-title-two-line {
  font-style: italic !important;
  line-height: 0.90 !important;
  letter-spacing: 0.03em !important;
  margin: 0 auto 26px auto !important;
}

.hero-title-two-line span {
  display: block !important;
  white-space: nowrap !important;
  transform: none !important;
}

/* Slightly larger family line */
.hero .eyebrow,
.hero .hero-eyebrow,
.hero .eyebrow.light {
  font-size: 1.02rem !important;
  letter-spacing: 0.24em !important;
  margin-bottom: 20px !important;
}

/* Exact lead text styling */
.hero-lead {
  max-width: 1380px !important;
  margin: 0 auto 40px auto !important;
  text-align: center !important;
  line-height: 1.5 !important;
  font-size: 1.06rem !important;
  text-wrap: balance !important;
}

/* Route strip — rebuild it cleanly */
.hero-route {
  width: min(1340px, calc(100% - 80px)) !important;
  max-width: 1340px !important;
  margin: 0 auto 34px auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Stop cards */
.hero-route .route-card,
.hero-route .route-stop,
.hero-route .route-step,
.hero-route .route-item,
.hero-route .hero-route-card,
.hero-route .hero-route-step,
.hero-route article {
  width: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
  min-height: 74px !important;
  padding: 10px 14px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.78) !important;
  border: 1px solid rgba(255,255,255,0.34) !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08) !important;
  color: #123550 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.hero-route .route-card *,
.hero-route .route-stop *,
.hero-route .route-step *,
.hero-route .route-item *,
.hero-route .hero-route-card *,
.hero-route .hero-route-step *,
.hero-route article * {
  color: #123550 !important;
}

.hero-route h3,
.hero-route strong {
  margin: 0 0 4px 0 !important;
  line-height: 1.02 !important;
  font-size: 1rem !important;
}

.hero-route p,
.hero-route span {
  margin: 0 !important;
  line-height: 1.06 !important;
  font-size: 0.78rem !important;
}

/* Plain white arrows */
.hero-route .route-arrow,
.hero-route .arrow,
.hero-route [class*="arrow"] {
  width: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: grid !important;
  place-items: center !important;
  color: rgba(255,255,255,0.98) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

/* Middle fish picnic label with no frame */
.hero-route .route-meal,
.hero-route .fish-picnic-two-line {
  width: 84px !important;
  min-width: 84px !important;
  max-width: 84px !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
}

.fish-picnic-two-line,
.hero-route .route-meal span {
  color: rgba(255,255,255,0.98) !important;
  font-size: 0.72rem !important;
  line-height: 1.02 !important;
  letter-spacing: 0.16em !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
}

/* More air */
.hero-actions,
.hero-buttons,
.hero-ctas,
.hero-cta-row,
.hero .button-row,
.hero-route + div {
  margin-top: 24px !important;
}

.hero {
  padding-top: 152px !important;
  padding-bottom: 116px !important;
}

/* =========================
   HERO PASS 7 — clean rebuilt route + final hero positioning
========================= */

/* Stronger but still subtle dark screen over video */
.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.28) !important;
  opacity: 1 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.hero-bg-video {
  opacity: 1 !important;
  filter: none !important;
  z-index: 0 !important;
}

.hero > *:not(.hero-bg-video) {
  position: relative !important;
  z-index: 2 !important;
}

/* Move the hero composition lower */
.hero {
  padding-top: 190px !important;
  padding-bottom: 118px !important;
}

/* Headline: more italic, slightly tighter than previous */
.hero-title-two-line,
.hero h1.hero-title-two-line {
  font-style: italic !important;
  letter-spacing: 0.018em !important;
  line-height: 0.9 !important;
  margin-bottom: 30px !important;
}

.hero-title-two-line span {
  display: block !important;
  white-space: nowrap !important;
  transform: skewX(-5deg) !important;
  transform-origin: center !important;
}

/* Correct hero lead text styling */
.hero-lead {
  width: min(1280px, calc(100% - 96px)) !important;
  max-width: 1280px !important;
  margin: 0 auto 48px auto !important;
  text-align: center !important;
  line-height: 1.52 !important;
  font-size: 1.08rem !important;
  text-wrap: balance !important;
}

/* Fully rebuilt route strip */
.hero-route-clean {
  width: min(1260px, calc(100% - 120px)) !important;
  max-width: 1260px !important;
  margin: 0 auto 42px auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;

  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* New clean stop cards */
.hero-route-clean .hero-stop {
  width: 172px !important;
  min-width: 172px !important;
  max-width: 172px !important;
  height: 68px !important;
  min-height: 68px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 9px 14px !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.62) !important;
  border: 1px solid rgba(255,255,255,0.30) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08) !important;
  text-align: center !important;
}

.hero-route-clean .hero-stop strong {
  display: block !important;
  margin: 0 0 3px 0 !important;
  color: #123550 !important;
  font-family: var(--font-display, Georgia, 'Times New Roman', serif) !important;
  font-size: 1.04rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

.hero-route-clean .hero-stop span {
  display: block !important;
  margin: 0 !important;
  color: #123550 !important;
  font-size: 0.76rem !important;
  line-height: 1 !important;
  font-weight: 500 !important;
}

/* Plain white arrows */
.hero-route-clean .hero-arrow {
  display: grid !important;
  place-items: center !important;
  width: 32px !important;
  min-width: 32px !important;
  color: rgba(255,255,255,0.98) !important;
  font-size: 2.15rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  text-shadow: 0 3px 12px rgba(0,0,0,0.35) !important;
}

/* Middle fish picnic: no frame, white text over arrow */
.hero-route-clean .hero-meal-arrow {
  width: 76px !important;
  min-width: 76px !important;
  display: grid !important;
  place-items: center !important;
  gap: 4px !important;
  color: rgba(255,255,255,0.98) !important;
  text-align: center !important;
  text-shadow: 0 3px 12px rgba(0,0,0,0.38) !important;
}

.hero-route-clean .hero-meal-arrow span {
  display: block !important;
  color: rgba(255,255,255,0.98) !important;
  font-size: 0.68rem !important;
  line-height: 0.95 !important;
  letter-spacing: 0.17em !important;
  font-weight: 900 !important;
}

.hero-route-clean .hero-meal-arrow b {
  display: block !important;
  color: rgba(255,255,255,0.98) !important;
  font-size: 2.05rem !important;
  line-height: 0.8 !important;
}

/* Keep buttons lower and separated */
.hero-actions,
.hero-buttons,
.hero-ctas,
.hero-cta-row,
.hero .button-row,
.hero-route-clean + div {
  margin-top: 26px !important;
}

/* =========================
   HERO PASS 8 — arrow cleanup + exact lead break
========================= */

/* Force the lead break exactly where requested */
.hero-lead br {
  display: block !important;
}

/* Clean direct-child arrows only */
.hero-route-clean > .hero-arrow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 26px !important;
  min-width: 26px !important;
  max-width: 26px !important;
  height: auto !important;
  min-height: 0 !important;

  margin: 0 -2px !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  color: rgba(255,255,255,0.96) !important;
  font-size: 1.9rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35) !important;
}

/* Middle fish picnic arrow block */
.hero-route-clean > .hero-meal-arrow {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;

  width: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  height: auto !important;
  min-height: 0 !important;

  margin: 0 -2px !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-route-clean > .hero-meal-arrow > span {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  color: rgba(255,255,255,0.97) !important;
  font-size: 0.66rem !important;
  line-height: 0.94 !important;
  letter-spacing: 0.16em !important;
  font-weight: 900 !important;
  text-align: center !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35) !important;
}

.hero-route-clean > .hero-meal-arrow > b {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  color: rgba(255,255,255,0.96) !important;
  font-size: 1.95rem !important;
  line-height: 0.9 !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35) !important;
}

/* =========================
   HERO PASS 9 — final micro polish
========================= */

/* More empty space under "Family tradition since 1950" */
.hero .eyebrow,
.hero .hero-eyebrow,
.hero .eyebrow.light {
  margin-bottom: 30px !important;
}

/* Fish Picnic gets the same gold tone as the family-tradition line */
.hero-route-clean > .hero-meal-arrow > span {
  color: var(--gold) !important;
}

/* Reduce height of the left/right arrow pills */
.hero-route-clean > .hero-arrow {
  height: 48px !important;
  min-height: 48px !important;
  width: 34px !important;
  min-width: 34px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,0.72) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06) !important;
  color: #123550 !important;
  text-shadow: none !important;
  font-size: 1.8rem !important;
  line-height: 1 !important;
}

/* =========================
   HERO PASS 10 — final final micro patch
========================= */

/* More space under FAMILY TRADITION SINCE 1950 */
.hero .eyebrow,
.hero .hero-eyebrow,
.hero .eyebrow.light {
  margin-bottom: 40px !important;
}

/* Make the arrow under FISH PICNIC match the other arrows */
.hero-route-clean > .hero-meal-arrow > b {
  color: #123550 !important;
  text-shadow: none !important;
}

/* Reduce the height of the left/right arrow pills */
.hero-route-clean > .hero-arrow {
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  border-radius: 14px !important;
}

/* =========================
   HERO PASS 11 — skinny arrow pills + one-line fish picnic
========================= */

/* Left and right arrow pills: about one third of the current height */
.hero-route-clean > .hero-arrow {
  height: 16px !important;
  min-height: 16px !important;
  max-height: 16px !important;
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  border-radius: 999px !important;
  font-size: 1.3rem !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

/* Middle pill: wider so FISH PICNIC fits on one line */
.hero-route-clean > .hero-meal-arrow {
  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
  gap: 0 !important;
}

/* Fish Picnic on one line */
.hero-route-clean > .hero-meal-arrow > span {
  white-space: nowrap !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.12em !important;
  line-height: 1 !important;
}

/* Keep the arrow under Fish Picnic centered nicely */
.hero-route-clean > .hero-meal-arrow > b {
  margin-top: 2px !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
}

/* =========================
   HERO PASS 12 — route removed, hero rebalanced
========================= */

/* Route is gone from hero. Keep this as protection if old markup survives. */
.hero-route,
.hero-route-clean {
  display: none !important;
}

/* Move the main hero composition lower now that route is removed */
.hero {
  padding-top: 215px !important;
  padding-bottom: 150px !important;
}

/* More elegant breathing room under the headline */
.hero-title-two-line,
.hero h1.hero-title-two-line {
  margin-bottom: 34px !important;
}

/* Subtext sits lower and has stronger presence */
.hero-lead {
  margin-bottom: 82px !important;
}

/* Keep the CTA buttons in the same visual zone where they already were */
.hero-actions,
.hero-buttons,
.hero-ctas,
.hero-cta-row,
.hero .button-row {
  margin-top: 0 !important;
}

/* =========================
   HEADER ICON TEST — orange icons, icon left of text
========================= */

.header-polished .whatsapp-button,
.header-polished .instagram-button,
.header-polished .location-button {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

/* Put icons before text */
.header-polished .whatsapp-button svg,
.header-polished .instagram-button svg,
.header-polished .location-button svg {
  order: 1 !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  color: var(--terracotta, #C8662D) !important;
}

.header-polished .whatsapp-button span,
.header-polished .instagram-button span,
.header-polished .location-button span {
  order: 2 !important;
}

/* Force all three icons to match Book Now orange */
.header-polished .whatsapp-button svg *,
.header-polished .instagram-button svg *,
.header-polished .location-button svg * {
  fill: var(--terracotta, #C8662D) !important;
  stroke: var(--terracotta, #C8662D) !important;
}

/* =========================
   COLOR MICRO PATCH — unified action orange
========================= */

:root {
  --jelen-action-orange: #d96a2b;
}

/* Header Book Now = View Available Dates orange */
.header-polished .header-cta,
.header-polished .book-now,
.site-header .header-cta {
  background: var(--jelen-action-orange) !important;
  border-color: var(--jelen-action-orange) !important;
}

/* Left header icons = same orange */
.header-polished .whatsapp-button svg,
.header-polished .instagram-button svg,
.header-polished .location-button svg {
  color: var(--jelen-action-orange) !important;
}

.header-polished .whatsapp-button svg *,
.header-polished .instagram-button svg *,
.header-polished .location-button svg * {
  fill: var(--jelen-action-orange) !important;
  stroke: var(--jelen-action-orange) !important;
}

/* Family tradition line = same orange */
.hero .eyebrow,
.hero .hero-eyebrow,
.hero .eyebrow.light {
  color: var(--jelen-action-orange) !important;
}

/* Keep hero primary CTA on the same exact orange too */
.hero .btn-primary,
.hero a[href="#availability"],
.hero a[href*="availability"],
.hero .btn[href="#availability"] {
  background: var(--jelen-action-orange) !important;
  border-color: var(--jelen-action-orange) !important;
}

/* =========================
   HERO MICRO PATCH — hide eyebrow
========================= */

.hero .eyebrow,
.hero .hero-eyebrow,
.hero .eyebrow.light {
  display: none !important;
}

/* =========================
   AVAILABLE TOURS PASS 1
========================= */

/* Group title above cards */
.availability-group-title {
  width: min(1280px, 100%);
  margin: 34px auto 22px auto;
  color: var(--gold);
  font-family: var(--font-display, Georgia, 'Times New Roman', serif);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.16em;
  font-weight: 800;
  text-align: left;
}

/* Wider availability cards so route + price can breathe */
#availability-list,
.availability-list,
.tours-grid,
.available-tours-grid {
  width: min(1320px, 100%) !important;
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 900px) {
  #availability-list,
  .availability-list,
  .tours-grid,
  .available-tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(430px, 1fr)) !important;
    gap: 26px !important;
  }
}

/* Make route / price rows more likely to stay on one line */
#availability-list .route,
#availability-list .tour-route,
#availability-list .card-route,
#availability-list .price,
#availability-list .tour-price,
#availability-list .card-price,
#availability-list [class*="route"],
#availability-list [class*="price"] {
  white-space: nowrap !important;
}

/* Make the small FISH PICNIC label inside cards normal text color and one line */
#availability-list .fish-picnic-two-line,
#availability-list .tour-type,
#availability-list .tour-label,
#availability-list .tour-badge,
#availability-list .card-badge,
#availability-list .badge,
#availability-list [class*="badge"],
#availability-list [class*="label"] {
  color: inherit !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  white-space: nowrap !important;
  display: inline-block !important;
  line-height: 1 !important;
}

/* Kill any inherited two-line Fish Picnic formatting inside availability cards */
#availability-list .fish-picnic-two-line br {
  display: none !important;
}

/* =========================
   AVAILABLE TOURS PASS 2
========================= */

/* Center FISH PICNIC group title and use action orange */
.availability-group-title {
  text-align: center !important;
  color: var(--jelen-action-orange, #d96a2b) !important;
  margin: 42px auto 26px auto !important;
}

/* Dial cards back: sized so 3 can fit comfortably on desktop */
#availability-list,
.availability-list,
.tours-grid,
.available-tours-grid {
  width: min(1320px, calc(100% - 72px)) !important;
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  justify-content: center !important;
  gap: 28px !important;
}

@media (min-width: 1100px) {
  #availability-list,
  .availability-list,
  .tours-grid,
  .available-tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 400px)) !important;
  }
}

@media (min-width: 1500px) {
  #availability-list,
  .availability-list,
  .tours-grid,
  .available-tours-grid {
    grid-template-columns: repeat(3, minmax(360px, 400px)) !important;
  }
}

/* Keep route and price on one line where possible */
#availability-list [class*="route"],
#availability-list [class*="price"],
.availability-list [class*="route"],
.availability-list [class*="price"] {
  white-space: nowrap !important;
}

/* Card FISH PICNIC label: one line, blue, normal text color family */
#availability-list .fish-picnic-two-line,
#availability-list .tour-type,
#availability-list .tour-label,
#availability-list .tour-badge,
#availability-list .card-badge,
#availability-list .badge,
#availability-list [class*="badge"],
#availability-list [class*="label"],
.availability-list .fish-picnic-two-line,
.availability-list .tour-type,
.availability-list .tour-label,
.availability-list .tour-badge,
.availability-list .card-badge,
.availability-list .badge,
.availability-list [class*="badge"],
.availability-list [class*="label"] {
  color: #123550 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  white-space: nowrap !important;
  display: inline-block !important;
  line-height: 1 !important;
}

/* Remove any leftover line breaks in card label */
#availability-list .fish-picnic-two-line br,
.availability-list .fish-picnic-two-line br {
  display: none !important;
}

/* =========================
   AVAILABLE TOURS PASS 3
========================= */

:root {
  --jelen-light-orange: #d96a2b;
  --jelen-dark-orange: #c85f2a;
}

/* FISH PICNIC group title = darker orange */
.availability-group-title {
  color: var(--jelen-dark-orange) !important;
}

/* Cards tiny bit wider while still allowing 3 in a row */
#availability-list,
.availability-list,
.tours-grid,
.available-tours-grid {
  width: min(1380px, calc(100% - 72px)) !important;
  max-width: 1380px !important;
}

@media (min-width: 1100px) {
  #availability-list,
  .availability-list,
  .tours-grid,
  .available-tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 420px)) !important;
  }
}

@media (min-width: 1500px) {
  #availability-list,
  .availability-list,
  .tours-grid,
  .available-tours-grid {
    grid-template-columns: repeat(3, minmax(380px, 420px)) !important;
  }
}

/* Book this date buttons = light orange */
#availability-list .btn,
#availability-list button,
#availability-list a[class*="btn"],
.availability-list .btn,
.availability-list button,
.availability-list a[class*="btn"] {
  background: var(--jelen-light-orange) !important;
  border-color: var(--jelen-light-orange) !important;
}

/* Book this date text slightly bigger */
#availability-list .btn,
#availability-list button,
#availability-list a[class*="btn"],
.availability-list .btn,
.availability-list button,
.availability-list a[class*="btn"] {
  font-size: 1.02rem !important;
  font-weight: 800 !important;
}

/* Reduce label/value spacing so price fits on one line */
#availability-list .tour-detail-row,
#availability-list .detail-row,
#availability-list .card-row,
#availability-list li,
.availability-list .tour-detail-row,
.availability-list .detail-row,
.availability-list .card-row,
.availability-list li {
  column-gap: 12px !important;
  gap: 12px !important;
}

#availability-list [class*="price"],
.availability-list [class*="price"] {
  white-space: nowrap !important;
  letter-spacing: -0.01em !important;
}

/* Keep the price value compact without shrinking the whole card */
#availability-list .price,
#availability-list .tour-price,
#availability-list .card-price,
#availability-list [class*="price"] strong,
.availability-list .price,
.availability-list .tour-price,
.availability-list .card-price,
.availability-list [class*="price"] strong {
  font-size: 0.96rem !important;
  white-space: nowrap !important;
}

/* =========================
   AVAILABLE TOURS PASS 4
========================= */

/* Simple fancy line under FISH PICNIC title */
.availability-group-title::after {
  content: "";
  display: block;
  width: 170px;
  height: 1px;
  margin: 16px auto 0 auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 95, 42, 0.18),
    var(--jelen-dark-orange, #c85f2a),
    rgba(200, 95, 42, 0.18),
    transparent
  );
}

/* Bottom / route Fish Picnic: one line, dark orange */
.fish-picnic-two-line {
  white-space: nowrap !important;
  color: var(--jelen-dark-orange, #c85f2a) !important;
}

.fish-picnic-two-line br {
  display: none !important;
}

/* If the bottom route uses a generic label/span instead */
.route-line .fish-picnic-two-line,
.route-timeline .fish-picnic-two-line,
.route-strip .fish-picnic-two-line,
.route-preview .fish-picnic-two-line,
[class*="route"] .fish-picnic-two-line {
  color: var(--jelen-dark-orange, #c85f2a) !important;
  white-space: nowrap !important;
}

/* =========================
   EXPERIENCE PASS 1
========================= */

/* Make fjaka feel more intentional */
.experience h2 em,
.experience-title em,
.section-title em,
h2 em {
  letter-spacing: 0.035em !important;
  font-style: italic !important;
  transform: skewX(-4deg);
  display: inline-block;
}

/* Reduce vertical dead space inside experience cards */
.experience-card,
.experience-step,
.timeline-card,
.day-card,
[class*="experience"] .card,
[class*="step-card"] {
  min-height: unset !important;
}

/* Pull card number closer to card title */
.experience-card .number,
.experience-card .step-number,
.experience-step .number,
.experience-step .step-number,
.timeline-card .number,
.timeline-card .step-number,
.day-card .number,
.day-card .step-number,
[class*="experience"] [class*="number"],
[class*="step"] [class*="number"] {
  margin-bottom: 28px !important;
}

/* Tighten title/text rhythm inside the experience cards */
.experience-card h3,
.experience-step h3,
.timeline-card h3,
.day-card h3,
[class*="experience"] .card h3,
[class*="step-card"] h3 {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  line-height: 0.95 !important;
}

.experience-card p,
.experience-step p,
.timeline-card p,
.day-card p,
[class*="experience"] .card p,
[class*="step-card"] p {
  line-height: 1.52 !important;
}

/* Bold free parking elegantly */
.experience-card strong,
.experience-step strong,
.timeline-card strong,
.day-card strong {
  font-weight: 850 !important;
  color: var(--navy, #123550) !important;
}

/* =========================
   EXPERIENCE PASS 2 — fjaka handwritten test
========================= */

/* Make "fjaka" feel separate, handwritten, and more relaxed */
.experience h2 em,
.experience-title em,
.section-title em,
h2 em {
  font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive !important;
  font-style: italic !important;
  font-weight: 700 !important;
  letter-spacing: 0.015em !important;
  margin-left: 0.16em !important;
  display: inline-block !important;
  transform: rotate(-2deg) skewX(-6deg) translateY(0.03em) !important;
  color: var(--jelen-dark-orange, #c85f2a) !important;
}

/* Keep italic words inside cards elegant, not huge/script */
.experience-card p em,
.experience-step p em,
.timeline-card p em,
.day-card p em {
  font-family: inherit !important;
  font-style: italic !important;
  font-weight: 650 !important;
  color: var(--jelen-dark-orange, #c85f2a) !important;
}

/* Slightly reduce the big title crowding around fjaka */
.experience h2,
.experience-title,
.section-title {
  letter-spacing: -0.025em !important;
}

/* =========================
   EXPERIENCE PASS 3 — fjaka micro polish
========================= */

.fjaka-word {
  font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive !important;
  font-style: italic !important;
  font-weight: 700 !important;
  margin-left: 0.18em !important;
  display: inline-block !important;
  color: var(--jelen-dark-orange, #c85f2a) !important;

  transform: rotate(5deg) skewX(-6deg) translateY(-6px) !important;
  transform-origin: center !important;
}

.fjaka-word .fjaka-f {
  display: inline-block !important;
  margin-right: 0.075em !important;
}

/* =========================
   EXPERIENCE PASS 4 — fjaka tiny adjustment
========================= */

.fjaka-word {
  transform: rotate(3deg) skewX(-6deg) translateY(-5px) !important;
}

/* =========================
   EXPERIENCE PASS 5 — fjaka final angle
========================= */

.fjaka-word {
  transform: rotate(2deg) skewX(-6deg) translateY(-5px) !important;
}

/* =========================
   EXPERIENCE PASS 6 — route map placeholder
========================= */

.experience-map-card {
  width: min(1180px, calc(100% - 72px));
  margin: 72px auto 0 auto;
}

.experience-map-placeholder {
  min-height: 360px;
  border-radius: 34px;
  border: 1px solid rgba(18, 53, 80, 0.14);
  background:
    linear-gradient(135deg, rgba(31, 79, 111, 0.10), rgba(216, 106, 43, 0.08)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(18, 53, 80, 0.10);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;

  text-align: center;
  overflow: hidden;
}

.experience-map-placeholder span {
  color: var(--jelen-dark-orange, #c85f2a);
  font-family: var(--font-display, Georgia, 'Times New Roman', serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 800;
}

.experience-map-placeholder p {
  margin: 0;
  color: var(--navy, #123550);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Later, when the real map image is ready, we can replace the placeholder div with an img */

/* =========================
   EXPERIENCE PASS 7 — visible map placeholder
========================= */

.experience-map-card {
  width: min(1180px, calc(100% - 72px)) !important;
  margin: 70px auto 90px auto !important;
}

.experience-map-placeholder {
  min-height: 360px !important;
  border-radius: 34px !important;
  border: 1px solid rgba(18, 53, 80, 0.14) !important;
  background:
    linear-gradient(135deg, rgba(31, 79, 111, 0.12), rgba(216, 106, 43, 0.08)),
    rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 24px 70px rgba(18, 53, 80, 0.10) !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;

  text-align: center !important;
  overflow: hidden !important;
}

.experience-map-placeholder span {
  color: var(--jelen-dark-orange, #c85f2a) !important;
  font-family: var(--font-display, Georgia, 'Times New Roman', serif) !important;
  font-size: clamp(2rem, 4vw, 4rem) !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

.experience-map-placeholder p {
  margin: 0 !important;
  color: var(--navy, #123550) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
}

/* =========================
   GETTING HERE PASS 1
========================= */

.getting-here {
  background:
    radial-gradient(circle at top left, rgba(216, 106, 43, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(248, 244, 235, 1), rgba(255, 252, 244, 1));
}

.getting-here .container {
  width: min(1180px, calc(100% - 72px));
}

.getting-here .section-kicker {
  text-align: center;
  color: var(--jelen-dark-orange, #c85f2a);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.getting-here h2 {
  text-align: center;
  color: var(--navy, #123550);
  font-family: var(--font-display, Georgia, 'Times New Roman', serif);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  margin: 0;
}

.getting-here-lead {
  max-width: 860px;
  margin: 28px auto 48px auto;
  text-align: center;
  color: rgba(18, 53, 80, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.getting-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(18, 53, 80, 0.12);
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(18, 53, 80, 0.08);
  overflow: hidden;
}

.getting-card summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 28px;
  color: var(--navy, #123550);
  font-family: var(--font-display, Georgia, 'Times New Roman', serif);
  font-size: 1.45rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.getting-card summary::-webkit-details-marker {
  display: none;
}

.getting-card summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(216, 106, 43, 0.12);
  color: var(--jelen-dark-orange, #c85f2a);
  font-family: inherit;
  line-height: 1;
}

.getting-card[open] summary::after {
  content: "–";
}

.getting-card div {
  padding: 0 28px 26px 28px;
}

.getting-card p {
  margin: 0 0 12px 0;
  color: rgba(18, 53, 80, 0.82);
  line-height: 1.6;
}

.getting-card p:last-child {
  margin-bottom: 0;
}

.getting-card strong {
  color: var(--navy, #123550);
  font-weight: 850;
}

.getting-here-action {
  margin: 44px auto 0 auto;
  text-align: center;
}

.getting-here-action .btn {
  background: var(--jelen-light-orange, #d96a2b) !important;
  border-color: var(--jelen-light-orange, #d96a2b) !important;
}

.getting-here-action p {
  margin: 18px auto 0 auto;
  max-width: 680px;
  color: rgba(18, 53, 80, 0.62);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 800px) {
  .getting-here .container {
    width: min(100% - 32px, 1180px);
  }

  .getting-here-grid {
    grid-template-columns: 1fr;
  }

  .getting-card summary {
    font-size: 1.2rem;
    padding: 20px 22px;
  }

  .getting-card div {
    padding: 0 22px 22px 22px;
  }
}

/* =========================
   GETTING HERE PASS 2
========================= */

.getting-here-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: start !important;
}

.getting-distance-list {
  list-style: none !important;
  margin: 20px 0 22px 0 !important;
  padding: 0 !important;
  display: grid !important;
  gap: 10px !important;
}

.getting-distance-list li {
  display: flex !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(18, 53, 80, 0.10) !important;
  color: rgba(18, 53, 80, 0.82) !important;
}

.getting-distance-list li:last-child {
  border-bottom: 0 !important;
}

.getting-distance-list strong {
  color: var(--navy, #123550) !important;
  font-weight: 850 !important;
}

.getting-distance-list span {
  text-align: right !important;
  white-space: nowrap !important;
}

.getting-card-actions {
  margin: 22px 0 16px 0 !important;
}

.getting-card-actions .btn {
  width: 100% !important;
  justify-content: center !important;
  background: var(--jelen-light-orange, #d96a2b) !important;
  border-color: var(--jelen-light-orange, #d96a2b) !important;
}

.getting-note {
  font-size: 0.86rem !important;
  color: rgba(18, 53, 80, 0.52) !important;
  font-style: italic !important;
}

@media (max-width: 1050px) {
  .getting-here-grid-three {
    grid-template-columns: 1fr !important;
  }
}

/* =========================
   GALLERY PASS 1
========================= */

/* Keep "Moments from the sea" on one line */
.gallery h2,
#gallery h2,
.gallery-section h2 {
  white-space: nowrap !important;
  font-size: clamp(3rem, 6.4vw, 7.2rem) !important;
  letter-spacing: -0.035em !important;
}

/* Make gallery feel full-screen wide */
.gallery,
#gallery,
.gallery-section {
  overflow: hidden !important;
}

.gallery .container,
#gallery .container,
.gallery-section .container {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Keep the gallery heading readable while gallery itself goes wide */
.gallery .section-header,
#gallery .section-header,
.gallery-section .section-header,
.gallery .section-intro,
#gallery .section-intro {
  width: min(1180px, calc(100% - 72px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Full-width carousel / gallery frame */
.gallery-carousel,
.gallery-shell,
.gallery-frame,
.gallery-track-wrap,
.gallery-viewport,
.gallery-slider,
.gallery-track {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Make gallery images fill the available width better */
.gallery img,
#gallery img,
.gallery-section img {
  width: 100% !important;
  object-fit: cover !important;
}

/* Remove titles from pictures, keep controls/buttons intact */
.gallery h3,
.gallery h4,
.gallery .gallery-title,
.gallery .slide-title,
.gallery .image-title,
.gallery .photo-title,
.gallery .caption-title,
.gallery-card h3,
.gallery-slide h3,
.gallery-item h3,
.gallery-caption h3,
#gallery h3,
#gallery h4,
#gallery .gallery-title,
#gallery .slide-title,
#gallery .image-title,
#gallery .photo-title,
#gallery .caption-title {
  display: none !important;
}

/* If title overlays leave awkward empty boxes, flatten the title area */
.gallery-caption,
.gallery-overlay,
.gallery-card-content,
.gallery-slide-content {
  min-height: 0 !important;
}

/* =========================
   GALLERY PASS 2 — centered wide gallery
========================= */

/* Undo the cooked 100vw container behavior */
.gallery .container,
#gallery .container,
.gallery-section .container {
  width: min(1680px, calc(100% - 48px)) !important;
  max-width: 1680px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Keep heading centered and one line */
.gallery .section-header,
#gallery .section-header,
.gallery-section .section-header,
.gallery .section-intro,
#gallery .section-intro {
  width: min(1380px, 100%) !important;
  max-width: 1380px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.gallery h2,
#gallery h2,
.gallery-section h2 {
  white-space: nowrap !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(3.4rem, 6vw, 6.6rem) !important;
  letter-spacing: -0.04em !important;
}

/* Wide carousel, but centered inside the page */
.gallery-carousel,
.gallery-shell,
.gallery-frame,
.gallery-track-wrap,
.gallery-viewport,
.gallery-slider {
  width: min(1680px, 100%) !important;
  max-width: 1680px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Prevent horizontal page scrolling */
.gallery,
#gallery,
.gallery-section {
  overflow: hidden !important;
}

/* Remove visible image titles/captions */
.gallery h3,
.gallery h4,
.gallery .gallery-title,
.gallery .slide-title,
.gallery .image-title,
.gallery .photo-title,
.gallery .caption-title,
.gallery-card h3,
.gallery-card h4,
.gallery-slide h3,
.gallery-slide h4,
.gallery-item h3,
.gallery-item h4,
.gallery-caption h3,
.gallery-caption h4,
#gallery h3,
#gallery h4,
#gallery .gallery-title,
#gallery .slide-title,
#gallery .image-title,
#gallery .photo-title,
#gallery .caption-title {
  display: none !important;
}

/* If captions still contain only title text, hide the caption layer */
.gallery-caption,
.gallery-overlay,
.gallery-card-content,
.gallery-slide-content,
.gallery-item-content {
  pointer-events: none !important;
}

.gallery-card-content > *,
.gallery-slide-content > *,
.gallery-caption > *,
.gallery-overlay > * {
  display: none !important;
}

/* =========================
   GALLERY PASS 3 — center + title removal
========================= */

/* Re-center the whole gallery section */
#gallery,
.gallery,
.gallery-section {
  width: 100% !important;
  overflow: hidden !important;
  text-align: center !important;
}

/* Keep gallery content wide but truly centered */
#gallery .container,
.gallery .container,
.gallery-section .container {
  width: min(1660px, calc(100% - 72px)) !important;
  max-width: 1660px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Center the heading block independently from carousel */
#gallery .section-header,
.gallery .section-header,
.gallery-section .section-header,
#gallery .section-intro,
.gallery .section-intro {
  width: min(1280px, 100%) !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Force the heading itself visually centered */
#gallery h2,
.gallery h2,
.gallery-section h2 {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  white-space: nowrap !important;
  transform: translateX(0) !important;
}

/* Center the carousel instead of using viewport hacks */
.gallery-carousel,
.gallery-shell,
.gallery-frame,
.gallery-track-wrap,
.gallery-viewport,
.gallery-slider {
  width: min(1660px, 100%) !important;
  max-width: 1660px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  transform: none !important;
}

/* Hard-kill all remaining gallery text overlays/titles */
#gallery .gallery-card h1,
#gallery .gallery-card h2,
#gallery .gallery-card h3,
#gallery .gallery-card h4,
#gallery .gallery-card p,
#gallery .gallery-card span:not(.sr-only),
#gallery .gallery-slide h1,
#gallery .gallery-slide h2,
#gallery .gallery-slide h3,
#gallery .gallery-slide h4,
#gallery .gallery-slide p,
#gallery .gallery-slide span:not(.sr-only),
#gallery .gallery-item h1,
#gallery .gallery-item h2,
#gallery .gallery-item h3,
#gallery .gallery-item h4,
#gallery .gallery-item p,
#gallery .gallery-item span:not(.sr-only),
.gallery .gallery-card h1,
.gallery .gallery-card h2,
.gallery .gallery-card h3,
.gallery .gallery-card h4,
.gallery .gallery-card p,
.gallery .gallery-card span:not(.sr-only),
.gallery .gallery-slide h1,
.gallery .gallery-slide h2,
.gallery .gallery-slide h3,
.gallery .gallery-slide h4,
.gallery .gallery-slide p,
.gallery .gallery-slide span:not(.sr-only),
.gallery .gallery-item h1,
.gallery .gallery-item h2,
.gallery .gallery-item h3,
.gallery .gallery-item h4,
.gallery .gallery-item p,
.gallery .gallery-item span:not(.sr-only) {
  display: none !important;
}

/* Keep arrow buttons visible */
#gallery button,
.gallery button,
#gallery .gallery-prev,
#gallery .gallery-next,
.gallery .gallery-prev,
.gallery .gallery-next {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* =========================
   GALLERY PASS 4 — exact centering and title cleanup
========================= */

/* Gallery heading block: true full-width centered heading */
#gallery .section-heading.centered,
.gallery-section .section-heading.centered {
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Heading itself: centered as inline text, not as a shifted oversized block */
#gallery .section-heading.centered h2,
.gallery-section .section-heading.centered h2 {
  display: inline-block !important;
  width: auto !important;
  max-width: calc(100vw - 96px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  white-space: nowrap !important;
  font-size: clamp(3.2rem, 5.8vw, 6.4rem) !important;
  letter-spacing: -0.04em !important;
  transform: none !important;
}

/* Keep the paragraph centered under the real heading */
#gallery .section-heading.centered p,
.gallery-section .section-heading.centered p {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* Kill any remaining direct text display inside empty gallery slides */
#gallery .gallery-slide,
.gallery-section .gallery-slide {
  color: transparent !important;
  font-size: 0 !important;
}

/* But keep future image/background content visible */
#gallery .gallery-slide *,
.gallery-section .gallery-slide * {
  color: inherit !important;
  font-size: initial !important;
}

/* =========================
   BOOKING PASS 1 — phone field note
========================= */

.field-note,
.phone-note {
  display: block;
  margin-top: 7px;
  color: rgba(18, 53, 80, 0.62);
  font-size: 0.86rem;
  line-height: 1.35;
}

/* Make the phone field breathe now that country code is removed */
.booking-form label:has(input[name="phone"]),
.booking-form label:has(input[id="phone"]),
form label:has(input[name="phone"]),
form label:has(input[id="phone"]) {
  width: 100%;
}

/* =========================
   BOOKING FIX — phone note polish
========================= */

.phone-note {
  font-weight: 500 !important;
  color: rgba(18, 53, 80, 0.58) !important;
}

/* =========================
   BOOKING PASS 2 — contact field alignment
========================= */

/* Name + phone in one row, email on next row */
.contact-name-field {
  grid-column: span 6 !important;
}

.contact-phone-field {
  grid-column: span 6 !important;
}

.contact-email-field {
  grid-column: span 12 !important;
  max-width: none !important;
}

/* Make the email input feel intentional, not awkwardly half-width */
.contact-email-field input {
  width: 100% !important;
}

/* Keep the phone note tucked neatly under the phone field */
.contact-phone-field .phone-note {
  margin-top: 8px !important;
  font-size: 0.86rem !important;
  line-height: 1.35 !important;
}

/* Mobile/tablet fallback */
@media (max-width: 800px) {
  .contact-name-field,
  .contact-phone-field,
  .contact-email-field {
    grid-column: 1 / -1 !important;
  }
}

/* =========================
   BOOKING PASS 3 — clean contact layout
========================= */

.booking-form .contact-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  align-items: start !important;
}

.booking-form .email-row {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

.booking-form .email-row label,
.booking-form .email-row input {
  width: 100% !important;
}

.booking-form .phone-note {
  display: block !important;
  margin-top: 8px !important;
  color: rgba(18, 53, 80, 0.58) !important;
  font-size: 0.86rem !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
}

@media (max-width: 800px) {
  .booking-form .contact-row {
    grid-template-columns: 1fr !important;
  }
}

/* =========================
   BOOKING PASS 4 — contact layout force
========================= */

.booking-form .contact-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: start !important;
}

.booking-form .email-row {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

.booking-form .contact-row label,
.booking-form .email-row label {
  width: 100% !important;
}

.booking-form .contact-row input,
.booking-form .email-row input {
  width: 100% !important;
}

@media (max-width: 800px) {
  .booking-form .contact-row {
    grid-template-columns: 1fr !important;
  }
}

/* =========================
   HEADER BUGFIX — clean Tours dropdown
========================= */

.header-polished {
  z-index: 9999 !important;
  overflow: visible !important;
}

.header-polished .nav-dropdown {
  position: relative !important;
  overflow: visible !important;
}

/* Compact dropdown box */
.header-polished .nav-dropdown-menu,
.header-polished .dropdown-menu,
.header-polished .dropdown-panel,
.header-polished [class*="dropdown-menu"],
.header-polished [class*="dropdown-panel"] {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;

  width: 184px !important;
  min-width: 184px !important;
  max-width: 184px !important;

  padding: 8px !important;
  margin: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;

  background: rgba(18, 53, 80, 0.94) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: 22px !important;
  box-shadow: 0 20px 44px rgba(0,0,0,0.24) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;

  z-index: 10000 !important;
}

/* Dropdown links */
.header-polished .nav-dropdown-menu a,
.header-polished .dropdown-menu a,
.header-polished .dropdown-panel a,
.header-polished [class*="dropdown-menu"] a,
.header-polished [class*="dropdown-panel"] a {
  width: 100% !important;
  height: auto !important;
  min-height: 42px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 11px 14px !important;
  margin: 0 !important;

  border-radius: 16px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;

  color: #ffffff !important;
  font-size: 0.92rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.header-polished .nav-dropdown-menu a:hover,
.header-polished .dropdown-menu a:hover,
.header-polished .dropdown-panel a:hover,
.header-polished [class*="dropdown-menu"] a:hover,
.header-polished [class*="dropdown-panel"] a:hover {
  background: rgba(216, 106, 43, 0.92) !important;
  color: #ffffff !important;
}

/* Invisible hover bridge so menu does not flicker */
.header-polished .nav-dropdown::after {
  content: "" !important;
  position: absolute !important;
  left: -12px !important;
  right: -12px !important;
  top: 100% !important;
  height: 18px !important;
}

/* Keep dropdown hidden until hover/focus */
.header-polished .nav-dropdown-menu,
.header-polished .dropdown-menu,
.header-polished .dropdown-panel,
.header-polished [class*="dropdown-menu"],
.header-polished [class*="dropdown-panel"] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.header-polished .nav-dropdown:hover .nav-dropdown-menu,
.header-polished .nav-dropdown:focus-within .nav-dropdown-menu,
.header-polished .nav-dropdown:hover .dropdown-menu,
.header-polished .nav-dropdown:focus-within .dropdown-menu,
.header-polished .nav-dropdown:hover .dropdown-panel,
.header-polished .nav-dropdown:focus-within .dropdown-panel,
.header-polished .nav-dropdown:hover [class*="dropdown-menu"],
.header-polished .nav-dropdown:focus-within [class*="dropdown-menu"],
.header-polished .nav-dropdown:hover [class*="dropdown-panel"],
.header-polished .nav-dropdown:focus-within [class*="dropdown-panel"] {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* =========================
   HEADER DROPDOWN TEXT FIX
========================= */

.header-polished .nav-dropdown-menu a,
.header-polished .dropdown-menu a,
.header-polished .dropdown-panel a,
.header-polished [class*="dropdown-menu"] a,
.header-polished [class*="dropdown-panel"] a {
  color: #ffffff !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-indent: 0 !important;
}

/* =========================
   HEADER DROPDOWN FIX — clickable + closer
========================= */

/* Move dropdown higher */
.header-polished .nav-dropdown-menu {
  top: calc(100% + 4px) !important;
}

/* Remove invisible bridge that can block clicks */
.header-polished .nav-dropdown::after {
  display: none !important;
  pointer-events: none !important;
}

/* Make dropdown links definitely clickable */
.header-polished .nav-dropdown-menu {
  pointer-events: none !important;
}

.header-polished .nav-dropdown:hover .nav-dropdown-menu,
.header-polished .nav-dropdown:focus-within .nav-dropdown-menu {
  pointer-events: auto !important;
}

.header-polished .nav-dropdown-menu a {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 10001 !important;
}

/* =========================
   ANCHOR FIX — offset for fixed header
========================= */

.section-anchor {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
  height: 0;
  width: 0;
}

/* =========================
   AVAILABLE TOURS FIX — title + clean route line
========================= */

/* Restore clean centered FISH PICNIC title */
.availability-group-title {
  text-align: center !important;
  color: var(--jelen-dark-orange, #c85f2a) !important;
  margin: 42px auto 28px auto !important;
  font-family: var(--font-display, Georgia, 'Times New Roman', serif) !important;
  font-size: clamp(1.9rem, 2.8vw, 3rem) !important;
  line-height: 1 !important;
  letter-spacing: 0.18em !important;
  font-weight: 800 !important;
}

.availability-group-title::after {
  content: "" !important;
  display: block !important;
  width: 180px !important;
  height: 1px !important;
  margin: 17px auto 0 auto !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 95, 42, 0.20),
    var(--jelen-dark-orange, #c85f2a),
    rgba(200, 95, 42, 0.20),
    transparent
  ) !important;
}

/* Hide broken old availability route fragments if they survived */
#availability .route-preview,
#availability .route-strip,
#availability .route-line,
#availability .availability-route {
  display: none !important;
}

/* Clean route line under cards */
.availability-route-clean {
  width: min(960px, calc(100% - 72px)) !important;
  margin: 48px auto 26px auto !important;

  display: grid !important;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto !important;
  align-items: center !important;
  gap: 14px !important;

  color: var(--navy, #123550) !important;
  font-weight: 850 !important;
  text-align: center !important;
}

.availability-route-clean span {
  color: var(--navy, #123550) !important;
  font-size: 0.98rem !important;
  white-space: nowrap !important;
}

.availability-route-clean strong {
  color: var(--jelen-dark-orange, #c85f2a) !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.availability-route-clean i {
  display: block !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 95, 42, 0.42),
    transparent
  ) !important;
}

@media (max-width: 800px) {
  .availability-route-clean {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .availability-route-clean i {
    width: 1px !important;
    height: 18px !important;
    margin: 0 auto !important;
    background: rgba(200, 95, 42, 0.35) !important;
  }
}

/* =========================
   EXPERIENCE REBUILD — clean restored section
========================= */

.experience-restored {
  display: block !important;
  background: rgba(255, 252, 244, 1) !important;
  padding: 120px 0 40px 0 !important;
}

.experience-restored .container {
  width: min(1540px, calc(100% - 72px)) !important;
  max-width: 1540px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.experience-restored .section-heading {
  text-align: center !important;
  margin-bottom: 72px !important;
}

.experience-restored .section-heading .eyebrow {
  color: var(--jelen-dark-orange, #c85f2a) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.22em !important;
  font-weight: 800 !important;
  margin-bottom: 18px !important;
}

.experience-restored h2 {
  color: var(--navy, #123550) !important;
  font-family: var(--font-display, Georgia, 'Times New Roman', serif) !important;
  font-size: clamp(4rem, 7vw, 8rem) !important;
  line-height: 0.92 !important;
  margin: 0 !important;
  letter-spacing: -0.035em !important;
}

.experience-restored .section-heading > p:last-child {
  max-width: 1040px !important;
  margin: 30px auto 0 auto !important;
  color: rgba(18, 53, 80, 0.78) !important;
  font-size: 1.15rem !important;
  line-height: 1.65 !important;
}

.experience-restored .fjaka-word {
  font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive !important;
  font-style: italic !important;
  font-weight: 700 !important;
  margin-left: 0.18em !important;
  display: inline-block !important;
  color: var(--jelen-dark-orange, #c85f2a) !important;
  transform: rotate(2deg) skewX(-6deg) translateY(-5px) !important;
  transform-origin: center !important;
}

.experience-restored .fjaka-word .fjaka-f {
  display: inline-block !important;
  margin-right: 0.075em !important;
}

.experience-restored .experience-steps {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: start !important;
}

.experience-restored .experience-card {
  background: rgba(255,255,255,0.84) !important;
  border: 1px solid rgba(18, 53, 80, 0.12) !important;
  border-radius: 34px !important;
  box-shadow: 0 20px 54px rgba(18, 53, 80, 0.08) !important;
  padding: 42px 34px !important;
  min-height: 380px !important;
}

.experience-restored .experience-card:nth-child(even) {
  margin-top: 48px !important;
}

.experience-restored .step-number {
  display: block !important;
  color: var(--gold, #b8972a) !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 26px !important;
}

.experience-restored .experience-card h3 {
  color: var(--navy, #123550) !important;
  font-family: var(--font-display, Georgia, 'Times New Roman', serif) !important;
  font-size: clamp(1.5rem, 2vw, 2.25rem) !important;
  line-height: 0.95 !important;
  margin: 0 0 22px 0 !important;
}

.experience-restored .experience-card p {
  color: rgba(18, 53, 80, 0.74) !important;
  font-size: 1.02rem !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.experience-restored .experience-card strong {
  color: var(--navy, #123550) !important;
  font-weight: 850 !important;
}

.experience-restored .experience-card em {
  color: var(--jelen-dark-orange, #c85f2a) !important;
  font-style: italic !important;
  font-weight: 650 !important;
}

@media (max-width: 1100px) {
  .experience-restored .experience-steps {
    grid-template-columns: 1fr 1fr !important;
  }

  .experience-restored .experience-card:nth-child(even) {
    margin-top: 0 !important;
  }
}

@media (max-width: 700px) {
  .experience-restored .experience-steps {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   DESKTOP HEADER — tighten Tours dropdown hover zone
========================================================= */

@media (min-width: 861px) {
  .site-header.header-polished .nav-dropdown {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .site-header.header-polished .nav-dropdown-trigger {
    position: relative !important;
    z-index: 2 !important;
    cursor: pointer !important;
  }

  .site-header.header-polished .nav-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;

    width: max-content !important;
    min-width: 180px !important;
    max-width: 240px !important;

    transform: translateX(-50%) translateY(-4px) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    z-index: 10020 !important;
  }

  .site-header.header-polished .nav-dropdown:hover > .nav-dropdown-menu,
  .site-header.header-polished .nav-dropdown:focus-within > .nav-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }
}

/* =========================================================
   DESKTOP HEADER — Tours dropdown click-only reset
========================================================= */

@media (min-width: 861px) {
  .site-header.header-polished .nav-dropdown,
  .site-header.header-polished .nav-dropdown:hover {
    position: relative !important;
    overflow: visible !important;
  }

  .site-header.header-polished .nav-dropdown-menu,
  .site-header.header-polished .nav-dropdown:hover > .nav-dropdown-menu,
  .site-header.header-polished .nav-dropdown:focus-within > .nav-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;

    transform: translateX(-50%) translateY(-6px) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .site-header.header-polished .nav-dropdown.is-open > .nav-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }
}

/* =========================================================
   PRIVATE TOURS — centered layout without media grid
========================================================= */

#private-tours.private-no-media .private-shell {
  display: block !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

#private-tours.private-no-media .private-copy {
  width: 100% !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

#private-tours.private-no-media .private-copy .eyebrow,
#private-tours.private-no-media .private-copy h2,
#private-tours.private-no-media .private-copy > p {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

#private-tours.private-no-media .private-key-grid {
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#private-tours.private-no-media .private-actions,
#private-tours.private-no-media .private-cta-row,
#private-tours.private-no-media .private-buttons {
  justify-content: center !important;
}

/* =========================================================
   PRIVATE TOURS — center CTA buttons after media removal
========================================================= */

#private-tours.private-no-media .private-copy div:has(> a.btn),
#private-tours.private-no-media .private-copy .private-actions,
#private-tours.private-no-media .private-copy .private-cta,
#private-tours.private-no-media .private-copy .private-cta-row,
#private-tours.private-no-media .private-copy .private-buttons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* =========================================================
   PRIVATE TOURS — keep CTA buttons in one row on mobile
========================================================= */

@media (max-width: 860px) {
  #private-tours.private-no-media .private-copy div:has(> a.btn) {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #private-tours.private-no-media .private-copy div:has(> a.btn) > a.btn {
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    height: 50px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    white-space: nowrap !important;
    font-size: 0.92rem !important;
  }
}

@media (max-width: 380px) {
  #private-tours.private-no-media .private-copy div:has(> a.btn) {
    gap: 6px !important;
  }

  #private-tours.private-no-media .private-copy div:has(> a.btn) > a.btn {
    padding-left: 13px !important;
    padding-right: 13px !important;
    font-size: 0.86rem !important;
  }
}

/* =========================================================
   REAL IMAGE PASS — tour cards and gallery
========================================================= */

#availability-list .tour-card-image.has-real-image,
#gallery-carousel .gallery-slide.has-real-image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

#availability-list .tour-card-image.has-real-image::before,
#availability-list .tour-card-image.has-real-image::after,
#gallery-carousel .gallery-slide.has-real-image::before,
#gallery-carousel .gallery-slide.has-real-image::after {
  pointer-events: none !important;
}

#gallery-carousel .gallery-slide.has-real-image span {
  display: none !important;
}

/* =========================================================
   GALLERY — force real WebP images over placeholder styles
========================================================= */

#gallery-carousel .gallery-slide {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

#gallery-carousel .gallery-slide:nth-child(9n + 1) {
  background: linear-gradient(180deg, rgba(10,33,55,0.06), rgba(10,33,55,0.18)), url("images/boat-cinematic.webp") center / cover no-repeat !important;
}

#gallery-carousel .gallery-slide:nth-child(9n + 2) {
  background: linear-gradient(180deg, rgba(10,33,55,0.06), rgba(10,33,55,0.18)), url("images/seagulls-boat-cool.webp") center / cover no-repeat !important;
}

#gallery-carousel .gallery-slide:nth-child(9n + 3) {
  background: linear-gradient(180deg, rgba(10,33,55,0.06), rgba(10,33,55,0.18)), url("images/porat-cinematic.webp") center / cover no-repeat !important;
}

#gallery-carousel .gallery-slide:nth-child(9n + 4) {
  background: linear-gradient(180deg, rgba(10,33,55,0.06), rgba(10,33,55,0.18)), url("images/food-wine-close-vertical.webp") center / cover no-repeat !important;
}

#gallery-carousel .gallery-slide:nth-child(9n + 5) {
  background: linear-gradient(180deg, rgba(10,33,55,0.06), rgba(10,33,55,0.18)), url("images/cockpit-cinematic.webp") center / cover no-repeat !important;
}

#gallery-carousel .gallery-slide:nth-child(9n + 6) {
  background: linear-gradient(180deg, rgba(10,33,55,0.06), rgba(10,33,55,0.18)), url("images/anchor-cinematic.webp") center / cover no-repeat !important;
}

#gallery-carousel .gallery-slide:nth-child(9n + 7) {
  background: linear-gradient(180deg, rgba(10,33,55,0.06), rgba(10,33,55,0.18)), url("images/jelen-old-vs-new.webp") center / cover no-repeat !important;
}

#gallery-carousel .gallery-slide:nth-child(9n + 8) {
  background: linear-gradient(180deg, rgba(10,33,55,0.06), rgba(10,33,55,0.18)), url("images/ship-empty-cinematic.webp") center / cover no-repeat !important;
}

#gallery-carousel .gallery-slide:nth-child(9n + 9) {
  background: linear-gradient(180deg, rgba(10,33,55,0.06), rgba(10,33,55,0.18)), url("images/boat-wide-far.webp") center / cover no-repeat !important;
}

#gallery-carousel .gallery-slide span,
#gallery-carousel .gallery-slide .fish-picnic-two-line {
  display: none !important;
}

/* =========================================================
   GALLERY — real image tags override placeholders
========================================================= */

#gallery-carousel .gallery-slide {
  position: relative !important;
  overflow: hidden !important;
  background: none !important;
}

#gallery-carousel .gallery-slide::before,
#gallery-carousel .gallery-slide::after {
  display: none !important;
  content: none !important;
}

#gallery-carousel .gallery-slide img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  z-index: 2 !important;
}

#gallery-carousel .gallery-slide span,
#gallery-carousel .gallery-slide .fish-picnic-two-line {
  display: none !important;
}

/* =========================================================
   GALLERY — desktop arrows inside page + cleaner controls
========================================================= */

@media (min-width: 861px) {
  #gallery .carousel-shell {
    position: relative !important;
  }

  #gallery .carousel-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 50 !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 999px !important;
    display: grid !important;
    place-items: center !important;
    font-size: 2rem !important;
    line-height: 1 !important;
    opacity: 0.96 !important;
  }

  #gallery .carousel-prev {
    left: 28px !important;
  }

  #gallery .carousel-next {
    right: 28px !important;
  }
}

@media (max-width: 860px) {
  #gallery .carousel-btn {
    display: none !important;
  }
}

/* =========================================================
   GALLERY — polished desktop arrows
========================================================= */

@media (min-width: 861px) {
  #gallery .carousel-btn {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    border-radius: 999px !important;
    background: #d66a2c !important;
    border: 2px solid rgba(20, 54, 84, 0.32) !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 18px 42px rgba(20, 54, 84, 0.22) !important;
  }

  #gallery .carousel-btn::before {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    color: #123856 !important;
    font-size: 3.6rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    transform: translateY(-4px) !important;
  }

  #gallery .carousel-prev::before {
    content: "‹" !important;
  }

  #gallery .carousel-next::before {
    content: "›" !important;
  }

  #gallery .carousel-prev {
    left: 64px !important;
  }

  #gallery .carousel-next {
    right: 64px !important;
  }

  #gallery .carousel-btn:hover {
    background: #e17836 !important;
    transform: translateY(-50%) scale(1.05) !important;
  }
}

@media (max-width: 860px) {
  #gallery .carousel-btn {
    display: none !important;
  }
}

/* =========================================================
   GALLERY — final desktop arrow polish
========================================================= */

@media (min-width: 861px) {
  #gallery .carousel-btn {
    position: absolute !important;
    top: 47% !important;
    transform: translateY(-50%) !important;

    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    min-height: 76px !important;

    border-radius: 999px !important;
    background: #123856 !important;
    border: 2px solid rgba(214, 106, 44, 0.42) !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;

    display: block !important;
    z-index: 80 !important;
    box-shadow: 0 18px 42px rgba(18, 56, 86, 0.24) !important;
  }

  #gallery .carousel-prev {
    left: 72px !important;
  }

  #gallery .carousel-next {
    right: 72px !important;
  }

  #gallery .carousel-btn::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;

    width: 22px !important;
    height: 22px !important;

    display: block !important;
    border-color: #d66a2c !important;
    border-style: solid !important;
    z-index: 2 !important;
  }

  #gallery .carousel-prev::before {
    border-width: 0 0 7px 7px !important;
    transform: translate(-38%, -50%) rotate(45deg) !important;
  }

  #gallery .carousel-next::before {
    border-width: 7px 7px 0 0 !important;
    transform: translate(-62%, -50%) rotate(45deg) !important;
  }

  #gallery .carousel-btn::after {
    display: none !important;
    content: none !important;
  }

  #gallery .carousel-btn:hover {
    background: #173f62 !important;
    transform: translateY(-50%) scale(1.05) !important;
  }
}

@media (max-width: 860px) {
  #gallery .carousel-btn {
    display: none !important;
  }
}

/* =========================================================
   GALLERY — cream arrow color
========================================================= */

@media (min-width: 861px) {
  #gallery .carousel-btn {
    border-color: rgba(248, 242, 232, 0.72) !important;
  }

  #gallery .carousel-btn::before {
    border-color: #f8f2e8 !important;
  }
}

/* =========================================================
   ROUTE MAP — replace placeholder with final Canva/WebP map
========================================================= */

#experience .route-map,
#experience .hero-route-map,
.route-section .route-map,
.journey-visual .route-map {
  position: relative !important;
  overflow: hidden !important;
  background: url("images/route-map.webp") center / cover no-repeat !important;
  border-radius: 28px !important;
  min-height: 520px !important;
  box-shadow: 0 28px 80px rgba(18, 56, 86, 0.22) !important;
}

/* Hide old placeholder graphics inside the map */
#experience .route-map > *,
#experience .hero-route-map > *,
.route-section .route-map > *,
.journey-visual .route-map > * {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 860px) {
  #experience .route-map,
  #experience .hero-route-map,
  .route-section .route-map,
  .journey-visual .route-map {
    min-height: 360px !important;
    border-radius: 22px !important;
    background-position: center !important;
  }
}

@media (max-width: 480px) {
  #experience .route-map,
  #experience .hero-route-map,
  .route-section .route-map,
  .journey-visual .route-map {
    min-height: 300px !important;
  }
}

/* =========================================================
   EXPERIENCE ROUTE MAP — final Canva/WebP image
========================================================= */

.route-map-final-card {
  width: min(1120px, calc(100% - 40px)) !important;
  margin: 34px auto 0 !important;
  padding: 0 !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: 0 28px 80px rgba(18, 56, 86, 0.22) !important;
}

.route-map-final-image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
}

@media (max-width: 860px) {
  .route-map-final-card {
    width: calc(100% - 28px) !important;
    margin-top: 24px !important;
    border-radius: 22px !important;
  }
}

/* =========================================================
   EXPERIENCE ROUTE MAP — shrink final map
========================================================= */

.route-map-final-card {
  width: min(560px, calc(100% - 40px)) !important;
  margin: 28px auto 0 !important;
  border-radius: 24px !important;
}

@media (max-width: 860px) {
  .route-map-final-card {
    width: calc(100% - 32px) !important;
    max-width: 560px !important;
    margin-top: 22px !important;
    border-radius: 20px !important;
  }
}

/* =========================================================
   EXPERIENCE ROUTE MAP — place above cards inside section
========================================================= */

#experience .route-map-final-card {
  width: min(560px, calc(100% - 40px)) !important;
  margin: 30px auto 46px !important;
  border-radius: 24px !important;
}

@media (max-width: 860px) {
  #experience .route-map-final-card {
    width: calc(100% - 32px) !important;
    max-width: 560px !important;
    margin: 24px auto 34px !important;
    border-radius: 20px !important;
  }
}

/* =========================================================
   GOOGLE SHEET TOUR CARDS — restore card design
========================================================= */

#availability-list .tour-date-card {
  overflow: hidden !important;
}

#availability-list .availability-route-clean {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px 14px !important;
  max-width: 100% !important;
  padding: 26px 22px 12px !important;
  overflow: hidden !important;
  text-align: center !important;
}

#availability-list .availability-route-clean span,
#availability-list .availability-route-clean strong {
  white-space: nowrap !important;
  font-size: 0.9rem !important;
  line-height: 1.1 !important;
}

#availability-list .availability-route-clean i {
  display: none !important;
}

#availability-list .tour-card-content {
  padding-top: 22px !important;
}

#availability-list .tour-card-prices {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px 12px !important;
  margin: 22px 0 6px !important;
  color: #143856 !important;
  font-size: 0.95rem !important;
  line-height: 1.35 !important;
}

#availability-list .tour-card-prices span {
  display: inline-flex !important;
  white-space: nowrap !important;
}

#availability-list .book-date-btn {
  margin-top: 0 !important;
}

@media (max-width: 860px) {
  #availability-list .availability-route-clean {
    padding: 22px 18px 10px !important;
    gap: 7px 10px !important;
  }

  #availability-list .availability-route-clean span,
  #availability-list .availability-route-clean strong {
    font-size: 0.82rem !important;
  }

  #availability-list .tour-card-prices {
    justify-content: center !important;
    font-size: 0.88rem !important;
  }
}

/* =========================================================
   GOOGLE SHEET TOUR CARDS — clean operational layout
========================================================= */

#availability-list .tour-date-card {
  overflow: hidden !important;
}

#availability-list .availability-route-clean {
  display: none !important;
}

#availability-list .tour-card-content {
  padding: 34px 34px 36px !important;
}

#availability-list .tour-card-content .card-kicker {
  margin-bottom: 10px !important;
}

#availability-list .tour-card-content h3 {
  margin-bottom: 16px !important;
}

#availability-list .tour-card-prices {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 14px !important;
  margin: 24px 0 14px !important;
  font-size: 0.96rem !important;
  line-height: 1.35 !important;
}

#availability-list .tour-card-prices span {
  white-space: nowrap !important;
}

#availability-list .book-date-btn {
  margin-top: 0 !important;
}

@media (max-width: 860px) {
  #availability-list .tour-card-content {
    padding: 28px 26px 32px !important;
    text-align: center !important;
  }

  #availability-list .tour-card-prices {
    justify-content: center !important;
    font-size: 0.9rem !important;
  }
}

/* =========================================================
   GOOGLE SHEET TOUR CARDS — final card polish
========================================================= */

#availability-list .tour-card-content {
  text-align: left !important;
}

#availability-list .tour-card-route {
  margin: -4px 0 18px !important;
  color: rgba(20, 56, 86, 0.72) !important;
  font-size: 0.9rem !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

#availability-list .tour-card-note {
  margin: 0 0 22px !important;
  color: rgba(20, 56, 86, 0.62) !important;
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
  font-style: italic !important;
}

#availability-list .tour-card-prices {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 22px 0 22px !important;
}

#availability-list .tour-card-prices span {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 2px !important;
  min-height: 54px !important;
  padding: 10px 8px !important;
  border: 1px solid rgba(20, 56, 86, 0.14) !important;
  border-radius: 14px !important;
  background: rgba(248, 242, 232, 0.62) !important;
  color: #143856 !important;
  text-align: center !important;
  white-space: normal !important;
  font-size: 0.9rem !important;
  line-height: 1.15 !important;
}

#availability-list .tour-card-prices strong {
  display: block !important;
  color: rgba(204, 92, 39, 0.95) !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}

#availability-list .book-date-btn {
  display: flex !important;
  width: fit-content !important;
  margin: 0 auto !important;
  justify-content: center !important;
}

@media (max-width: 860px) {
  #availability-list .tour-card-content {
    text-align: center !important;
  }

  #availability-list .tour-card-route {
    font-size: 0.82rem !important;
  }

  #availability-list .tour-card-prices {
    grid-template-columns: 1fr !important;
    max-width: 260px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
