:root {
  --ink: #070707;
  --panel: #111111;
  --panel-soft: #181818;
  --muted: #b8b3aa;
  --paper: #070707;
  --white: #ffffff;
  --gold: #c8a96a;
  --gold-soft: #f0d99a;
  --line: rgba(200, 169, 106, 0.24);
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
  --glass: rgba(12, 12, 12, 0.62);
  --glass-strong: rgba(12, 12, 12, 0.76);
  --glass-soft: rgba(255, 255, 255, 0.045);
  --glass-line: rgba(255, 255, 255, 0.10);
  --gold-line: rgba(200, 169, 106, 0.34);
  --premium-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  background: #030303;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--white);
  background: transparent;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  isolation: isolate;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.46)),
    url("assets/img-8391.jpg") center / cover no-repeat;
  filter: saturate(1.02) contrast(1.04);
}

body.villa-page::before {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.52)),
    url("assets/villa-carmen-zadar.jpg") center / cover no-repeat;
}

body.guide-page::before,
body.contact-page::before {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.44)),
    url("assets/img-8391.jpg") center / cover no-repeat;
}

body.partner-page::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 169, 106, 0.20), transparent 24rem),
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.06), transparent 28rem),
    linear-gradient(135deg, #111111, #030303 72%);
}

body::after {
  z-index: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 169, 106, 0.16), transparent 26rem),
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.42));
}

body > * {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  backdrop-filter: blur(14px);
}

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

.site-header .brand .brand-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 120px;
  max-height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
  border: 1px solid rgba(200, 169, 106, 0.58);
  border-radius: 12px;
  padding: 2px;
  background: rgba(2, 2, 2, 0.62);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.brand-text {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--gold-soft);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a.active {
  color: var(--gold-soft);
}

.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 169, 106, 0.88);
  border-radius: 999px;
  padding: 8px 16px;
  color: #090909;
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-whatsapp {
  color: var(--white);
  background: rgba(10, 10, 10, 0.56);
  border-color: rgba(200, 169, 106, 0.62);
}

.mobile-header-tools,
.mobile-cta-row {
  display: none !important;
}

.mobile-header-action {
  display: none;
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
}

.language-switcher a {
  min-width: 32px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 5px 7px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  text-decoration: none;
  background: rgba(9, 9, 9, 0.52);
  backdrop-filter: blur(10px);
}

.language-switcher a.active {
  border-color: var(--gold);
  color: #090909;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 64px) clamp(60px, 8vw, 96px);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main#top > .hero {
  background-image: url("assets/img-8391.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

main#top > .hero .hero-image {
  display: none;
}

.hero-shade {
  background:
    radial-gradient(circle at 18% 72%, rgba(200, 169, 106, 0.13), transparent 28rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12) 52%);
}

.hero-content {
  position: relative;
  max-width: 920px;
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-soft);
  max-width: 820px;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 7.8vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.page-hero {
  min-height: 72vh;
}

.arrival-hero .hero-shade {
  background:
    radial-gradient(circle at 18% 72%, rgba(200, 169, 106, 0.15), transparent 28rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.26) 48%, rgba(0, 0, 0, 0.04)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.04) 52%);
}

.villa-hero .hero-shade {
  background:
    radial-gradient(circle at 18% 72%, rgba(200, 169, 106, 0.16), transparent 28rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.05) 54%);
}

.villa-hero .hero-image,
body.trip-page .hero-image {
  display: none;
}

.neutral-hero {
  background: transparent;
}

.partner-page .neutral-hero {
  background:
    radial-gradient(circle at 16% 24%, rgba(200, 169, 106, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 30%, rgba(255, 255, 255, 0.06), transparent 22rem),
    linear-gradient(135deg, rgba(18, 18, 18, 0.92), rgba(4, 4, 4, 0.96));
}

.neutral-hero .hero-image {
  display: none;
}

.neutral-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.30), transparent 58%);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(9, 9, 9, 0.58);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #090909;
}

.button.secondary {
  background: rgba(10, 10, 10, 0.42);
  border-color: rgba(200, 169, 106, 0.7);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button.outline {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  width: min(calc(100% - clamp(28px, 8vw, 96px)), 1280px);
  margin: clamp(28px, 5vw, 58px) auto;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at top right, rgba(200, 169, 106, 0.10), transparent 32rem),
    linear-gradient(180deg, rgba(16, 16, 16, 0.24), rgba(6, 6, 6, 0.36));
  border: 1px solid var(--glass-line);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(2px);
  overflow: hidden;
}

.content-section > div:first-child p {
  max-width: 760px;
  color: var(--muted);
}

.routes-guide,
.featured-listing {
  background:
    radial-gradient(circle at top right, rgba(200, 169, 106, 0.13), transparent 31rem),
    linear-gradient(145deg, rgba(15, 15, 15, 0.28), rgba(5, 5, 5, 0.40));
}

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

.info-tile {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--glass);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(2px);
}

.info-tile span {
  color: var(--gold);
  font-weight: 900;
}

.info-tile strong {
  color: var(--white);
  font-size: 1.1rem;
}

.info-tile p {
  margin: 0;
  color: var(--muted);
}

.info-tile .card-image {
  width: 100%;
  height: 152px;
  object-fit: cover;
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: 8px;
  filter: saturate(1.04) contrast(1.02);
}

.official-links .info-tile,
.partner-list .info-tile {
  min-height: 0;
}

.official-links .text-link[target="_blank"]::after,
.partner-list .text-link[target="_blank"]::after {
  content: " ↗";
}

.route-list {
  grid-column: 1 / -1;
}

/* FINAL desktop day trips image thumbnail fix */
@media (min-width: 769px) {
  body.day-trips-page .content-section[aria-labelledby="routes-title"] .route-list > .info-tile .card-image,
  body.day-trips-page .route-list > .info-tile .card-image,
  body.day-trips-page .info-tile .card-image {
    height: 130px !important;
    max-height: 130px !important;
    min-height: 0 !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 8px;
    overflow: hidden;
  }

  body.guide-page .content-section .info-tile .card-image,
  main#top .content-section .info-tile .card-image {
    width: 100%;
    height: 120px;
    max-height: 140px;
    object-fit: cover;
    border-radius: 8px;
  }
}

.disclaimer-block {
  display: block;
  background:
    linear-gradient(90deg, rgba(200, 169, 106, 0.10), transparent 58%),
    rgba(10, 10, 10, 0.54);
  backdrop-filter: blur(2px);
}

.disclaimer-block p {
  max-width: 980px;
  margin: 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: clamp(56px, 8vw, 104px);
}

.service-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--glass);
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(2px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.no-media-card img {
  display: none;
}

.no-media-card .service-body {
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(200, 169, 106, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(18, 18, 18, 0.28), rgba(5, 5, 5, 0.34));
}

.service-body,
.place-panel {
  padding: clamp(24px, 2.4vw, 32px);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-body h2,
.place-panel h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.service-body p,
.place-panel p {
  color: var(--muted);
}

.payment-note {
  margin: 16px 0 22px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(200, 169, 106, 0.22);
  color: var(--gold-soft) !important;
  font-weight: 800;
}

.text-link {
  margin-top: auto;
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.place-panel {
  height: 100%;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(200, 169, 106, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(23, 23, 23, 0.56), rgba(5, 5, 5, 0.72));
  backdrop-filter: blur(2px);
}

.place-panel .label,
.place-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.coverage-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  padding-top: 10px;
  border-top: 1px solid rgba(200, 169, 106, 0.22);
  color: var(--gold-soft);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  width: min(calc(100% - clamp(28px, 8vw, 96px)), 1280px);
  margin: clamp(28px, 5vw, 58px) auto;
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.11), transparent 30rem),
    rgba(10, 10, 10, 0.46);
  border: 1px solid var(--glass-line);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(2px);
  overflow: hidden;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(200, 169, 106, 0.22);
}

.step span {
  color: var(--gold);
  font-weight: 900;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  width: min(calc(100% - clamp(28px, 8vw, 96px)), 1280px);
  margin: clamp(28px, 5vw, 58px) auto;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.16), transparent 28rem),
    linear-gradient(135deg, rgba(15, 15, 15, 0.32), rgba(5, 5, 5, 0.44));
  border: 1px solid var(--glass-line);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(2px);
  overflow: hidden;
}

.contact-band p {
  max-width: 720px;
  color: var(--muted);
}

.secure-payment {
  display: grid;
  gap: 8px;
  max-width: 640px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.50);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(2px);
}

.secure-payment strong {
  color: var(--gold-soft);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.secure-payment span {
  color: rgba(255, 255, 255, 0.78);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--glass-strong);
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(2px);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(200, 169, 106, 0.32);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.86);
  font: inherit;
}

.inquiry-form textarea {
  min-height: 118px;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

.site-header,
.language-switcher a,
.trust-row span,
.button.secondary,
.info-tile,
.disclaimer-block,
.service-card,
.place-panel,
.split-section,
.contact-band,
.secure-payment,
.inquiry-form {
  -webkit-backdrop-filter: blur(2px);
}

.site-header,
.language-switcher a,
.trust-row span,
.button.secondary {
  -webkit-backdrop-filter: blur(10px);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.86), rgba(0, 0, 0, 0.94));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  width: min(420px, calc(100% - 32px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(8, 8, 8, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.sticky-cta-note {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.35;
}

.sticky-cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.sticky-cta-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 9px 12px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.sticky-cta-button.primary {
  background: var(--gold);
  color: #090909;
}

.sticky-cta-button.secondary {
  border: 1px solid rgba(200, 169, 106, 0.62);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 214px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
  }

  .header-cta {
    order: 3;
  }

  .language-switcher {
    order: 4;
    justify-content: flex-start;
  }

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

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

  .info-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  body::before {
    display: none;
  }

  body.contact-page::before,
  body.guide-page::before,
  body.villa-page::before,
  body.trip-page::before {
    display: block;
  }

  body::after {
    background:
      radial-gradient(circle at 20% 4%, rgba(200, 169, 106, 0.12), transparent 18rem),
      linear-gradient(180deg, #050505, #0b0b0b 42%, #030303);
  }

  body.contact-page::after,
  body.guide-page::after,
  body.villa-page::after,
  body.trip-page::after {
    background:
      radial-gradient(circle at 18% 8%, rgba(200, 169, 106, 0.14), transparent 18rem),
      linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.62));
  }

  main#top > .hero {
    background-attachment: scroll;
  }

  .sticky-cta {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 14px 14px 0 0;
  }

  .sticky-cta-note {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: sticky;
    top: 0;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px 12px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(10, 10, 10, 0.78));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  .brand {
    order: 1;
    flex: 1 1 auto;
    gap: 7px;
    min-width: 0;
  }

  .site-header .brand .brand-logo {
    width: auto !important;
    height: auto !important;
    max-width: 64px;
    max-height: 36px;
    border-radius: 9px;
    padding: 1px;
  }

  .brand-text {
    overflow: hidden;
  }

  .brand strong {
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small,
  .nav-links,
  .language-switcher,
  .site-header > .header-cta {
    display: none !important;
  }

  .mobile-header-tools {
    order: 2;
    display: flex !important;
    flex: 0 0 auto;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    white-space: nowrap;
  }

  .mobile-header-action,
  .mobile-dropdown summary {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 169, 106, 0.64);
    border-radius: 999px;
    padding: 7px 8px;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-book {
    color: #090909;
    background: var(--gold);
  }

  .mobile-wa {
    color: var(--white);
    background: rgba(8, 8, 8, 0.68);
  }

  .mobile-dropdown {
    position: relative;
  }

  .mobile-dropdown summary {
    min-width: 58px;
    color: var(--white);
    background: rgba(8, 8, 8, 0.68);
    cursor: pointer;
    list-style: none;
  }

  .mobile-dropdown summary::-webkit-details-marker {
    display: none;
  }

  .mobile-language-dropdown summary {
    min-width: 42px;
    color: #090909;
    background: var(--gold);
  }

  .mobile-dropdown-panel {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    min-width: 176px;
    overflow: hidden;
    border: 1px solid rgba(200, 169, 106, 0.34);
    border-radius: 10px;
    background: rgba(6, 6, 6, 0.94);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.46);
  }

  .mobile-language-dropdown .mobile-dropdown-panel {
    min-width: 86px;
  }

  .mobile-dropdown-panel a {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(200, 169, 106, 0.16);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-dropdown-panel a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .page-hero {
    min-height: auto;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.055em;
    line-height: 1.45;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(2.35rem, 12vw, 3.4rem);
    line-height: 1;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.96rem;
  }

  .sticky-cta-actions {
    gap: 8px;
  }

  .sticky-cta-button {
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .trust-row {
    gap: 8px;
    margin-top: 18px;
  }

  .trust-row span {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.82rem;
    text-align: center;
  }

  .content-section,
  .contact-band,
  .disclaimer-block,
  .split-section {
    background:
      linear-gradient(180deg, rgba(13, 13, 13, 0.78), rgba(4, 4, 4, 0.84));
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .info-tile,
  .service-card,
  .place-panel,
  .secure-payment,
  .inquiry-form {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
      rgba(10, 10, 10, 0.82);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .info-tile .card-image {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .service-body,
  .place-panel {
    padding: 22px;
  }

  .inquiry-form {
    gap: 12px;
    padding: 18px;
  }

  .inquiry-form label {
    font-size: 0.74rem;
    letter-spacing: 0.045em;
  }

  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea {
    min-height: 44px;
    padding: 10px 12px;
  }

  .footer {
    display: block;
  }

  .footer p + p {
    margin-top: 8px;
  }
}

/* FINAL Sakarun Day Trips desktop thumbnail fix */
@media (min-width: 769px) {
  body.day-trips-page .content-section[aria-labelledby="routes-title"] .route-list > a.info-tile > img.card-image,
  body.day-trips-page .route-list > a.info-tile > img.card-image,
  body.day-trips-page a.info-tile > img.card-image,
  body.day-trips-page .info-tile .card-image {
    height: 130px !important;
    max-height: 130px !important;
    min-height: 0 !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 8px !important;
    overflow: hidden !important;
  }
}

/* Sakarun rebuilt Day Trips cards */
.daytrip-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  grid-column: 1 / -1;
}

.daytrip-card {
  display: grid;
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--glass-line);
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--glass);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(2px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.daytrip-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 169, 106, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(14, 14, 14, 0.78);
}

.daytrip-thumb,
.daytrip-placeholder {
  width: 100%;
  height: 150px;
  max-height: 150px;
  border-bottom: 1px solid rgba(200, 169, 106, 0.22);
}

.daytrip-thumb {
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.02);
}

.daytrip-thumb-velebit {
  object-position: center 70%;
}

.daytrip-thumb-split,
.hero-image-split,
.card-image-split {
  object-position: center 58%;
}

.daytrip-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 169, 106, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(200, 169, 106, 0.18), rgba(255, 255, 255, 0.03) 38%, rgba(5, 5, 5, 0.78));
}

.daytrip-placeholder span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(200, 169, 106, 0.55);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.daytrip-card-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.daytrip-card-body strong {
  color: var(--white);
  font-size: 1.03rem;
}

.daytrip-card-body p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 769px) {
  .daytrip-thumb,
  .daytrip-placeholder {
    height: 130px;
    max-height: 130px;
  }
}

@media (max-width: 760px) {
  .daytrip-card-grid {
    grid-template-columns: 1fr;
  }

  .daytrip-thumb,
  .daytrip-placeholder {
    height: 155px;
    max-height: 155px;
  }
}

/* Sakarun AI merged homepage additions */
.merged-booking-panel {
  margin-top: 40px;
  margin-bottom: 72px;
}

body.ai-merged-page::before {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.46)),
    url("assets/images/hero/zadar-polutok-hero.jpg") center / cover no-repeat;
}

body.ai-merged-page main#top > .hero {
  background-image: url("assets/images/hero/zadar-polutok-hero.jpg");
}

.merged-safe-note {
  border-left: 3px solid rgba(200, 169, 106, 0.78);
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.72) !important;
}

.sak-ai-inquiry-form select {
  width: 100%;
  border: 1px solid rgba(212, 184, 117, 0.28);
  border-radius: 14px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.36);
  font: inherit;
  outline: none;
}

.sak-ai-inquiry-form select:focus {
  border-color: rgba(240, 216, 148, 0.76);
  box-shadow: 0 0 0 3px rgba(212, 184, 117, 0.12);
}

.merged-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.merged-portal-section,
.merged-trip-section {
  align-items: start;
}

.merged-card-grid,
.merged-destination-grid {
  display: grid;
  gap: 18px;
}

.merged-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merged-destination-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merged-image-card,
.merged-destination-card {
  overflow: hidden;
  border: 1px solid rgba(200, 169, 106, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.58);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.22);
}

.merged-image-card {
  display: flex;
  flex-direction: column;
}

.merged-image-card img,
.merged-icon-panel {
  width: 100%;
  height: 170px;
  border-bottom: 1px solid rgba(200, 169, 106, 0.2);
}

.merged-image-card img,
.merged-destination-card img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.merged-image-card > div:not(.merged-icon-panel),
.merged-destination-card {
  padding: 18px;
}

.merged-image-card h3,
.merged-destination-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.25;
}

.merged-image-card p,
.merged-destination-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.merged-image-card p:last-child,
.merged-destination-card p:last-child {
  margin-bottom: 0;
}

.merged-icon-panel {
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background:
    radial-gradient(circle at 24% 12%, rgba(200, 169, 106, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(200, 169, 106, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(2, 2, 2, 0.72);
}

.merged-destination-card img {
  width: 100%;
  height: 150px;
  margin: -18px -18px 16px;
  max-width: calc(100% + 36px);
  border-bottom: 1px solid rgba(200, 169, 106, 0.2);
}

@media (max-width: 980px) {
  .merged-card-grid,
  .merged-destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .merged-booking-panel {
    margin-top: 28px;
    margin-bottom: 48px;
  }

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

  .merged-image-card img,
  .merged-icon-panel,
  .merged-destination-card img {
    height: 155px;
  }
}

/* Sakarun homepage image containment fix 2026-06-15 */
body.ai-merged-page .service-grid .service-card > img,
body.ai-merged-page .merged-portal-section .merged-image-card > img,
body.ai-merged-page .merged-trip-section .merged-destination-card > img {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

body.ai-merged-page .service-grid .service-card > img {
  height: 210px !important;
  max-height: 210px !important;
  aspect-ratio: auto !important;
}

body.ai-merged-page .merged-portal-section .merged-image-card > img,
body.ai-merged-page .merged-portal-section .merged-icon-panel {
  height: 138px !important;
  max-height: 138px !important;
}

body.ai-merged-page .merged-trip-section .merged-destination-card > img {
  height: 118px !important;
  max-height: 118px !important;
  margin: 0 0 14px !important;
  border: 1px solid rgba(200, 169, 106, 0.18);
  border-radius: 12px;
}

@media (max-width: 760px) {
  body.ai-merged-page .service-grid .service-card > img {
    height: 155px !important;
    max-height: 155px !important;
  }

  body.ai-merged-page .merged-portal-section .merged-image-card > img,
  body.ai-merged-page .merged-portal-section .merged-icon-panel {
    height: 132px !important;
    max-height: 132px !important;
  }

  body.ai-merged-page .merged-trip-section .merged-destination-card > img {
    height: 112px !important;
    max-height: 112px !important;
  }
}
